Presentation is loading. Please wait.

Presentation is loading. Please wait.

ESRI GIS Software. Contents Data Types –ESRI Data Model –Shapefiles –Raster Data Digital Orthophoto Quadrangle Digital Elevation Model Digital Raster.

Similar presentations


Presentation on theme: "ESRI GIS Software. Contents Data Types –ESRI Data Model –Shapefiles –Raster Data Digital Orthophoto Quadrangle Digital Elevation Model Digital Raster."— Presentation transcript:

1 ESRI GIS Software

2 Contents Data Types –ESRI Data Model –Shapefiles –Raster Data Digital Orthophoto Quadrangle Digital Elevation Model Digital Raster Graphic ESRI GeoDatabase 2D Representations –Registration –Layering –Accuracy –Skewing & Size Registration Spatial Analysis –United States –Inyo County –City of Bishop 3D Representations –Registration –Overlaying Data Extraction –Exporting to dbf Joins –Attribute Joins –Spatial Joins Join Types Examples 7.5-Minute Maps ESRI Limitations

3 ESRI Data Model

4 Shapefile Data A shapefile stores nontopological geometry and attribute information for the spatial features in a data set. The geometry for a feature is stored as a shape comprising a set of vector coordinates. Because shapefiles do not have the processing overhead of a topological data structure, they have advantages over other data sources such as faster drawing speed and edit ability. Shapefiles handle single features that overlap or that are noncontiguous. They also typically require less disk space and are easier to read and write. Shapefiles can support point, line, and area features. Area features are represented as closed loop, double-digitized polygons. Attributes are held in a dBASE® format file. Each attribute record has a one-to-one relationship with the associated shape record.

5 Raster Data Digital Orthophoto Quadrangle (DOQ) –A Digital Orthophoto Quadrangle (DOQ) is a digital, uniform-scale image created from aerial photos. It is a photographic map in which ground features are displayed in their true ground position because relief displacements caused by the camera and terrain of an aerial photograph have been removed. It combines the image characteristics of a photograph with the geometric qualities of a map; thus, it is possible to get direct measurements of distances, areas, angles, and positions from a DOQ.

6 Example (DOQ) 7.5 Minute Quad- Triangle Format MrSID 1-Meter

7 Raster Data Digital Elevation Model (DEM) –A Digital Elevation Model (DEM) is a digital cartographic/geographic dataset of elevations in xyz coordinates. The terrain elevations for ground positions are sampled at regularly spaced horizontal intervals. DEMs are derived from hypsographic data (contour lines) and/or photogrammetric methods using USGS 7.5- minute, 15-minute, 2-arc-second (30- by 60- minute), and 1-degree (1:250,000-scale) topographic quadrangle maps.

8 Example (DEM) 7.5-Minute Contour Lines ESRI 3D Analyst

9 Raster Data Digital Raster Graphic (DRG) –A Digital Raster Graphic (DRG) is a digital image (scanned version) of a USGS topographic map. DRGs are produced from USGS 1:24,000-, 1:24,000/1:25,000-, 1:63,360- (Alaska), 1:100,000-, and 1:250,000-scale topographic map series. The image inside the map neatline is georeferenced to the surface of the Earth and fit to the Universal Transverse Mercator (UTM) projection. The horizontal positional accuracy and datum of the DRG matches the accuracy and datum of the source map.

10 Example (DRG) 7.5-Minute Registration Data Accuracy

11 ESRI GeoDatabase Data Modification Data Extraction Tables Relationships Feature Classes

12 2D Representations

13 Quarter Quadrants NW SW NE SE

14 Rubberized Quadrants Rubberizing Images Image Registration Image Locations (x,y) Spatial Adjustment

15 Layering (Indian Reservations & Waters) Indian Reservation Lake

16 Layering (Roads) Indian Reservation Lake Roads

17 Data Accuracy Images are available upto a accuracy of about 1-meter. Common data characteristic are very important. –Time of capture data. –Data accuracy & size –Lens Skewing

18 Accuracy (Zoom 2x)

19 Accuracy (Zoom 4x)

20 Accuracy (Zoom 6x)

21 Accuracy (Zoom 8x)

22 Multi-Layer Accuracy

23 Modified Image Registration

24 Spatial Analysis (Projection: USA)

25 Spatial Analysis (Projection: Inyo County)

26 Spatial Analysis (Projection: City of Bishop)

27 3D Representations

28 DEM to TIN Most DEM data contains the min and maximum elevation.

29 Layering DOQ to TIN

30 Adding Land & Waters Indian Reservation Lake

31 Complete All Layers Indian Reservation Lake Roads

32 Data Extraction Shapefiles contain attributes for given data points, vectors, and polygons. Data can be extracted directly into dbf format. Spatial location is not directly exportable.

33 (Spatial & Attribute) Joins

34 Joins Like joining two tables by matching attribute values in a field, a spatial join appends the attributes of one layer to another.joining two tables by matching attribute values You can then use the additional information to query your data in new ways. While you can also select features in one layer based on their location relative to another layer, a spatial join provides a more permanent association between the two layers because it creates a new layer containing both sets of attributes.select features in one layer based on their location relative to another layer Several tables or layers can be joined to a single table or layer and relationship class joins can be mixed with attribute joins. When a join table is removed, all data from tables that were joined after it are also removed, but data from previously joined tables remain. Symbology or labeling that is based on an appended column is returned to a default state when the join is removed. From: http://support.esri.com/articleshttp://support.esri.com/articles

35 Spatial Joins Join by location or spatial join uses spatial associations between the layers involved to append fields from one layer to another. Spatial joins are different from attribute and relationship class joins in that they are not dynamic and require the results to be saved to a new output layer. Associations: One of three types of associations can be used to perform a spatial join. These associations are described as follows: –Match each feature to the closest feature or features - In this association, you can either append the attributes of the nearest feature or append an aggregate (i.e. min, max etc.) of the numeric attributes of the closest features. –Match each feature to the feature that it is part of - In this case, the attributes of the feature for which the current feature makes up a portion are appended. –Match each feature to the feature or features that it intersects - Like with the closest feature(s) association above, you can either append the attributes of a single intersecting feature or an aggregate of the numeric attributes of the intersecting features. From: http://support.esri.com/articleshttp://support.esri.com/articles

36 Spatial Joins (Development & Programming) Complex Queries: With VBA, however, it is possible to perform a join based on any association and with any combination of point, line or polygon feature layers. –Joins as well as other types of complex queries must be implemented using VBA or some other ESRI compliant language. –ESRI toolbox works primarily with Borland and Microsoft development products. Other languages can be used for development but are not well integrated due to the heavy usage of COM. From: http://support.esri.com/articleshttp://support.esri.com/articles

37 Spatial Joins (Noted Points) Noted Points: It is recommended that both layers have the same coordinate system. If the layers have different coordinate systems, the following rules apply: –The spatial join will be calculated in the target layer's (the select layer in the table of contents) coordinate system. –If the type of join performed involves adding a field to show the distance between joined features, the distance will be in a unit of measure associated with the target layer's coordinate system. –If one of the layers has an unknown coordinate system and the other a defined coordinate system, an error message will appear. If both layers have an unknown coordinate system, the join will proceed and the resulting layer will have an unknown coordinate system. –The coordinate system used to display data in ArcMap has no effect on how the data is joined. ArcMap allows data to be stored in one coordinate system and displayed in another. The analysis is always performed using the stored coordinate system. From: http://support.esri.com/articleshttp://support.esri.com/articles

38 Spatial Joins (ESRI)

39 Spatial Join (Data Tables)

40 Joined Data

41 Single & Multiple Spatial Joins Multiple spatial joins are commonly needed to create relationships between many different layers. The “Roads” layer is not spatially joined to “County”, and does not have a attribute which can relate location between them. The “Waters” layer does not contain a spatial relationship with the “Counties” layer, therefore any queries based on counties will not be applicable.

42 Multiple Spatial Joins (Cont.) By spatially joining the all the layers with the layer “Counties” we are able to create a spatial relationship between all the layers and the county they are located in.

43 What can we do with these relationships?

44 Queries & Selections Now that we have relations between the different layers, in order to take advantage of them, queries can be used to extract and filter data to find relevant spatial information.

45 Lakes Within One Mile of a Landmark (Visual Results) Layers which contain common relationship can be queried based upon these relationships as well as there own table attributes. Landmarks that are within a mile from a body of water.

46 Lakes Within One Mile of a Landmark (Data Results) Layers which contain common relationship can be queried based upon these relationships as well as there own table attributes.

47 Lakes Within One Mile of a Landmark Layers which contain common relationship can be queried based upon these relationships as well as there own table attributes.

48 Lakes Within One Mile of the Road The returned table contains a filtered subset of the original roads, which are in Bishop and within one at most one mile from a body of water. Roads that are within a mile from a body of water.

49 Lakes Within One Mile of the Road The returned table contains a filtered subset of the original roads, which were in Bishop with roads which are now only within one mile of lakes.

50 Lakes Within One Mile of the Road The returned table contains a filtered subset of the original roads, which were in Bishop with roads which are now only within one mile of lakes.

51 Why 7.5-Minute Maps?

52 National Map Accuracy Standards: 1941/47 Established in 1941 by the US Bureau of the Budget (now OMB) for use with US Geological Survey maps (Maling, 1989, p. 146) Horizontal accuracy: not more than 10% of tested, ‘well defined’ points shall be more than the following distances from their true location: –1:62,500: 1/50th of an inch (.02”) –1:24,000: 1/40th of an inch (amended to 1/50=.02” in 1947) –1:12,000: 1/30 of an inch (.033”) Thus, on maps with a scale of 1:63,360 (1”=1 mile) 90% of points should be within 105.6 feet [(63360 X.02)/12)] of their true location. From: http://www.utdallas.edu/~briggs/poec5319/quality.ppthttp://www.utdallas.edu/~briggs/poec5319/quality.ppt

53 National Map Accuracy Standards: 1941/47 (Cont.) On USGS quads with a scale of 1:24,000 (1”=2,000ft) 90% of points should be within 40 feet [(24,000 X.02)/12] of their true location. On a map with a scale of 1:12,000 (1”=1,000ft), 90% of points should be within 33 feet (1,000 X.033), approx. 10 meters Gives rise to the loose, but often used, statement that the “NMAS is 10 meters” Inadequate for the computer age –How many points? how select? –How determine their ‘true’ location –What about attribute completeness? From: http://www.utdallas.edu/~briggs/poec5319/quality.ppthttp://www.utdallas.edu/~briggs/poec5319/quality.ppt

54 7.5-Minute Map

55 15-Minute Map

56 ESRI ArcGIS Limitations ArcView v.3.3 –Depreciated ArcInfo v.8.2 –Command Line Based –Best feature set between all of the different ESRI products –Large learning curve ArcGIS v.8.1 –No Spatial Adjustment Support (Rubberizing) –Limited registeration support ArcGIS v.8.2 –Supported Spatial Adjustments (Rubberizing) –Better intgeration to ArcSDE


Download ppt "ESRI GIS Software. Contents Data Types –ESRI Data Model –Shapefiles –Raster Data Digital Orthophoto Quadrangle Digital Elevation Model Digital Raster."

Similar presentations


Ads by Google