|
POST
|
If you have the parcels already in ArcGIS, select the parcel you need using the selection by location tool, or select by attribute. Once selected, go to that layer in the Table of Contents, right click>selection>create layer from selected feature. Then use that new layer is input for the clip. If you need to create a new polygon for a custom area, open ArcCatalog, navigate to a folder where you want to create a new shapefile. Right click on the folder>New>Shapefile. Name it, change type to polygon, select spatial reference. You now have an empty polygon feature. Start an edit session(Customize>Toolbars>Edit, if you don't have it the editor toolbar up.), click the dropdown that say Editor>Start Editting Session>Select your new shapefile. Click on the Create Feature Icon, select your empty shapefile as template on the create features window. Create Polygons to you hearts content, save editting, then stop editting. Voila new polygon! Alternatively if you have GE, much easier to make a new boundary there and convert from KML to Layer.
... View more
10-16-2015
08:14 AM
|
1
|
2
|
3795
|
|
POST
|
You cannot directly create symbologies using arcpy, you would need arcobjects. However, you can set up a .lyr file with the symbology you need and have the .lyr file symbology applied to your multi-ring buffer output. ArcGIS Help (10.2, 10.2.1, and 10.2.2)
... View more
10-14-2015
03:57 PM
|
0
|
1
|
3695
|
|
POST
|
I'll go ahead and mention a few things as well I would make your lake the same color as your streams instead of the color ramp. Your roads show fine in the urban environment but once out in the more rugged areas are difficult to see due to the amount of contours and how wide they are. Depending on audience, I might increase the number of contour labels by using the Maplex Labelling Engine. If they are not use to reading topography, the fewer labels makes it less intuitive. Are you using a color ramp on your terrain? It seems green near the top and greyer near the bottom, which can lead to confusion. When I see green on topo maps, I automatically think forested areas, which doesn't seem the case here. Your Forest Plan Units(FPUs) have grey lines running through them(parcel lines?) I think they would look better as a single unit unless you have a good reason for the lines in there. Either make the FPUs more transparent or move the streams to draw on top of the FPUs, since it is easy to lose them right now. Streams seem a bit wide, especially the more minor ones. If you information on stream order, perhaps graduated line thickness based on the stream order. Also labels for major creek/rivers could be a nice touch. If possible, see if saving as a reduced size pdf doesn't interfere with data quality. A 60Mb pdf is rather large to work with, and from my experience, using reduced size pdfs can save alot on file size without impacting the quality much.
... View more
10-14-2015
12:34 PM
|
1
|
0
|
1673
|
|
POST
|
Rickey, This question is very open-ended. It is highly dependent on what you are overviewing, what sort of data you want to show. You should consider who your audience is, what information you want to convey, etc. Could you give a better example of what you are trying to accomplish? Also, sub-watershed level is very vague, since watersheds are broken down by level already (at least in US you have HUC-2 level to HUC-12 level).
... View more
10-14-2015
10:59 AM
|
1
|
4
|
1673
|
|
POST
|
Hi Bruce, If you have multiple overlapping DEMs, it might be good to Mosaic them together into a single image. There are many tools for doing this, but you probably want to keep your original data the same, I'd suggest Mosaic to New Raster. That way none of your originals get changed, and you have a new single DEM file to work with. If there are differing values for the same location, you can control how you want them to combine in the mosaic_method parameter. ArcGIS Help (10.2, 10.2.1, and 10.2.2)
... View more
10-14-2015
10:51 AM
|
1
|
0
|
4484
|
|
POST
|
Hi Michel, Have you looked at the Extract Values to Points(Spatial Analyst) Tool? ArcGIS Help 10.2 - Extract Values to Points (Spatial Analyst)
... View more
10-14-2015
08:31 AM
|
0
|
1
|
7995
|
|
POST
|
Alexander, Since it sounds like you have a large multipart polygon, why not try the multipart to singlepart tool? ArcGIS Help (10.2, 10.2.1, and 10.2.2)
... View more
10-14-2015
05:50 AM
|
1
|
2
|
1577
|
|
POST
|
I'm not good with the .format string function, but the .zfill string function should do what you need from 7.1. string — Common string operations — Python 2.7.10 documentation https://docs.python.org/2/library/string.html string. zfill ( s, width ) ¶ Pad a numeric string s on the left with zero digits until the given width is reached. Strings starting with a sign are handled correctly.
... View more
10-13-2015
09:21 AM
|
1
|
0
|
1517
|
|
POST
|
Also the USGS Historic Topos have a lot of other data built into them, such as streams, tree coverage(green shading, though somewhat dated), geomorphologic feature labels, etc. Trying to recreate most of these would be rather time consuming. P.S. I find it funny Dan Patterson hasn't responded to daniel patterson's post yet. It would amuse me greatly if he would.
... View more
10-08-2015
05:26 PM
|
0
|
7
|
2115
|
|
POST
|
The particular map that shows the topography are historic USGS Topo Maps, you should be able to download them in your area of interest and clip them to the boundary you need. See: USGS Historical Topographic Maps | topoView Luckily these are available as GeoTIFF, as well as GeoPDF, so much easier to handle in ArcMap Now that map also seems to have a hillshading beneath it to help enhance the look of the elevation data, there are some online layers for hillshade, but you will likely want to download your own and clip to a custom extent. You should be able to find that, and many other vector layers here https://gdg.sc.egov.usda.gov/
... View more
10-08-2015
08:41 AM
|
0
|
11
|
2901
|
|
POST
|
As Mike said, we would have to see the script, are you able to post a copy?
... View more
10-05-2015
05:46 AM
|
1
|
0
|
3928
|
|
POST
|
You can work with arcpy Geometry objects to create polylines from points. ArcGIS Help (10.2, 10.2.1, and 10.2.2) Working with geometries ArcGIS Help (10.2, 10.2.1, and 10.2.2) Arcpy.Polyline You will need to be able to parse each set of lat longs, convert to point geometry make arrays of points for each line, then insert the arrays into the Polyline Object.
... View more
10-05-2015
05:43 AM
|
1
|
0
|
2032
|
|
POST
|
Have you tried using arcpy.Exists? ArcGIS Help (10.2, 10.2.1, and 10.2.2) From the help Determines the existence of the specified data object. Tests for the existence of feature classes, tables, datasets, shapefiles, workspaces, layers, and files in the current workspace. The function returns a Boolean indicating if the element exists.
... View more
10-05-2015
05:34 AM
|
1
|
0
|
7034
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 02-22-2017 08:58 AM | |
| 1 | 10-05-2015 05:43 AM | |
| 1 | 05-08-2015 07:03 AM | |
| 1 | 10-20-2015 02:20 PM | |
| 1 | 10-05-2015 05:46 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|