POST
|
@Philip_Sarnecki you may get better performance using an Update Cursor rather than the field calculator. Ex: import arcpy
pointFC = r"C:\temp\test.gdb\points"
polygonFC = r"C:\temp\test.gdb\polygons"
# Perform Spatial Join
spatialJoinFC = arcpy.SpatialJoin_analysis(.....)
# Create lookup dictionary
nameDict = {}
with arcpy.da.SearchCursor(spatialJoinFC, ["uniqueId", "area_name"]) as cursor:
for row in cursor:
nameDict[row[0]] = row[1]
del cursor
# Update point feature class
with arcpy.da.UpdateCursor(pointFC, ["uniqueId", "name"]) as cursor:
for row in cursor:
row[1] = nameDict[row[0]]
cursor.updateRow(row)
del cursor
... View more
yesterday
|
2
|
1
|
84
|
POST
|
Hi @Jay_Gregory, I don't know the specifics of how the distributed collaboration works, but I know GlobalIDs are required to create copies of the data and keep them in-sync, so I agree with you that the recreation of this field is the culprit. Are there several feature classes/tables that are updated via SQL that participate in your collaboration? It may be worth exploring other options outside of a distributed collaboration to keep these datasets in-sync. Here is one solution I've implemented with several customers: https://community.esri.com/t5/arcgis-online-documents/overwrite-arcgis-online-feature-service-using/ta-p/904457
... View more
Wednesday
|
0
|
0
|
114
|
POST
|
If you can get the spreadsheet in a CSV format, you can use the Watch a Folder for New CSV Files input.
... View more
Tuesday
|
0
|
0
|
42
|
POST
|
You won't be able to update the point feature service, but you can output the buffers to a new polygon feature service using the Buffer Creator processor. Below is an example of how this is setup. It's getting the buffer distance from a field called distance: For the Coordinate System, make sure you specify a Projected Coordinate System.
... View more
Tuesday
|
0
|
0
|
63
|
POST
|
Hi @JeffSilberberg, I'm not sure I'm understanding your workflow. Are you trying to iterate through the feature service, and create a buffer using a distance value from a field in the feature service?
... View more
Tuesday
|
0
|
0
|
72
|
DOC
|
@rcGIS that was my mistake, there are changes to the Validation. You can easily add this with the following steps: 1. Right-click on the script > Properties > Validation 2. Update the following lines: elif 'Map Service' in str(item.typeKeywords) or 'Feature Service' in str(item.typeKeywords) or 'Image Service' in str(item.typeKeywords) and 'Hosted Service' not in str(item.typeKeywords): with: elif 'Map Service' in str(item.typeKeywords) or 'Feature Service' in str(item.typeKeywords) or 'Image Service' in str(item.typeKeywords) or 'Geoprocessing Service' in str(item.typeKeywords) and 'Hosted Service' not in str(item.typeKeywords): May be difficult to see above, but you're just adding the following: or 'Geoprocessing Service' in str(item.typeKeywords)
... View more
a week ago
|
0
|
0
|
148
|
DOC
|
@rcGIS download the Item_Dependency.zip and use that with your existing script tool by right-clicking on the script tool > Properties > Execution tab: The differences between the Item_Dependency.zip and the Item Dependency - Python API 2.4. and Earlier.zip is only the Validation within the toolbox.
... View more
a week ago
|
0
|
0
|
164
|
POST
|
Hi @LarissaDrysdale, 1. What version of ArcGIS Enterprise are you running? 2. Within Portal > Organization > Settings > Servers, is the Administration URL set to the Web Adaptor URL or the 6443 URL?
... View more
a week ago
|
0
|
2
|
238
|
POST
|
I'll consider increasing The maximum time a client will wait to get a service to 2 minutes. I would recommend increasing your max instances for the service rather than the maximum time a client will wait. When clients are waiting long periods, it's usually due to there not be enough instances to handle all the requests. Personally, I know if I open a web map/application, I won't wait 2 minutes to see if the service is going to render. After about 10 seconds I would think the application is broken and close out.
... View more
a week ago
|
0
|
0
|
173
|
DOC
|
@rcGIS I've updated the code to include GP services. You can download the Item_Dependency.zip and you should be good to go.
... View more
a week ago
|
0
|
0
|
194
|
POST
|
Hi @SuhasGadhave1, Here are the steps I would recommend: 1. Remove the Azure AD authentication from the custom dashboard 2. Allow automatic account creation for SAML logins 3. Enable SAML based group membership within Enterprise 4. Create a SAML based group in Enterprise 5. Share the secure services to this Group When a user accesses the Dashboard, they will be prompted for credentials to access the secure services. If they do not have an account, their account will be created automatically in Enterprise. If their Azure AD account is part of the SAML based group the services are shared to, they will have access to the Dashboard.
... View more
a week ago
|
0
|
0
|
244
|
POST
|
Hi @Amarz, did you run the command prompt as an Administrator before executing the command?
... View more
2 weeks ago
|
0
|
1
|
206
|
IDEA
|
Hi @KevinWyckoff1, To build off of @MichaelVolz's suggestion, you can easily accomplish this with Windows Task Scheduler and ArcGIS Pro. Create a python script that performs the following operations using arcpy: convert the GeoJSON to a feature class using the JSON to Features tool truncate the feature service append the feature class to the service
... View more
2 weeks ago
|
0
|
0
|
121
|
Title | Kudos | Posted |
---|---|---|
2 | yesterday | |
1 | 2 weeks ago | |
1 | 2 weeks ago | |
9 | 2 weeks ago | |
1 | 06-30-2025 03:55 AM |
Online Status |
Online
|
Date Last Visited |
4 hours ago
|