Questions tagged [arcgis-10.7]
when ArcGIS 10.7 is the version you are using from the ArcGIS platform.
111 questions
0 votes
0 answers
67 views
Error id 137 occurs while validationg topology in Arc Catalog
I'm trying to build and validate a topology to ensure that the relations between features of Contours shapefile is correct. I have created a new Personal Geodatabase named topology and then a Feature ...
0 votes
1 answer
55 views
Arc Hydro logfile location
I am trying to identify the location of Arc Hydro log file. Does anyone know where to find it?
1 vote
0 answers
34 views
Combining columns with same name in ArcMap ModelBuilder
I am currently working on a project using ArcMap 10.7 where I have separated some points into three different layers for different buffer distances. I have used union to combine them again, and ...
0 votes
0 answers
107 views
arcpy.Describe and "in_memory": works with small feature (500 polygons) but returns "in_memory\xxx" does not exist" with large (200,000)
I'm attempting to run 'arcpy.Describe()' on an object saved 'in_memory', following 'arcpy.Intersect_analysis'. My script works with small multi-part polygon features (500 polygons) but then returns &...
0 votes
1 answer
108 views
arcpy.SearchCursor and unexpected results
I'm stuck on results that arcpy.SearchCursor is outputting. I'm accessing a table on a database connection. When I run this, it crashes with an error: argument of type 'Row' is not iterable I ended up ...
1 vote
1 answer
347 views
ArcMap not displaying bottom of windows [closed]
I recently installed ArcGIS Desktop 10.8.2 (Release V.:10.8.2/Product V.:10.9.1.28388) and some of the windows do not display complete information. I don't know why and I don't know how to fix it. I ...
0 votes
0 answers
57 views
ArcMap only plots some points of shapefile
I am using ArcMap 10.7. I have a point shapefile with nine weather stations in Patagonia. It's available here. I want to plot all four variables as a bar chart for each station, so that you can see ...
0 votes
0 answers
152 views
Converting points to line using ArcMap
I am using Points To Line in ArcMap , to join with a line each point. But the final point returns to the first point. How can I do the line without come back to the first point? I made a column with ...
0 votes
0 answers
39 views
Selecting features without specific character in Definition Query ArcMap
I am using ArcMap 10.7. I am trying to represent in the map using the Definition Query of the layer, Only features from this table of content (it includes 1500 values; the image is just an example) ...
0 votes
1 answer
724 views
How does SDE.ST_LENGTH() get calculated?
I have an Oracle 18c SDE.ST_GEOMETRY polyline FC. The lines in the FC have true curves. If I query for the length of the lines in SQL using SDE.ST_LENGTH(SHAPE), how does the length get calculated? ...
2 votes
2 answers
927 views
Refer to field name instead of index position in ArcPy cursor
With ArcPy cursors, we can refer to fields by using the field index position: with arcpy.da.SearchCursor(feature_class, ["ASSET_ID","ROAD_ID","CLASS","OWNER",&...
1 vote
1 answer
737 views
Select rows using Python? (without creating a new field or table)
ArcMap 10.7.1 — Oracle 18c SDE.ST_GEOMETRY — Polyline FC Occasionally, we come across scenarios where we want to select rows in a FC in the attribute table, but there isn't a way to run the query ...
0 votes
2 answers
417 views
Return geoprocessing messages to Python IDE
I'm using a Python IDE (PyScripter) to run geoprocessing tools in an ArcPy script. If I were running the GP tools in ArcMap, I'd see various messages in the temporary window that pops up: Image ...
3 votes
2 answers
167 views
Why does "for point in part:" work in a standalone ArcPy script, but not in the Field Calculator?
ArcMap 10.7.1 — Oracle 18c SDE.St_Geometry — Polyline FC I have an ArcPy function that works as expected in a standalone ArcPy script (PyScripter): def new_shape(geom): spatial_reference = geom....
3 votes
3 answers
444 views
Use Calculate Field GP tool to update feature coordinates
ArcMap 10.7.1 (Oracle SDE.ST_GEOMETRY): I want to use the Calculate Field GP tool to update the coordinates of a polyline FC's shape column. I have a script that works in a standalone Python IDE (...