Vector Overlay in GIS repository, contains, two main things.
- ArcGIS Pro Project
- md Docs
argis-project contains .geodatabases both inputs and output, tool-wise that were used in this project alongside maps, with the used symbology in the project.
docs consists of markdown documents written as a kind of notes and summary on the topic.
The site is hosted with GitHub Pages using the Just the Docs theme for clean navigation and automatic inβpage Table of Contents.
- Intersect β Features overlapping in all input layers
- Union β Combines features from multiple layers
- Erase β Removes features from input based on erase layer
- Identity β Updates input features with identity layer attributes
- Update β Replaces input polygons with update polygons
- Clip β Extracts input features within clip extent
Each tool section includes:
- Technical specifications
- Input/Output rules based on geometry hierarchy (Point, Line, Polygon)
- Valid input combinations
- Example figures with visual outputs
- ArcPy function references
Each geodatabase includes:
- is mobile geodatabase.
- separate input and output folders.
- separate tool-wise.
- namings aren't consistent among the .geodatbase though they are rather obvious.
Then results are in png in figures, again tool-wise.
This repository is published via GitHub Pages.
You can it all here:
π Live Site
Overlay tools follow the same or lesser dimension rule:
- Polygon input present β Output can be Polygon, Line, or Point
- Line input present β Output can be Line or Point
- Point input only β Output can only be Point
Geometry hierarchy:
Polygon (2D) > Line (1D) > Point (0D)
This is actually a do-over of a project I did, on latex, trying to get out of writing practical notebook of GIS in my bachelors, in January, 2024. That file is provided in docs/src/.
Each tool is documented with its ArcPy function signature, e.g.:
arcpy.analysis.toolname(in_features, out_feature_class {**params})Example figures are included for each tool, showing input layers and resulting outputs.
Figures are stored under:
/assets/figures/Organized by tool (e.g. 01.union/, 02.intersect/, 03.clip/).
The ArcGIS pro Project used in for this can be downloaded from the Release Page Here.
Clone the repository:
git clone https://def-fun7.github.io/vector_overlay_gis/
cd vector_overlay_gisThis project is licensed under the MIT License. See LICENSE for details.