geopython / pygeoapi

pygeoapi is a Python server implementation of the OGC API suite of standards. The project emerged as part of the next generation OGC API efforts in 2018 and provides the capability for organizations to deploy a RESTful OGC API endpoint using OpenAPI, GeoJSON, and HTML. pygeoapi is open source and released under an MIT license.
https://pygeoapi.io
MIT License
483 stars 259 forks source link

expose shapely functions as sample process #1439

Closed tomkralidis closed 5 months ago

tomkralidis commented 9 months ago

As suggested by Sumit Sen at GISE OGC Stack Winter School 2023, given Shapely is a core pygeoapi dependency, it would be value to have pygeoapi.process.shapely_functions.py to expose various geometric processing functionality. Candidates could be:

(there could be others).

All functions should be able to accept either WKT or a GeoJSON geometry object and output same.

krishnaglodha commented 8 months ago

Can I work on it ?

tomkralidis commented 8 months ago

Sure!

tomkralidis commented 5 months ago

Update: it looks like we have 2 open PRs in support of this issue:

Can you let me know if you are actively working on these PRs? We should also consider coordinating this work further into a single PR.

jeafreezy commented 5 months ago

Hi @tomkralidis , yes I am working on mine. I will be pushing the final docs this weekend.

jeafreezy commented 5 months ago

I've pushed the docs. The PR is npw open for review @tomkralidis.🙏🏿

tomkralidis commented 5 months ago

Initial implementation added in #1565. Thanks!