Tagged Questions
1
vote
0answers
51 views
Geoprocessing operations re-introduce geometry errors after “repair geometry” succeeds
I am working with a shapefile that has many small, detailed polygons. After exporting it to a feature class in a geodatabase, I found that some operations (for example, Snap in the Editing Toolbox) ...
0
votes
1answer
291 views
ArcGIS/arcpy: Can a variable be set to reference an in_memory workspace object?
This is an offshoot question related to a question I posted earlier. I have the following arcpy code that inputs a Python list of polygon geometry objects to the Union_analysis tool, which then ...
0
votes
1answer
381 views
ArcGIS/arcpy: Input of in-memory geometry object to Dissolve tool in arcpy script throws Error 000732, input doesn't exist or is not supported
In an arcpy script, I run a Union on a list of geometry objects. The output is set to an empty geometry object. The Union runs fine. What I am trying to do is then feed that output into the ...
2
votes
2answers
1k views
Extracting elevation from a TIN file with a point shapefile overlay
I have a TIN file that was built off of contour polyline shapefile (I think). I have a point shapfile with a few points.
How can I extract elevation of the TIN file where the points occur? I am ...
6
votes
2answers
567 views
What is the best way to extract the geometry of a road from OSM data?
What is the best way to extract the geometry of a road from OSM data? The goal is to display segments of highway that are closed due to weather. The weather data consists of positions (in KM measured ...
3
votes
4answers
680 views
Is there a way to convert 3D polylines to 3D points in ArcGIS?
I need to convert a huge number of very dense (densified to 1m) 3D polylines to 3D points.
I need each vertex along the line and no duplicates (two of the same XYZ coordinates) if possible. Is there ...
4
votes
2answers
771 views
create temporary point geometry feature from coordinates in OGR with Python
I have two shapefiles containing two types of geometry features: one contains polygons and the other linestrings.
Because I'd like to use the Within method to check whether the end(or start) of a ...