|
POST
|
Hi Bill I'm experiencing the same issue with 10.6.1. Were you able to find/register a bug report for this? The number you reference isn't returning a report.
... View more
07-31-2018
02:28 PM
|
0
|
2
|
4211
|
|
POST
|
Thanks for your help. I was able to clone an environment outside of the pro directory and import arcpy from python from that env. I think I'll wait for Pro 2.2.1. While I can't recreate the bug at 2.2 I'd rather not risk it.
... View more
07-09-2018
11:39 AM
|
2
|
0
|
3693
|
|
POST
|
Thanks for your reply. Is it possible to clone the acrgis pro environment outside of the Pro root directory? For production level processes/analysis it is risky to rely on code in user folders. It is actually impossible most cases for me to run after hours processes and have access to my user folder.
... View more
06-27-2018
01:01 PM
|
0
|
2
|
3693
|
|
POST
|
Hi Nathan Renn No, I'm holding out hope that the 1.4.2 version will fix this issue. I'm not currently able to test or upgrade to this version. Here is a full traceback for anyone else troubleshooting: 2018-06-07 05:00:36,777 181 ERROR arcgis._impl.tools {"messageCode": "AO_100026", "message": "ExtractData failed."}
2018-06-07 05:00:36,777 181 ERROR arcgis._impl.tools Failed to execute (ExtractData).
2018-06-07 05:00:36,777 181 ERROR arcgis._impl.tools Failed.
2018-06-07 05:00:37,093 152 ERROR Marijuana_Logger Traceback (most recent call last):
File "C:\Automation\Python\Jobs-ISD\MarijuanaOdorComplainsToSDE\Code\MarijuanaOdorComplaintUpdate.py", line 62, in <module>
outputGDB = extract_data([agolItem])
File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\arcgis-1.3.0-py3.5.egg\arcgis\features\manage_data.py", line 92, in extract_data
context)
File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\arcgis-1.3.0-py3.5.egg\arcgis\_impl\tools.py", line 1279, in extract_data
job_info = super()._analysis_job_status(task_url, job_info)
File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\arcgis-1.3.0-py3.5.egg\arcgis\_impl\tools.py", line 188, in _analysis_job_status
raise Exception("Job failed.")
Exception: Job failed.
... View more
06-08-2018
08:44 AM
|
0
|
1
|
4965
|
|
BLOG
|
Hi Julie Powell Sorry to be a pest, but this is really the last feature preventing the use of 4.x. The Measurement Widget didn't make it into 4.7. Is this a priority? Any idea when it might be included?
... View more
04-26-2018
11:32 AM
|
0
|
0
|
6427
|
|
POST
|
This code was previously running successfully, for months. It now fails with this error: {"messageCode": "AO_100026", "message": "ExtractData failed."} import arcpy
from arcgis.gis import GIS
from arcgis.features.manage_data import extract_data
gis = GIS("http://spokanecounty.maps.arcgis.com/","<usr>","<pw>")
agolItem = gis.content.get('76d5d453ed374160ab20cd61bf97b056')
outputGDB = extract_data([agolItem]) I have attempted to: define the data_format as shapefile and filegeodatabase, run this on a cloned copy of the data, run this on a different machine on a different Pro licence (named user vs concurrent), run this as a different user, run this with access to 'Everyone', changed the Export Data setting of the agol item to 'Allow others to export to different formats'. Has this occurred for anyone on the 1.3.0 api? Test Dataset: http://spokanecounty.maps.arcgis.com/home/item.html?id=76d5d453ed374160ab20cd61bf97b056
... View more
04-25-2018
04:15 PM
|
1
|
12
|
6654
|
|
POST
|
agolItem = gis.content.get('xcvxcv345345345') outputGDB = extract_data([agolItem]) downloadFolderPath = '\\\\your\\path\\Python\\Spatial_Data\\Downloads' pathWithName = outputGDB.download(downloadFolderPath)
... View more
04-25-2018
03:17 PM
|
0
|
0
|
5868
|
|
POST
|
Please do post your solution back to this thread. I had a similar problem with ArcGIS Pro 2.1.0 and the Python ArcGIS API 1.4. Error on Several Scripts were: RuntimeError: Not signed into Portal. Scripts ran Pro's python env, with a user that had a named user license and had signed into pro with the 'Remember Me' option set.
... View more
04-19-2018
11:04 AM
|
0
|
1
|
1811
|
|
POST
|
For anyone trying to get at the service object, this worked for me at 1.4: from arcgis.gis import server url = r"https://<server>.spokanecounty.org:<port>/arcgis/admin/" site = server.Server(url,username="<usr>",password="<pw>") admin = site.content.admin
adminServices = admin.services servicelist = adminServices.list(folder="<folderName>") for x in servicelist: print(x.statistics)
... View more
04-02-2018
09:45 AM
|
1
|
0
|
753
|
|
POST
|
After uninstalling Anaconda I fully uninstalled Pro (deleting C:\Program Files\ArcGIS\Pro after uninstall). Installed Pro 2.1. Upgraded to 2.1.2. I then successfully ran the upgrade conda upgrade command. Uninstalling everything was the solution. There were traceback errors on the conda upgrade. see attachment to the original post.
... View more
04-02-2018
09:25 AM
|
0
|
2
|
6576
|
|
POST
|
Thanks again for taking a look at this. What is odd is that I don't have an Anaconda environment for arcgispro-py3 at Anaconda\envs. I removed my F:\Anaconda\.. references from the PATH system variable. I received the same error when trying to upgrade my arcgis package ("Package not found: 'arcgis' Package 'arcgis' is not installed in F:\Anaconda3\envs\arcgispro-py3"). I uninstalled Anaconda and received this error when attempting to upgrade: 'The system cannon find the path specified.' I can still use python in Pro, so it is still recognized. I think there is an issue with the activate.bat file. I'm going to uninstall/reinstall Pro and cross my fingers. It won't be fun doing this in a production environment but hopefully it fixes the issue.
... View more
04-02-2018
08:46 AM
|
0
|
3
|
1966
|
|
POST
|
Hi Shaun Thanks for replying. result from echo: (i left out unrelated paths) C:\Program Files (x86)\ArcGIS\EsriProductionMapping\Desktop10.3\Bin; F:\Anaconda3; F:\Anaconda3\Scripts; F:\Anaconda3\Library\bin; C:\Program Files\ArcGIS\Pro\bin\Python\Scripts; C:\Program Files\ArcGIS\Pro\bin\Python\Scripts; set con: (arcgispro-py3) C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3>set con CONDA_DEFAULT_ENV=arcgispro-py3 CONDA_PREFIX=C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3 CONDA_PS1_BACKUP=$P$G where conda: (arcgispro-py3) C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3>where conda C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\Scripts\conda C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\Scripts\conda.bat C:\Program Files\ArcGIS\Pro\bin\Python\Scripts\conda.exe F:\Anaconda3\Scripts\conda.exe
... View more
03-30-2018
03:08 PM
|
0
|
5
|
4610
|
|
POST
|
Yes, I'd expect the root environemt to be C:\ArcGISPro\... I need to figure out how to successfully activate Pro envs when I have Anaconda installed on the same machine.
... View more
03-30-2018
11:37 AM
|
0
|
1
|
4610
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-06-2022 02:52 PM | |
| 1 | 07-27-2023 10:51 AM | |
| 2 | 11-14-2023 08:48 AM | |
| 1 | 10-27-2021 11:50 AM | |
| 2 | 12-11-2023 04:10 PM |
| Online Status |
Offline
|
| Date Last Visited |
04-29-2024
11:30 AM
|