POST
|
It is an environment setting and can only be changed within the python window or a notebook in ArcGIS Pro List tools, toolboxes, and environment settings—ArcGIS Pro | Documentation env—ArcGIS Pro | Documentation import arcpy
environments = arcpy.ListEnvironments()
# Sort the environment list, disregarding capitalization
environments.sort(key=str.lower)
for environment in environments:
# As the environment is passed as a variable, use Python's getattr to
# evaluate the environment's value
env_value = getattr(arcpy.env, environment)
# Format and print each environment and its current setting
print(f"{environment:<30}: {env_value}")
addOutputsToMap : True
.... snip ....
... View more
Friday
|
0
|
0
|
45
|
POST
|
only Topographic Production Tasks An overview of the Tasks toolset—ArcGIS Pro | Documentation
... View more
|
1
|
2
|
55
|
POST
|
see if the temporary join works Add Join (Data Management)—ArcGIS Pro | Documentation and you should use this tool first since your object id fields have different capitalization and one may not be recognized as an OID field, or they are located in different geodatabases. Validate Join (Data Management)—ArcGIS Pro | Documentation
... View more
Friday
|
1
|
0
|
60
|
POST
|
You might want to have a look at this link Python Extent Calculations it uses the extent object to make a geometry object, project it, then get the extent... seems to contradict the projectAs in the help though if the source and destination spatial references are known and correct
... View more
Thursday
|
0
|
0
|
33
|
POST
|
Esri Academic Department License Overview - Esri Community You can get licensing for your educational institution.
... View more
Thursday
|
0
|
0
|
42
|
POST
|
related Solved: Can someone explain how Majority Resample works fo... - Esri Community esri uses a 4x4 (that is 16 cells) moving window for the processing
... View more
Thursday
|
0
|
0
|
31
|
POST
|
Extent—ArcGIS Pro | Documentation What is parameter 0? use an AddMessage to report it. Perhaps the extent object is non-existent or not in the correct form
... View more
Thursday
|
0
|
2
|
58
|
POST
|
sounds like you might want to use a separate environment and you don't require arcpy and you use cryptography daily. you can install arcgis in a separate environment since it will use shapely if arcpy isn't present. If that environment doesn't work out, you have the recommended clean install/reinstall link.
... View more
Wednesday
|
0
|
0
|
41
|
POST
|
Go to the Project menu select Package Manager and see if arcgis is installed. If not see if you can install it in the arcgispro-py3 environment or use conda (conda install arcgis) if you know how to use it, otherwise How To: Perform a Clean Uninstall and Reinstall of ArcGIS Pro
... View more
Wednesday
|
0
|
0
|
50
|
POST
|
see your duplicate thread arcgis.features and GeoAccessor error when trying ... - Esri Community
... View more
Wednesday
|
0
|
0
|
30
|
POST
|
did you upgrade or do a new install? and did you update the arcgis module? try import arcgis
arcgis.__version__
Out[2]: '2.4.0'
from arcgis.features import GeoAccessor, GeoSeriesAccessor
dir(GeoAccessor)
['_HASARCPY',
'_HASSHAPELY',
'__class__',
'__delattr__',
'__dict__',
'__dir__',
.... snip ....
... View more
Wednesday
|
0
|
3
|
93
|
POST
|
p = arcpy.mp.ArcGISProject('CURRENT')
#Project information
print(f'Project: {p.filePath}') perhaps, then strip off the filename
... View more
Wednesday
|
0
|
0
|
118
|
POST
|
dask-geopandas documentation — dask-geopandas dask_geopandas.GeoDataFrame — dask-geopandas geopandas seems to be the link for geometry needs
... View more
Wednesday
|
1
|
0
|
114
|
Title | Kudos | Posted |
---|---|---|
1 | Friday | |
1 | Friday | |
1 | Wednesday | |
1 | Wednesday | |
1 | a week ago |
Online Status |
Offline
|
Date Last Visited |
yesterday
|