16. Module: Spatial Database Concepts with PostGIS¶
Spatial Databases allow the storage of the geometries of records inside a Database as well as providing functionality for querying and retrieving the records using these Geometries. In this module we will use PostGIS, an extension to PostgreSQL, to learn how to setup a spatial database, import data into the database and make use of the geographic functions that PostGIS offers.
While working through this section, you may want to keep a copy of the PostGIS cheat sheet available from Boston GIS user group. Another useful resource is the online PostGIS documentation.
There are also some more extensive tutorials on PostGIS and Spatial Databases available from Boundless Geo:
See also PostGIS In Action.
- 16.1. Lesson: PostGIS-Einrichtung
- 16.2. Simple-Feature-Modell
- 16.2.1. Was ist OGC
- 16.2.2. Was ist das SFS Modell
- 16.2.3. Hinzufügen eines Geometriefeldes zu einer Tabelle
- 16.2.4. Hinzufügen einer Einschränkung basierend auf dem Geometrietyp
- 16.2.5. Try Yourself
- 16.2.6. Füllen der geometry_columns Tabelle
- 16.2.7. Hinzufügen eines Geomtriedatensatzes zur Tabelle mit Hilfe von SQL
- 16.2.8. In Conclusion
- 16.2.9. What’s Next?
- 16.3. Lesson: Importieren und Exportieren
- 16.4. Lesson: Räumliche Abfragen
- 16.5. Lesson: Geometrieaufbau
- 16.5.1. Erstellen von Linien
- 16.5.2. Try Yourself
- 16.5.3. Erstellung von Polygonen
- 16.5.4. Übernung: Anbindung Städte an Personen
- 16.5.5. Unser Schema
- 16.5.6. Try Yourself
- 16.5.7. Zugriff auf Unter-Objekte
- 16.5.8. Datenverarbeitung
- 16.5.9. Ausschneiden
- 16.5.10. Geometrien aus anderen Geometrien erstellen
- 16.5.11. Geometriebereinigung
- 16.5.12. Unterschiede zwischen Tabellen
- 16.5.13. Tablespaces
- 16.5.14. In Conclusion