Hello,
I am new to the ArcGIS for Python API but I am kind of expert in arcpy.
My aim would be to use the ArcGIS for Python API to perform drive-time-areas analysis (DTA) like explained here and then use the result to perform spatial selections with arcpy on some local data (e.g. ShapeFiles or others).
My doubts:
- Do I need to upload all the input data or is there a way to avoid this step?
- If I have to, is it possible via the API?
- Will I then be able to use the result from DTA to perform spatial selection with arcpy against local data or do I have to upload the local data/download the result locally?
As regards this last point, I guess one thing to handle would be the JSON format of the resulting SHAPE field from DTA.
I know that from ArcGIS Pro one can use Feature Layers from AGOL directly to perform this kind of operations, as opposed to ArcMap where one has to make a copy of it. But, what about via a python script?
Is there any better option? Thanks in advance for any hints or advice.