|
FREC
480 -- ArcMap Quick and Dirty
Getting oriented When you launch a new ArcMap session you get a blank window with legend on the left and map frame on the right. The easiest way to learn this software is by playing with it. Check out the menu options and tools; see what mouse-clicks bring up. Since this software uses a lot of system resources, you should not run more than one ArcMap session at a time. When you add data layers to a data frame, they are listed in the legend and displayed in the map. The properties menus contain tabbed settings windows. Access the dataframe properties by right-clicking on the map or the dataframe name in the legend; use it to select an appropriate coordinate system for your map. Access each data layer's properties by right-clicking on the layer name; use it to set appropriate symbology for each layer. You will usually see the "standard" and "tools" toolbars, and can access many other specialized toolbars by right-clicking on any blank area of the project frame. You can drag and drop toolbars wherever you want. ArcCatalog launches as a separate window. Because each shapefile is actually many files, you should use ArcCatalog to copy, move or rename shapefiles, rasters or or to edit their properties. If you use Windows directory listings to mess with individual component files you will likely corrupt your data. Likewise, you should use ArcCatalog to manage rasters, which are actually subdirectories full of mysteriously-named files. ArcTools is a large library of specialized GIS modules. If you launch it, the ArcTools directory will typically appear in a frame between the legend and map. Some long-time GIS'ers who cut their teeth on the old ArcINFO still work off the command line, where you type in module name and their relevant parameters. The Help menu includes the module syntaxes and extensive documentation, and some specialized functions may only be available only via command line. We won't be needing the command line in this course. Most useful basic menu elements File menu: save the current state of your project; open a saved project; export your map as a graphic file (for inclusion in your project web page). Edit menu: copy map to clipboard (can paste into Adobe Photoshop or Paint). ArcMap's un-do capability is limited. Insert menu: add cartographic elements (text, legend, scale bar, north arrow, etc.) to your map. You must be in "Layout" view, not "Data" view, to add most of these. Selection menu: select particular features from one or more layers by their attributes and/or by their spatial relationship to other features. Tools menu: activate extensions such as Spatial Analyst (for raster data) or 3D Analyst (for TIN's and 3D viewing); generate graphs or reports. Window menu: activates separate map overview (full extent) and/or magnifier (zoom) windows; restores your legend frame if you accidentally close it. Help (F1) ...if it works (in prior years it has sometimes causes lab machines to crash). The Contents tab has information arranged by topic; otherwise use the Index to research a specific term. GIS data formats The successive projects in this course will introduce various types of map data that ArcMap can handle:
Each shapefile has an associated attribute table that contains one record for each individual feature, and one or more data fields that store attributes of the features. Each raster has an associated attribute table that contains one record for each raster category value. This means that ArcMap treats all the raster cells in a particular attribute category as a single feature, even if they are geographically dispersed. Access a layer's attribute table by right-clicking on it and choosing "Open Attribute Table." You can create new data fields in the "Options" menu. Field types include short and long integers (no digits to the right of the decimal point!), single- or double-precision numbers (including digits to the right of the decimal point) and text. If you right-click on a field name, you can sort the records according to that field, summarize the data by field value, calculate new field values or extract summary statistics for that field. One of the really useful things about ArcMap is that you can join an external dBase-format table to a layer's attribute table, based on matching fields in the two tables. This makes it easy to create thematic maps from external data. And since Excel can export spreadsheets in dBase IV format, you can often process a lot of GIS attribute data in Excel. You will be doing this in the first project. Selecting features You will often want to focus your analysis on specific features in a shapefile, or specific cell categories in a raster. There are multiple ways to select individual features or sets of features from the map or attribute table:
Pay attention to which features you have selected. If some of the features in a shapefile are selected, many modules will operate on those features only. For example, if you... Export the shapefile's features or attribute records to a new shapefile, only the selected features or their attribute records will be exports; Calculate summary statistics on an attribute field, the statistics are only calculated for the selected features; Use the features as targets for Spatial Analyst's Distance module, only the selected features will be used as targets. It is good practice to "Clear Selected Features" when you no longer need them selected. A note on projections You will be required specify an appropriate coordinate system (via the data frame Properties tab) for every map you include in your submitted projects. We will discuss projections and coordinate systems soon. Briefly, a projection translates spherical (lat-lon) coordinates to a planar coordinate system such as UTM or State Plane. ArcMap can display unprojected (lat-lon) data in any specified coordinate system, and can even reconcile shapefiles in different specified projections within the same map. But projection inconsistencies can confuse some analytical modules. The actual coordinates of a shapefile are stored in the ".shp" file. There may be a companion ".prj" file specifying what coordinate system that is; otherwise ArcMap may guess. A lot of shapefiles use lat-lon decimal degree coordinates, since that was the default coordinate system for ArcView 3, the popular precursor to Arc 9. To create a new version of a shapefile in a different coordinate system, you can specify that coordinate system for the data frame and then Export the shapefile using the same coordinate system as the data frame. ArcTools also contains formal data projection/reprojection modules. |