|
POST
|
Are both in the same coordinate system? (don't go by what you see on the map, because of projection on the fly) Did you check the Analysis Extent in your tool properties? and what is the extent relative to the extent of the points file and the raster) What is the cell size? Do you have a screen grab to identify the areas where points aren't being picked up? Just to get things started for what to look for
... View more
07-24-2020
06:01 PM
|
0
|
1
|
1530
|
|
POST
|
Yes, through windows Add/Remove programs. Keep the downloaded *.exe (which contains the *.cab and *msi) should you need to reinstall it. If you don't use it, then there is no point in keeping it.
... View more
07-24-2020
05:57 PM
|
0
|
0
|
1661
|
|
POST
|
for one of your parameters, define it as a text parameter and make a value list with your options. For each option, create a def that performs the task import blah
method = arcpy.GetParameterAsText(0) # a value list of the method names
params = arcpy.GetParameterAsText(1)
def method1(params):
"""method1 functionality"""
Do stuff
return something
def method2(params):
"""method2 functionality"""
Do stuff
return something
if method == "first":
result = method1(params)
else:
result = method2(params)
print("Here is the amazing result : {}".format(result))
... View more
07-24-2020
08:50 AM
|
0
|
0
|
2362
|
|
POST
|
What final information do you need to get out of the distances? I don't think that you want 60,000 to X combinations of distances without a final purpose
... View more
07-23-2020
06:44 PM
|
0
|
1
|
2885
|
|
POST
|
label class markers Is that your only option? since as you can see on the properties dialog, there is no background, just fill and outline color
... View more
07-23-2020
01:36 PM
|
0
|
0
|
1592
|
|
POST
|
"I re-run the tool (so I don't have to manually update all my parameters)" That is problem, the tool doesn't get refreshed, it is better to start a new instance of the tool. And when testing, you can set defaults for the parameters. This is particularly important if there are imports in your script. You can trigger a reload by adding 'reload' to your code from importlib import reload
import arcpy
import something_else
reload(arcpy)
reload(something_else) It is usually enough to restart the process
... View more
07-23-2020
01:09 PM
|
4
|
2
|
3859
|
|
POST
|
Your chosen label class doesn't have a background, you will have to change it to a different one
... View more
07-23-2020
11:22 AM
|
0
|
2
|
1592
|
|
POST
|
This is pretty well all that is listed in the help topic UniqueValueRenderer—ArcPy | Documentation
... View more
07-22-2020
07:52 PM
|
0
|
0
|
2210
|
|
POST
|
Package Map—Data Management toolbox | Documentation any reason you don't want things save to a gdb? how much sde stuff? and some of the other options.... do things need to be saved for all version? or just the current? There are loads of options and comparing to arcmap may not be the fairest or easiest comparison since Pro has a lot of differences and your desired content may not be treated equally between the platforms
... View more
07-22-2020
12:24 PM
|
0
|
0
|
1501
|
|
POST
|
What version of the api are you using? 1.8.1? If it said in production plan, then it may not be fixed yet, especially since there was no alternate solution. 1.8.2 is on esri's conda https://anaconda.org/esri/arcgis so you could try a ... conda update arcgis=1.8.2 if you are familiar with conda
... View more
07-22-2020
09:28 AM
|
0
|
0
|
1257
|
|
POST
|
You can use value lists within custom toolboxes... just like in python toolboxes Don't forget visual documentation is often better than textual. /blogs/dan_patterson/2016/05/19/toolbox-creation-in-arcgis-pro
... View more
07-22-2020
01:42 AM
|
1
|
0
|
3300
|
|
POST
|
Leandra Gordon I use custom toolboxes and specify everything in the dialog (defaults included). If I need special validation then you can edit the validation code within there. I prefer this since I can use screen grabs for documentation. SetParameterAsText basically does that. If you have a parameter and you want a specific value for it, the you 'set' it. Just like getting input parameters (with GetParameterAsText). In custom toolboxes scripts you can set default symbology within the dialog. You just need to keep everything relative to the toolbox location.
... View more
07-21-2020
06:46 PM
|
0
|
0
|
3300
|
|
POST
|
Did you make sure that you have the conda environment activated where everything was installed? Install and set up | ArcGIS for Developers Your import is right according to the documentation, so something is amiss (check version of the arcgis module, install path etc) arcgis-python-api/increase-image-resolution-using-superresolution.ipynb at d943dd416d96c6828bcf54112c177f0c4a78fd0f · Es…
... View more
07-21-2020
01:36 PM
|
2
|
1
|
1898
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | a week ago | |
| 1 | 02-26-2026 01:52 PM | |
| 1 | 2 weeks ago | |
| 1 | 2 weeks ago | |
| 1 | 3 weeks ago |