Tagged Questions
2
votes
1answer
75 views
Select and zoom python script
I am attempting to make a simple select and zoom python script for my address points. Currently the script will complete successfully but will not select or zoom to the entered point. I am using two ...
4
votes
1answer
86 views
How to select points within polygon constrained by field?
I've created a polygon from a raster dataset:
arcpy.RasterToPolygon_conversion(RasterInt, "C:/arc/poly_int.shp", "NO_SIMPLIFY", "Value")
The 'value' field has numbers 1-37, which map to the ID ...
1
vote
3answers
1k views
Python Script for Select by Attributes taking user input
I am trying to write a python script and create a script tool in ArcGIS that will let a user choose the value or values that will be used to extract a shapefile. These selected value(s) will then need ...
2
votes
1answer
214 views
Python Addins: Can I Select a polygon feature in ArcMap and pass that Selection into a python Addin?
I have a script that uses a arcpy's 'SelectByAttribute' syntax to choose a record in a polygon feature class. Following that, I do a 'SelectbyLocation' to select points from a feature class that lie ...
9
votes
1answer
354 views
Arcmap Select by Attribute with Python
I would like the following to select (highlight) the "project" layer that intersects the grid, and then pull a record from the selected "Grid". I do not need to save the layer.
Note: Running the ...
0
votes
1answer
539 views
Python: 'Select by Attribute' in ArcMap 10
I would like to get the search the field value
'SURFACE LOCATION%' in column 'RefName' in layer '*.dwg Annotation'
This is what I have so far...
# Find the Dataframe
df = ...
5
votes
2answers
320 views
select by attribute on shapefiles with open-source python modules
I usually use ArcGis 9.3.1, but when running a python script that includes Select_by_attribute (from gp), the script runs very very slowly. Is there a way I can perform a select-by-attribute on a ...
2
votes
4answers
875 views
How can you auto-populate field using spatial location of another feature and its attributes?
I want to auto-populate a field based on the spatial location of another feature's attribute.
Add a point on top of a building.
The point automatically adds the name of the building.
This seems like ...
7
votes
2answers
948 views
selecting by attribute and specific value replace
I want to select all of the features by attribute where the attribue in myattrib is like...
Selection "criteria H". That is not a problem.
However then I need to replace (myattrib," H", "") except ...
