|
POST
|
Lovely! I think an environment such as cell size is coming into play and 'maximum of all inputs' or whatever is being used (i'm guessing one input raster matches this large cell size?). take a look at the Environment tab of the gp tool and cell-size Geoprocessing environment settings—ArcGIS Pro | Documentation
... View more
11-10-2020
12:15 PM
|
0
|
0
|
1068
|
|
POST
|
Relassify the raster: Understanding reclassification—ArcGIS Pro | Documentation Add xy data (turn the csv to feature points) Add x,y coordinate data as a layer—ArcGIS Pro | Documentation Buffer the points by 2.5km: Buffer (Analysis)—ArcGIS Pro | Documentation Zonal stats (get stats from underlying raster where intersects each buffer 'zone'): Zonal Statistics (Spatial Analyst)—ArcGIS Pro | Documentation
... View more
11-10-2020
05:27 AM
|
0
|
0
|
6569
|
|
POST
|
Gotcha, the documentation wasn't very helpful with that limitation (strange from esri…) The Feature to polygon tool should fit the bill. Feature To Polygon (Data Management)—ArcGIS Pro | Documentation Richard Fairhurst seems to provide the answer in this thread: How to cut polygon feature using line feature
... View more
11-09-2020
01:49 PM
|
0
|
0
|
1381
|
|
POST
|
I've never seen it before on the esri side. Is there some workflow you think will be simplified by doing this? If I'm interpreting this right, you may find the Split tool will do what you want: Split (Analysis)—ArcGIS Pro | Documentation Split—Help | ArcGIS for Desktop
... View more
11-09-2020
12:27 PM
|
0
|
0
|
1381
|
|
POST
|
The rating you gave an example of and the o_m_rating pictured don't align.
... View more
11-09-2020
12:16 PM
|
0
|
0
|
4238
|
|
POST
|
try an os.path.join instead of concatenation on lyt.exportToPDF(output_workspace + '//' + 'transparent') also are you missing the .pdf in the filename? The syntax highlighter would make this much more readable to others.
... View more
11-09-2020
08:18 AM
|
0
|
0
|
2588
|
|
POST
|
Is the parent directory registered to the ArcGIS server, and is it an FQDN or drive mapped path? Can you share the script?
... View more
11-09-2020
07:54 AM
|
0
|
2
|
2588
|
|
POST
|
is the projection in the sde fc the same as that of the local fc.
... View more
11-09-2020
05:57 AM
|
0
|
1
|
4096
|
|
POST
|
Make a separate model with those values hardcoded as input into Calculate Field and see what happens.
... View more
11-09-2020
03:31 AM
|
0
|
0
|
3039
|
|
POST
|
Whats the coordinate systems/projection? Copying to the sde may be using a configuration keyword or Default which is making funky geometry.
... View more
11-09-2020
02:38 AM
|
0
|
1
|
4096
|
|
POST
|
Was the spatial index built in SQL developer? In SQL developer, does the geometry metadata etc line-up with your projection and extent? Can you read the table in SQL dev and ArcCatalog? and can you preview the geography in Catalog? What's the history behind this feature, is it a new import, update, have you done something to it recently etc? If you export the feature to a local FGDB as a FC does it work ok?
... View more
11-08-2020
03:30 AM
|
1
|
3
|
4096
|
|
POST
|
Is anyone aware of any ArcGIS tools / standalone scripts to take all the data from a bounding box? I've downloaded some stuff with the Overpass api, but it does bloat out on me in the browser if I try too much of an extent (large city). I did check out the Open Street Map toolbox, but that seems very old and uses XAPI which I think is deprecated? unsure if syntax is the same if I just change the script URL.. The OSM toolbox does seem to load an osm file and style it(not great though), but it would be great to grab the proper OSM smbology/labels etc. I'm hoping someone has experience of this. Can do ArcMap, Pro, FME
... View more
11-07-2020
01:43 PM
|
0
|
0
|
708
|
|
POST
|
Can you cheat it by using an Environment Variable (Processing Extent) on Points_with_Z, and have it as a parameter?
... View more
11-07-2020
12:03 PM
|
2
|
1
|
1466
|
|
POST
|
One of life's mysteries I think . You can mark your own answer as correct I believe, or also mark your original question as 'assumed answered'.
... View more
11-07-2020
11:50 AM
|
1
|
0
|
3789
|
|
POST
|
copy the rasters to the intended new folder, then: Just be careful what folder you select.. import os
#input folder to search (assuming no subdirectories)
#e.g - r'D:\myFolder'
folder = r'put_the_path_to_folder_here'
#this string will be searched for in filepath then deleted
text_to_replace = "AnalyticMS_SR_clip"
for root, dirs, files in os.walk(folder):
for filename in files:
#replace text_to_replace in name with empty string
new_name = filename.replace(text_to_replace,"")
#get path of original, create new path for replacement
original_filepath = os.path.join(root, filename)
new_filepath = os.path.join(root, new_name)
#actually rename it
os.rename(original_filepath, new_filepath)
... View more
11-07-2020
05:46 AM
|
0
|
1
|
2470
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-17-2023 12:44 PM | |
| 1 | 06-13-2025 01:08 PM | |
| 1 | 09-25-2025 03:19 PM | |
| 1 | 09-24-2025 02:35 PM | |
| 1 | 09-17-2025 02:42 PM |
| Online Status |
Offline
|
| Date Last Visited |
07-06-2026
06:42 AM
|