|
POST
|
In the python section of the tool help, there is the optional parameter section which you may be looking for GA Layer To Rasters (Geostatistical Analyst)—ArcGIS Pro | Documentation additional_rasters [[out_raster, output_type, quantile_probability_value],...] (Optional) Provide the name, output type, and quantile or probability value for each additional output raster. See the descriptions of parameters above for more information. These additional rasters will be saved in the same location as the Output raster.
... View more
04-10-2025
11:20 AM
|
0
|
0
|
2006
|
|
POST
|
short of doing a query on the required field for any value that is not None and using the GetCount tool (which should return a 0 value if there is nothing there) Get Count (Data Management)—ArcGIS Pro | Documentation The question becomes, why do you want a required field prior to creating a feature and putting a value in it? Perhaps elaborating on the requirement would help
... View more
04-10-2025
08:15 AM
|
1
|
1
|
1814
|
|
POST
|
Why are you putting a "1" as the start an output name? This can fail for many reasons, but if the tool doesn't know whether the output raster will be an esri grid or a tiff, it might do the check first and since esri grids cannot begin with a number, it may just throw the closest error in its path. My recommendation is to click on the folder icon beside the output and input names, from there navigate to the folder or geodatabase where you want your raster to go. The recommended output from esri is to specify outputs as *.tif files in a folder. After selecting the folder, you should be able to enter a filename (not beginning with a number) with a specified file extension (eg *.tif) Again, recommended practice would be to navigate to and select the destination location, specify the filename with extension ensuring that the output path doesn't contain spaces and the output filename doesn't begin with a number, contain spaces and has a specified file extension (unless you want an old-school esri grid for some reason)
... View more
04-10-2025
08:07 AM
|
0
|
1
|
9222
|
|
BLOG
|
area_centroid_example.pngIt is easy to get arcpy shapes, geojson geometry and various relatives to arrays. You can add this to your geometry arsenal. It can be used for convex/concave/multipart (including parts with holes). Clockwise (cw) geometry returns a positive area, holes (ccw) a negative one. The centroids for both parts can be weighted or proportioned if needed (let me know, if so and I can provide another example). def _area_centroid_(a):
r"""Calculate area and centroid for a singlepart polygon, `a
This is also used to calculate area and centroid for a Geo array's parts.
Notes
-----
For multipart shapes (a0), just use this syntax:
>>> [_area_centroid_(i) for i in a0]
"""
a = _get_base_(a)
x0, y1 = (a.T)[:, 1:]
x1, y0 = (a.T)[:, :-1]
e0 = np.einsum('...i,...i->...i', x0, y0)
e1 = np.einsum('...i,...i->...i', x1, y1)
t = e1 - e0
area = np.sum((e0 - e1) * 0.5)
x_c = np.sum((x1 + x0) * t, axis=0) / (area * 6.0)
y_c = np.sum((y1 + y0) * t, axis=0) / (area * 6.0)
return area, np.asarray([-x_c, -y_c])
... View more
04-09-2025
03:13 PM
|
1
|
0
|
1120
|
|
POST
|
From arctoolbox... I don't have BA, but the tools are still there Ba.png
... View more
04-09-2025
10:54 AM
|
0
|
0
|
658
|
|
POST
|
I use project packages when I need to share with someone else. If you wanted open a package multiple times you would replicate any packaged data as well. I keep my projects in one main folder, that folder contains any data that will be common to all projects. I can create a template that does or doesn't contain that data. I also don't use cloud stored or other data not on my machine. That may be different in your case. Experiment with your situation to see whether using a template versus opening up a package multiple times is what you want. Just use your file browser to examine the differences in the structure of the project paths and their contents.
... View more
04-09-2025
06:24 AM
|
0
|
0
|
2614
|
|
POST
|
databases would be considered data A project template is a customized starting state for a project. It can include maps, scenes, layouts, databases, folder connections, and other items. Any configuration of a project that you want to reuse can be saved as a project template. Create a project template—ArcGIS Pro | Documentation Create a project template—ArcGIS Pro | Documentation the second part from the help files. When do you create your project template will determine what is included in it.
... View more
04-09-2025
03:57 AM
|
0
|
1
|
2632
|
|
POST
|
It says in "Product plan". Hover over the popup to see what that means. Are you subscribed to the issue? Barring that, contacting Tech Support would be your best option Addendum What's new 1.17 | ArcGIS Experience Builder | Esri Developer might be worth a look first
... View more
04-08-2025
10:56 AM
|
0
|
1
|
2224
|
|
POST
|
Code formatting ... the Community Version - Esri Community It makes it easier than flippin back and forth between the image and your question
... View more
04-08-2025
07:27 AM
|
1
|
0
|
2212
|
|
POST
|
and if that doesn't work then creating a schema.ini file is recommended https://support.esri.com/en-us/knowledge-base/how-to-edit-the-field-properties-of-a-csv-file-in-arcgi-000024378
... View more
04-07-2025
07:21 PM
|
1
|
0
|
1462
|
|
POST
|
From my link This is a deprecated tool. This functionality has been replaced by the Export Table tool. but perhaps there is an issue with the replacement. Rule that possibility out as well using the 'deprecated' tool.
... View more
04-07-2025
07:12 PM
|
1
|
1
|
1464
|
|
POST
|
If you have the data in Excel, did you use? Excel To Table (Conversion)—ArcGIS Pro | Documentation or if you have the csv then you can use it as the input to the following tool Table To Table (Conversion)—ArcGIS Pro | Documentation do both yield the same results? If so then there may be something wrong with how the field names are being interpreted.
... View more
04-07-2025
05:52 PM
|
0
|
1
|
1483
|
|
POST
|
in the following link, I just changed the 3-4 to a 3-3 and found it ArcGIS Pro 3.3 Issues Addressed
... View more
04-07-2025
12:23 PM
|
0
|
1
|
988
|
|
POST
|
A Spatial Join or intersect might be a better candidate
... View more
04-07-2025
10:24 AM
|
0
|
0
|
533
|
|
POST
|
You should report it. It may not have been reported before
... View more
04-07-2025
10:18 AM
|
0
|
0
|
3199
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | a week ago | |
| 1 | 3 weeks ago | |
| 1 | 2 weeks ago | |
| 1 | 2 weeks ago | |
| 1 | 2 weeks ago |