PostGIS Topology: Porovnání verzí

Z GeoWikiCZ
mBez shrnutí editace
m (Obsah stránky nahrazen textem „{{freegiswiki|PostGIS Topology}}“)
 
(Není zobrazeno 78 mezilehlých verzí od stejného uživatele.)
Řádek 1: Řádek 1:
{{Upravit}}
{{freegiswiki|PostGIS Topology}}
 
[http://trac.osgeo.org/postgis/wiki/UsersWikiPostgisTopology PostGIS Topology] je rozšíření pro [[PostGIS]] umožňující ''topologickou'' správu vektorových dat v prostředí PostGIS/[[PostgreSQL]].
 
Více přednášky [[153UZPD#Přednášky|Úvod do zpracování prostorových dat]].
 
 
\d urbanarea
 
<pre>
                                    Table "public.urbanarea"
    Column    |      Type        |                          Modifiers                         
--------------+-------------------+-------------------------------------------------------------
ogc_fid      | integer          | not null default nextval('urbanarea_ogc_fid_seq'::regclass)
wkb_geometry | geometry          |
cat          | integer          |
objectid    | integer          |
ua          | character varying |
name        | character varying |
ua_type      | character varying |
Indexes:
    "urbanarea_pk" PRIMARY KEY, btree (ogc_fid)
    "urbanarea_geom_idx" gist (wkb_geometry)
Check constraints:
    "enforce_dims_wkb_geometry" CHECK (st_ndims(wkb_geometry) = 2)
    "enforce_geotype_wkb_geometry" CHECK (geometrytype(wkb_geometry) = 'POLYGON'::text OR wkb_geometry IS NULL)
    "enforce_srid_wkb_geometry" CHECK (st_srid(wkb_geometry) = 900914)
</pre>
 
<source lang=sql>
SELECT cat, ua, name, ST_GeometryType(wkb_geometry) from urbanarea limit 5;
</source>
 
<pre>
cat |  ua  |    name    | st_geometrytype
-----+-------+------------+-----------------
  1 | 29305 | Farmville  | ST_Polygon
  2 | 92404 | Washington | ST_Polygon
  3 | 35380 | Greenville | ST_Polygon
  4 | 46315 | La Grange  | ST_Polygon
  5 | 45397 | Kinston    | ST_Polygon
</pre>
 
<source lang=sql>
SELECT topology.createtopology('urbanarea');
</source>
 
<source lang=sql>
SELECT * from topology.topology;
</source>
 
<pre>
id |  name    | srid | precision
----+-----------+------+-----------
  1 | urbanarea |  -1 |        0
</pre>
 
\dt urbanarea.
 
<pre>
          List of relations
  Schema  |  Name    | Type  | Owner 
-----------+-----------+-------+--------
urbanarea | edge_data | table | martin
urbanarea | face      | table | martin
urbanarea | node      | table | martin
urbanarea | relation  | table | martin
</pre>
 
== Externí odkazy ==
 
* [http://2010.foss4g.org/presentations/3555.pdf State of the art of FOSS4G for topology and network analysis]
* [http://www.postgis.org/documentation/manual-svn/Topology.html PostGIS 2.0 Topology section of manual]
 
{{Databáze}}
{{GIS}}
{{GFOSS}}

Aktuální verze z 9. 1. 2013, 10:50

Stránky přesunuty na Free GIS Portál: http://geo.fsv.cvut.cz/freegis/PostGIS_Topology