|
POST
|
@JTessier you may find that the NotificationStatus method on the webhook will show some timeouts around the time it becomes inactive. A cause for us was the server the payload was being sent to not replying with 200s in time or if at all. This then likely caused the webhook to fall over/(fail gracefully?)
... View more
03-13-2025
06:14 PM
|
0
|
0
|
1445
|
|
POST
|
Yes I suggested it really to test that the script can write/output something. If that works, then it then likely excludes any write issues/file and folder permission issues etc. I'd still suggest trying to output a textfile.
... View more
03-13-2025
02:18 PM
|
0
|
1
|
2705
|
|
POST
|
Ah ok haha that's good. I'll add my thinking anyway, but I could be wrong. 1. Every cursor establishes a new data connection. This can be painful depending on where your data resides e.g. if it's in an SDE over VPN etc. 2. Data schema is read and validated every time, again and again. Nowhere near as bad as point number 1, but it's not exactly going to make things faster.
... View more
03-12-2025
09:14 AM
|
1
|
0
|
1834
|
|
POST
|
It's extremely likely the cause is instantiating the cursor for each key in the dictionary, that's an expensive operation each time. Simply instantiate the cursor once, and have the dictionary iteration below/within the cursor. fc = "d:/projects/SolidWaste/SolidWaste.sde/SolidWaste.DBO.cayServiceOrders"
with arcpy.da.InsertCursor(fc, [
"RouteNumber", "RouteDescription", "StartDate", "RouteOrder",
"StreetAddress", "ServiceItemType", "SerialNumber", "X", "Y",
"ItemUse", "RouteNote", "AccountNumber", "AccountStatus",
"ServiceItemID", "SHAPE@XY"
]) as insertSO:
x = 0
for row in routeRunRows:
if (x % 1000) == 0:
message = f"{x} Processed..."
show_py_message()
x += 1
routeNote = row[10][:120] if row[10] else " "
# Insert row
insertSO.insertRow((
row[0], row[1], row[2], row[3], row[4], row[5], row[6],
row[7], row[8], row[9], routeNote, row[11], row[12],
row[13], (row[7], row[8])
))
... View more
03-11-2025
05:53 PM
|
9
|
0
|
1895
|
|
POST
|
Mapped drive locations can be an issue with scheduler, as they're profile-specific. Your service principal may not have those mappings or arcpy library, or may still be some gpo issue when the box logs in as you. I'd be tempted to output somewhere simple such as the C:\ or a UNC path. Work the problem up from writing a text file with no modules imported, then something basic in arcpy etc.
... View more
03-11-2025
01:43 PM
|
0
|
1
|
2803
|
|
POST
|
The layer statistics are calculated from a sample with a skip factor. It's possibly these values have been skipped. I would use the calculate statistics tool with a value of 1. That will update the dataset properties and then you can properly compare.
... View more
03-11-2025
01:29 PM
|
0
|
0
|
1190
|
|
POST
|
I wonder if they're opening the Web Experience through their ArcGIS Online content and some account-based preferences for Metric/imperial are then being applied (head and shoulder icon in top-right next to username) -> 'My Settings'.
... View more
03-10-2025
06:43 PM
|
0
|
1
|
3845
|
|
POST
|
Save As just creates a new item in AGOL with the same url reference. It's the same effect as going to 'Content' and adding that new item by the original URL and setting a different name to call it. Either way - the copy is a 'Feature Layer' and the original likely a 'Hosted Feature Layer' in the descriptions. You will find that the data you've added to the 'new' layer is also appearing in the original - unless you have some different setting on the original (such as from Survey123) where only submitters/editors can see their responses etc.
... View more
03-10-2025
03:04 PM
|
0
|
0
|
850
|
|
POST
|
It may be something to do with the Hosted Feature Layer View _results if it has properties that may have been modified outside of the Survey123 site. I might be tempted to delete the _results view and retry - or set the sharing within ArcGIS Online from the Hosted Feature Layer and View.
... View more
03-07-2025
02:30 PM
|
0
|
1
|
1391
|
|
POST
|
Glad you solved it. No I don't believe so, my understanding is that it's hosted in ArcGIS Online to allow it to be downloaded as part of the Survey (as 'Linked Content') by users - and then referenced locally on the device thereafter (until CSV is updated then downloaded again).
... View more
03-05-2025
01:49 PM
|
0
|
0
|
2796
|
|
POST
|
https://doc.arcgis.com/en/survey123/browser/create-surveys/webdesigneressentials.htm#ESRI_SECTION1_21723D9039E847AF9E69867C802C695A
... View more
03-04-2025
03:43 PM
|
0
|
0
|
1065
|
|
POST
|
Possibly https://pro.arcgis.com/en/pro-app/latest/tool-reference/spatial-analyst/zonal-statistics-as-table.htm just choose any statistic, as you really just need the COUNT value. Assuming your polygons are all the same size - the COUNT values will be very similar, but probably not identical unless polygons are perfectly aligned with the raster cells. just sort the table by COUNT and you'll likely see the polygon OIDs that have missing data (i.e. less cell count). If polygons not the same size - possibly calculate the area of your polygons and compare it to the combined area of the raster cells within the polygon (cell size * COUNT). Apply the same logic as previously. Maybe better ways.
... View more
03-03-2025
04:33 PM
|
0
|
0
|
798
|
|
POST
|
Just set the Output Location parameter to the Geodatabase location?
... View more
03-03-2025
04:21 PM
|
0
|
0
|
2486
|
|
POST
|
What's the issue you're experiencing? Bit reluctant with zipfiles, so if you can share a screenshot if possible also.
... View more
03-03-2025
04:18 PM
|
0
|
1
|
673
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-13-2025 01:08 PM | |
| 1 | 09-25-2025 03:19 PM | |
| 1 | 09-24-2025 02:35 PM | |
| 1 | 09-17-2025 02:42 PM | |
| 1 | 09-10-2025 02:35 PM |
| Online Status |
Offline
|
| Date Last Visited |
01-14-2026
12:10 PM
|