{"id":626722,"date":"2023-10-31T19:59:44","date_gmt":"2023-11-01T02:59:44","guid":{"rendered":"https:\/\/www.esri.com\/about\/newsroom\/?post_type=arcnews&#038;p=626722"},"modified":"2023-10-26T15:41:11","modified_gmt":"2023-10-26T22:41:11","slug":"three-ways-to-use-arcgis-arcade-to-enhance-web-maps","status":"publish","type":"arcnews","link":"https:\/\/www.esri.com\/about\/newsroom\/arcnews\/three-ways-to-use-arcgis-arcade-to-enhance-web-maps","title":{"rendered":"Three Ways to Use ArcGIS Arcade to Enhance Web Maps"},"author":5752,"featured_media":0,"menu_order":0,"template":"","format":"standard","meta":{"_acf_changed":false,"sync_status":"","episode_type":"","audio_file":"","castos_file_data":"","podmotor_file_id":"","cover_image":"","cover_image_id":"","duration":"","filesize":"","filesize_raw":"","date_recorded":"","explicit":"","block":"","itunes_episode_number":"","itunes_title":"","itunes_season_number":"","itunes_episode_type":"","_links_to":"","_links_to_target":""},"categories":[10532,10432,10392],"tags":[157412,279962,295152,411322,1281],"arcnews_issues":[486972],"class_list":["post-626722","arcnews","type-arcnews","status-publish","format-standard","hentry","category-arcgis-arcade","category-arcgis-enterprise","category-arcgis-online","tag-data","tag-layers","tag-map-viewer","tag-pop-ups","tag-visualization","arcnews_issues-fall-2023","arcnews_sections-esri-technology"],"acf":{"short_description":"Elevate the look and feel of your web maps by setting rules that determine how text, pop-ups, and other dynamic content get displayed.","pdf":{"host_remotely":false,"file":"","file_url":""},"flexible_content":[{"acf_fc_layout":"content","content":"ArcGIS Arcade is an expression language created by Esri that gives users the ability to define and save custom content in their web maps. Through Arcade, users set rules that determine how dynamic content, such as text and pop-ups, displays within the context of a map. When an Arcade expression gets saved, any app that an organization creates using ArcGIS technology\u2014whether it\u2019s on the desktop, a mobile device, or the web\u2014honors that logic to maintain consistency wherever the map is viewed.\r\n\r\nAlthough Arcade was initially created for ArcGIS Pro, it also works in ArcGIS Online and ArcGIS Enterprise. Here are three ways that users can employ Arcade in Map Viewer to enhance the look, feel, and interactive elements of web maps."},{"acf_fc_layout":"content","content":"<h2>1. Format Data Values<\/h2>\r\nIt\u2019s no secret that GIS professionals are often required to work with messy data. To make this data more presentable, Arcade provides built-in functions that let users format data values in pop-ups and labels.\r\n<h3>Change Case<\/h3>\r\nConsider a text attribute in a layer representing parks that stores the name of each park in all caps or even inconsistently, with some park names in all lowercase letters and others in mixed case. Arcade\u2019s Proper function allows users to transform any text value to the proper case.\r\n\r\nFor example, if some data sources list \u201cLASSEN VOLCANIC NATIONAL PARK\u201d while others show \u201classen volcanic national park,\u201d employing the following Arcade expression will format both so they display as \u201cLassen Volcanic National Park.\u201d\r\n<pre><code>Proper($feature.NAME)<\/code><\/pre>"},{"acf_fc_layout":"content","content":"<h3>Calculate Formulas<\/h3>\r\nUsing Arcade, Map Viewer users can calculate both simple and complex formulas, such as the percentage change in an area\u2019s population from one year to another. In the 2020 Census, for example, the town of Poultney, Vermont, recorded a population of 3,020 people, whereas in the 2010 Census, the town\u2019s population was recorded as 3,432 people. To calculate this difference, a user can employ the following Arcade expression:\r\n<pre><code>var current = $feature.pop2020; \/\/ current = 3020\r\nvar previous = $feature.pop2010 \/\/ previous = 3432\r\nvar change = (current - previous) \/ previous;<\/code><\/pre>\r\nIn many cases, dividing two numbers returns a number with many decimal places, such as 0.12004662004662005\u2014the difference in Poultney\u2019s population between 2010 and 2020. This level of precision, however, is often too high or not required by the end user. That\u2019s why Arcade also enables users to format values so they are more readable. (Learn more about this in the next section.)"},{"acf_fc_layout":"content","content":"<h3>Format Numeric Values<\/h3>\r\nUsers can employ the Text function to create an Arcade expression that formats numeric values. So a number with 17 decimal places, as in the example above, is automatically cut to two places, or a four-digit year (2023) is displayed as a two-digit year (23).\r\n\r\nThis function also respects the locale of the map. As people view the map from different locations\u2014say, the United States versus Spain\u2014the number formatting conventions for where the end user is located are honored.\r\n\r\nAdding the following line to the previous example in the Arcade expression for labeling would display -12.0 percent in the United States and -12,0 percent in Spain.\r\n<pre><code>Text(change, \"+#.#%;-#.#%\");\r\n\/\/ displays \"-12.0%\" if locale is English\r\n\/\/ displays \"-12,0%\" if locale is Spanish<\/code><\/pre>"},{"acf_fc_layout":"content","content":"<h3>Synthesize Data into Meaningful Categories<\/h3>\r\nSome numeric values need to be classified into categories that help a general audience better understand them. For instance, the average person likely doesn\u2019t know whether a value of 30 parts per thousand is a high or low salinity value for the ocean. Arcade\u2019s When function helps give context to raw data values by classifying them in meaningful categories. Here\u2019s how to do this for ocean salinity:\r\n<pre><code>When(\r\n    $feature.SALINITY &gt; 37, \"high\",\r\n    $feature.SALINITY &gt; 33, \"normal\",\r\n    \"low\"\r\n);\r\n\/\/ returns \"low\" if the value of SALINITY in the selected features is 30<\/code><\/pre>"},{"acf_fc_layout":"content","content":"<h2>When to Apply Arcade to Format Data Values<\/h2>\r\nThese examples demonstrate how users can employ Arcade to transform raw or even messy data values into meaningful information for end users. This can be useful in the following situations:\r\n<ul>\r\n \t<li>When the user doesn\u2019t own the data\u2014Arcade only transforms data in a browser. It doesn\u2019t change the underlying data values in a database or web service.<\/li>\r\n \t<li>When the data is updated frequently\u2014Each time a map gets refreshed, any new data values that appear in the underlying database are taken into account and properly input into the Arcade expressions, returning up-to-date information.<\/li>\r\n<\/ul>"},{"acf_fc_layout":"content","content":"<h2>2. Visualize Data Layers That the Organization Doesn\u2019t Own<\/h2>\r\nArcade gives users the flexibility to transform data to create unique visualizations. And users don\u2019t even need to own the data to take advantage of this.\r\n\r\nPreviously, map authors had to contact the owner of a layer and ask for updates that had been made to the dataset. With Arcade, users can customize and calculate new data values themselves, without editing the underlying data. Since Arcade expressions perform evaluations on the fly, as data is loaded into the map, expressions always use the most current data from the layer, ensuring that maps stay up-to-date.\r\n\r\nIn the example below, Arcade is used to calculate and visualize a broadband score for performance based on data from the Federal Communications Commission (FCC). Arcade calculates the score by using the median download and upload speeds of each census block compared to the FCC\u2019s minimum standard for broadband of 25 megabits per second (Mbps) for downloading and 3 Mbps for uploading, as shown in the expression below. To access this Arcade expression editor in Map Viewer, click the Styles pane, then select the + Expression tab.\r\n<pre><code>\/* This score gives 100 points to the median download speed \r\nif it is 25 Mbs or higher. If the census geography has a median \r\ndownload speed of 50 Mbs, it awards 200 points. If the census \r\ngeography has a speed of 20 Mbs, it awards 80 points. *\/\r\nvar downMedianScore = $feature.MedianConsumerDown98 \/ 25 * 100;\r\n\r\n\/* This score gives 100 points to the median upload speed \r\nif it is 3 Mbs or higher. If the census geography has a median \r\nupload speed of 6 Mbs, it awards 200 points. If the census \r\ngeography has a speed of 1 Mbs, it awards 33 points. *\/\r\nvar upMedianScore = $feature.MedianConsumerUp98 \/ 3 * 100;\r\n\r\n\/* Use when() to evaluate conditional expressions and return result.\r\nThe average of the two scores is used if BOTH scores\r\nare 100 or higher. If not, the lower of the two scores is used. *\/\r\nvar medianScore = when(\r\n    downMedianScore &gt;= 100 &amp;&amp; upMedianScore &gt;= 100, (downMedianScore + upMedianScore) \/ 2,\r\n    downMedianScore &lt;100 &amp;&amp; upMedianScore &gt;=100, downMedianScore,\r\n    downMedianScore &gt;=100 &amp;&amp; upMedianScore &lt;100, upMedianScore,\r\n    downMedianScore &lt;100 &amp;&amp; upMedianScore &lt;100 &amp;&amp; downMedianScore &lt;= upMedianScore, downMedianScore,\r\n    downMedianScore &lt;100 &amp;&amp; upMedianScore &lt;100 &amp;&amp; upMedianScore &lt;= downMedianScore, upMedianScore,\r\n    100);\r\n\r\nreturn Round(medianScore, 0);<\/code><\/pre>"},{"acf_fc_layout":"content","content":"Here\u2019s what this looks like on a map:"},{"acf_fc_layout":"image","image":627492,"image_position":"center","orientation":"horizontal","hyperlink":""},{"acf_fc_layout":"content","content":"<h2>3. Conditionally Set Pop-Up Field Values<\/h2>\r\nPop-ups are essential tools for map authors. They convey information to readers effectively about select features on a map. Within Map Viewer, pop-ups can be enriched with various types of content, including field lists, charts, images, text, hyperlinks, related records, and Arcade expressions.\r\n\r\nTypically, the data for pop-up content is sourced from the underlying feature layer or related records that are part of other layers within the map. When authoring Arcade expressions for pop-ups, users are provided with this sourced data. Additionally, users have the option to import FeatureSet data from outside their current map by utilizing the FeatureSetByPortalItem() function.\r\n\r\nTo illustrate this, look at the web map version of <a href=\"https:\/\/livingatlas-dcdev.opendata.arcgis.com\/datasets\/geo::volcano-status-1\/about\">Volcano Status<\/a> from ArcGIS Living Atlas of the World. This dataset takes data from the US Geological Survey\u2019s Volcano Hazards Program to show the status of active volcanoes in the United States. When users select a volcano on the map, a pop-up with a field list displays relevant information about that volcano, such as its name, threat level, and latitude and longitude.\r\n\r\nWhen building pop-ups like these, users don\u2019t need to manually select which fields to display; they can instead use an Arcade expression to craft their own field lists that filter out unnecessary or unknown fields and even show default values for specific fields. For instance, if a field is empty, it is considered uncertain and can be excluded from the field list. Here\u2019s what this looks like before (left) and after (right):"},{"acf_fc_layout":"image","image":627502,"image_position":"center","orientation":"horizontal","hyperlink":""},{"acf_fc_layout":"content","content":"Using Arcade to build a field list also ensures that if this dataset introduces a new field, pop-ups will be updated dynamically. In the final map product, empty fields, duplicate volcano names, and volcano object IDs are excluded from the field list, and the URL is manually moved outside the field list for better visibility."},{"acf_fc_layout":"sidebar","layout":"standard","image_reference":null,"image_reference_figure":"","spotlight_image":null,"section_title":"","spotlight_name":"","position":"Center","content":"<a href=\"https:\/\/storymaps.arcgis.com\/stories\/5c5a325da24242c4870aa8a2956247e6\">Try these expressions<\/a>, copy code snippets, interact with sample maps, and learn more about ArcGIS Arcade.","snippet":""}],"references":null},"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>Three Ways to Use ArcGIS Arcade to Enhance Web Maps | Fall 2023 | ArcNews<\/title>\n<meta name=\"description\" content=\"Elevate the look and feel of your web maps by setting rules that determine how text, pop-ups, and other dynamic content get displayed.\" \/>\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\/about\/newsroom\/arcnews\/three-ways-to-use-arcgis-arcade-to-enhance-web-maps\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Three Ways to Use ArcGIS Arcade to Enhance Web Maps\" \/>\n<meta property=\"og:description\" content=\"Elevate the look and feel of your web maps by setting rules that determine how text, pop-ups, and other dynamic content get displayed.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.esri.com\/about\/newsroom\/arcnews\/three-ways-to-use-arcgis-arcade-to-enhance-web-maps\" \/>\n<meta property=\"og:site_name\" content=\"Esri\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/esrigis\/\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.esri.com\/about\/newsroom\/app\/uploads\/2023\/10\/arcnews-banner-threeways-wide.jpg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:description\" content=\"Elevate the look and feel of your web maps by setting rules that determine how text, pop-ups, and other dynamic content get displayed.\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/www.esri.com\/about\/newsroom\/app\/uploads\/2023\/10\/arcnews-banner-threeways-wide.jpg\" \/>\n<meta name=\"twitter:site\" content=\"@Esri\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\n\t    \"@context\": \"https:\/\/schema.org\",\n\t    \"@graph\": [\n\t        {\n\t            \"@type\": \"WebPage\",\n\t            \"@id\": \"https:\/\/www.esri.com\/about\/newsroom\/arcnews\/three-ways-to-use-arcgis-arcade-to-enhance-web-maps\",\n\t            \"url\": \"https:\/\/www.esri.com\/about\/newsroom\/arcnews\/three-ways-to-use-arcgis-arcade-to-enhance-web-maps\",\n\t            \"name\": \"Three Ways to Use ArcGIS Arcade to Enhance Web Maps | Fall 2023 | ArcNews\",\n\t            \"isPartOf\": {\n\t                \"@id\": \"https:\/\/www.esri.com\/about\/newsroom\/#website\"\n\t            },\n\t            \"datePublished\": \"2023-11-01T02:59:44+00:00\",\n\t            \"description\": \"Elevate the look and feel of your web maps by setting rules that determine how text, pop-ups, and other dynamic content get displayed.\",\n\t            \"breadcrumb\": {\n\t                \"@id\": \"https:\/\/www.esri.com\/about\/newsroom\/arcnews\/three-ways-to-use-arcgis-arcade-to-enhance-web-maps#breadcrumb\"\n\t            },\n\t            \"inLanguage\": \"en-US\",\n\t            \"potentialAction\": [\n\t                {\n\t                    \"@type\": \"ReadAction\",\n\t                    \"target\": [\n\t                        \"https:\/\/www.esri.com\/about\/newsroom\/arcnews\/three-ways-to-use-arcgis-arcade-to-enhance-web-maps\"\n\t                    ]\n\t                }\n\t            ]\n\t        },\n\t        {\n\t            \"@type\": \"BreadcrumbList\",\n\t            \"@id\": \"https:\/\/www.esri.com\/about\/newsroom\/arcnews\/three-ways-to-use-arcgis-arcade-to-enhance-web-maps#breadcrumb\",\n\t            \"itemListElement\": [\n\t                {\n\t                    \"@type\": \"ListItem\",\n\t                    \"position\": 1,\n\t                    \"name\": \"Home\",\n\t                    \"item\": \"https:\/\/www.esri.com\/about\/newsroom\"\n\t                },\n\t                {\n\t                    \"@type\": \"ListItem\",\n\t                    \"position\": 2,\n\t                    \"name\": \"ArcNews Articles\",\n\t                    \"item\": \"https:\/\/www.esri.com\/about\/newsroom\/arcnews\"\n\t                },\n\t                {\n\t                    \"@type\": \"ListItem\",\n\t                    \"position\": 3,\n\t                    \"name\": \"Three Ways to Use ArcGIS Arcade to Enhance Web Maps\"\n\t                }\n\t            ]\n\t        },\n\t        {\n\t            \"@type\": \"WebSite\",\n\t            \"@id\": \"https:\/\/www.esri.com\/about\/newsroom\/#website\",\n\t            \"url\": \"https:\/\/www.esri.com\/about\/newsroom\/\",\n\t            \"name\": \"Esri\",\n\t            \"description\": \"Esri Newsroom\",\n\t            \"potentialAction\": [\n\t                {\n\t                    \"@type\": \"SearchAction\",\n\t                    \"target\": {\n\t                        \"@type\": \"EntryPoint\",\n\t                        \"urlTemplate\": \"https:\/\/www.esri.com\/about\/newsroom\/?s={search_term_string}\"\n\t                    },\n\t                    \"query-input\": {\n\t                        \"@type\": \"PropertyValueSpecification\",\n\t                        \"valueRequired\": true,\n\t                        \"valueName\": \"search_term_string\"\n\t                    }\n\t                }\n\t            ],\n\t            \"inLanguage\": \"en-US\"\n\t        },\n\t        {\n\t            \"@type\": \"Person\",\n\t            \"@id\": \"https:\/\/www.esri.com\/about\/newsroom\/#\/schema\/person\/41c803b2ea8734c36f9c4e9586d1449d\",\n\t            \"name\": \"Amy Ambard\",\n\t            \"image\": {\n\t                \"@type\": \"ImageObject\",\n\t                \"inLanguage\": \"en-US\",\n\t                \"@id\": \"https:\/\/www.esri.com\/about\/newsroom\/#\/schema\/person\/image\/\",\n\t                \"url\": \"https:\/\/secure.gravatar.com\/avatar\/f356480172f8ad0bc8d72b855e84171c52f1944c7c7779f3e425d73bf3efa3c7?s=96&d=blank&r=g\",\n\t                \"contentUrl\": \"https:\/\/secure.gravatar.com\/avatar\/f356480172f8ad0bc8d72b855e84171c52f1944c7c7779f3e425d73bf3efa3c7?s=96&d=blank&r=g\",\n\t                \"caption\": \"Amy Ambard\"\n\t            },\n\t            \"url\": \"\"\n\t        }\n\t    ]\n\t}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Three Ways to Use ArcGIS Arcade to Enhance Web Maps | Fall 2023 | ArcNews","description":"Elevate the look and feel of your web maps by setting rules that determine how text, pop-ups, and other dynamic content get displayed.","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\/about\/newsroom\/arcnews\/three-ways-to-use-arcgis-arcade-to-enhance-web-maps","og_locale":"en_US","og_type":"article","og_title":"Three Ways to Use ArcGIS Arcade to Enhance Web Maps","og_description":"Elevate the look and feel of your web maps by setting rules that determine how text, pop-ups, and other dynamic content get displayed.","og_url":"https:\/\/www.esri.com\/about\/newsroom\/arcnews\/three-ways-to-use-arcgis-arcade-to-enhance-web-maps","og_site_name":"Esri","article_publisher":"https:\/\/www.facebook.com\/esrigis\/","og_image":[{"url":"https:\/\/www.esri.com\/about\/newsroom\/app\/uploads\/2023\/10\/arcnews-banner-threeways-wide.jpg","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_description":"Elevate the look and feel of your web maps by setting rules that determine how text, pop-ups, and other dynamic content get displayed.","twitter_image":"https:\/\/www.esri.com\/about\/newsroom\/app\/uploads\/2023\/10\/arcnews-banner-threeways-wide.jpg","twitter_site":"@Esri","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.esri.com\/about\/newsroom\/arcnews\/three-ways-to-use-arcgis-arcade-to-enhance-web-maps","url":"https:\/\/www.esri.com\/about\/newsroom\/arcnews\/three-ways-to-use-arcgis-arcade-to-enhance-web-maps","name":"Three Ways to Use ArcGIS Arcade to Enhance Web Maps | Fall 2023 | ArcNews","isPartOf":{"@id":"https:\/\/www.esri.com\/about\/newsroom\/#website"},"datePublished":"2023-11-01T02:59:44+00:00","description":"Elevate the look and feel of your web maps by setting rules that determine how text, pop-ups, and other dynamic content get displayed.","breadcrumb":{"@id":"https:\/\/www.esri.com\/about\/newsroom\/arcnews\/three-ways-to-use-arcgis-arcade-to-enhance-web-maps#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.esri.com\/about\/newsroom\/arcnews\/three-ways-to-use-arcgis-arcade-to-enhance-web-maps"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.esri.com\/about\/newsroom\/arcnews\/three-ways-to-use-arcgis-arcade-to-enhance-web-maps#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.esri.com\/about\/newsroom"},{"@type":"ListItem","position":2,"name":"ArcNews Articles","item":"https:\/\/www.esri.com\/about\/newsroom\/arcnews"},{"@type":"ListItem","position":3,"name":"Three Ways to Use ArcGIS Arcade to Enhance Web Maps"}]},{"@type":"WebSite","@id":"https:\/\/www.esri.com\/about\/newsroom\/#website","url":"https:\/\/www.esri.com\/about\/newsroom\/","name":"Esri","description":"Esri Newsroom","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.esri.com\/about\/newsroom\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.esri.com\/about\/newsroom\/#\/schema\/person\/41c803b2ea8734c36f9c4e9586d1449d","name":"Amy Ambard","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.esri.com\/about\/newsroom\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f356480172f8ad0bc8d72b855e84171c52f1944c7c7779f3e425d73bf3efa3c7?s=96&d=blank&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f356480172f8ad0bc8d72b855e84171c52f1944c7c7779f3e425d73bf3efa3c7?s=96&d=blank&r=g","caption":"Amy Ambard"},"url":""}]}},"sort_order":"7","_links":{"self":[{"href":"https:\/\/www.esri.com\/about\/newsroom\/wp-json\/wp\/v2\/arcnews\/626722","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.esri.com\/about\/newsroom\/wp-json\/wp\/v2\/arcnews"}],"about":[{"href":"https:\/\/www.esri.com\/about\/newsroom\/wp-json\/wp\/v2\/types\/arcnews"}],"author":[{"embeddable":true,"href":"https:\/\/www.esri.com\/about\/newsroom\/wp-json\/wp\/v2\/users\/5752"}],"version-history":[{"count":0,"href":"https:\/\/www.esri.com\/about\/newsroom\/wp-json\/wp\/v2\/arcnews\/626722\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.esri.com\/about\/newsroom\/wp-json\/wp\/v2\/media?parent=626722"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.esri.com\/about\/newsroom\/wp-json\/wp\/v2\/categories?post=626722"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.esri.com\/about\/newsroom\/wp-json\/wp\/v2\/tags?post=626722"},{"taxonomy":"arcnews_issues","embeddable":true,"href":"https:\/\/www.esri.com\/about\/newsroom\/wp-json\/wp\/v2\/arcnews_issues?post=626722"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}