PostGIS: Unterschied zwischen den Versionen

Aus Geoinformation HSR
Wechseln zu: Navigation, Suche
(Websites und Dokumentation)
Zeile 9: Zeile 9:
  
 
== Websites und Dokumentation ==
 
== Websites und Dokumentation ==
* [http://www.bostongis.com/postgis_quickguide.bqg?outputformat=PDF Quickguide/Cheatsheet] from BostonGIS
 
 
* PostGIS auf Refractions Ltd., Canada:  
 
* PostGIS auf Refractions Ltd., Canada:  
 
** [http://postgis.refractions.net PostGIS Homepage] (en)  
 
** [http://postgis.refractions.net PostGIS Homepage] (en)  
 
** [http://postgis.refractions.net/docs/ PostGIS Manual (html, en)], [http://postgis.refractions.net/documentation All PostGIS Manuals (.pdf, en)]
 
** [http://postgis.refractions.net/docs/ PostGIS Manual (html, en)], [http://postgis.refractions.net/documentation All PostGIS Manuals (.pdf, en)]
** [http://postgis.refractions.net/support/ PostGIS Support u.a. mit Mailingliste, Suche und Wiki]  
+
** [http://postgis.refractions.net/support/ PostGIS Support u.a. mit Mailingliste, Suche]
 +
** [http://trac.osgeo.org/postgis/wiki/UsersWikiMain PostGIS Wiki]  
 +
* [http://www.bostongis.com/postgis_quickguide.bqg?outputformat=PDF Quickguide/Cheatsheet] from BostonGIS
 
* [http://openjump.org/PostGIS_Tutorial.pdf PostGIS-Tutorial (Grundlagen) (de)] - von openjump.org
 
* [http://openjump.org/PostGIS_Tutorial.pdf PostGIS-Tutorial (Grundlagen) (de)] - von openjump.org
 
* [http://www.fossgis.de/konferenz/wiki/Einf%C3%BChrung_in_Geodatenbanken_mit_PostGIS Einführung in Geodatenbanken mit PostGIS (de)] - von s. Holl, Intevation, FOSSGIS-Workshops 2009
 
* [http://www.fossgis.de/konferenz/wiki/Einf%C3%BChrung_in_Geodatenbanken_mit_PostGIS Einführung in Geodatenbanken mit PostGIS (de)] - von s. Holl, Intevation, FOSSGIS-Workshops 2009

Version vom 14. November 2009, 23:07 Uhr

PostGIS ist eine Erweiterung (Modul) von PostgreSQL um raumbezogene (geometrische) Funktionen auf Basis der bereits in der Standardversion vorhandenen Datentypen.

Siehe auch:


Websites und Dokumentation

Bücher

  • Tyler Mitchell, Web Mapping Illustrated, 2005, 1 Ed., 372 S., O'Reilly, ISBN 0-596-00865-1 (das zurzeit einzige Buch über PostGIS)
  • Siehe auch PostgreSQL

Software

PostgreSQL/PostGIS-Daten-Viewer (GIS-Viewer):

PostGIS-Tools von Dritten:

  • PGAT - a graphical interface to PostGIS focused in mapping the geo-spatial operations defined in PostGIS.
  • pgRouting - Routing libary with Shortest Path and Traveling Sales Person algorithms.

PostgreSQL/PostGIS und ArcGIS:

Installation

Siehe PostgreSQL#Installation.

FAQ zu PostGIS

Siehe auch oben ("Siehe auch"), insbesondere PostGIS - Tipps und Tricks und PostGIS Wiki mit 'Newbie Questions'.

Was bedeutet der Error "addgeometrycolumn(...) does not exist"?
Die PostGIS-Funktionen sind nicht geladen. Man installiere die PostGIS-Erweiterung (falls nicht schon geschehen) und erzeuge eine neue PostGIS-Datenbank (siehe "Wie erzeugt man eine neue PostGIS-Datenbank?").
Wie erzeugt man eine neue PostGIS-Datenbank?
1. Falls noch keine 'normale' (=Nicht-GIS-) Datenbank vorhanden ist, "create a new database and choose the template_postgis as your template". 2. Falls eine 'normale' Datenbank mit Tabellen etc. bereits existiert, "spatially enable your database by running the following two SQL files: a) Postgresql\8.2\share\contrib\lwpostgis.sql and b) Postgresql\8.2\share\contrib\spatial_ref_sys.sql. lwpostgis.sql benötigt plpgsql language support installed (Syntax: createlang plpgsql yourexistingdb).
Was ist das für eine Zahl, die ST_distance() zurückgibt?
Siehe PostGIS Wiki.
Was für Mass-Einheiten (units of measurement) benützen die PostGIS-Funktionen?
Siehe PostGIS Wiki.
Wie erhält man Distanz-Masse in Meter?
Siehe PostGIS Wiki.
Was sind die Grenzen der 3D-Typen und -Funktionen in PostGIS?
(1) 3D volumetric objects are not supported. (2) 3D non-volume are supported partly -- e.g. a 2D polygon in 3 d space, a line, point in 3d space. (3) Spatial relationships however only consider the spatial component of the x, y plane.
MySQL hat auch eine Spatial Extension und ist erst noch bei Internet-Service-Providern verbreiteter; was ist der Unterschied zu PostGIS?
Drei Gründe: (1) Operationen werden nur mittels Bounding-Box gemacht (hips-between-geometries.html, (2) es gibt keine Unterstützung für Koordinatensysteme, (3) die Spatial Extension ist praktisch eine One-Man-Show.