|
POST
|
Good point; it was just a WAG on my part (wild a$$ guess). Let's see if @BradNiemand can weigh in on this discussion.
... View more
02-22-2021
11:57 AM
|
0
|
0
|
3286
|
|
POST
|
Ideally, I would like only point address suggestions when searching for an address rather than results from both roles. I have to think this is expected behavior. You might start a tech support case to be sure though.
... View more
02-22-2021
11:13 AM
|
0
|
1
|
3292
|
|
POST
|
They are linked by a parcel join id and parcels contain site addresses as well. Linked where? In the locator? Our parcel data has address information in it as well, but I only use the parcel role for Parcel ID.
... View more
02-22-2021
10:19 AM
|
0
|
2
|
3306
|
|
POST
|
ArcGIS Pro seems to be struggling... My guess is your graphics card is what's struggling; I was doing a bunch of lidar cloud work sometime back and we put in a 'better' graphics card which worked great. Until it burned up...
... View more
02-22-2021
07:28 AM
|
0
|
0
|
1402
|
|
POST
|
... Have they let us name the cloned environments yet? They meaning the ESRI ArcGIS Pro cloning methodology? The answer is yes. I treat clones as disposable so if something goes south with one I delete and re-clone. In the image below, you'll see that I have a directory in C: called 'EnvClones' where I write them to. This is what my C:\EnvClones looks like in file explorer: The MiniConda isn't really a clone but rather a python environment I created with a Miniconda install.
... View more
02-19-2021
11:51 AM
|
1
|
1
|
9571
|
|
POST
|
I know Dan isn't a big fan of clones, but I do them all the time, and I have a few python environments that serve different purposes for me. When it comes to adding packages to an ArcGIS Pro clone, I typically use conda install <packageName> rather than using the installer provided in ArcGIS Pro. In fact I haven't used that approach since yesterday. when I installed spyder in my latest pro 2.7 clone. This is my go to conda command document: https://conda.io/projects/conda/en/latest/_downloads/843d9e0198f2a193a3484886fa28163c/conda-cheatsheet.pdf
... View more
02-19-2021
11:42 AM
|
0
|
0
|
9580
|
|
POST
|
Does this help? https://community.esri.com/t5/arcgis-data-interoperability/using-odbc-data-sources-in-arcgis-pro-optionally-including-accdb/ba-p/883706
... View more
02-19-2021
07:12 AM
|
0
|
1
|
8555
|
|
POST
|
...different from ArcGIS Pro (Definition Query) which is the ideal filtering tool... I think the answer is in your question; neither of those two other platforms are designed to do what Pro does....
... View more
02-19-2021
07:04 AM
|
0
|
1
|
2693
|
|
POST
|
There are a few threads in the Geonet community you may want to chase down. Here's one: https://community.esri.com/t5/geodatabase-questions/arcgis-pro-and-local-sql-express-db/td-p/876825
... View more
02-18-2021
07:17 AM
|
1
|
1
|
2226
|
|
POST
|
Okay- so there will be some manual interaction as we've discussed before.
... View more
02-17-2021
02:32 PM
|
0
|
1
|
2127
|
|
POST
|
I've used the locator class as the finishing touch to a create locator script: # -*- coding: utf-8 -*-
"""
Created on Fri Dec 18 10:06:14 2020
@author: jborgione
Single Role Street Address Locator
"""
import arcpy
arcpy.env.overwriteOutput = True
arcpy.SetLogHistory(False)
''' Set the stage and create the locator'''
locatorDir = r'N:\GIS\Geocoding'
locatorName = 'SingleRoleStreetAddressLocator'
outLocator = f'{locatorDir}\{locatorName}'
language = 'ENG'
country = 'USA'
inTable = "https://pathTo/rest/services/internalDrive/FeatureServer/9 StreetAddress;"
fieldMapping = "'StreetAddress.HOUSE_NUMBER_FROM_LEFT 9.FROMADDR_L';"\
"'StreetAddress.HOUSE_NUMBER_TO_LEFT 9.TOADDR_L';"\
"'StreetAddress.HOUSE_NUMBER_FROM_RIGHT 9.FROMADDR_R';"\
"'StreetAddress.HOUSE_NUMBER_TO_RIGHT 9.TOADDR_R';"\
"'StreetAddress.STREET_PREFIX_DIR 9.PREDIR';"\
"'StreetAddress.STREET_NAME 9.NAME';"\
"'StreetAddress.STREET_SUFFIX_TYPE 9.POSTTYPE';"\
"'StreetAddress.STREET_SUFFIX_DIR 9.POSTDIR';"\
"'StreetAddress.CITY_LEFT 9.INCMUNI_L';"\
"'StreetAddress.CITY_RIGHT 9.INCMUNI_R';"\
"'StreetAddress.METRO_AREA_LEFT 9.UNINCCOM_L';"\
"'StreetAddress.METRO_AREA_RIGHT 9.UNINCCOM_R';"
arcpy.geocoding.CreateLocator(country, inTable, fieldMapping, outLocator, language)
''' With the locator now created, use the new locator class to set values
of various properties'''
locatorPath = f'{outLocator}.loc'
locator = arcpy.geocoding.Locator(locatorPath)
locator.matchOutOfRange = False
locator.minCandidateScore = 80
locator.minMatchScore = 85
locator.categories = 'Street Address,Intersection'
locator.reverseGeocodeFeatureTypes = 'StreetInt,StreetAddress'
locator.updateLocator()
... View more
02-17-2021
02:30 PM
|
0
|
0
|
6000
|
|
POST
|
Just upgraded to 2.7: While I haven't created a new locator I can adjust the offset to existing ones that were created in 2.6 which is cool @BradNiemand are the offset properties available in arcpy?
... View more
02-17-2021
02:17 PM
|
0
|
5
|
6010
|
|
POST
|
Create Address Locator is so passe. Since we are strictly a Pro shop, I use only use Create Locator. After 2.6 the old style address locators are no longer supported, and I'm guessing that was part of the motivation to add setting the offset at 2.7. You know how much I love to upgrade versions. Here goes... 😱
... View more
02-17-2021
01:51 PM
|
0
|
1
|
6030
|
|
POST
|
I've looked in the online help, googled, and have created a new locator thinking I have missed something. Is there a way to set an offset in a street address role locator? (ArcGIS Pro 2.6) Edited to add: Looks like in 2.7 it's available. https://pro.arcgis.com/en/pro-app/latest/help/data/geocoding/tips-for-improving-geocoding-quality.htm @BradNiemand
... View more
02-17-2021
01:25 PM
|
0
|
12
|
7359
|
|
POST
|
Migrating to Arcade is something you'll get used to. Eventually! If you could, add your rules code to a code window it will be much easier to read than the images you included. Click on the three dots to expand the tool bar, and select Insert/Edit code button that looks like this: </> For arcade I use the Java Script option.
... View more
02-17-2021
12:06 PM
|
0
|
0
|
2216
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-11-2018 07:12 AM | |
| 1 | 05-17-2021 11:18 AM | |
| 1 | 06-29-2021 11:42 AM | |
| 1 | 07-05-2012 07:49 AM | |
| 1 | 09-03-2016 06:16 AM |
| Online Status |
Offline
|
| Date Last Visited |
05-19-2026
11:56 AM
|