https://github.com/fabianazioti/geo_types
https://github.com/fabianazioti/geo_types
c extension postgresql spatial-database
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fabianazioti/geo_types
- Owner: fabianazioti
- License: lgpl-3.0
- Created: 2017-06-13T19:35:03.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-03T16:08:12.000Z (about 8 years ago)
- Last Synced: 2024-06-12T19:00:06.732Z (over 1 year ago)
- Topics: c, extension, postgresql, spatial-database
- Language: C
- Size: 46.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Spatial extension for PostgreSQL
pg_geoext is a simplified spatial extensionn for teaching spatial database class
### Building & installation
---
* src/geoext
* make
* make install### Types:
* POINT(31.3168034143746 29.5994637720287)
* POLYGON((0 0, 10 0, 10 10, 0 10, 00))### Functions:
```cgeo_point_from_text();
geo_point_to_str();
geo_point_distance()geo_polygon_area();
```