{"id":174061,"date":"2010-12-21T18:22:18","date_gmt":"2010-12-21T18:22:18","guid":{"rendered":"http:\/\/www.esri.com\/arcgis-blog\/?post_type=blog&#038;p=174061"},"modified":"2018-12-18T10:54:26","modified_gmt":"2018-12-18T18:54:26","slug":"rasters-get-speed-save-space","status":"publish","type":"blog","link":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/imagery\/rasters-get-speed-save-space","title":{"rendered":"Rasters: Get Speed, Save Space"},"author":4061,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","format":"standard","meta":{"_acf_changed":false,"_searchwp_excluded":""},"categories":[22931],"tags":[25311,29281,23011],"industry":[],"product":[36571,36991],"class_list":["post-174061","blog","type-blog","status-publish","format-standard","hentry","category-imagery","tag-arcgis-10","tag-compression","tag-raster","product-arcgis-enterprise","product-arcgis-desktop"],"acf":{"short_description":"you can use ArcGIS geoprocessing tools, such as Raster To Other Format or Copy Raster, or you can use the\u00a0FWTools utility\u00a0created by Frank Warmer","flexible_content":[{"acf_fc_layout":"content","content":"<p style=\"font-weight: 400;\">In ArcGIS we generally recommend using a TIFF raster format that has been compressed using JPEG compression, to get the overall best performance and conserve disk space when using it in Desktop or serving it with ArcGIS Server. There are two ways we recommend you compress your data\u2014you can use ArcGIS geoprocessing tools, such as Raster To Other Format or Copy Raster, or you can use the\u00a0<a href=\"http:\/\/fwtools.maptools.org\/\">FWTools utility<\/a>\u00a0created by Frank Warmerdam, which uses the GDAL library.<\/p>\n<p style=\"font-weight: 400;\"><a href=\"http:\/\/gdal.org\/\">GDAL<\/a>\u00a0is an open source translator library for raster geospatial data formats. Starting at version 10, ArcGIS uses GDAL to read and write its raster data.<\/p>\n<p style=\"font-weight: 400;\">Using the Raster To Other Format tool or the Copy Raster tool is similar to using FWTools but they have fewer options. For example, FWTools lets you define a photometric value to control the color space used to store the pixel value and define the interleaving (band or pixel). However; using the tools in ArcGIS you can create the statistics ArcGIS uses, which I don\u2019t think is possible with FWTools.<\/p>\n<p style=\"font-weight: 400;\">ArcGIS 10 did introduce some options for writing raster datasets that were not in earlier versions, such as more compression options on the raster dataset and the ability to compress the pyramids.<br \/>\n<b><strong>Recommendations for TIFF file<\/strong><\/b><\/p>\n<p style=\"font-weight: 400;\">The recommended settings for converting raster data, such as 8-bit aerial photography, to TIFF files using ArcGIS are:<br \/>\n&#8211; BILINEAR pyramid resampling<br \/>\n&#8211; JPEG compression for the pyramids and datasets<br \/>\n&#8211; 80% compression quality<\/p>\n<p style=\"font-weight: 400;\">Also, statistics don\u2019t always need to be calculated from every pixel; therefore, you can increase the speed at which they\u2019re calculated by specifying a skip factor. One way to identify a reasonable skip factor value is to divide the number of columns in the raster dataset by 1000 and use the quotient (integer) as the skip factor. For example 5000 columns = a skip factor of 5. (The examples below use the default skip factor.)<\/p>\n<p style=\"font-weight: 400;\">You could also increase the tile size for the TIFF files to 512 for each dimension.<\/p>\n<p style=\"font-weight: 400;\">Before you convert all your data using these settings you should resample a few to find the settings that work best for your data. For example, the compression quality could be higher or lower depending on your data and its uses. Or if you\u2019re compressing scanned maps you may get better results with Nearest Neighbor resampling.<\/p>\n<p style=\"font-weight: 400;\"><b><strong><br \/>\nUsing FWTools<\/strong><\/b><\/p>\n<p style=\"font-weight: 400;\">You can apply the same recommended settings using the FWTools utility by running it at the command using the following:<br \/>\ngdal_translate.exe -of Gtiff -co \u201cCOMPRESS=JPEG\u201d -co \u201cJPEG_QUALITY=80\u2033 -co \u201cTILED=YES\u201d -co \u201cPHOTOMETRIC=YCBCR\u201d -co BLOCKYSIZE=512 -co BLOCKXSIZE=512 Input.tif Output.tif<br \/>\nA simple interface to the FWTools utility has been posted on the Image Samples Gallery to help you convert your files using these recommended settings, called\u00a0<a href=\"http:\/\/resources.arcgis.com\/gallery\/file\/image-management\/details?entryID=BCB3B8AB-1422-2418-3411-530474DD4825\">Compress Imagery<\/a>. This tool allows you to convert an entire folder of images to JPEG compressed TIFF files.<br \/>\n<b><strong>Using ArcGIS Geoprocessing Tools<\/strong><\/b><\/p>\n<p style=\"font-weight: 400;\">You can use the\u00a0<a href=\"http:\/\/help.arcgis.com\/en\/arcgisdesktop\/10.0\/help\/index.html#\/Raster_To_Other_Format\/001200000032000000\/\">Raster To Other Format tool<\/a>\u00a0to convert a collection of raster dataset to JPEG compressed TIFF files. Simply identify the input raster dataset, the output location, the format, and modify the Raster Storage settings mentioned above in the Environments Settings.<\/p>\n<p style=\"font-weight: 400;\">You can use the\u00a0<a href=\"http:\/\/help.arcgis.com\/en\/arcgisdesktop\/10.0\/help\/index.html#\/Copy_Raster\/001700000094000000\/\">Copy Raster tool<\/a>\u00a0to convert a folder of images by batching, creating a model, or writing a script. The Copy Raster tool provides the extra ability to modify the raster datasets by defining a different pixel type or converting pixel values to NoData.<\/p>\n<p style=\"font-weight: 400;\">To run this tool using a script, you can use the following:<br \/>\n# Import arcpy module<br \/>\nimport arcpy, os<\/p>\n<p style=\"font-weight: 400;\"># Set the geoprocessing environments for the input and output folders<br \/>\narcpy.env.workspace = \u201ce:\\inWorkspace\u201d<br \/>\nrasList = arcpy.ListRasters()<br \/>\noutWs = \u201cc:\\outWorkspace\u201d<\/p>\n<p style=\"font-weight: 400;\"># Define the output settings for compression<br \/>\narcpy.env.pyramid = \u201cPYRAMIDS -1 BILINEAR JPEG 80\u2033<br \/>\narcpy.env.compression = \u201cJPEG 80\u2033<\/p>\n<p style=\"font-weight: 400;\"># Run the Copy Raster tool<br \/>\nfor ras in rasList:<br \/>\narcpy.CopyRaster_management(ras, ras, \u201c0\u2033, \u201c\u201d, \u201c\u201d, \u201cNONE\u201d, \u201cNONE\u201d, \u201c\u201d, \u201cNONE\u201d, \u201cNONE\u201d)<\/p>\n<p style=\"font-weight: 400;\">Keep in mind that this script assumes the inputs and outputs are tiff files and will output raster datasets using the same name.<\/p>\n<p style=\"font-weight: 400;\"><i><em>Submitted by: Melanie Harlow<\/em><\/i><\/p>\n"}],"authors":[{"ID":4061,"user_firstname":"Simon","user_lastname":"Woo","nickname":"Simon Woo","user_nicename":"simo3919","display_name":"Simon W","user_email":"swoo@esri.com","user_url":"","user_registered":"2018-03-02 00:15:40","user_description":"Simon is an Esri product engineer on the Raster team. He works mainly with Pixel Editor, raster visualization, georeferencing, and documentation.","user_avatar":"<img alt='' src='https:\/\/secure.gravatar.com\/avatar\/284f5c139a24b4d63be933eebce2580a4a5dc93d4c09b375bd1d2368019e8748?s=96&#038;d=blank&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/284f5c139a24b4d63be933eebce2580a4a5dc93d4c09b375bd1d2368019e8748?s=192&#038;d=blank&#038;r=g 2x' class='avatar avatar-96 photo' height='96' width='96' loading='lazy' decoding='async'\/>"}],"related_articles":"","card_image":false,"wide_image":false},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v25.9) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Rasters: Get Speed, Save Space<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/imagery\/rasters-get-speed-save-space\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Rasters: Get Speed, Save Space\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/imagery\/rasters-get-speed-save-space\" \/>\n<meta property=\"og:site_name\" content=\"ArcGIS Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/esrigis\/\" \/>\n<meta property=\"article:modified_time\" content=\"2018-12-18T18:54:26+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@ESRI\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":[\"Article\",\"BlogPosting\"],\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/imagery\/rasters-get-speed-save-space#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/imagery\/rasters-get-speed-save-space\"},\"author\":{\"name\":\"Simon W\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/6f650fb8cda0894dd6401d333dcdcb64\"},\"headline\":\"Rasters: Get Speed, Save Space\",\"datePublished\":\"2010-12-21T18:22:18+00:00\",\"dateModified\":\"2018-12-18T18:54:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/imagery\/rasters-get-speed-save-space\"},\"wordCount\":5,\"publisher\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#organization\"},\"keywords\":[\"ArcGIS 10\",\"compression\",\"raster\"],\"articleSection\":[\"Imagery &amp; Remote Sensing\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/imagery\/rasters-get-speed-save-space\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/imagery\/rasters-get-speed-save-space\",\"name\":\"Rasters: Get Speed, Save Space\",\"isPartOf\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#website\"},\"datePublished\":\"2010-12-21T18:22:18+00:00\",\"dateModified\":\"2018-12-18T18:54:26+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/imagery\/rasters-get-speed-save-space#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/imagery\/rasters-get-speed-save-space\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/imagery\/rasters-get-speed-save-space#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.esri.com\/arcgis-blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Rasters: Get Speed, Save Space\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#website\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/\",\"name\":\"ArcGIS Blog\",\"description\":\"Get insider info from Esri product teams\",\"publisher\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.esri.com\/arcgis-blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#organization\",\"name\":\"Esri\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/04\/Esri.png\",\"contentUrl\":\"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/04\/Esri.png\",\"width\":400,\"height\":400,\"caption\":\"Esri\"},\"image\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/esrigis\/\",\"https:\/\/x.com\/ESRI\",\"https:\/\/www.linkedin.com\/company\/5311\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/6f650fb8cda0894dd6401d333dcdcb64\",\"name\":\"Simon W\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/284f5c139a24b4d63be933eebce2580a4a5dc93d4c09b375bd1d2368019e8748?s=96&d=blank&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/284f5c139a24b4d63be933eebce2580a4a5dc93d4c09b375bd1d2368019e8748?s=96&d=blank&r=g\",\"caption\":\"Simon W\"},\"description\":\"Simon is an Esri product engineer on the Raster team. He works mainly with Pixel Editor, raster visualization, georeferencing, and documentation.\",\"url\":\"\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Rasters: Get Speed, Save Space","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/imagery\/rasters-get-speed-save-space","og_locale":"en_US","og_type":"article","og_title":"Rasters: Get Speed, Save Space","og_url":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/imagery\/rasters-get-speed-save-space","og_site_name":"ArcGIS Blog","article_publisher":"https:\/\/www.facebook.com\/esrigis\/","article_modified_time":"2018-12-18T18:54:26+00:00","twitter_card":"summary_large_image","twitter_site":"@ESRI","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/imagery\/rasters-get-speed-save-space#article","isPartOf":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/imagery\/rasters-get-speed-save-space"},"author":{"name":"Simon W","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/6f650fb8cda0894dd6401d333dcdcb64"},"headline":"Rasters: Get Speed, Save Space","datePublished":"2010-12-21T18:22:18+00:00","dateModified":"2018-12-18T18:54:26+00:00","mainEntityOfPage":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/imagery\/rasters-get-speed-save-space"},"wordCount":5,"publisher":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#organization"},"keywords":["ArcGIS 10","compression","raster"],"articleSection":["Imagery &amp; Remote Sensing"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/imagery\/rasters-get-speed-save-space","url":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/imagery\/rasters-get-speed-save-space","name":"Rasters: Get Speed, Save Space","isPartOf":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#website"},"datePublished":"2010-12-21T18:22:18+00:00","dateModified":"2018-12-18T18:54:26+00:00","breadcrumb":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/imagery\/rasters-get-speed-save-space#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/imagery\/rasters-get-speed-save-space"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/imagery\/rasters-get-speed-save-space#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.esri.com\/arcgis-blog\/"},{"@type":"ListItem","position":2,"name":"Rasters: Get Speed, Save Space"}]},{"@type":"WebSite","@id":"https:\/\/www.esri.com\/arcgis-blog\/#website","url":"https:\/\/www.esri.com\/arcgis-blog\/","name":"ArcGIS Blog","description":"Get insider info from Esri product teams","publisher":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.esri.com\/arcgis-blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.esri.com\/arcgis-blog\/#organization","name":"Esri","url":"https:\/\/www.esri.com\/arcgis-blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/04\/Esri.png","contentUrl":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/04\/Esri.png","width":400,"height":400,"caption":"Esri"},"image":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/esrigis\/","https:\/\/x.com\/ESRI","https:\/\/www.linkedin.com\/company\/5311\/"]},{"@type":"Person","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/6f650fb8cda0894dd6401d333dcdcb64","name":"Simon W","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/284f5c139a24b4d63be933eebce2580a4a5dc93d4c09b375bd1d2368019e8748?s=96&d=blank&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/284f5c139a24b4d63be933eebce2580a4a5dc93d4c09b375bd1d2368019e8748?s=96&d=blank&r=g","caption":"Simon W"},"description":"Simon is an Esri product engineer on the Raster team. He works mainly with Pixel Editor, raster visualization, georeferencing, and documentation.","url":""}]}},"text_date":"December 21, 2010","author_name":"Simon W","author_page":false,"custom_image":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2025\/08\/Newsroom-Keyart-Wide-1920-x-1080.jpg","primary_product":"ArcMap","tag_data":[{"term_id":25311,"name":"ArcGIS 10","slug":"arcgis-10","term_group":0,"term_taxonomy_id":25311,"taxonomy":"post_tag","description":"","parent":0,"count":48,"filter":"raw"},{"term_id":29281,"name":"compression","slug":"compression","term_group":0,"term_taxonomy_id":29281,"taxonomy":"post_tag","description":"","parent":0,"count":4,"filter":"raw"},{"term_id":23011,"name":"raster","slug":"raster","term_group":0,"term_taxonomy_id":23011,"taxonomy":"post_tag","description":"","parent":0,"count":147,"filter":"raw"}],"category_data":[{"term_id":22931,"name":"Imagery &amp; Remote Sensing","slug":"imagery","term_group":0,"term_taxonomy_id":22931,"taxonomy":"category","description":"","parent":0,"count":765,"filter":"raw"}],"product_data":[{"term_id":36571,"name":"ArcGIS Enterprise","slug":"arcgis-enterprise","term_group":0,"term_taxonomy_id":36571,"taxonomy":"product","description":"","parent":0,"count":972,"filter":"raw"},{"term_id":36991,"name":"ArcMap","slug":"arcgis-desktop","term_group":0,"term_taxonomy_id":36991,"taxonomy":"product","description":"","parent":36981,"count":325,"filter":"raw"}],"primary_product_link":"https:\/\/www.esri.com\/arcgis-blog\/?s=#&products=arcgis-desktop","_links":{"self":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/blog\/174061","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/blog"}],"about":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/types\/blog"}],"author":[{"embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/users\/4061"}],"replies":[{"embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/comments?post=174061"}],"version-history":[{"count":0,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/blog\/174061\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/media?parent=174061"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/categories?post=174061"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/tags?post=174061"},{"taxonomy":"industry","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/industry?post=174061"},{"taxonomy":"product","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/product?post=174061"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}