|
POST
|
I'm not exactly sure what you're trying to do with this code, but neither: sourceFieldsList['SiteStreet_1'] # error ...nor... sourceFieldsList[4] # the string 'SiteStreet_1' ...will provide you with the value of a cell in the column, 'SiteStreet_1'. But, if you just want the string, 'SiteStreet_1', then reference it in position 4, as above.
... View more
11-25-2015
09:58 AM
|
2
|
0
|
1981
|
|
POST
|
Yes, your new polygon can overlap the existing polygons, but it must be in a new feature class (not the same feature class as your existing polygons). When you run Erase (or Symmetrical Difference), the area in your new feature class overlapped by your existing polygons should disappear - or at least, that's the idea.
... View more
11-24-2015
02:27 PM
|
1
|
1
|
3581
|
|
POST
|
Ah, good to know about Symmetrical Difference. Jason Buck's suggestion will save you the Append step.
... View more
11-24-2015
02:16 PM
|
0
|
3
|
3581
|
|
POST
|
1.) Draw a big, rough polygon in a new feature class, covering the space you want to add. It can overlap with the existing polygons. 2.) Erase the existing polygons from the new polygon. 3.) Append the new feature class (your big polygon with the existing polygons erased) to the existing polygons
... View more
11-24-2015
02:03 PM
|
1
|
4
|
3581
|
|
POST
|
To state the obvious, the key point is: you can do this overlay analysis if you have the data. If you're interested in whether your points overlay (or are within a distance of) a water feature, you need a water body feature class. You will not be able to automate the process very much if you only have a WMS basemap - you don't have access to the data.
... View more
11-24-2015
11:24 AM
|
0
|
2
|
1974
|
|
POST
|
I don't have a working model for you, but if you're willing go down the Python script route, your main workflow would be something like: 1.) loop through your rasters 2.) use Make Feature Layer to create a (temporary) layer for the polygon that matches your raster 3.) use Extract By Mask to extract the pixels overlapping your polygon to a new raster
... View more
11-23-2015
02:10 PM
|
0
|
0
|
1199
|
|
POST
|
As Richard Fairhurst indicates, you can get as this with a fairly compact Python code block: def calc(*args):
return sum(i for i in args if i is not None) # loop through all arguments in function, adding if not 'None' (i.e. null) Your expression would be something like below (listing all desired candidate fields): calc (!Field1!, !Field2!, ..., !Fieldn!)
... View more
11-23-2015
08:55 AM
|
2
|
0
|
2666
|
|
POST
|
Dissolve should never delete a feature. Run Dissolve with no feature selection, otherwise it will only consider the selected features. Make sure you've saved your edits before running the tool, otherwise it may only consider the saved features. Also, you select attributes if you want to group the output. Since you want everything dissolved into a single feature, do not select an attribute to dissolve upon.
... View more
11-19-2015
10:57 AM
|
1
|
1
|
2969
|
|
POST
|
The main tool you're missing is Dissolve, or Editor Merge, both of which may combine multiple features into a single feature. I'll draw your attention to the Unsplit option in Dissolve - if checked this will only dissolve lines with an end point in common, which will aid you in finding those that may not have snapped during digitization.
... View more
11-19-2015
10:41 AM
|
1
|
3
|
2969
|
|
POST
|
You can definitely parse your string to make simple geometries like point/line/polygon using arcpy geometries, however I don't believe it's possible to create true curves - you're stuck with straight line segments. If straight segments are acceptable and you're having issues parsing your COGO statement/creating geometries, please provide an example of a line/curve table row (I'm not familiar).
... View more
11-19-2015
09:16 AM
|
0
|
0
|
1671
|
|
POST
|
If you have ET GeoWizards, the tool to generate perpendicular lines is Create Station Lines. Or, you can use arcpy geometry objects, as outlined in this thread.
... View more
11-18-2015
09:16 AM
|
0
|
0
|
3458
|
|
POST
|
Without fully reading your individual scripts, is there a problem with simply copy/pasting them one after the other into one script?
... View more
11-17-2015
09:41 PM
|
0
|
0
|
1838
|
|
POST
|
I interpret this as wanting to smear the boundary values, which Euclidean Allocation should do.
... View more
11-17-2015
11:58 AM
|
0
|
1
|
2189
|
|
POST
|
I don't use Model Builder much, but I'd look into Iterate Feature Selection.
... View more
11-17-2015
11:53 AM
|
0
|
0
|
1004
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-25-2015 01:51 PM | |
| 1 | 08-30-2013 02:22 PM | |
| 1 | 04-12-2011 11:19 AM | |
| 1 | 09-17-2021 09:43 AM | |
| 1 | 04-04-2012 12:05 PM |
| Online Status |
Offline
|
| Date Last Visited |
07-15-2023
12:11 AM
|