{"id":270392,"date":"2011-07-21T18:17:19","date_gmt":"2011-07-22T01:17:19","guid":{"rendered":"http:\/\/www.esri.com\/arcgis-blog\/?post_type=blog&#038;p=270392"},"modified":"2018-07-06T10:43:16","modified_gmt":"2018-07-06T17:43:16","slug":"calculating-geodesic-distance-between-points","status":"publish","type":"blog","link":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/analytics\/calculating-geodesic-distance-between-points","title":{"rendered":"Calculating Geodesic Distance Between Points"},"author":3641,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","format":"standard","meta":{"_acf_changed":false,"_searchwp_excluded":""},"categories":[23341],"tags":[34051,24321,24331,43741],"industry":[],"product":[36991],"class_list":["post-270392","blog","type-blog","status-publish","format-standard","hentry","category-analytics","tag-geodesic","tag-geoprocessing","tag-modelbuilder","tag-proximity","product-arcgis-desktop"],"acf":{"short_description":"Key enhancements to make distance measurement through geoprocessing better than ever, namely by calculating geodesic distances.","flexible_content":[{"acf_fc_layout":"content","content":"<p>NOTE: Starting in ArcGIS Desktop 10.2.1, the proximity tools Near and Generate Near Table can measure geodesic distances, so there is no longer a need for the workaround below. You can learn more here:\u00a0<a href=\"http:\/\/desktop.arcgis.com\/en\/arcmap\/latest\/tools\/analysis-toolbox\/analysis-toolbox-history.htm#GUID-FB944CD8-9D92-4146-B6DD-2562F682CCC5\" rel=\"nofollow\">http:\/\/desktop.arcgis.com\/en\/arcmap\/latest\/tools\/analysis-toolbox\/analysis-toolbox-history.htm#GUID-FB944CD8-9D92-4146-B6DD-2562F682CCC5<\/a><\/p>\n<p>Going back to the very early days of ArcGIS there have been geoprocessing tools for calculating distances between features. Tools like Near, Point Distance, and Buffer have been around for many releases, and perform key analysis in a number of common GIS workflows. These distance-measuring tools have always worked well and calculated very accurate distances for features concentrated in a relatively small area (a city, state, or single UTM zone) with an appropriate projected coordinate system that minimizes distance distortion. Unfortunately, for groups of features spread over larger areas (regions, countries, or the world!), or for datasets with a geographic coordinate system, these tools have historically produced results that were less than perfect.<\/p>\n<p><!--more--><\/p>\n<p>In the last few releases, and continuing in future releases, more emphasis has been placed on calculating accurate distances for that second scenario: features covering a large area, or datasets with a geographic coordinate system. Some key enhancements are in the works to make distance measurement through geoprocessing better than ever, namely by calculating <a href=\"http:\/\/resources.arcgis.com\/glossary\/term\/517\" target=\"_blank\">geodesic<\/a> distances in the scenarios described above (geodesic distance is the distance measured along the shortest route between two points on the Earth&#8217;s surface).<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignleft\" src=\"http:\/\/edn1.esri.com\/blogimages\/gp\/072111_1817_Calculating1.png\" alt=\"\" width=\"100\" height=\"121\" \/><\/p>\n<p>In 10.0 Service Pack 2, an enhancement has been made to enable the calculation of geodesic distance along a line. This is done with a line feature class in a geographic coordinate system using the <a href=\"http:\/\/help.arcgis.com\/en\/arcgisdesktop\/10.0\/help\/index.html#\/\/00170000004m000000.htm%29\" target=\"_blank\">Calculate Field<\/a> tool and specifying an expression like<span style=\"font-family: Courier\"> !Shape.length@meters!<\/span> . This functionality can be included in a longer workflow to calculate geodesic distance between points.<\/p>\n<p>The model summarized below produces output similar to the <a href=\"http:\/\/help.arcgis.com\/en\/arcgisdesktop\/10.0\/help\/index.html#\/\/00080000001n000000.htm\" target=\"_blank\">Generate Near Table<\/a> tool; given Input Points and Near Points datasets, find the geodesic distance from each input point to each near point and record that distance in a new table. You can download this model and sample data from the Geoprocessing Resource Center Model and Script Tool Gallery <a href=\"http:\/\/resources.arcgis.com\/gallery\/file\/geoprocessing\/details?entryID=C0E67091-1422-2418-A09E-45FB0ACEDD6C\" target=\"_blank\">here<\/a>, and run the tool with your own point datasets that have a geographic coordinate system (some modification to the model may be required).<\/p>\n<p>Since this geodesic distance calculation relies on the measurement of lines, we need a way to create line features between all input points and near points. The <a href=\"http:\/\/help.arcgis.com\/en\/arcgisdesktop\/10.0\/help\/index.html#\/\/0017000000tv000000.htm\" target=\"_blank\">XY To Line<\/a> tool can be used to accomplish this, but first there are a few steps that must be done to setup the workflow and produce a table that can be used with the <strong>XY To Line<\/strong> tool. Given that the <strong>XY To Line<\/strong> tool requires a table of XY coordinates as input, first add XY coordinate information to both the <em>Input Points<\/em> and <em>Near Points<\/em> using the <a href=\"http:\/\/help.arcgis.com\/en\/arcgisdesktop\/10.0\/help\/index.html#\/Add_XY_Coordinates\/001700000032000000\/\" target=\"_blank\">Add XY Coordinates<\/a> tool.<\/p>\n<p><img decoding=\"async\" src=\"http:\/\/edn1.esri.com\/blogimages\/gp\/072111_1817_Calculating2.png\" alt=\"\" \/><img decoding=\"async\" src=\"http:\/\/edn1.esri.com\/blogimages\/gp\/072111_1817_Calculating3.png\" alt=\"\" \/><img decoding=\"async\" src=\"http:\/\/edn1.esri.com\/blogimages\/gp\/072111_1817_Calculating4.png\" alt=\"\" \/><\/p>\n<p>Next, use the <a href=\"http:\/\/help.arcgis.com\/en\/arcgisdesktop\/10.0\/help\/index.html#\/Generate_Near_Table\/00080000001n000000\/\" target=\"_blank\">Generate Near Table<\/a> tool to setup what will become the <em>Output Table<\/em> (note that the NEAR_DIST values produced by the <strong>Generate Near Table<\/strong> tool are in decimal degrees \u2013 not geodesic distances).<\/p>\n<p><img decoding=\"async\" src=\"http:\/\/edn1.esri.com\/blogimages\/gp\/072111_1817_Calculating5.png\" alt=\"\" \/><img decoding=\"async\" src=\"http:\/\/edn1.esri.com\/blogimages\/gp\/072111_1817_Calculating6.png\" alt=\"\" \/><\/p>\n<p>After creating the <em>Output Table<\/em>, use the <a href=\"http:\/\/help.arcgis.com\/en\/arcgisdesktop\/10.0\/help\/index.html#\/Join_Field\/001700000065000000\/\" target=\"_blank\">Join Field<\/a> tool to move the coordinate information from the <em>Input Points<\/em> and <em>Near Points<\/em> to the <em>Output Table<\/em>. Also, a unique identifier field will be required later, so add a new ID field using <a href=\"http:\/\/help.arcgis.com\/en\/arcgisdesktop\/10.0\/help\/index.html#\/Add_Field\/001700000047000000\/\" target=\"_blank\">Add Field<\/a> and calculate it equal to the <em>Output Table<\/em> ObjectID field using <a href=\"http:\/\/help.arcgis.com\/en\/arcgisdesktop\/10.0\/help\/index.html#\/Calculate_Field\/00170000004m000000\/\" target=\"_blank\">Calculate Field<\/a>.<\/p>\n<p><img decoding=\"async\" src=\"http:\/\/edn1.esri.com\/blogimages\/gp\/072111_1817_Calculating7.png\" alt=\"\" \/><img decoding=\"async\" src=\"http:\/\/edn1.esri.com\/blogimages\/gp\/072111_1817_Calculating8.png\" alt=\"\" \/><\/p>\n<p>Now that the <em>Output Table<\/em> is set up to be used correctly with the <strong>XY To Line<\/strong> tool (with Start and End coordinates stored in separate fields), run <strong>XY To Line<\/strong> to create line features between each input point and near point. These will be the lines that can be measured to obtain geodesic distances.<\/p>\n<p><img decoding=\"async\" src=\"http:\/\/edn1.esri.com\/blogimages\/gp\/072111_1817_Calculating9.png\" alt=\"\" \/><img decoding=\"async\" src=\"http:\/\/edn1.esri.com\/blogimages\/gp\/072111_1817_Calculating10.png\" alt=\"\" \/><\/p>\n<p><span style=\"color: #4f81bd;font-size: 6pt\"><strong>Output of XY To Line<br \/>\n<\/strong><\/span><\/p>\n<p>Next, add a new model variable, <em>Linear Unit<\/em>, which can be used to specify the unit in which to calculate the geodesic distance (meters, kilometers, feet, miles, etc.). Then add a new field &#8216;GEO_DIST&#8217; and calculate it as the geodesic distance along the lines using a calculation expression<span style=\"font-family: Courier\">!Shape.length@%Linear Unit%!<\/span>, then join these distances back to the <em>Output Table<\/em>. Finally, clean up the <em>Output Table<\/em> by deleting any unnecessary or intermediate fields.<\/p>\n<p><img decoding=\"async\" src=\"http:\/\/edn1.esri.com\/blogimages\/gp\/072111_1817_Calculating11.png\" alt=\"\" \/><\/p>\n<p>The output of the workflow will look like the table pictured below, where the field GEO_DIST contains the geodesic distance between the points identified in the IN_FID and NEAR_FID fields, in the unit specified in the <em>Linear Unit <\/em>variable. Comparing these geodesic distances to <a href=\"http:\/\/resources.arcgis.com\/glossary\/term\/457\" target=\"_blank\">Euclidean<\/a> distances (based on a Mercator projection) shows how inaccurate distance measurements can be if they are performed in an inappropriate coordinate system or at an inappropriate scale.<\/p>\n<p><img decoding=\"async\" src=\"http:\/\/edn1.esri.com\/blogimages\/gp\/072111_1817_Calculating12.png\" alt=\"\" \/><img decoding=\"async\" src=\"http:\/\/edn1.esri.com\/blogimages\/gp\/072111_1817_Calculating13.png\" alt=\"\" \/><\/p>\n<p>Geodesic distances calculated by this model, and Euclidean distances calculated by the <strong>Generate Near Table<\/strong> tool.<\/p>\n"}],"authors":[{"ID":5181,"user_firstname":"Drew","user_lastname":"Flater","nickname":"Drew Flater","user_nicename":"drewf","display_name":"Drew Flater","user_email":"dflater@esri.com","user_url":"","user_registered":"2018-03-02 00:16:51","user_description":"Group Lead Product Engineer for the Geoprocessing development team at Esri, leading and contributing to projects across ArcGIS products with focus on ArcGIS Pro.\r\nDrew joined Esri in 2008, after completing his Masters in GIS at the University of Akron. Now he designs, codes, tests, and documents tools that can be used to understand and find meaning in raw geospatial data. He works to make Esri's geoprocessing and analytical capabilities easy to use and automate.","user_avatar":"<img data-del=\"avatar\" src='https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2024\/05\/drew-465x465.jpg' class='avatar pp-user-avatar avatar-96 photo ' height='96' width='96'\/>"}],"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>Calculating Geodesic Distance Between Points<\/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\/analytics\/calculating-geodesic-distance-between-points\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Calculating Geodesic Distance Between Points\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/analytics\/calculating-geodesic-distance-between-points\" \/>\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-07-06T17:43:16+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\/analytics\/calculating-geodesic-distance-between-points#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/analytics\/calculating-geodesic-distance-between-points\"},\"author\":{\"name\":\"Blog Administrator\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/1da11045bb87980133582f3a4581d0bc\"},\"headline\":\"Calculating Geodesic Distance Between Points\",\"datePublished\":\"2011-07-22T01:17:19+00:00\",\"dateModified\":\"2018-07-06T17:43:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/analytics\/calculating-geodesic-distance-between-points\"},\"wordCount\":5,\"publisher\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#organization\"},\"keywords\":[\"Geodesic\",\"geoprocessing\",\"ModelBuilder\",\"proximity\"],\"articleSection\":[\"Analytics\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/analytics\/calculating-geodesic-distance-between-points\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/analytics\/calculating-geodesic-distance-between-points\",\"name\":\"Calculating Geodesic Distance Between Points\",\"isPartOf\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#website\"},\"datePublished\":\"2011-07-22T01:17:19+00:00\",\"dateModified\":\"2018-07-06T17:43:16+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/analytics\/calculating-geodesic-distance-between-points#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/analytics\/calculating-geodesic-distance-between-points\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/analytics\/calculating-geodesic-distance-between-points#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.esri.com\/arcgis-blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Calculating Geodesic Distance Between Points\"}]},{\"@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\/1da11045bb87980133582f3a4581d0bc\",\"name\":\"Blog Administrator\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b7569a7328f10a9673c6996938c4db3a5a577f01c146bb1b3069fc6994b3a809?s=96&d=blank&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b7569a7328f10a9673c6996938c4db3a5a577f01c146bb1b3069fc6994b3a809?s=96&d=blank&r=g\",\"caption\":\"Blog Administrator\"},\"description\":\"Wearer of many hats!\",\"url\":\"\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Calculating Geodesic Distance Between Points","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\/analytics\/calculating-geodesic-distance-between-points","og_locale":"en_US","og_type":"article","og_title":"Calculating Geodesic Distance Between Points","og_url":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/analytics\/calculating-geodesic-distance-between-points","og_site_name":"ArcGIS Blog","article_publisher":"https:\/\/www.facebook.com\/esrigis\/","article_modified_time":"2018-07-06T17:43:16+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\/analytics\/calculating-geodesic-distance-between-points#article","isPartOf":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/analytics\/calculating-geodesic-distance-between-points"},"author":{"name":"Blog Administrator","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/1da11045bb87980133582f3a4581d0bc"},"headline":"Calculating Geodesic Distance Between Points","datePublished":"2011-07-22T01:17:19+00:00","dateModified":"2018-07-06T17:43:16+00:00","mainEntityOfPage":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/analytics\/calculating-geodesic-distance-between-points"},"wordCount":5,"publisher":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#organization"},"keywords":["Geodesic","geoprocessing","ModelBuilder","proximity"],"articleSection":["Analytics"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/analytics\/calculating-geodesic-distance-between-points","url":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/analytics\/calculating-geodesic-distance-between-points","name":"Calculating Geodesic Distance Between Points","isPartOf":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#website"},"datePublished":"2011-07-22T01:17:19+00:00","dateModified":"2018-07-06T17:43:16+00:00","breadcrumb":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/analytics\/calculating-geodesic-distance-between-points#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/analytics\/calculating-geodesic-distance-between-points"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-desktop\/analytics\/calculating-geodesic-distance-between-points#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.esri.com\/arcgis-blog\/"},{"@type":"ListItem","position":2,"name":"Calculating Geodesic Distance Between Points"}]},{"@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\/1da11045bb87980133582f3a4581d0bc","name":"Blog Administrator","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b7569a7328f10a9673c6996938c4db3a5a577f01c146bb1b3069fc6994b3a809?s=96&d=blank&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b7569a7328f10a9673c6996938c4db3a5a577f01c146bb1b3069fc6994b3a809?s=96&d=blank&r=g","caption":"Blog Administrator"},"description":"Wearer of many hats!","url":""}]}},"text_date":"July 21, 2011","author_name":"Drew Flater","author_page":"https:\/\/www.esri.com\/arcgis-blog\/author\/drewf","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":34051,"name":"Geodesic","slug":"geodesic","term_group":0,"term_taxonomy_id":34051,"taxonomy":"post_tag","description":"","parent":0,"count":4,"filter":"raw"},{"term_id":24321,"name":"geoprocessing","slug":"geoprocessing","term_group":0,"term_taxonomy_id":24321,"taxonomy":"post_tag","description":"","parent":0,"count":131,"filter":"raw"},{"term_id":24331,"name":"ModelBuilder","slug":"modelbuilder","term_group":0,"term_taxonomy_id":24331,"taxonomy":"post_tag","description":"","parent":0,"count":28,"filter":"raw"},{"term_id":43741,"name":"proximity","slug":"proximity","term_group":0,"term_taxonomy_id":43741,"taxonomy":"post_tag","description":"","parent":0,"count":3,"filter":"raw"}],"category_data":[{"term_id":23341,"name":"Analytics","slug":"analytics","term_group":0,"term_taxonomy_id":23341,"taxonomy":"category","description":"","parent":0,"count":1333,"filter":"raw"}],"product_data":[{"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\/270392","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\/3641"}],"replies":[{"embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/comments?post=270392"}],"version-history":[{"count":0,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/blog\/270392\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/media?parent=270392"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/categories?post=270392"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/tags?post=270392"},{"taxonomy":"industry","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/industry?post=270392"},{"taxonomy":"product","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/product?post=270392"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}