Simple Features
From Wikipedia, the free encyclopedia
Simple Features are an OpenGIS standard which specifies digital storage of geographical data (point, line, polygon, multi-point, multi-line, etc) with both spatial and non-spatial attributes. Simple Features are based on 2D geometry with linear interpolation between vertices. In general, a 2D geometry is simple if it contains no self-intersection. The OpenGIS Simple Features specifications define various spatial operators, which can be used to generate new geometries from existing geometries.
Contents |
[edit] Types
[edit] Point
Example: POINT (10 10)
[edit] LineString
Example: LINESTRING( 10 10, 20 20, 30 40)
[edit] Polygon
Example: POLYGON ((10 10, 10 20, 20 20, 20 15, 10 10))
[edit] Multipoint
Example: MULTIPOINT(10 10, 20 20)
[edit] Multipolygon
Example: MULTIPOLYGON(((10 10, 10 20, 20 20, 20 15, 10 10)),((60 60, 70 70, 80 60, 60 60)))
[edit] GeomCollection
Example: GEOMETRYCOLLECTION(POINT (10 10), POINT(30 30), LINESTRING(15 15, 20 20))
External links
- OpenGIS Simple Features Implementation Specification
- OGR - OGR library which implements relevant OGC standards
- OpenGIS Simple Features Specifications For SQL
- MySQL 5.1 documentation on Spatial extensions
- PostGIS Simple Features implementation for PostgreSQL