|
POST
|
do you have a spatial index on the shape field? or possibly: select NAME1 from GTSOWNER.CM_BOUNDARY3_PG a where sde.st_within (sde.st_point(45.576579,26.460792,32637), a.shape)=1;
... View more
11-25-2020
01:10 PM
|
1
|
0
|
1955
|
|
POST
|
quite a few tips here: Solved: ArcGIS 10.2.2 Mosaic Dataset -- Overviews not gene... - GeoNet, The Esri Community involving 'negative shrink distance'. Not sure I have the energy to learn about that one today.
... View more
11-25-2020
07:25 AM
|
0
|
0
|
4356
|
|
POST
|
you might try arcpy.RefreshActiveView() but i'll have look at the code properly when I get the chance.
... View more
11-25-2020
04:50 AM
|
0
|
0
|
3389
|
|
POST
|
sure: Iterate Feature Selection (ModelBuilder)—ArcGIS Pro | Documentation
... View more
11-25-2020
01:53 AM
|
2
|
3
|
4984
|
|
POST
|
Can you give more info? Source of the data, what projection are the files you're comparing it to, what projections have you tried, what transformations used?
... View more
11-25-2020
01:46 AM
|
0
|
3
|
2214
|
|
POST
|
You just need define the parameters e.g. mxdPath = arcpy.GetParameterAsText(0) rasterPath = arcpy.GetParameterAsText(1) and so on.. Then you just create a script tool for it and define the parameter types in the options of the tool. When the tool opens, those defined parameters will be there. Add a script tool—ArcGIS Pro | Documentation What is a script tool?—Help | ArcGIS for Desktop
... View more
11-25-2020
01:36 AM
|
1
|
3
|
3404
|
|
POST
|
without delving into the rescale function I'd say it looks ok. Maybe pass the controlpoints as floats: e.g. ControlPoint1 = float(arcpy.GetParameterAsText(3)) or just arcpy.GetParameter() I'm no expert programmer, but I'd stop renaming variables for no reason, e.g. just call minimum = arcpy.GetParameterAsText(4) and so on. It seems needlessly confusing otherwise. Is there a specific part it's falling over on? Do you know how to assign the parameters in the script tool itself?
... View more
11-24-2020
02:10 PM
|
1
|
1
|
2543
|
|
POST
|
Is there a rationale behind making a tool from an existing tool (and perhaps limiting its functionality)?
... View more
11-24-2020
12:47 PM
|
0
|
3
|
2555
|
|
POST
|
Logically you would want to save the output file as a combination of the names of the rasters. I'd grab the names of the rasters before you multiple them, and create a path from that combination. ensure you import the os module (import os) from arcpy import env
from arcpy.sa import *
import os
arcpy.env.workspace = "C:/MSc_thesis/XrApor"
idwlist = arcpy.ListRasters("*", "TIF")
equallist = arcpy.ListRasters("*", "GRID")
for eachidw in idwlist:
for eachequal in equallist:
out_name = eachidw.name + "_" + eachequal.name
out_path = os.path.join(r"C:/MSc_thesis/products", out_name)
outTimes = Times(eachidw,eachequal)
outTimes.save(out_path)
... View more
11-22-2020
01:44 PM
|
1
|
1
|
3924
|
|
POST
|
A very simple method would be to clip the polylines to that specific area and then sum up the SHAPE_LENGTH values for each feature. A quick search yielded an esri methodology for this, so I think that validates my workflow. https://support.esri.com/en/technical-article/000018432
... View more
11-22-2020
10:40 AM
|
2
|
0
|
1362
|
|
POST
|
I think you could quite easily iterate over each polyline (road) and jury-rig the stack profile tool https://desktop.arcgis.com/en/arcmap/latest/tools/3d-analyst-toolbox/stack-profile.htm then do some magic on the output table for each road.
... View more
11-21-2020
02:25 PM
|
0
|
2
|
4236
|
|
POST
|
Are the rock type names the same? if so you could: https://pro.arcgis.com/en/pro-app/help/mapping/layer-properties/import-symbology-from-another-layer.htm or save as a layer file for repeated use
... View more
11-20-2020
06:05 AM
|
2
|
1
|
8125
|
|
POST
|
You want to count the number of IP's within 500m of each house? Looks like your join feature and target feature are the wrong way round.
... View more
11-20-2020
03:05 AM
|
1
|
1
|
1507
|
|
POST
|
I guess it's taking it in as assumed UTC (without specifying a timestamp it assumes 00:00:00 hrs) then converting to your local time (UTC -5 hours a good guess?). That's strange, as the behaviour I observed on my enterprise when editing was that local times specified in edits were then posted as UTC to the enterprise gdb fc. appreciate there's no solution in my reply, just be warmed by the knowledge that I feel your pain.
... View more
11-19-2020
02:48 PM
|
2
|
0
|
1949
|
| 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
|