






Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
An overview of various spatial data analysis techniques, including districting, regionalization, and proximity calculations. Districting involves grouping contiguous or non-contiguous polygons into districts, preserving or dissolving original boundaries. Regionalization groups polygons into contiguous regions, dissolving original boundaries. Proximity calculations determine distances between points and features. Tools like arcview 8 and commands such as pointdistance, near, spatial joins, and overlays are used for these analyses.
Typology: Study notes
1 / 10
This page cannot be seen from the preview
Don't miss anything!







Criteria may be:
The PAT of the output coverage will have two additional items: one to store the distance to the nearest feature in the near_cover, and a second to store the internal number of the nearest feature. LOCATION adds items for x and y coordinates.
Spatial Operations: Spatial Matching: Spatial Joins and Overlays
CLIP <in_cover> <clip_cover> <out_cover> {POLY | LINE | POINT | NET | LINK | RAW} {fuzzy_tolerance} The <clip_cover> must have polygon topology. Boundaries of interior polygons in the <clip_cover> are not used in CLIP. CLIP uses the clip coverage as a cookie cutter ; only those input coverage features that are within the clip coverage are stored in the output coverage. Topology is built for the output coverage. Only the attributes of the in_cover are retained in the out_cover
CLIP, pg 2
ERASE <in_cover> <erase_cover> <out_cover> {POLY | LINE | POINT | NET | LINK | RAW} {fuzzy_tolerance} The <erase_cover> must have polygon topology. Boundaries of interior polygons in the <erase_cover> are not used in ERASE. The polygons of the erase coverage define the erasing region. Input coverage features that are within the erasing region are removed. The output coverage contains only those input coverage features that are outside the erasing region. Erase is the opposite of clip: it leaves you with “the left over dough” Topology is rebuilt for the output coverage.