You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 1.2KB

12345678910111213141516171819202122232425
  1. """
  2. This module contains all of the GEOS ctypes function prototypes. Each
  3. prototype handles the interaction between the GEOS library and Python
  4. via ctypes.
  5. """
  6. from django.contrib.gis.geos.prototypes.coordseq import ( # NOQA
  7. create_cs, cs_clone, cs_getdims, cs_getordinate, cs_getsize, cs_getx,
  8. cs_gety, cs_getz, cs_setordinate, cs_setx, cs_sety, cs_setz, get_cs,
  9. )
  10. from django.contrib.gis.geos.prototypes.geom import ( # NOQA
  11. create_collection, create_empty_polygon, create_linearring,
  12. create_linestring, create_point, create_polygon, destroy_geom, geom_clone,
  13. geos_get_srid, geos_normalize, geos_set_srid, geos_type, geos_typeid,
  14. get_dims, get_extring, get_geomn, get_intring, get_nrings, get_num_coords,
  15. get_num_geoms,
  16. )
  17. from django.contrib.gis.geos.prototypes.misc import * # NOQA
  18. from django.contrib.gis.geos.prototypes.predicates import ( # NOQA
  19. geos_contains, geos_covers, geos_crosses, geos_disjoint, geos_equals,
  20. geos_equalsexact, geos_hasz, geos_intersects, geos_isclosed, geos_isempty,
  21. geos_isring, geos_issimple, geos_isvalid, geos_overlaps,
  22. geos_relatepattern, geos_touches, geos_within,
  23. )
  24. from django.contrib.gis.geos.prototypes.topology import * # NOQA