|
POST
|
Your overviews and statistics might take a very long time depending on the dataset size. I'd advise skipping the autogeneration of these and create them manually after as needed. You can use the Define Overviews tool https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/define-overviews.htm to limit the areas and overview levels before generating them (you are effectively building a cache which can be extremely large). Statistics calculation https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/calculate-statistics.htm can utilise a defined skip factor to speed up the process.
... View more
04-17-2023
10:25 AM
|
1
|
3
|
3081
|
|
POST
|
I'd say it's having an issue accessing the layer, parentheses in the workspace path could be an issue. Maybe write to memory or try a different workspace path, or make the temp location explicit. psb writing to memory example: import arcpy
from arcpy.sa import *
arcpy.env.overwriteOutput = True
in_csv = r"C:\Users\aazma\Desktop\Incomplete(503)\Incomplete\PCBsData.csv"
out_raster = r"C:\Users\aazma\Desktop\Incomplete(503)\Incomplete\output.tif"
layer_name = r"memory\temp_layer"
x_field = "X"
y_field = "Y"
spatial_reference = arcpy.SpatialReference(4326)
arcpy.MakeXYEventLayer_management(in_csv, x_field, y_field, layer_name, spatial_reference)
cellsize = 0.1
value_field = "value"
assignment_type = "MEAN"
arcpy.PointToRaster_conversion(layer_name, value_field, out_raster, assignment_type, value_field, cellsize)
try:
arcpy.Delete_management(layer_name)
del layer_name
except:
pass
... View more
04-15-2023
10:49 AM
|
0
|
3
|
5225
|
|
POST
|
If it's just for 1 or a few ponds then you could do the following manual steps, but unless the pond is a perfect circle it becomes very difficult to achieve equal parts: find the centroid (centre of mass) of the pond - https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/feature-to-point.htm - use "CENTROID" If you have a feature class of the pond, it will have an attribute called "SHAPE_LENGTH", this is the perimeter of your pond in coordinate system values (metres etc.). If you have shapefile then iId convert it to a feature class to get this value. Take this perimeter value and divide by 10. use this value in https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/generate-points-along-lines.htm tool "DISTANCE" parameter. e.g. perimeter = 100m , point_placement="DISTANCE", distance =10 this then generates the points on the perimeter. You could then manually create the lines using the points to snap to.
... View more
04-15-2023
10:37 AM
|
4
|
0
|
2284
|
|
POST
|
Can you not just merge all the features together and do a spatial join with a merge rule of 'join'? that would create a field which contains a list (you choose the delimiter also) of line attributes which intersect.
... View more
04-15-2023
08:11 AM
|
1
|
0
|
2995
|
|
POST
|
I've not tried it so can't say exactly what settings/config it might retain, but - https://community.esri.com/t5/arcgis-pro-questions/where-is-the-file-stored-which-contains-arcgis-pro/m-p/1271382/highlight/true#M67146
... View more
04-14-2023
11:54 AM
|
0
|
0
|
2149
|
|
POST
|
Have you got any backlashes in your arguments? Error seems to be related to them. Maybe use a raw string for your filepath r'C:\Stuff\I Love GIS'
... View more
04-14-2023
08:17 AM
|
0
|
1
|
1556
|
|
POST
|
The most similar thing to an MXD I know of in Pro is the .mapx file.https://pro.arcgis.com/en/pro-app/latest/help/sharing/overview/save-a-map-file.htm edit - didn't read your entire post where you mantion mapx.
... View more
04-14-2023
08:09 AM
|
1
|
1
|
4801
|
|
POST
|
Might be worth trying to run a submodel https://pro.arcgis.com/en/pro-app/latest/help/analysis/geoprocessing/modelbuilder/add-a-submodel-to-a-model.htm
... View more
04-13-2023
12:24 PM
|
0
|
1
|
1520
|
|
POST
|
I'm sorry I don't understand the logic you want the selection tool to follow where there are parcels which exist between multiple boundaries. Please be explicit in how you want these handled. I might suggest 'Intersects' as the spatial relationship but I don't know what you want from the information you've provided so far. here is a list of the spatial relationships available to the tool - https://desktop.arcgis.com/en/arcmap/latest/map/working-with-layers/using-select-by-location.htm it's arcmap but still valid. If you want to manually add or remove selected parcels then you can just hold down Shift and use the Select tool to click on the parcels you want added to the existing selection and then export as normal.
... View more
04-12-2023
02:33 PM
|
0
|
0
|
3687
|
|
POST
|
Have you missed the full filepath to your CSV? 'in_csv'
... View more
04-12-2023
09:29 AM
|
0
|
1
|
1996
|
|
POST
|
I'd personally recommend printing from a pdf rather than ArcGIS.
... View more
04-11-2023
12:10 PM
|
0
|
0
|
3585
|
|
POST
|
Maybe try 500.0 to ensure a Float. What module is this, features?
... View more
04-11-2023
12:05 PM
|
0
|
0
|
582
|
|
POST
|
select your Parcels using the selected CCN polygon input - parcels relationship - intersect selecting features - CCN polygon search distance - leave blank selection type - new selection https://pro.arcgis.com/en/pro-app/latest/help/mapping/navigation/select-features-by-location.htm then export selected features - right-click on the layer in table of contents -> Data - > Export features
... View more
04-11-2023
11:58 AM
|
1
|
2
|
3714
|
|
POST
|
Are you sure that it doesn't exist in task scheduler? A task should exist if it was created on a schedule. I'd adjust the settings to run it as admin. Also in your raster calculator I'd ensure that the Datasets are referenced rather than the Layers.
... View more
04-11-2023
09:28 AM
|
0
|
1
|
6310
|
|
POST
|
the filepath suggest it's an ArcMap addin. Think it would be .esriaddinX if it were Pro. that would explain why you can't launch it. edit - if you look at the link Dan provided - the comments section at the bottom may explain the issue.
... View more
04-10-2023
12:02 PM
|
0
|
0
|
2057
|
| 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
|