{"id":259402,"date":"2019-08-16T14:02:39","date_gmt":"2019-08-16T21:02:39","guid":{"rendered":"https:\/\/www.esri.com\/about\/newsroom\/?post_type=arcuser&#038;p=259402"},"modified":"2019-09-06T17:46:00","modified_gmt":"2019-09-07T00:46:00","slug":"arcade-magic","status":"publish","type":"arcuser","link":"https:\/\/www.esri.com\/about\/newsroom\/arcuser\/arcade-magic","title":{"rendered":"Arcade-a-Cadabra: This expression language can magically transform your maps"},"author":1031,"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":[310802,25022,91],"tags":[35332,163382,20422],"arcuser_issues":[371162],"class_list":["post-259402","arcuser","type-arcuser","status-publish","format-standard","hentry","category-cartography-3","category-hands-on","category-mapping","tag-arcgis-arcade","tag-arcgis-online","tag-arcgis-pro","arcuser_issues-summer-2019"],"acf":{"short_description":"ArcGIS Arcade is an expression language that transforms data on the fly to create meaningful labels, symbology, and pop-ups. ","pdf":{"host_remotely":false,"file":"","file_url":""},"flexible_content":[{"acf_fc_layout":"pdf","file":261712},{"acf_fc_layout":"quote","image":"","text":"\u201cArcade is magic!\u201d","author_name":"","author_profession_organization":""},{"acf_fc_layout":"content","content":"<p class=\"p1\">That was the reaction of Sari Ladin-Sienne, the chief data officer for the City of Los Angeles after viewing a demonstration of ArcGIS Arcade by Esri staff at a cross-departmental meeting last May.<\/p>\r\n<p class=\"p1\">ArcGIS Arcade is an expression language that transforms data on the fly to create meaningful labels, symbology, and pop-ups. This is especially useful when working with live feed data and layers that are owned by someone else. Arcade can save hours that would otherwise be spent updating or processing data.<\/p>\r\n<p class=\"p1\">Like the functions in Microsoft Excel, Arcade can take existing data and create new information on the fly, performing operations that range from simple calculations, such as addition or multiplication, to complex If-Else statements or For loops.<\/p>\r\n<p class=\"p1\">Traditionally, to change data, you must own the layer or make a copy of it, rather than modify the data in the source layer. If you owned the data or a copy and you wanted to symbolize the data based on a new attribute, you would add a field, calculate it, and verify the results. Although sharing layers that are centrally maintained by an organization reduces duplication of work, members of that organization can be stymied when they want to modify data in a layer that they do not own.<\/p>\r\n<p class=\"p1\"><span class=\"s1\"> Ladin-Sienne and the other 30 data leaders in that meeting have been instrumental in optimizing the city\u2019s data, which is maintained in and shared from the Los Angeles GeoHub. Arcade meets the city\u2019s data transformation needs and is a data processing time saver. <\/span><\/p>\r\n<p class=\"p1\">Whether you are part of a large organization, like the City of Los Angeles, or you are a one-person shop, you can use Arcade in ArcGIS Online and ArcGIS Pro to modify layers to best serve the needs of your project. The Arcade expression builder looks the same whether you are creating expressions for your pop-ups, labels, or symbology.<\/p>\r\n<p class=\"p1\">The following scenarios highlight how Arcade can enhance ArcGIS Online maps. The first scenario is a beginner level example of labeling; followed by an intermediate example about symbology; and finally, an advanced scenario with pop-ups.<\/p>\r\n\r\n<h2 class=\"p2\">Create the Perfect Label<\/h2>\r\n<p class=\"p1\">A county GIS analyst in Colorado (let\u2019s call her Monica) needs to quickly create a map of school districts for a meeting that will be held in a couple of hours. Her county\u2019s ArcGIS Online organization content contains a school districts layer, but the names of the school districts are all capitalized so the labels display as BYERS SCHOOL DISTRICT instead of Byers School District. She prefers mixed case to uppercase because it makes the labels easier to read. However, she won\u2019t have time to ask the person who made the layer to change the field, let alone have the time to download the data, edit the field, and rehost the layer.<\/p>\r\n<p class=\"p1\">Monica just learned about the power of Arcade to edit labels on the fly and tries it out on the school districts layer. She opens the Arcade editor by choosing Label Features and choosing Custom Expression, located at the bottom of the drop-down list. She uses the Proper function, which sets the first letter of each word to uppercase and the rest to lowercase, to create this expression,<\/p>\r\n<p class=\"p4\" style=\"padding-left: 40px;\">Proper($feature.NAME)<\/p>\r\n<p class=\"p1\"><span class=\"s1\">which transforms BYERS SCHOOL DISTRICT to Byers School District.<\/span><\/p>\r\n<p class=\"p1\"><\/p>"},{"acf_fc_layout":"image","image":259432,"image_position":"center","orientation":"horizontal","hyperlink":""},{"acf_fc_layout":"content","content":"<p class=\"p1\"><span class=\"s1\">With just one Arcade expression, Monica saved hours of work and is now ready to go to the meeting with a more polished map in hand.<\/span><\/p>\r\n<p class=\"p1\">For extra credit, if Monica wanted to provide more information, she could use Arcade to concatenate (string together) multiple fields into one label. For example, if she wanted to include the enrollment numbers for each school, she could create a label like \u201cByers School District \u2013 2,570 students.\u201d The following Arcade expression would accomplish this:<\/p>\r\n<p class=\"p6\" style=\"padding-left: 40px;\"><span class=\"s1\">Proper($feature.NAME) + \u201c \u2013 \u201c + $feature.STUDENTS + \u201cstudents\u201d<\/span><\/p>\r\n<p class=\"p1\"><\/p>"},{"acf_fc_layout":"image","image":259442,"image_position":"center","orientation":"horizontal","hyperlink":""},{"acf_fc_layout":"content","content":"<h2 class=\"p7\">Style the Map Your Way<\/h2>\r\n<p class=\"p1\"><span class=\"s1\">A city worker in North Carolina (let\u2019s call him Steven) is tasked with ensuring that all electric scooters that the city rents maintain a charge of at least 50 percent. Steven sees a layer in his city\u2019s ArcGIS Online organization website that shows the current locations and battery levels of scooters throughout the city. Right now, it\u2019s simply a map with lots of dots, but he\u2019d like the map to highlight which scooters need an immediate charge, so he is going to use Arcade to style the map to highlight which scooters need immediate attention. <\/span><\/p>\r\n<p class=\"p1\">Unfortunately, the layer\u2019s battery level field (battery_level) is stored as a string, or text, in the layer. Steven could ask the data\u2019s owner to fix this in an upcoming update, but he knows that will take weeks. To do anything meaningful in the map, he must first convert the string field to a number field using the Number function in Arcade.<\/p>\r\n<p class=\"p4\" style=\"padding-left: 40px;\">Number($feature[\u201cbattery_level\u201d])<\/p>\r\n<p class=\"p1\"><span class=\"s1\">This is where things get interesting. He has been asked to make things very clear on the map, so Steven creates three categories\u2014Charge Immediately, Charge When Possible, or Fully Charged\u2014that are based on a numeric field that indicates the battery level.<\/span><\/p>\r\n<p class=\"p4\" style=\"padding-left: 40px;\">var battery = Number($feature[\u201cbattery_level\u201d])<\/p>\r\n<p class=\"p4\" style=\"padding-left: 40px;\">When (battery &lt; 50, \u201cCharge immediately\u201d,\r\nbattery &gt;= 50 &amp;&amp; battery &lt; 90, \u201cCharge When Possible\u201d,\r\n\u201cFully Charged\u201d)<\/p>\r\n<p class=\"p8\"><span class=\"s2\">\u3008<\/span> Listing 1<\/p>\r\n<p class=\"p1\">The code in Listing 1 is read as \u201cWhen the battery level is less than 50, return Charge Immediately, when the battery level is between 50 and 90, return Charge When Possible, and for all other values return Fully Charged.\u201d<\/p>\r\n<p class=\"p1\">These categories did not originally exist in the data, but with just a few lines of Arcade, Steven now has a map that is useful and will help him become more efficient with his time.<\/p>\r\n<p class=\"p1\">As a bonus, when the dataset updates with new scooter locations and battery levels, the Arcade expression incorporates the new information on the fly, so Steven does not need to manually recalculate values. For this reason, Arcade is especially useful with live feed data and datasets that update frequently.<\/p>\r\n<p class=\"p1\"><\/p>"},{"acf_fc_layout":"image","image":259452,"image_position":"center","orientation":"horizontal","hyperlink":""},{"acf_fc_layout":"content","content":"<h2 class=\"p2\">Make Your Layers Talk to Each Other<\/h2>\r\n<p class=\"p1\">A crime analyst at a police department in New York State (let\u2019s call her Connie) calculates the number of crimes that occur in each patrol car beat zone. Every time the data updates\u2014which is every week\u2014she must repeat her analysis and hardcode the total number of crimes within each zone.<\/p>\r\n<p class=\"p1\">The new FeatureSets option in Arcade lets two layers reference each other. Connie would like to use FeatureSets to make the police boundaries layer \u201ctalk\u201d with the crime points layer to calculate the number of crimes in each beat.<\/p>\r\n<p class=\"p1\">To do this, she adds an Arcade expression to the pop-up that counts the number of points in each polygon, which is shown in Listing 2.<\/p>\r\n<p class=\"p4\" style=\"padding-left: 40px;\">\/\/This is where the polygon layer (police beats) makes a \u201ccall\u201d to the point layer (crimes)<\/p>\r\n<p class=\"p4\" style=\"padding-left: 40px;\">var crimes = FeatureSetByName($map,\u201dRPD - Part I Crime 60 Days - RPD Part I Crime - Last 60 Days\u201d)<\/p>\r\n<p class=\"p4\" style=\"padding-left: 40px;\">\/\/Counts the number of crimes that intersect with the police beats layer<\/p>\r\n<p class=\"p4\" style=\"padding-left: 40px;\">var countCrimes = Count(Intersects($feature, crimes))<\/p>\r\n<p class=\"p4\" style=\"padding-left: 40px;\">\/\/Return the result of the variable created in the line above<\/p>\r\n<p class=\"p4\" style=\"padding-left: 40px;\">return countCrimes<\/p>\r\n<p class=\"p8\"><span class=\"s2\">\u3008<\/span> Listing 2<\/p>"},{"acf_fc_layout":"image","image":259472,"image_position":"center","orientation":"horizontal","hyperlink":""},{"acf_fc_layout":"content","content":"<p class=\"p1\">The first line makes a \u201ccall\u201d to the crime point layer in the web map. The second line counts all the crimes that fall within, or intersect, the patrol car beat. The last line returns the variable created in the second line. To make her pop-up even more meaningful, Connie can determine the distribution of the various types of crime using another Arcade expression that is shown in Listing 3.<\/p>\r\n<p class=\"p4\" style=\"padding-left: 40px;\">\/\/This is where the polygon layer (police beats) makes a call to the point layer (crimes)<\/p>\r\n<p class=\"p4\" style=\"padding-left: 40px;\">var crimes = FeatureSetByName($map,\u201dRPD - Part I Crime 60 Days - RPD Part I Crime - Last 60 Days\u201d)<\/p>\r\n<p class=\"p4\" style=\"padding-left: 40px;\">\/\/Filters the field Statute_Text to a specific type of crime and calculates the sum<\/p>\r\n<p class=\"p4\" style=\"padding-left: 40px;\">var larceny =Count(Intersects(Filter(crimes,\u201dStatute_Text LIKE %larceny%\u2019\u201d),$feature))<\/p>\r\n<p class=\"p4\" style=\"padding-left: 40px;\">var aggravatedAssault = Count(Intersects(Filter(crimes,\u201dStatute_Text LIKE \u2018%assault%\u2019\u201d),$feature))<\/p>\r\n<p class=\"p4\" style=\"padding-left: 40px;\">var burglary = Count(Intersects(Filter(crimes,\u201dStatute_Text LIKE \u2018%burglary%\u2019\u201d),$feature))<\/p>\r\n<p class=\"p4\" style=\"padding-left: 40px;\">var motorVehicleTheft = Count(Intersects(Filter(crimes,\u201dStatute_Text LIKE \u2018%vehicle%\u2019\u201d),$feature))<\/p>\r\n<p class=\"p4\" style=\"padding-left: 40px;\">var robbery = Count(Intersects(Filter(crimes,\u201dStatute_Text LIKE \u2018%robbery%\u2019\u201d),$feature))<\/p>\r\n<p class=\"p4\" style=\"padding-left: 40px;\">var murder = Count(Intersects(Filter(crimes,\u201dStatute_Text LIKE \u2018%murder%\u2019\u201d),$feature))<\/p>\r\n<p class=\"p4\" style=\"padding-left: 40px;\">\/\/Returns a breakdown of crime types in each police beat<\/p>\r\n<p class=\"p4\" style=\"padding-left: 40px;\">return \u201cLarceny: \u201c + larceny + TextFormatting.NewLine +<\/p>\r\n<p class=\"p4\" style=\"padding-left: 40px;\">\u201cAggravated Assault: \u201c + aggravatedAssault + TextFormatting.NewLine +<\/p>\r\n<p class=\"p4\" style=\"padding-left: 40px;\">\u201cBurglary: \u201c + burglary + TextFormatting.NewLine +<\/p>\r\n<p class=\"p4\" style=\"padding-left: 40px;\">\u201cMotor Vehicle Theft: \u201c + motorVehicleTheft + TextFormatting.NewLine +<\/p>\r\n<p class=\"p4\" style=\"padding-left: 40px;\">\u201cRobbery: \u201c + robbery + TextFormatting.NewLine +<\/p>\r\n<p class=\"p4\" style=\"padding-left: 40px;\">\u201cMurder: \u201c + murder<\/p>\r\n<p class=\"p8\"><span class=\"s2\">\u3008<\/span> Listing 3<\/p>\r\n<p class=\"p1\">Now, when the crime data updates, Connie\u2019s meaningful pop-up will automatically update with the new aggregation. Arcade has saved Connie hours of work and has freed her time for additional analysis work.<\/p>\r\n<p class=\"p1\"><\/p>"},{"acf_fc_layout":"image","image":259462,"image_position":"center","orientation":"horizontal","hyperlink":""},{"acf_fc_layout":"content","content":"<h2 class=\"p2\">Try Your Hand at Some Arcade Magic<\/h2>\r\n<p class=\"p1\">Arcade is a powerful tool that is used especially when you do not own the data or when the layers are updated frequently. You can use Arcade to edit labels, symbology, and pop-ups. For more information on Arcade, visit esriurl.com\/LearnArcade.<\/p>"}],"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>Arcade-a-Cadabra: This expression language can magically transform your maps<\/title>\n<meta name=\"description\" content=\"ArcGIS Arcade, an expression language, transforms data on the fly to create meaningful labels, symbology, and pop-ups that is useful when working with live feed data and layers that are owned by someone else.\" \/>\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\/arcuser\/arcade-magic\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Arcade-a-Cadabra: This expression language can magically transform your maps\" \/>\n<meta property=\"og:description\" content=\"ArcGIS Arcade, an expression language, transforms data on the fly to create meaningful labels, symbology, and pop-ups that is useful when working with live feed data and layers that are owned by someone else.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.esri.com\/about\/newsroom\/arcuser\/arcade-magic\" \/>\n<meta property=\"og:site_name\" content=\"Esri\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/esrigis\/\" \/>\n<meta property=\"article:modified_time\" content=\"2019-09-07T00:46:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.esri.com\/about\/newsroom\/app\/uploads\/2019\/08\/3q19_how2arcade_card.jpg\" \/>\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\">{\n\t    \"@context\": \"https:\/\/schema.org\",\n\t    \"@graph\": [\n\t        {\n\t            \"@type\": \"WebPage\",\n\t            \"@id\": \"https:\/\/www.esri.com\/about\/newsroom\/arcuser\/arcade-magic\",\n\t            \"url\": \"https:\/\/www.esri.com\/about\/newsroom\/arcuser\/arcade-magic\",\n\t            \"name\": \"Arcade-a-Cadabra: This expression language can magically transform your maps\",\n\t            \"isPartOf\": {\n\t                \"@id\": \"https:\/\/www.esri.com\/about\/newsroom\/#website\"\n\t            },\n\t            \"datePublished\": \"2019-08-16T21:02:39+00:00\",\n\t            \"dateModified\": \"2019-09-07T00:46:00+00:00\",\n\t            \"description\": \"ArcGIS Arcade, an expression language, transforms data on the fly to create meaningful labels, symbology, and pop-ups that is useful when working with live feed data and layers that are owned by someone else.\",\n\t            \"breadcrumb\": {\n\t                \"@id\": \"https:\/\/www.esri.com\/about\/newsroom\/arcuser\/arcade-magic#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\/arcuser\/arcade-magic\"\n\t                    ]\n\t                }\n\t            ]\n\t        },\n\t        {\n\t            \"@type\": \"BreadcrumbList\",\n\t            \"@id\": \"https:\/\/www.esri.com\/about\/newsroom\/arcuser\/arcade-magic#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\": \"Arcade-a-Cadabra: This expression language can magically transform your 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\/82e5143bcdebadf8fd64d84e503ca468\",\n\t            \"name\": \"Monica Pratt\",\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:\/\/www.esri.com\/about\/newsroom\/app\/uploads\/2018\/08\/MonicaMug_agol2.jpg\",\n\t                \"contentUrl\": \"https:\/\/www.esri.com\/about\/newsroom\/app\/uploads\/2018\/08\/MonicaMug_agol2.jpg\",\n\t                \"caption\": \"Monica Pratt\"\n\t            },\n\t            \"description\": \"Monica Pratt is the founding and current editor of ArcUser magazine, the executive editor of ArcNews magazine, the editor of Esri Globe and head of the Publications team at Esri. She has been writing on technology topics, specializing in GIS, for more than 30 years. Before joining Esri in 1997, she worked for newspapers and in the financial industry.\",\n\t            \"sameAs\": [\n\t                \"https:\/\/x.com\/ArcUser\"\n\t            ],\n\t            \"url\": \"\"\n\t        }\n\t    ]\n\t}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Arcade-a-Cadabra: This expression language can magically transform your maps","description":"ArcGIS Arcade, an expression language, transforms data on the fly to create meaningful labels, symbology, and pop-ups that is useful when working with live feed data and layers that are owned by someone else.","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\/arcuser\/arcade-magic","og_locale":"en_US","og_type":"article","og_title":"Arcade-a-Cadabra: This expression language can magically transform your maps","og_description":"ArcGIS Arcade, an expression language, transforms data on the fly to create meaningful labels, symbology, and pop-ups that is useful when working with live feed data and layers that are owned by someone else.","og_url":"https:\/\/www.esri.com\/about\/newsroom\/arcuser\/arcade-magic","og_site_name":"Esri","article_publisher":"https:\/\/www.facebook.com\/esrigis\/","article_modified_time":"2019-09-07T00:46:00+00:00","og_image":[{"url":"https:\/\/www.esri.com\/about\/newsroom\/app\/uploads\/2019\/08\/3q19_how2arcade_card.jpg","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_site":"@Esri","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.esri.com\/about\/newsroom\/arcuser\/arcade-magic","url":"https:\/\/www.esri.com\/about\/newsroom\/arcuser\/arcade-magic","name":"Arcade-a-Cadabra: This expression language can magically transform your maps","isPartOf":{"@id":"https:\/\/www.esri.com\/about\/newsroom\/#website"},"datePublished":"2019-08-16T21:02:39+00:00","dateModified":"2019-09-07T00:46:00+00:00","description":"ArcGIS Arcade, an expression language, transforms data on the fly to create meaningful labels, symbology, and pop-ups that is useful when working with live feed data and layers that are owned by someone else.","breadcrumb":{"@id":"https:\/\/www.esri.com\/about\/newsroom\/arcuser\/arcade-magic#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.esri.com\/about\/newsroom\/arcuser\/arcade-magic"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.esri.com\/about\/newsroom\/arcuser\/arcade-magic#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.esri.com\/about\/newsroom"},{"@type":"ListItem","position":2,"name":"Arcade-a-Cadabra: This expression language can magically transform your 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\/82e5143bcdebadf8fd64d84e503ca468","name":"Monica Pratt","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.esri.com\/about\/newsroom\/#\/schema\/person\/image\/","url":"https:\/\/www.esri.com\/about\/newsroom\/app\/uploads\/2018\/08\/MonicaMug_agol2.jpg","contentUrl":"https:\/\/www.esri.com\/about\/newsroom\/app\/uploads\/2018\/08\/MonicaMug_agol2.jpg","caption":"Monica Pratt"},"description":"Monica Pratt is the founding and current editor of ArcUser magazine, the executive editor of ArcNews magazine, the editor of Esri Globe and head of the Publications team at Esri. She has been writing on technology topics, specializing in GIS, for more than 30 years. Before joining Esri in 1997, she worked for newspapers and in the financial industry.","sameAs":["https:\/\/x.com\/ArcUser"],"url":""}]}},"sort_order":"7","_links":{"self":[{"href":"https:\/\/www.esri.com\/about\/newsroom\/wp-json\/wp\/v2\/arcuser\/259402","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.esri.com\/about\/newsroom\/wp-json\/wp\/v2\/arcuser"}],"about":[{"href":"https:\/\/www.esri.com\/about\/newsroom\/wp-json\/wp\/v2\/types\/arcuser"}],"author":[{"embeddable":true,"href":"https:\/\/www.esri.com\/about\/newsroom\/wp-json\/wp\/v2\/users\/1031"}],"version-history":[{"count":0,"href":"https:\/\/www.esri.com\/about\/newsroom\/wp-json\/wp\/v2\/arcuser\/259402\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.esri.com\/about\/newsroom\/wp-json\/wp\/v2\/media?parent=259402"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.esri.com\/about\/newsroom\/wp-json\/wp\/v2\/categories?post=259402"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.esri.com\/about\/newsroom\/wp-json\/wp\/v2\/tags?post=259402"},{"taxonomy":"arcuser_issues","embeddable":true,"href":"https:\/\/www.esri.com\/about\/newsroom\/wp-json\/wp\/v2\/arcuser_issues?post=259402"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}