Replies: 2 comments
-
Hi @blaziq I'll try to answer each question
Any PR will be appreciated, we do have endpoints documentation over https://developmentseed.org/tipg/user_guide/endpoints/ The Endpoints created with TiPg application follows the OGC specification so it's you can find more information at https://ogcapi.ogc.org/features/ and https://ogcapi.ogc.org/tiles/
TiPG only implement the part 1 and 2 or the OGC Feature Spec, the Part 4 (Create, Replace, Update and Delete is still on a draft https://docs.ogc.org/DRAFTS/20-002r1.html), so you're write
I agree this is not idea but sadly there are no specs to tell the users what are the required arguments. You can find the documentation for each function on Postgis doc: https://postgis.net/docs/ST_HexagonGrid.html we do explain how the functions work in https://developmentseed.org/tipg/advanced/functions/#function-examples
For each
This is likely a configuration issue on your HTML/JS code I added an example in https://github.com/developmentseed/tipg/blob/main/examples/maplibre.html
Do you have any other format for vector tiles?
We usually use https://github.com/tilezen/mapbox-vector-tile
TiPG (PostGIS) will reproject dynamically any table to the output projection I don't seems to be able to get any response from your URLs 🤷♂️ More than happy to review any PR to improve our documentation |
Beta Was this translation helpful? Give feedback.
-
Hi @vincentsarago |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I am working on EOEPCA Data Access building block tutorial and examples for Salvatore Pinto of ESA.
My first and most general question is: are there any working examples or close-to-real-life use cases how to actually use the TiPG component? The existing documentation lacks severely in that matter (unlike the TiTiler-PgSTAC - the raster counterpart). And there is nothing in the EOEPCA Deployment Guide or its accompanying Jupyter notebooks, either.
This is what I know so far:
countries
,landsat_wrs
andsentinel_mgrs
), from TiPG Github and I have figured out a way to actually obtain an mvt vector tile from the vector service, by calling /vector/collections/<collection>/tiles/WebMercatorQuad/<z>/<x>/<y> with parametersx
,y
,z
chosen with trial and error method, from the ranges given for the specified zoom level, for a single tile from a collection - or placeholders for the entire collection. I took thepublic.countries
collection because it seems like the best way to present something meaningful to users. But, unlike with raster, there doesn't seem to be an easy way to overlay this over a map and when I'm trying, I'm getting weird results (see screenshots below). Apparently, the generated tile does not have coordinates that are recognizable to the renderer (the map is rendered usingmaplibre-gl
).SELECT AddGeometryColumn('','countries','geom','4326','MULTIPOLYGON',2);
in the SQL used to create the table). In the end, I don't know what is used in the final vector product, whether it was reprojected from 4326 to 3857 or how the coordinates can be used to overlay on a map.(the URLs below are just examples and are not accessible from the internet as they are only in a private network)
landsat_wrs
(with only a few items over Greenland) https://81-d90edb2c79ac450dbd5ac068165226ac-lc.eoepca.ples.dedyn.io/vector/collections/public.landsat_wrs/tiles/WebMercatorQuad/{z}/{x}/{y}?f=mvt I get the mess which you can see in the third screenshotCould you give me some hints how to use the TiPG vector component correctly and efficiently?
Beta Was this translation helpful? Give feedback.
All reactions