Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 1.15 KB

File metadata and controls

38 lines (31 loc) · 1.15 KB

🗺️ Land use

Land use

The Land use component models how land parcels are utilized or designated, such as agricultural, residential, commercial, or conservation areas. This schema enables the representation of land use types and individual land use polygons, supporting spatial analysis and planning.

Entities from sql/9-landuse.sql:

  • landuse_type: Lookup table for different land use categories (e.g., agricultural, residential, industrial).
  • landuse: Represents individual land use areas, with geometry and a reference to landuse_type.
erDiagram
  landuse_type {
    UUID uuid PK
    TEXT name
    TIMESTAMP last_update
    TEXT last_update_by
  }
  landuse {
    UUID uuid PK
    UUID landuse_type_uuid FK
    GEOMETRY geometry
    TEXT name
    TIMESTAMP last_update
    TEXT last_update_by
  }

  landuse_type ||--o{ landuse : "has many"
Loading

🤖 Prompt: Add a subsection to ## Components which provides

  1. SubHeading: Land use
  2. Image: img/landuse.png
  3. Text: Summary of the entities in sql/9-landuse.sql
  4. Mermaid: Diagram of the entities in sql/9-landuse.sql