Kan-T-IT / QGIS-KICa

KICa - QGIS Kan Imagery Catalog Plugin, developed to query the availability of imagery in an area in an agnostic way, focused on geospatial analysis.
GNU General Public License v3.0
4 stars 0 forks source link

Search of WTMS Products (e.g., Vexcel Collection) #23

Open Florapigatto opened 11 months ago

Florapigatto commented 11 months ago

The STAC Search returns the Tiles available: url = "https://api.up42.dev/catalog/hosts/vexcel/stac/search"

search = { "collections": ["vexcel-weu-15cm-ortho"], "bbox": [13.018799,52.308479,13.848267,52.659726], "datetime": "2020-01-01T00:00:00Z/2023-11-15T23:59:59Z", "limit": 100, "query": { "cloudCoverage": { "LTE": 90 } } }

def stac_search(admin_token, url):

response = requests.post(
    url, 
    auth=BearerAuth(admin_token),
    json = search
)

return response

stac_search = stac_search(admin_token, url).json() I was wondering, why no result is being displayed in the Plug-In, is it required to find a quickview?

PelJon commented 9 months ago

I can add to it, for WMTS server, we do not display the tile - as this would already kind of accessing the data itself (there are not quicklooks available). But we rather surface the adjutant coverage map.

Therefore, what would be helpful, if the coverage map of the respective Collection can be returned and displayed to see, that data for this respective collection is available.