| bio | website | fws.gov/southeast/gis |
|---|---|---|
| location | Atlanta, GA | |
| age | 24 | |
| visits | member for | 1 year, 3 months |
| seen | 8 hours ago | |
| stats | profile views | 86 |
I'm a GIS Specialist with the US Fish and Wildlife Service in Atlanta, GA.
|
Oct 11 |
comment |
How do I correctly use 'MultiValue' in Python script parameters? Related: gis.stackexchange.com/questions/9406/… |
|
Oct 11 |
comment |
How do I correctly use 'MultiValue' in Python script parameters? Here is a link to the ESRI Script Tool Parameter Help Files. They offer a code example too. |
|
Oct 11 |
comment |
Doing Math On ESRI ArcMap Dynamic Text You can just create a field in the attribute table and use the field calculator. ESRI Help Files |
|
Oct 10 |
comment |
Extracting polygons along a border You'd run in in the Python window of ArcMap, but as I said it's not a complete solution. It's highly likely you'd need to have some scripting knowledge to debug / manipulate the script to do exactly what you're looking for. I didn't supply the field name that contains the state, nor did I include the path to your counties shapefile / feature class. |
|
Oct 10 |
comment |
Extracting polygons along a border Haven't tested it, but it gives you the major jist. |
|
Oct 10 |
comment |
Extracting polygons along a border What's your means of measurement tho? As the crow flies, or travel based on actual roads? |
|
Oct 10 |
comment |
Extracting polygons along a border Is there a reason you're isolating line segments or is that just a means of knowing which counties share a border? |
|
Oct 9 |
comment |
Which topics are fundamental for ArcGIS? +1 - I understand the necessity to learn a piece of software, but it essentially boils down to pushing buttons. What you really need to know are the geographic concepts behind the buttons so you know which ones to push. |
|
Oct 9 |
comment |
Why would a perfectly usable raster mosaic produce an unusable clipped raster? That could be the issue that's a heck of a lot of data. |
|
Oct 9 |
comment |
Why would a perfectly usable raster mosaic produce an unusable clipped raster? Just to clarify -- you're using 2 DEM tiles? I was using quite a few, which led me to believe it may be a memory issue. That's not something I'd expect with 2 tiles tho. |
|
Oct 5 |
comment |
How do I use python to batch process the reprojection of a group of shapefiles? Just a note: most geoprocessing tasks in the gp toolbox offer a 'batch' mode if you right click them. In this instance there is already a script tool included for batch reproject. |
|
Oct 3 |
comment |
Maps API that look “fancy” There are a lot of great OSM tiles out there, don't feel you have to get bogged down with Google's offerings. |
|
Oct 2 |
comment |
How to programmatically work with featureclasses from multiple geodatabases? You could create a python list with the pathname for each gdb ( workspaceList = ["C:/xxx", "C:/yyy", "C:/zzz"]). When you loop through the features within a gdb you could add an identifier to the filename that references the current workspace. |
|
Oct 1 |
comment |
How to remove decimal places from currency formatting in ArcGIS? +1 it seems like all you're after is the dollar sign -- a Label Expression is the way to go. |
|
Oct 1 |
comment |
Assign symbology to multiple layers in one operation? You could make a really simple script tool using applySymbologyFromLayer. All you'd have to do is drag and drop the layers into the dialog box. |
|
Oct 1 |
comment |
How can I use a variable to specify which field to update with arcpy.UpdateCursor? I would try debugging by printing your variable out. Since the variable only stores the string row.FieldName I can't imagine why it wouldn't work -- maybe there's a simple error that you didn't catch? In any case go with what works! |
|
Sep 26 |
comment |
Why do i get an input error no module named arcpy when i try and import it into pythonwin? Sounds like the arcpy module isn't saved to your PYTHONPATH or sys.path. Does it work within ArcMap's Python Window? |
|
Sep 26 |
comment |
Using newly created features in the next part of a python script Just a suggestion, it's generally good practice to avoid spaces and special characters with naming conventions (your gdb name). |
|
Sep 26 |
comment |
How to iterate throught fields names in a table and change row values? Why not just do this in field calculator? You could use the same snippet in each field and skip modelbuilder all together. |
|
Sep 25 |
comment |
How do I format SQL queries for use in Arcpy? I find it helpful to build the query step by step; this is especially useful when you're dealing with values stored as variables. It looks confusing at first, but you can always use a print statement to see how it turns out: whereClause = '"' + fieldName + '" = ' + "'" + fieldValue + "'" |