Skip to main content

Test for postgis

Project description

Summary

Add types and functions to work with geometric attributes that are stored in a Postgis database (that is a PostgreSQL database with Postgis extension enabled).

The present cube supports only version 2.0 and later of Postgis.

It introduces one new type when defining attributes in the data model schema:

  • a Geometry type. Additionally, you should give the following elements along with a Geometry attribute:

    • geom_type. The Postgis type of geometries that this attribute will accept, for example POINT, MULTILINESTRING or POLYGON,

    • srid. The spatial reference system the geometry coordinates will live in. This is an integer and a foreign key that must match the srid key in the spatial_ref_sys table. Most of the time, it will be the same as the spatial system EPSG code,

    • coord_dimension. The number of dimensions used by geometries. Defaults to 2.

  • a Geography type (see the description).

Then you can also use geometric functions like ST_INTERSECTS, ST_WITHIN or ST_UNION to work with this new type.

See Postgis manual for reference documentation about Postgis.

Example

In schema.py, one can declare a City entity like the following.

class City(EntityType):
    name = String(required=True)
    geometry = Geometry(geom_type='POLYGON', srid=4326)

You may then make queries like:

# get all cities in a given bounding box
rql('City C WHERE C geometry G HAVING(ST_WITHIN(G, ST_MAKEENVELOPE('
    '%(left)s, %(bottom)s, %(right)s, %(top)s, 4326)) = TRUE)',
        {'left': 2.2,
        'right': 2.6,
        'top': 49,
        'bottom': 48})

# get all cities at a given distance from a point, sorted by distance
rql('Any C, ST_DISTANCE(G, ST_SETSRID(ST_MAKEPOINT(2.2, 48.4), 4326)) '
    'ORDERBY 5 WHERE '
        'C geometry G HAVING ('
        ' ST_DWITHIN(G, ST_SETSRID(ST_MAKEPOINT(2.2, 48.4), 4326), 0.1) = TRUE)')

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cubicweb-postgis-1.0.0.tar.gz (10.0 kB view details)

Uploaded Source

Built Distribution

cubicweb_postgis-1.0.0-py3-none-any.whl (9.6 kB view details)

Uploaded Python 3

File details

Details for the file cubicweb-postgis-1.0.0.tar.gz.

File metadata

  • Download URL: cubicweb-postgis-1.0.0.tar.gz
  • Upload date:
  • Size: 10.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.2

File hashes

Hashes for cubicweb-postgis-1.0.0.tar.gz
Algorithm Hash digest
SHA256 72d13c433500cbda1b3ba608e7c17371fb95c2a220afcd69d44311e94e998863
MD5 e8dbffdd78069efeb86cef0396a233fc
BLAKE2b-256 9d5e57758dfb451cd73874341dab68e0ab17c217be196fcea0672875489e8c85

See more details on using hashes here.

File details

Details for the file cubicweb_postgis-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for cubicweb_postgis-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8b3a43af3831fb1b8efd9bb0b147d2d0ee32b9c5aeb242244fc9f7a487780fd6
MD5 f6ace58494be701eafe8ed0207e8ecfe
BLAKE2b-256 169f36e1bf39f44dbb03add439d19266fcef3c0d712cb1e782bc61fca526be31

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page