[GIS] simple way to clip multiple layers and orthophotos

arcgis-10.1arcgis-desktoparcmapcliporthophoto

(*disclaimer, I don't know any Python/scripting) Ok, so I have clipped several layers in the past using Arcmap 10.+, but I am having a hard time wrapping my head around how hard it can be at times.

I used to own a photography/design business, so I'm used to manipulating crops via Photoshop. I think because of this, I have issues with simple clipping when composing a map.

For this current clip/crop, I would like to freehand a polygon around several connected streams and "crop" out everything around that polygon. Within the polygon, there are several layers having many polylines and points, and a Ortho_tile_tiff catalog layer aerial view. I believe it's this Ortho_tile geodatabase that's throwing me here. If someone could break it down for a semi_green GISer I would be much appreciative. Thanks!

Best Answer

Here are a few options for clipping in ArcGIS:

  1. Clipping the DataFrame This allows you to draw a shape with the draw tools and "Clip to shape" which may be more what you're looking for. You should be able to draw a shape like a polygon and clip to it using this option.
  2. Using the Editor to clip. This is a quick and dirty way to clip your existing dataset, however, again, no rasters.
  3. What your most familiar with no doubt is using the tool Clip you could always create a separate shapefile with your polygon area and clip everything to that. However, this won't work with raster files. You need to use a separate tool to clip rasters. You could always design a simple model builder with these clip tools in order achieve this faster.

This blog post highlights different ways to clip a raster which you may also find useful. If you don't find this answer sufficient please update your post as to what exactly you're having difficulty with or what isn't working.

Related Question