Vector overlay

Vector overlay is an operation (or class of operations) in a geographic information system (GIS) for integrating two or more vector spatial data sets. Terms such as polygon overlay, map overlay, and topological overlay are often used synonymously, although they are not identical in the range of operations they include. Overlay has been one of the core elements of spatial analysis in GIS since its early development. Some overlay operations, especially Intersect and Union, are implemented in all GIS software and are used in a wide variety of analytical applications, while others are less common.

Overlay is based on the fundamental principle of geography known as areal integration, in which different topics (say, climate, topography, and agriculture) can be directly compared based on a common location. It is also based on the mathematics of set theory and point-set topology.

The basic approach of a vector overlay operation is to take in two or more layers composed of vector shapes, and output a layer consisting of new shapes created from the topological relationships discovered between the input shapes. A range of specific operators allows for different types of input, and different choices in what to include in the output.

History

Prior to the advent of GIS, the overlay principle had developed as a method of literally superimposing different thematic maps (typically an isarithmic map or a chorochromatic map) drawn on transparent film (e.g., cellulose acetate) to see the interactions and find locations with specific combinations of characteristics.[1] The technique was largely developed by landscape architects. Warren Manning appears to have used this approach to compare aspects of Billerica, Massachusetts, although his published accounts only reproduce the maps without explaining the technique.[2] Jacqueline Tyrwhitt published instructions for the technique in an English textbook in 1950, including:[3]

As far as possible maps should be drawn on transparent paper, so that when completed the maps to the same scale can be ‘sieved’—i.e., placed one on top of another in turn so that correlations or their absence can be noted. (p.157)

Ian McHarg was perhaps most responsible for widely publicizing this approach to planning in Design with Nature (1969), in which he gave several examples of projects on which he had consulted, such as transportation planning and land conservation.[4]

The first true GIS, the Canada Geographic Information System (CGIS), developed during the 1960s and completed in 1971, was based on a rudimentary vector data model, and one of the earliest functions was polygon overlay.[5] Another early vector GIS, the Polygon Information Overlay System (PIOS), developed by ESRI for San Diego County, California in 1971, also supported polygon overlay.[6] It used the Point in polygon algorithm to find intersections quickly. Unfortunately, the results of overlay in these early systems was often prone to error.[7]

Carl Steinitz, a landscape architect, helped found the Harvard Laboratory for Computer Graphics and Spatial Analysis, in part to develop GIS as a digital tool to implement McHarg's methods. In 1975, Thomas Peucker and Nicholas Chrisman of the Harvard Lab introduced the POLYVRT data model, one of the first to explicitly represent topological relationships and attributes in vector data.[8] They envisioned a system that could handle multiple "polygon networks" (layers) that overlapped by computing Least Common Geographic Units (LCGU), the area where a pair of polygons overlapped, with attributes inherited from the original polygons. Chrisman and James Dougenik implemented this strategy in the WHIRLPOOL program, released in 1979 as part of the Odyssey project to develop a general-purpose GIS.[9] This system implemented several improvements over the earlier approaches in CGIS and PIOS, and its algorithm became part of the core of GIS software for decades to come.

Algorithm

Illustration of the steps in computing a polygon overlay in a geographic information system

The goal of all overlay operations is to take in vector layers, and create a layer that integrates both the geometry and the attributes of the inputs.[10] Usually, both inputs are polygon layers, but lines and points are allowed in many operations, with simpler processing.

Since the original implementation, the basic strategy of the polygon overlay algorithm has remained the same, although the vector data structures that are used have evolved.[11]

  1. Given the two input polygon layers, extract the boundary lines.
  2. Cracking part A: In each layer, identify edges shared between polygons. Break each line at the junction of shared edges and remove duplicates to create a set of topologically planar connected lines. In early topological data structures such as POLYVRT and the ARC/INFO coverage, the data was natively stored this way, so this step was unnecessary.
  3. Cracking part B: Find any intersections between lines from the two inputs. At each intersection, split both lines. Then merge the two line layers into a single set of topologically planar connected lines.
  4. Assembling part A: Find each minimal closed ring of lines, and use it to create a polygon. Each of these will be a least common geographic unit (LCGU), with at most one "parent" polygon from each of the two inputs.
  5. Assembling part B: Create an attribute table that includes the columns from both inputs. For each LCGU, determine its parent polygon from each input layer, and copy its attributes into the LCGU's row the new table; if was not in any of the polygons for one of the input layers, leave the values as null.

Parameters are usually available to allow the user to calibrate the algorithm for a particular situation. One of the earliest was the snapping or fuzzy tolerance, a threshold distance. Any pair of lines that stay within this distance of each other are collapsed into a single line, avoiding unwanted narrow sliver polygons that can occur when lines that should be coincident (for example, a river and a boundary that should follow it de jure) are digitized separately with slightly different vertices.[12]

Operators

A visualization of the polygon overlay operations available in most GIS software

The basic algorithm can be modified in a number of ways to return different forms of integration between the two input layers. These different overlay operators are used to answer a variety of questions, although some are far more commonly implemented and used than others. The most common are closely analogous to operators in set theory and boolean logic, and have adopted their terms. As in these algebraic systems, the overlay operators may be commutative (giving the same result regardless of order) and/or associative (more than two inputs giving the same result regardless of the order in which they are paired).

  • Intersect (ArcGIS, QGIS, Manifold, TNTmips; AND in GRASS): The result includes only the LCGUs where the two input layers intersect (overlap); that is, those with both "parents." This is identical to the set theoretic intersection of the input layers. Intersect is probably the most commonly used operator in this list. Commutative, associative
  • Union (ArcGIS, QGIS, Manifold, TNTmips; or in GRASS): The result includes all of the LCGUs, both those where the inputs intersect and where they do not. This is identical to the set theoretic union of the input layers. Commutative, associative
  • Subtract (TNTmips; Erase in ArcGIS; Difference in QGIS; not in GRASS; missing from Manifold): The result includes only the portions of polygons in one layer that do not overlap with the other layer; that is, the LCGUs that have no parent from the other layer. Non-commutative, non-associative
  • Exclusive or (Symmetrical Difference in ArcGIS, QGIS; Exclusive Union in TNTmips; XOR in GRASS; missing from Manifold): The result includes the portions of polygons in both layers that do not overlap; that is, all LCGUs that have one parent. This could also be achieved by computing the intersection and the union, then subtracting the intersection from the union, or by subtracting each layer from the other, then computing the union of the two subtractions. Commutative, associative
  • Clip (ArcGIS, QGIS, GRASS, Manifold; Extract Inside in TNTmips): The result includes the portions of polygons of one layer where they intersect the other layer. The outline is the same as the intersection, but the interior only includes the polygons of one layer rather than computing the LCGUs. Non-commutative, non-associative
  • Cover (Update in ArcGIS and Manifold; Replace in TNTmips; not in QGIS or GRASS): The result includes one layer intact, with the portions of the polygons of the other layer only where the two layers do not intersect. It is called "cover" because the result looks like one layer is covering the other; it is called "update" in ArcGIS because the most common use is when the two layers represent the same theme, but one represents recent changes (e.g., new parcels) that need to replace the older ones in the same location. It can be replicated by subtracting one layer from the other, then computing the union of that result with the original first layer. Non-commutative, non-associative
  • Divide (Identity in ArcGIS and Manifold; not in QGIS, TNTmips, or GRASS): The result includes all of the LCGUs that cover one of the input layers, excluding those that are only in the other layer. It is called "divide" because it has the appearance of one layer being used to divide the polygons of the other layer. It can be replicated by computing the intersection, then subtracting one layer from the other, then computing the union of these two results. Non-commutative, non-associative

Boolean overlay algebra

One of the most common uses of polygon overlay is to perform a suitability analysis, also known as a suitability model or multi-criteria evaluation. The task is to find the region that meets a set of criteria, each of which can be represented by a region. For example, the habitat of a species of wildlife might need to be A) within certain vegetation cover types, B) within a threshold distance of a water source (computed using a buffer), and C) not within a threshold distance of significant roads. Each of the criteria can be considered boolean in the sense of Boolean logic, because for any point in space, each criterion is either present or not present, and the point is either in the final habitat area or it is not (acknowledging that the criteria may be vague, but this requires more complex fuzzy suitability analysis methods). That is, which vegetation polygon the point is in is not important, only whether it is suitable or not suitable. This means that the criteria can be expressed as a Boolean logic expression, in this case, H = A and B and not C.

In a task such as this, the overlay procedure can be simplified because the individual polygons within each layer are not important, and can be dissolved into a single boolean region (consisting of one or more disjoint polygons but no adjacent polygons) representing the region that meets the criterion. With these inputs, each of the operators of Boolean logic corresponds exactly to one of the polygon overlay operators: intersect = AND, union = OR, subtract = AND NOT, exclusive or = XOR. Thus, the above habitat region would be generated by computing the intersection of A and B, and subtracting C from the result.

Thus, this particular use of polygon overlay can be treated as an algebra that is homomorphic to Boolean logic. This enables the use of GIS to solve many spatial tasks that can be reduced to simple logic.

Lines and points

Vector overlay is most commonly performed using two polygon layers as input and creating a third polygon layer. However, it is possible to perform the same algorithm (parts of it at least) on points and lines.[13] The following operations are typically supported in GIS software:

  • Intersect: The output will be of the same dimension as the lower of the inputs: Points * {Points, Lines, Polygons} = Points, Lines * {Lines, Polygons} = Lines. This is often used as a form of spatial join, as it merges the attribute tables of the two layers analogous to a table join. An example of this would be allocating students to school districts. Because it is rare for a point to exactly fall on a line or another point, the fuzzy tolerance is often used here. QGIS has separate operations for computing a line intersection as lines (to find coincident lines) and as points.[14]
  • Subtract: The output will be of the same dimension as the primary input, with the subtraction layer being of the same or lesser dimension: Points - {Points, Lines, Polygons} = Points, Lines - {Lines, Polygons} = Lines
  • Clip: While the primary input can be points or lines, the clipping layer is usually required to be polygons, producing the same geometry as the primary input, but only including those features (or parts of lines) that are within the clipping polygons. This operation might also be considered a form of spatial query, as it retains the features of one layer based on its topological relationship to another.
  • Union: Normally, both input layers are expected to be of the same dimensionality, producing an output layer including both sets of features. ArcGIS and GRASS do not allow this option with points or lines.

Implementations

Vector Overlay is included in some form in virtually every GIS software package that supports vector analysis, although the interface and underlying algorithms vary significantly.

  • Esri GIS software has included polygon overlay since the first release of ARC/INFO in 1982.[15] Each generation of Esri software (ARC/INFO, ArcGIS, ArcGIS Pro) has included a set of separate tools for each of the overlay operators (Intersect, Union, Clip, etc.). The current implementation in ArcGIS Pro recently added an alternative set of "Pairwise Overlay" tools (as of v2.7) that uses parallel processing to more efficiently process very large datasets.
  • GRASS GIS (open source), although it was originally raster-based, has included overlay as part of its vector system since GRASS 3.0 (1988).[16] Most of the polygon overlay operators are collected into a single v.overlay command, with v.clip as a separate command.
  • QGIS (open source) originally incorporated GRASS as its analytical engine, but has gradually developed its own processing framework, including vector overlay.
  • Manifold System implements overlay in its transformation system.
  • The Turf Javascript API includes the most common overlay methods, although these operate on individual input polygon objects, not on entire layers.
  • TNTmips includes several tools for overlay among its vector analysis process.

References

  1. ^ Steinitz, Carl; Parker, Paul; Jordan, Lawrie (1976). "Hand-Drawn Overlays: Their History and Prospective Uses". Landcape Architecture. 66 (5 (September)): 444–455.
  2. ^ Manning, Warren (1913). "The Billerica Town Plan". Landscape Architecture. 3: 108–118.
  3. ^ Tyrwhitt, Jacqueline (1950). "Surveys for Planning". In APRR (ed.). Town and Country Planning Textbook. Architectural Press.
  4. ^ McHarg, Ian (1969). Design with Nature. Wiley. p. 34. ISBN 0-471-11460-X.
  5. ^ Tomlinson, Roger (1968). "A Geographic Information System for Regional Planning". In Stewart, G.A. (ed.). Land Evaluation: Papers of a CSIRO Symposium. Macmillan of Australia. pp. 200–210.
  6. ^ Tomlinson, Roger F.; Calkins, Hugh W.; Marble, Duane F. (1976). Computer handling of geographical data. UNESCO Press.
  7. ^ Goodchild, Michael F. (1978). "Statistical aspects of the polygon overlay problem". Harvard Papers on Geographic Information Systems. 6.
  8. ^ Peucker, Thomas K.; Chrisman, Nicholas (1975). "Cartographic Data Structures". The American Cartographer. 2 (1): 55–69. doi:10.1559/152304075784447289.
  9. ^ Dougenik, James (1979). "WHIRLPOOL: A geometric processor for polygon coverage data" (PDF). Proceedings of the International Symposium on Cartography and Computing (Auto-Carto IV). 2: 304–311.
  10. ^ Bolstad, Paul (2008). GIS Fundamentals: A First Text on Geographic Information Systems (3rd ed.). Eider Press. p. 352.
  11. ^ Chrisman, Nicholas R. (2002). Exploring Geographic Information Systems (2nd ed.). Wiley. pp. 125–137.
  12. ^ Lo, C.P.; Yeung, Albert K.W. (2002). Concepts and Techniques of Geographic Information Systems. Prentice Hall. p. 211. ISBN 0-13-080427-4.
  13. ^ Esri. "Intersect (Analysis)". ArcGIS Pro Documentation. Retrieved 29 October 2021.
  14. ^ QGIS. "Line intersections". QGIS 3.16 documentation.
  15. ^ Morehouse, Scott (1985). "ARC/INFO: A geo-relational model for spatial information" (PDF). Proceedings of the International Symposium on Cartography and Computing (Auto-Carto VII): 388.
  16. ^ Westervelt, James (2004). "GRASS Roots" (PDF). Proceedings of the FOSS/GRASS Users Conference. Retrieved 26 October 2021.

Read other articles:

Artikel ini sebatang kara, artinya tidak ada artikel lain yang memiliki pranala balik ke halaman ini.Bantulah menambah pranala ke artikel ini dari artikel yang berhubungan atau coba peralatan pencari pranala.Tag ini diberikan pada Oktober 2022. Rel di Brunswick Brunswick adalah sebuah kota di barat daya Frederick County, Maryland, Amerika Serikat. Kota ini terletak di tepi utara Sungai Potomac ; Loudoun County, Virginia menempati pantai seberang. Populasi Brunswick adalah 7.762 pada sens...

 

 

Docang, makanan tradisional Cirebon yang biasanya dihidangkan untuk sarapan. Docang adalah makanan tradisional yang berasal dari Cirebon dan sekitarnya yang terbuat dari campuran potongan lontong, parutan kelapa, daun singkong, daun kucai, toge, dan kerupuk. Bahan-bahan tadi kemudian disiram dengan kuah dage atau oncom.[1] Secara harfiah, docang berasal dari bahasa Cirebon singkatan dari dua kata yaitu: bodo dan kacang (tauge). Docang merupakan perpaduan dari lontong, daun singkong, t...

 

 

العلاقات الألمانية الكيريباتية ألمانيا كيريباتي   ألمانيا   كيريباتي تعديل مصدري - تعديل   العلاقات الألمانية الكيريباتية هي العلاقات الثنائية التي تجمع بين ألمانيا وكيريباتي.[1][2][3][4][5] مقارنة بين البلدين هذه مقارنة عامة ومرجعية للدولتي�...

Ноты для гимна Господь наш меч (нем. Ein feste Burg ist unser Gott) — евангельский гимн, написанный Мартином Лютером в 1529 году на основе 45-го псалма (Бог нам прибежище и сила). Существует несколько стихотворных переводов этого гимна на русский язык. В баптистских сборниках (Песнь В...

 

 

Nycticorax mauritianus Status konservasiPunahIUCN22728777 TaksonomiKerajaanAnimaliaFilumChordataKelasAvesOrdoPelecaniformesFamiliArdeidaeGenusNycticoraxSpesiesNycticorax mauritianus (Newton dan Gadow, 1893) Tata namaProtonimButorides mauritianus DistribusiEndemikMauritius Island (en) lbs Nycticorax mauritianus adalah spesies Nycticorax punah dari Mauritius. Spesies tersebut sempat dibahas secara ilmiah pada 1893 oleh Edward Newton dan Hans Gadow dari Universitas Cambridge. Referensi Pengident...

 

 

United Nations resolution adopted in 2005 UN Security CouncilResolution 1593Map of Darfurian villages destroyed in the Darfur conflict (2004)Date31 March 2005Meeting no.5,158CodeS/RES/1593 (Document)SubjectThe situation concerning SudanVoting summary11 voted forNone voted against4 abstainedResultAdoptedSecurity Council compositionPermanent members China France Russia United Kingdom United StatesNon-permanent members Algeria Argentina Benin Br...

American pirate (1775–1833) James FordNo known portrait of James Ford exists from life. This is an artist's likeness created from his physical description in historical records.[1]BornOctober 22, 1775 (1775-10-22)Ninety-Six District, Province of South Carolina, British America, present-day Spartanburg, South Carolina[2][3]DiedJuly 7, 1833 (1833-07-08) (aged 57)Ford's Ferry, Livingston County, Kentucky, near present-day Tolu, Kentucky[4][5&#...

 

 

American evangelist (1918–2018) For other people with similar names, see Bill Graham. The ReverendBilly GrahamGraham in 1966OrdersOrdination1939Personal detailsBornWilliam Franklin Graham Jr.(1918-11-07)November 7, 1918Charlotte, North Carolina, U.S.DiedFebruary 21, 2018(2018-02-21) (aged 99)Montreat, North Carolina, U.S.DenominationBaptist (Southern Baptist Convention)Spouse Ruth Bell ​ ​(m. 1943; died 2007)​Children5, including Gigi, An...

 

 

土库曼斯坦总统土库曼斯坦国徽土库曼斯坦总统旗現任谢尔达尔·别尔德穆哈梅多夫自2022年3月19日官邸阿什哈巴德总统府(Oguzkhan Presidential Palace)機關所在地阿什哈巴德任命者直接选举任期7年,可连选连任首任萨帕尔穆拉特·尼亚佐夫设立1991年10月27日 土库曼斯坦土库曼斯坦政府与政治 国家政府 土库曼斯坦宪法 国旗 国徽 国歌 立法機關(英语:National Council of Turkmenistan) ...

Disambiguazione – Se stai cercando altri significati, vedi Scrooge. Ebenezer ScroogeEbenezer Scrooge parla al fantasma di Marley UniversoCanto di Natale Lingua orig.Inglese AutoreCharles Dickens EditoreChapman and Hall 1ª app.1843 1ª app. inA Christmas Carol Caratteristiche immaginarieSessomaschio Luogo di nascitaRegno Unito ProfessioneBanchiere Scrooge e Bob Cratchit illustrati da John Leech nel 1843 Il frontespizio della prima edizione del Canto di Natale del 1843 Ebenezer...

 

 

Skyscrapers in Taipei, Taiwan Taipei Twin Towers台北雙星Taipei Twin Towers under constructionAlternative namesTáiběi ShuāngxīngGeneral informationStatusUnder construction[1]LocationTaipeiCountryTaiwanConstruction startedNovember 11, 2022Completed2027Height369 metres (1,211 ft) 289 metres (948 ft)Technical detailsFloor count74 and 55Grounds434,000 square metres (4,670,000 sq ft)Design and constructionArchitect(s)Skidmore, Owings & Merrill LLP The Taipei ...

 

 

American singer-songwriter and actor (born 1949) This article is about the singer and actor. For the actor and acting teacher, see Thomas G. Waites. Tom WaitsWaits c. 1974–75BornThomas Alan Waits (1949-12-07) December 7, 1949 (age 74)Pomona, California, U.S.OccupationsMusiciancomposersongwriteractorYears active1969–presentSpouse Kathleen Brennan ​(m. 1980)​Children3Musical careerGenresExperimentalrockbluesjazzInstrument(s)VocalsguitarpianoharmoniumDi...

صفة حرف صامت انسدادي صامت انفجاري صامت موقوف احتكاكي صامت احتكاكي صامت صفيري صامت رنان صامت أنفي صامت نقري شبه صامت صامت سائلي صائت حرف شبه مصوت صامت جانبي صامت اهتزازي ميكانيكية تيار الهواء رئوي طردي إندفاعي نقري متناغم (نقرات - طقطقات) نقرات رئوية كفافية نقرات طردية كفاف...

 

 

AlnabruAlnabru Station, c. 1922LokasiOsloKetinggian97,3 AMSLPemilikNorges StatsbanenJalurHovedbanenAlnabanenLoenga–AlnabruLinjenLetak6,50 km dari Stasiun Oslo PusatKonstruksiArsitekFinn Ivar Andreas KnudsenSejarahDibuka20 Januari 1902 (1902-01-20)Ditutup14 Juni 1971 (1971-06-14)Elektrifikasi1 January 1927Sunting kotak info • L • BBantuan penggunaan templat iniStasiun Alnabru (bahasa Norwegia: Alnabru stasjon) merupakan sebuah stasiun kereta api pada Hovedbanen ya...

 

 

Not to be confused with the current Seattle Totems, a junior hockey team. Ice hockey team in Seattle, WashingtonSeattle TotemsCitySeattle, WashingtonLeagueNIHL (1943–44) PCHL (1944–52)WHL (1952–74)CHL (1974–75)Founded1943Operated1943–75Home arenaCivic Ice ArenaSeattle Center ColiseumColors1943–52: Red, blue, white1952–54: Green, black1955–65: Blue, white, red1965–75: Kelly green, whiteFranchise history1943–44Seattle Isacsson Iron Workers (NIHL)1944–52Seattle Ironmen (PCH...

Pour les articles homonymes, voir Saint-Léger. Trith-Saint-Léger Mairie. Administration Pays France Région Hauts-de-France Département Nord Arrondissement Valenciennes Intercommunalité Communauté d'agglomération de la Porte du Hainaut Maire Mandat Dominique Savary 2020-2026 Code postal 59125 Code commune 59603 Démographie Gentilé Trithois(e)(s) Populationmunicipale 6 124 hab. (2021 ) Densité 891 hab./km2 Population agglomération 333 383 hab. (2021) Géogra...

 

 

FIFA 09 Información generalDesarrollador EA CanadaDistribuidor EA SportsDiseñador Joe Booth y Kaz Makita (PS3, Xbox 360, Wii) Paul Hossack (PS2, PSP, Nintendo DS, PC)Datos del juegoGénero DeportesModos de juego Un jugador, MultijugadorClasificaciones ESRBPEGIDatos del softwarePlataformas Móvil, Nintendo DS, PC, PlayStation 2, PlayStation 3, PSP, Wii, Xbox 360, Zeebo, N-Gage 2.0Licencias FIFProDatos del hardwareFormato Blu-ray, DVD, Wii optical disc, UMD.Dispositivos de entrada mando de vi...

 

 

Legislative Assembly constituency in Karnataka, India BellaryConstituency No. 93 for the Karnataka Legislative AssemblyConstituency detailsCountryIndiaRegionSouth IndiaStateKarnatakaDistrictBellaryLS constituencyBellaryEstablished2008Total electors238,361[1]ReservationSTMember of Legislative Assembly16th Karnataka Legislative AssemblyIncumbent B Nagendra PartyIndian National CongressElected year2023Preceded byN. Y. Gopalakrishna This article is about the current consistuency of Bellar...

Psychoanalytic concept of allocation of emotional energy This article is about the psychological term. For other uses, see Cathexis (disambiguation). Not to be confused with Catharsis. Part of a series of articles onPsychoanalysis Concepts Psychosexual development Psychosocial development (Erikson) Unconscious Preconscious Consciousness Psychic apparatus Id, ego and superego Ego defenses Projection Introjection Libido Drive Transference Countertransference Resistance Denial Dreamwork Cathexis...

 

 

Casa di Giulio RomanoCasa di Giulio RomanoLocalizzazioneStato Italia Regione Lombardia LocalitàMantova IndirizzoVia Carlo Poma 18 Coordinate45°09′13.82″N 10°47′16.12″E45°09′13.82″N, 10°47′16.12″E Informazioni generaliCondizioniabitato Costruzione1544 Usoresidenziale RealizzazioneArchitettoGiulio Romano ProprietarioProprietà privata Modifica dati su Wikidata · Manuale La casa di Giulio Romano è un edificio in stile manierista di Mantova. Si trova al numer...