<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Geocoding using the SDK in Java Maps SDK Questions</title>
    <link>https://community.esri.com/t5/java-maps-sdk-questions/geocoding-using-the-sdk/m-p/600761#M1838</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sorry for the late response, but thank you both. The information you gave me really helped.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 May 2013 14:43:46 GMT</pubDate>
    <dc:creator>AlexSarracino</dc:creator>
    <dc:date>2013-05-02T14:43:46Z</dc:date>
    <item>
      <title>Geocoding using the SDK</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/geocoding-using-the-sdk/m-p/600758#M1835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The company I currently work for uses ArcGIS Desktop to geocode a bunch of addresses. We want to automate the process a bit, so I was wondering if it was possible to use a class like the locator or the localGeocodeService class with the .loc file we normally to automate this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Apr 2013 18:51:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/geocoding-using-the-sdk/m-p/600758#M1835</guid>
      <dc:creator>AlexSarracino</dc:creator>
      <dc:date>2013-04-19T18:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: Geocoding using the SDK</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/geocoding-using-the-sdk/m-p/600759#M1836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You should be able to write some basic Java code to extract the contents of a .loc file without too much difficulty.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The SDK has 2 geocode operations which may be of interest to you:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; - Geocode - which takes in an address string and returns a geographical point&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; - Reverse Geocode - which takes a geographic point and returns an address string(s) for the address closest to that point&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Both these bits of functionality are available offline (local server) or by using online services.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you already have the SDK then there is a sample application which demonstrates how the above operations work.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think you should be able to write a slick batch geocoder if you consider the use the thread pools to speed up the operation.&amp;nbsp; Geocoding or reverse geocoding large batches in a single thread (one after the other), might be a slow process.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Does this help?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Mark&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Apr 2013 15:38:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/geocoding-using-the-sdk/m-p/600759#M1836</guid>
      <dc:creator>MarkBaird</dc:creator>
      <dc:date>2013-04-20T15:38:17Z</dc:date>
    </item>
    <item>
      <title>Re: Geocoding using the SDK</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/geocoding-using-the-sdk/m-p/600760#M1837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Also note that in the same Locator class we have methods for batch geocoding, e.g. in our Javadoc here:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/en/help/runtime-java/apiref/com/esri/core/tasks/ags/geocode/Locator.html#batchAddressToLocationAsync(java.util.List, com.esri.core.map.CallbackListener)"&gt;http://resources.arcgis.com/en/help/runtime-java/apiref/com/esri/core/tasks/ags/geocode/Locator.html#batchAddressToLocationAsync(java.util.List, com.esri.core.map.CallbackListener)&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Ultimately those take similar input as the (one at a time) geocoding methods in Locator, so you still have to read in/prepare your data in the same way.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;~elise&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Apr 2013 15:16:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/geocoding-using-the-sdk/m-p/600760#M1837</guid>
      <dc:creator>EliseAcheson1</dc:creator>
      <dc:date>2013-04-24T15:16:13Z</dc:date>
    </item>
    <item>
      <title>Re: Geocoding using the SDK</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/geocoding-using-the-sdk/m-p/600761#M1838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sorry for the late response, but thank you both. The information you gave me really helped.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 May 2013 14:43:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/geocoding-using-the-sdk/m-p/600761#M1838</guid>
      <dc:creator>AlexSarracino</dc:creator>
      <dc:date>2013-05-02T14:43:46Z</dc:date>
    </item>
  </channel>
</rss>

