|
POST
|
Are you sure 12-hour time is the answer? have you tried a <12hr input that worked? It seems more likely you have to specify the full time format. ArcGIS Pro and Online likely complete the rest if missing, but 123 and REST likes the complete object. I'd try: 15:25:00 or 15:25:00.0 and/or run a GET on your existing service to see the expected format (enter a value in AGOL editor first).
... View more
03-18-2025
05:31 PM
|
0
|
1
|
2092
|
|
POST
|
Agree with Dan. I'd export to a new Feature Class first (after selecting SDand only as Dan said). That may exclude the troublesome features from the export, so I would also then do a select by location (input=originalFeatures, selectFeatures=newFeatures) and see if any features from the original are missing from the selection. Then check Geometry - not repair - it may give you more details rather than a blanket error.
... View more
03-15-2025
02:39 PM
|
0
|
0
|
7600
|
|
POST
|
From looking at the service it appears to be in Web Mercator as it can be added as an additional basemap layer to esri world basemaps. Is it perhaps slow because all the other layers are now being projected from NAD27?
... View more
03-14-2025
02:14 PM
|
1
|
1
|
1723
|
|
POST
|
Solved: Tabulate Intersections in ArcGIS Online notebooks? - Esri Community
... View more
03-13-2025
06:16 PM
|
0
|
0
|
776
|
|
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
|
1755
|
|
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
|
3056
|
|
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
|
2091
|
|
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
|
2152
|
|
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
|
3154
|
|
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
|
1312
|
|
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
|
4526
|
|
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
|
928
|
|
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
|
1644
|
|
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
|
2996
|
| 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 |
2 weeks ago
|