The article you are trying to access is permanently deleted.
POST
|
Thank you, Neal. That is a neat workaround the problem. This must be a bug that causes the error in the epoch calculation.
... View more
08-19-2025
03:13 PM
|
0
|
0
|
538
|
POST
|
I am not sure what is causing this error on date calculation but it is limiting me to only 24 days of difference between a start date and a future date. Changing the value of the variable from 30 to 24 and below will not cause error but anything above causes an error as image pasted below . I have not experienced this before and I check the date value produced by the calculation and it appears to be perfectly valid for the Unix Date computation using Python TimeStamp functions. Is there a limitation on the function used in XLS forms for the amount of future date calculations? Again it does not follow any logic here and I am not sure if a parameter is missing etc. The sample spreadsheet is attached for your review. I am using the latest connect executables.
... View more
08-18-2025
03:31 PM
|
0
|
2
|
648
|
BLOG
|
It was not clear to me first since the field name in the choices list was not the same as in the underlying feature class that was given. The STATE_NAME field does not exist in the underlying feature class as provided in the link, but once I read the documentation that it should be the actual field, it worked. Also it is confusing to have the table name in the search without any usefulness and the documentation does not provide reasons why it should even be there. But It probably acts the same as a choice table name? It would be nice to include some documentation as to the purpose of the search table parameter. Thank you!
... View more
08-01-2025
09:29 PM
|
1
|
0
|
378
|
POST
|
The question titles are editable for me after publishing it, could go back and edit it. I could also edit the other parts as well including the choice list selected , are able to use batch-edit option on the left top of the choice list or delete the choice if interested in, add another one to replace it, order it etc.
... View more
07-02-2025
04:15 PM
|
0
|
0
|
334
|
POST
|
Did you try getting the particular instance of the repeat? The geopoint data maybe confused as to whcih instance of the repeat to extract the centroid from. Check out the documentation of extracting repeat values at Repeats—ArcGIS Survey123 | Documentation and specifically the indexed-repeat() function syntax might help.
... View more
07-02-2025
03:52 PM
|
0
|
1
|
299
|
POST
|
@AndyKubrin I think you would need perhaps a category key field in your layer that allows you to classify the features you want to style accordingly to different colors and use only one style to render the layer. You don't need three layers divided by color scheme if you have a category such as a value difference or label that you can use to apply a style schema. Styles—ArcGIS Pro | Documentation is the documentation that would be helpful. You may also create three separate layers and style each layer separately but that is unnecessary if there is a category field that allows you to set class of items that are to be rendered separately.
... View more
06-12-2025
05:04 PM
|
1
|
1
|
474
|
POST
|
@Slamon , if you check out the child layer or table of the relationship (repeat table/layer) fields, you will notice that there is a "parentglobalid" field on each of the child tables that is a GUID field type that is automatically populated when a record is created in the Parent Table. Survey123 needs that to related the records between tables. The GlobalID fields for the two parent-child tables are only related via the parentGlobalID field in the child table.
... View more
06-12-2025
04:54 PM
|
0
|
0
|
815
|
POST
|
Caitlin, there are many ways to add the tables. Ordinarily the newly created tables are by default joined to the original data and the output table should include common fields. Perhaps the best way to preserve the data is to create an attribute based join with the source feature class through a column join and save this join into a new feature layer to save permanently . You can do this every time you run the analysis and also eliminate the duplicate fields as you go along or after you have gone through the whole process.
... View more
08-22-2024
03:58 PM
|
0
|
0
|
565
|
POST
|
Sorry, David: Very late but I was able to make the in_memory buffer file name to be random so if there was some latency problem it would not have a name clash. x = random.randrange(0,1000,1) outFeatseed = "EvTbl" lrsGeoPTbl = """LRS_{}{}""".format(outFeatseed,x) # DynaSeg result feature table created from LRS points location along routes outfeatbl = """Rt{}""".format(outFeatseed) lrsGeoPTbl = """LRS_{}{}""".format(outFeatseed,x) # DynaSeg result feature table created from LRS points location along routes geoPtFC = arcpy.CreateFeatureclass_management("in_memory", lrsGeoPTbl, geotype,spatial_reference=arcpy.SpatialReference(spref['wkid'])) is a snippet that i used to generate unique buffer files. Thank you for responding.
... View more
08-31-2021
12:17 PM
|
0
|
0
|
1509
|
POST
|
David, thank you, but I am not sure what you mean? The API is installed at D:\ArcGIS\Pro\bin\Python\envs\arcgispro-py3 just as all the other scripts. I am now also confused because the same 'in_memory' setup works on other scripts that run on the same computer and this one is failing with some very cryptic errors (see attached image below) .
... View more
03-09-2021
07:09 PM
|
0
|
2
|
1766
|
POST
|
I am not whaat changed between 2.6 and 2.7 of ArcPro and the related Python API but the script that run without fail is crashing miserably at the "in_memory" save location . rteFCSel = fcrte.save('in_memory','rtesel') # a temporary save of a feature class queried Traceback (most recent call last): File "D:\MyFiles\HWYAP\WebUpdate\UniqueProjectIdsSocrataMap.py", line 585, in <module> rteFCSel = fcrte.save('in_memory','rtesel') File "D:\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\arcgis\features\feature.py", line 1113, in save temp_file = os.path.join(temp_dir, "%s.json" % uuid.uuid4().hex) File "D:\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\uuid.py", line 761, in uuid4 return UUID(bytes=os.urandom(16), version=4) File "D:\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\uuid.py", line 153, in __init__ if [hex, bytes, bytes_le, fields, int].count(None) != 4: File "D:\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\uuid.py", line 153, in __init__ if [hex, bytes, bytes_le, fields, int].count(None) != 4: File "D:\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\bdb.py", line 88, in trace_dispatch return self.dispatch_line(frame) File "D:\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\bdb.py", line 112, in dispatch_line self.user_line(frame) File "D:\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\idlelib\debugger.py", line 24, in user_line self.gui.interaction(message, frame) AttributeError: 'UUID' object has no attribute 'int' This has never happened before. Would someone please help with this issue. As a workaround, may have to set a side a directory but wanted to ensure the code to be flexible and write to whatever scratch or temp space available on a computer instead of looking for a specific place or directory locally. Any help is welcome.
... View more
03-09-2021
01:14 PM
|
0
|
4
|
1827
|
POST
|
Can't seem to figure out why a path geometry showed up as polygon and then while I can see it in the mapviewer I can't seem to access the data through the item details. It shows that I have 190 features but then I can't view the data outside the map browsing interface. The feature layer was created using pyhton api. The geometry is good and the dataset is posted formatted as a geojson and zipped file. Code used to create (shown below) is based on a GeoAccessor from a dataframe with a SHAPE column for the geometry and the geometry is given as multilinestring. But the map shows it as a polygon and it is not. hemafeatfcol = hemageoac.to_feature_collection(name='Emergency Repair and Maintenance projects', drawing_info=None, extent=None, global_id_field=None) hemainfcdict = dict(hemafeatfcol.properties) hemainjson = json.dumps({"featureCollection": {"layers": [hemainfcdict]}}) #print (" JSON feature collection : {} ".format(hemainjson)) hemainitem_properties = {'title': 'HDOT Emergency Repair and Maintenance projects ' , 'description':'HDOT Emergency Repair and Maintenance projects ' + \ 'Using HWY-C Excel data ', 'tags': 'projects, pss, HDOT, repair, status, maintenance ', 'text':hemainjson, 'type':'Feature Collection'} hemainitem = qgis.content.add(hemainitem_properties) HDOT Emergency Repair and Maintenance projects (arcgis.com) . GeoJSON link https://histategis.maps.arcgis.com/home/item.html?id=0345cf4f8c484cf693087e170cf0c9cb Polylines Map data that I can see but can't download or access any other way - https://histategis.maps.arcgis.com/home/webmap/viewer.html?webmap=6bb9e57538184d23b0699cd075c4b07a
... View more
12-23-2020
10:59 PM
|
1
|
0
|
1221
|
POST
|
Still experiencing the same thing again and again. It is frustrating to not have someway of mitigating this problem! I never created a v1.3 format in the first place. But deleting and recreating the profile will work for an undetermined amount of time and then comes the hangup! Any help is much appreciated.
... View more
10-22-2020
02:53 PM
|
0
|
0
|
2154
|
BLOG
|
Thank you, Dave, for following up with this issue. I gave up using Microsoft Flow with webhooks using survey123 triggers primarily because of its lack of predictability (it works now and then it doesn't, loses the connection etc.) and now I learn that it did not work at all for the updates or edits that are made in survey123. It seems to me it was a product presented primarily by ESRI (I think Ismael shared it first) before it was ready and working correctly.
... View more
09-30-2020
12:14 PM
|
0
|
0
|
12548
|
Title | Kudos | Posted |
---|---|---|
1 | 08-01-2025 09:29 PM | |
1 | 06-12-2025 05:04 PM | |
1 | 04-14-2025 07:33 PM | |
1 | 04-10-2019 06:15 PM | |
1 | 03-11-2019 06:34 PM |
Online Status |
Offline
|
Date Last Visited |
08-29-2025
03:13 PM
|