|
POST
|
Tiffany, use raw text notation for data like that, you have '\t' in the path, which is a tab when read. i.e put 'r' ahead of your string: r"C:\\Users\\tselvidge\\AppData\\Roaming\\ESRI\\Desktop10.3\\ArcCatalog\\[email protected]\\ArcDEV.GISOWNER.ParcelAddrFacet_geo"
... View more
01-29-2016
01:23 PM
|
1
|
10
|
2943
|
|
POST
|
Hi You should add the World Service from geocode.arcgis.com, not tasks, then you will have this GIS Server: GIS Servers\arcgis on geocode.arcgis.com (user)\World.GeocodeServer It works with the Reverse Geocode tool, but be aware it will consume credits. Regards
... View more
01-26-2016
12:18 PM
|
0
|
1
|
1967
|
|
POST
|
Hi You should connect to ArcGIS Online in your session and use the World Service. you will get street addresses. Regards
... View more
01-26-2016
10:45 AM
|
1
|
3
|
1967
|
|
POST
|
Yes, you can drag a CSV file onto a web map and geocode up to 1000 records, then optionally persist them as a feature service. Another workflow is to upload a CSV file to your content and publish it - this will handle more records. A third way is using the geocodeAddresses endpoint of the REST API, if you want to develop an app. ArcGIS Online Help | ArcGIS
... View more
01-22-2016
10:27 AM
|
1
|
1
|
2210
|
|
POST
|
Please take a look at this sample and see if it does what you need: http://www.arcgis.com/home/item.html?id=e638afe0695a4ad38388cb8d9b350446
... View more
01-20-2016
08:30 AM
|
1
|
1
|
1580
|
|
POST
|
Hi FME 2016 supports insert, update and delete for feature services, including multiple service layers. This functionality will come to Esri's Data Interoperability extension too, later this year.
... View more
01-19-2016
08:26 AM
|
1
|
0
|
1865
|
|
POST
|
Hi, the SearchCursor was just fo rme to get hold of a feature to create GeoJSON. I guess you're dealing with that as an input.
... View more
01-08-2016
09:54 AM
|
2
|
1
|
4408
|
|
POST
|
Hi Here is a code snippet: I found a multipart polygon from some polygon features I had laying around: with arcpy.da.SearchCursor('Suburbs','shape@') as cursor: for row in cursor: gj = row[0].__geo_interface__ if row[0].partCount > 1: print('Biggie') break Biggie The variable 'gj' now has GeoJSON in it. Grab the array from geometry made from it and create a new geometry with a spatial reference aPoly = arcpy.Polygon(arcpy.AsShape(gj,False).getPart(),arcpy.SpatialReference(2193)) Check the spatial reference: aPoly.spatialReference.name 'NZGD_2000_New_Zealand_Transverse_Mercator' Regards
... View more
01-07-2016
02:29 PM
|
2
|
3
|
4408
|
|
POST
|
Hi You need to make a geometry instance from the array you get out of the geometry feature made by AsShape(). The spatial reference is read only with any geometry object. If your geometry collection is all polygons then AsShape(<geojsondictionary>,False) should make a multipart polygon. If you have a big GeoJSON handling problem then consider the Data Interoperability extension, it can read GeoJSON input and write Esri geometry with less pain :-). Regards BTW, Jason S. no longer works here
... View more
01-07-2016
01:00 PM
|
1
|
9
|
4408
|
|
POST
|
Excel files are supported when geocoding against the ArcGIS Online World service, if that is the locator you are using. It is possible your file had some cell values that cannot be converted to string values or are null in a required input like the address field, try converting the file to a geodatabase table with Excel to Table first. Regards
... View more
01-07-2016
08:22 AM
|
1
|
0
|
1519
|
|
POST
|
Hi If you have the Data Interchangeability extension then there are a lot of tools there for handling Excel as a format and nulls in data. Like the other contributors say, Excel doesn't support a schema so getting it into a georelational environment can be challenging. Regards
... View more
01-06-2016
01:35 PM
|
0
|
2
|
3722
|
|
POST
|
Hi You might consider leveraging the World Geocode Service for his function. Here is an example that filters on street names in Belton TX that are 'Davis Streets': http://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer/find?text=Davis%20St%20Belton%20TX&category=Street%20… The example only finds a single candidate, but there is spelling handling, like this search for Jackson St with a typo: http://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer/find?text=Jacksin%20St%20Belton%20TX&category=Street%… Regards
... View more
01-04-2016
08:07 AM
|
0
|
0
|
5825
|
|
POST
|
Hi findAddressCandidates does not return the Status field which would contain a value 'T' if an address was a tie, but geocodeAddresses does, which is another reason to use that call. Score is not a reliable metric on its own; even within a single category there can be multiple locators that supply candidates, and a 100% match to a street name is still worse than a 99% match to a rooftop because of a small typo. You can safely go with the candidate order returned by geocodeAddresses. Rank is a loaded word because there is a returned field 'Rank' used to boost place names by population (think Paris, France versus Paris, TX). The candidates are ordered by positional quality. Regards
... View more
12-29-2015
09:43 AM
|
0
|
0
|
1910
|
|
POST
|
Hi There isn't a score filter, but you can limit the candidate count (for example to 1 for a 'best' candidate). For findAddressCandidates the maxLocations parameter does this. (the maxCandidates parameter isn't supported, its a doc bug). For batch work you should use the geocodeAddresses endpoint and not repeated calls to findAddressCandidates or find, then you'll get a single best candidate per record. regards
... View more
12-28-2015
08:45 AM
|
0
|
2
|
1911
|
|
POST
|
The Data Interoperability extension can write images into cells in an Excel spreadsheet. It isn't clear what format your data (other than BMP files) are in but if it is something DI can read (or it can be made so) then you should be able to make an XLS or XLSX with your images embedded.
... View more
12-21-2015
07:52 AM
|
0
|
0
|
4296
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 1 | 3 weeks ago | |
| 1 | 3 weeks ago | |
| 4 | 05-28-2026 05:58 AM | |
| 1 | 05-15-2026 06:54 AM |
| Online Status |
Offline
|
| Date Last Visited |
Friday
|