|
POST
|
Are you using the tool in arctoolbox or are you using a model? screen grab the toolbox tool inputs if you are using the former
... View more
07-10-2020
12:08 PM
|
1
|
2
|
1954
|
|
POST
|
050045: Failed to add Raster domain.—Help | Documentation don't know what the boundary should have to do with it, but that is the error. Are you using rasters in a gdb or *.tif (recommended by esri for raster work) ?
... View more
07-10-2020
08:34 AM
|
0
|
1
|
1154
|
|
POST
|
My bad... I think critical things probably need to be set up during the creation phase
... View more
07-10-2020
08:23 AM
|
0
|
0
|
4635
|
|
POST
|
The requirements and data types are listed in the help Feature datasets in ArcGIS Pro—ArcGIS Help | Documentation
... View more
07-10-2020
12:52 AM
|
0
|
1
|
6762
|
|
POST
|
MapServiceDraft—Sharing module | Documentation as an example, don't see any "toggle" or parameter, but the code example in the "Modify SDDraft example" provides methods for how to edit one
... View more
07-09-2020
03:51 PM
|
0
|
0
|
1074
|
|
POST
|
Gina Brewer-Mills I would be remiss if I didn't provide a numpy lesson import numpy as np
from numpy.lib.recfunctions import structured_to_unstructured as stu
from arcpy.da import FeatureClassToNumPyArray
f0 = r"C:\Git_Dan\npgeom\Project_npg\npgeom.gdb\Polygons2"
f1 = r"C:\Git_Dan\npgeom\Project_npg\tests.gdb\sq"
a0 = stu(FeatureClassToNumPyArray(f0, ["SHAPE@X", "SHAPE@Y"], explode_to_points=True))
a1 = stu(FeatureClassToNumPyArray(f1, ["SHAPE@X", "SHAPE@Y"], explode_to_points=True))
a01 = np.concatenate((a0, a1), axis=0)
min_xy = np.min(a01, axis=0)
max_xy = np.max(a01, axis=0)
min_xy, max_xy
(array([ 300000.0, 5000000.0]), array([ 300025.0, 5000018.0]))
... View more
07-09-2020
02:05 PM
|
1
|
0
|
1600
|
|
POST
|
Use Envelope in Minimum Bounding Geometry—Data Management toolbox | Documentation on both the points and poly* features to get both their extents, then use Append—Data Management toolbox | Documentation on both the Envelop files and finally do a Minimum bounding Geometry Envelope on the resultant. Add Geometry Attributes—Data Management toolbox | Documentation to that file to get the extent coordinates
... View more
07-09-2020
11:01 AM
|
0
|
0
|
1600
|
|
POST
|
!NADR_ID! if !NADR_ID! in !ABOVE! else None try the 'in' operator
... View more
07-09-2020
02:20 AM
|
1
|
0
|
4092
|
|
POST
|
Duplicate of https://community.esri.com/thread/256374-searchcursor
... View more
07-09-2020
01:57 AM
|
0
|
0
|
1219
|
|
POST
|
Why do you need a search cursor? you can use the field calculator for that python parser !NADR_ID! if !NADR_ID! == !ABOVE! else None
... View more
07-09-2020
01:55 AM
|
1
|
0
|
1554
|
|
POST
|
Brought up an old thread perhaps closely related https://community.esri.com/thread/219411-how-to-count-the-adjacent-cells-that-have-a-different-value-in-a-raster-dataset
... View more
07-08-2020
11:45 PM
|
0
|
0
|
2139
|
|
POST
|
Rachel ... when you mean 'adjacent' to you mean within 1 cell? 2 cells? adjecent-ish? In that case I would use the Expand tool on the 'pink' and effectively buffer them, then use combine as before except exclude those cases that are denoted as 1, nodata from above. I think you will have corner cases in any event. Addendum I would also have a look at the Generalization toolset to prepare input rasters first. Some combination of the tools in there and a combine (perhaps) might get you close How Aggregate works—Help | Documentation Boundary Clean—Help | Documentation did you look at this? Majority Filter—Help | Documentation did you try it? How about a focal variety? Focal Statistics—Help | Documentation The list goes on, some things working in some areas and not in others
... View more
07-08-2020
11:03 PM
|
0
|
1
|
2139
|
|
POST
|
several ways, but Combine will give you some flexibility Combine—Help | Documentation It will produce the unique combinations of the inputs, and you can query the output accordingly purple pink 1 1 1 nodata nodata 1 nodata nodata so you are interested in the first two classes from the resultant
... View more
07-08-2020
07:13 PM
|
0
|
0
|
2139
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Monday | |
| 1 | 02-26-2026 01:52 PM | |
| 1 | a week ago | |
| 1 | a week ago | |
| 1 | 2 weeks ago |