VERTEX
Description
This table stores information about vertices.
Columns
| Column Name | Data Type | Description |
| ID | bigint | Primary key column for the table |
| LATITUDE | double | Stores the latitude of the vertex |
| LONGITUDE | double | Stores the longitude of the vertex |
| VERTICES_POLYGON_ID | bigint | Stores the ID of the polygon associated with the vertex |
| VERTICES_HJORDER | int | Stores the HJORDER of the vertex |
Foreign Key Relationships
- VERTICES_POLYGON_ID references POLYGON(ID)