Line data Source code
1 : /******************************************************************************
2 : *
3 : * Project: GDAL
4 : * Purpose: OGC API interface
5 : * Author: Even Rouault, <even.rouault at spatialys.com>
6 : *
7 : ******************************************************************************
8 : * Copyright (c) 2020, Even Rouault, <even.rouault at spatialys.com>
9 : *
10 : * SPDX-License-Identifier: MIT
11 : ****************************************************************************/
12 :
13 : #include "cpl_error.h"
14 : #include "cpl_json.h"
15 : #include "cpl_http.h"
16 : #include "gdal_priv.h"
17 : #include "tilematrixset.hpp"
18 : #include "gdal_utils.h"
19 : #include "ogrsf_frmts.h"
20 : #include "ogr_spatialref.h"
21 :
22 : #include "parsexsd.h"
23 :
24 : #include <algorithm>
25 : #include <memory>
26 : #include <vector>
27 :
28 : // g++ -Wall -Wextra -std=c++11 -Wall -g -fPIC
29 : // frmts/ogcapi/gdalogcapidataset.cpp -shared -o gdal_OGCAPI.so -Iport -Igcore
30 : // -Iogr -Iogr/ogrsf_frmts -Iogr/ogrsf_frmts/gml -Iapps -L. -lgdal
31 :
32 : extern "C" void GDALRegister_OGCAPI();
33 :
34 : #define MEDIA_TYPE_OAPI_3_0 "application/vnd.oai.openapi+json;version=3.0"
35 : #define MEDIA_TYPE_OAPI_3_0_ALT "application/openapi+json;version=3.0"
36 : #define MEDIA_TYPE_JSON "application/json"
37 : #define MEDIA_TYPE_GEOJSON "application/geo+json"
38 : #define MEDIA_TYPE_TEXT_XML "text/xml"
39 : #define MEDIA_TYPE_APPLICATION_XML "application/xml"
40 : #define MEDIA_TYPE_JSON_SCHEMA "application/schema+json"
41 :
42 : /************************************************************************/
43 : /* ==================================================================== */
44 : /* OGCAPIDataset */
45 : /* ==================================================================== */
46 : /************************************************************************/
47 :
48 : class OGCAPIDataset final : public GDALDataset
49 : {
50 : friend class OGCAPIMapWrapperBand;
51 : friend class OGCAPITilesWrapperBand;
52 : friend class OGCAPITiledLayer;
53 :
54 : bool m_bMustCleanPersistent = false;
55 : CPLString m_osRootURL{};
56 : CPLString m_osUserPwd{};
57 : CPLString m_osUserQueryParams{};
58 : double m_adfGeoTransform[6];
59 :
60 : OGRSpatialReference m_oSRS{};
61 : CPLString m_osTileData{};
62 :
63 : // Classic OGC API features /items access
64 : std::unique_ptr<GDALDataset> m_poOAPIFDS{};
65 :
66 : // Map API
67 : std::unique_ptr<GDALDataset> m_poWMSDS{};
68 :
69 : // Tiles API
70 : std::vector<std::unique_ptr<GDALDataset>> m_apoDatasetsElementary{};
71 : std::vector<std::unique_ptr<GDALDataset>> m_apoDatasetsAssembled{};
72 : std::vector<std::unique_ptr<GDALDataset>> m_apoDatasetsCropped{};
73 :
74 : std::vector<std::unique_ptr<OGRLayer>> m_apoLayers{};
75 :
76 : CPLString BuildURL(const std::string &href) const;
77 : void SetRootURLFromURL(const std::string &osURL);
78 : int FigureBands(const std::string &osContentType,
79 : const CPLString &osImageURL);
80 :
81 : bool InitFromFile(GDALOpenInfo *poOpenInfo);
82 : bool InitFromURL(GDALOpenInfo *poOpenInfo);
83 : void ProcessScale(const CPLJSONObject &oScaleDenominator,
84 : const double dfXMin, const double dfYMin,
85 : const double dfXMax, const double dfYMax);
86 : bool InitFromCollection(GDALOpenInfo *poOpenInfo, CPLJSONDocument &oDoc);
87 : bool Download(const CPLString &osURL, const char *pszPostContent,
88 : const char *pszAccept, CPLString &osResult,
89 : CPLString &osContentType, bool bEmptyContentOK,
90 : CPLStringList *paosHeaders);
91 :
92 : bool DownloadJSon(const CPLString &osURL, CPLJSONDocument &oDoc,
93 : const char *pszPostContent = nullptr,
94 : const char *pszAccept = MEDIA_TYPE_GEOJSON
95 : ", " MEDIA_TYPE_JSON,
96 : CPLStringList *paosHeaders = nullptr);
97 :
98 : std::unique_ptr<GDALDataset>
99 : OpenTile(const CPLString &osURLPattern, int nMatrix, int nColumn, int nRow,
100 : bool &bEmptyContent, unsigned int nOpenTileFlags = 0,
101 : const CPLString &osPrefix = {},
102 : const char *const *papszOpenOptions = nullptr);
103 :
104 : bool InitWithMapAPI(GDALOpenInfo *poOpenInfo,
105 : const CPLJSONObject &oCollection, double dfXMin,
106 : double dfYMin, double dfXMax, double dfYMax);
107 : bool InitWithTilesAPI(GDALOpenInfo *poOpenInfo, const CPLString &osTilesURL,
108 : bool bIsMap, double dfXMin, double dfYMin,
109 : double dfXMax, double dfYMax, bool bBBOXIsInCRS84,
110 : const CPLJSONObject &oJsonCollection);
111 : bool InitWithCoverageAPI(GDALOpenInfo *poOpenInfo,
112 : const CPLString &osTilesURL, double dfXMin,
113 : double dfYMin, double dfXMax, double dfYMax,
114 : const CPLJSONObject &oJsonCollection);
115 :
116 : protected:
117 : CPLErr IRasterIO(GDALRWFlag eRWFlag, int nXOff, int nYOff, int nXSize,
118 : int nYSize, void *pData, int nBufXSize, int nBufYSize,
119 : GDALDataType eBufType, int nBandCount,
120 : BANDMAP_TYPE panBandMap, GSpacing nPixelSpace,
121 : GSpacing nLineSpace, GSpacing nBandSpace,
122 : GDALRasterIOExtraArg *psExtraArg) override;
123 :
124 : int CloseDependentDatasets() override;
125 :
126 : public:
127 : OGCAPIDataset();
128 : ~OGCAPIDataset();
129 :
130 : CPLErr GetGeoTransform(double *padfGeoTransform) override;
131 : const OGRSpatialReference *GetSpatialRef() const override;
132 :
133 32 : int GetLayerCount() override
134 : {
135 62 : return m_poOAPIFDS ? m_poOAPIFDS->GetLayerCount()
136 94 : : static_cast<int>(m_apoLayers.size());
137 : }
138 :
139 17 : OGRLayer *GetLayer(int idx) override
140 : {
141 32 : return m_poOAPIFDS ? m_poOAPIFDS->GetLayer(idx)
142 15 : : idx >= 0 && idx < GetLayerCount() ? m_apoLayers[idx].get()
143 34 : : nullptr;
144 : }
145 :
146 : static int Identify(GDALOpenInfo *poOpenInfo);
147 : static GDALDataset *Open(GDALOpenInfo *poOpenInfo);
148 : };
149 :
150 : /************************************************************************/
151 : /* ==================================================================== */
152 : /* OGCAPIMapWrapperBand */
153 : /* ==================================================================== */
154 : /************************************************************************/
155 :
156 : class OGCAPIMapWrapperBand final : public GDALRasterBand
157 : {
158 : public:
159 : OGCAPIMapWrapperBand(OGCAPIDataset *poDS, int nBand);
160 :
161 : virtual GDALRasterBand *GetOverview(int nLevel) override;
162 : virtual int GetOverviewCount() override;
163 : virtual GDALColorInterp GetColorInterpretation() override;
164 :
165 : protected:
166 : virtual CPLErr IReadBlock(int nBlockXOff, int nBlockYOff,
167 : void *pImage) override;
168 : virtual CPLErr IRasterIO(GDALRWFlag, int, int, int, int, void *, int, int,
169 : GDALDataType, GSpacing, GSpacing,
170 : GDALRasterIOExtraArg *psExtraArg) override;
171 : };
172 :
173 : /************************************************************************/
174 : /* ==================================================================== */
175 : /* OGCAPITilesWrapperBand */
176 : /* ==================================================================== */
177 : /************************************************************************/
178 :
179 : class OGCAPITilesWrapperBand final : public GDALRasterBand
180 : {
181 : public:
182 : OGCAPITilesWrapperBand(OGCAPIDataset *poDS, int nBand);
183 :
184 : virtual GDALRasterBand *GetOverview(int nLevel) override;
185 : virtual int GetOverviewCount() override;
186 : virtual GDALColorInterp GetColorInterpretation() override;
187 :
188 : protected:
189 : virtual CPLErr IReadBlock(int nBlockXOff, int nBlockYOff,
190 : void *pImage) override;
191 : virtual CPLErr IRasterIO(GDALRWFlag, int, int, int, int, void *, int, int,
192 : GDALDataType, GSpacing, GSpacing,
193 : GDALRasterIOExtraArg *psExtraArg) override;
194 : };
195 :
196 : /************************************************************************/
197 : /* ==================================================================== */
198 : /* OGCAPITiledLayer */
199 : /* ==================================================================== */
200 : /************************************************************************/
201 :
202 : class OGCAPITiledLayer;
203 :
204 : class OGCAPITiledLayerFeatureDefn final : public OGRFeatureDefn
205 : {
206 : OGCAPITiledLayer *m_poLayer = nullptr;
207 :
208 : public:
209 35 : OGCAPITiledLayerFeatureDefn(OGCAPITiledLayer *poLayer, const char *pszName)
210 35 : : OGRFeatureDefn(pszName), m_poLayer(poLayer)
211 : {
212 35 : }
213 :
214 : int GetFieldCount() const override;
215 :
216 35 : void InvalidateLayer()
217 : {
218 35 : m_poLayer = nullptr;
219 35 : }
220 : };
221 :
222 : class OGCAPITiledLayer final
223 : : public OGRLayer,
224 : public OGRGetNextFeatureThroughRaw<OGCAPITiledLayer>
225 : {
226 : OGCAPIDataset *m_poDS = nullptr;
227 : bool m_bFeatureDefnEstablished = false;
228 : bool m_bEstablishFieldsCalled =
229 : false; // prevent recursion in EstablishFields()
230 : OGCAPITiledLayerFeatureDefn *m_poFeatureDefn = nullptr;
231 : OGREnvelope m_sEnvelope{};
232 : std::unique_ptr<GDALDataset> m_poUnderlyingDS{};
233 : OGRLayer *m_poUnderlyingLayer = nullptr;
234 : int m_nCurY = 0;
235 : int m_nCurX = 0;
236 :
237 : CPLString m_osTileURL{};
238 : bool m_bIsMVT = false;
239 :
240 : const gdal::TileMatrixSet::TileMatrix m_oTileMatrix{};
241 : bool m_bInvertAxis = false;
242 :
243 : // absolute bounds
244 : int m_nMinX = 0;
245 : int m_nMaxX = 0;
246 : int m_nMinY = 0;
247 : int m_nMaxY = 0;
248 :
249 : // depends on spatial filter
250 : int m_nCurMinX = 0;
251 : int m_nCurMaxX = 0;
252 : int m_nCurMinY = 0;
253 : int m_nCurMaxY = 0;
254 :
255 : int GetCoalesceFactorForRow(int nRow) const;
256 : bool IncrementTileIndices();
257 : OGRFeature *GetNextRawFeature();
258 : GDALDataset *OpenTile(int nX, int nY, bool &bEmptyContent);
259 : void FinalizeFeatureDefnWithLayer(OGRLayer *poUnderlyingLayer);
260 : OGRFeature *BuildFeature(OGRFeature *poSrcFeature, int nX, int nY);
261 :
262 : protected:
263 : friend class OGCAPITiledLayerFeatureDefn;
264 : void EstablishFields();
265 :
266 : public:
267 : OGCAPITiledLayer(OGCAPIDataset *poDS, bool bInvertAxis,
268 : const CPLString &osTileURL, bool bIsMVT,
269 : const gdal::TileMatrixSet::TileMatrix &tileMatrix,
270 : OGRwkbGeometryType eGeomType);
271 : ~OGCAPITiledLayer();
272 :
273 : void SetExtent(double dfXMin, double dfYMin, double dfXMax, double dfYMax);
274 : void SetFields(const std::vector<std::unique_ptr<OGRFieldDefn>> &apoFields);
275 : void SetMinMaxXY(int minCol, int minRow, int maxCol, int maxRow);
276 :
277 : void ResetReading() override;
278 :
279 0 : OGRFeatureDefn *GetLayerDefn() override
280 : {
281 0 : return m_poFeatureDefn;
282 : }
283 :
284 15 : const char *GetName() override
285 : {
286 15 : return m_poFeatureDefn->GetName();
287 : }
288 :
289 0 : OGRwkbGeometryType GetGeomType() override
290 : {
291 0 : return m_poFeatureDefn->GetGeomType();
292 : }
293 5 : DEFINE_GET_NEXT_FEATURE_THROUGH_RAW(OGCAPITiledLayer)
294 :
295 0 : GIntBig GetFeatureCount(int /* bForce */) override
296 : {
297 0 : return -1;
298 : }
299 :
300 : OGRErr GetExtent(OGREnvelope *psExtent, int bForce) override;
301 :
302 0 : OGRErr GetExtent(int iGeomField, OGREnvelope *psExtent, int bForce) override
303 : {
304 0 : return OGRLayer::GetExtent(iGeomField, psExtent, bForce);
305 : }
306 :
307 : void SetSpatialFilter(OGRGeometry *) override;
308 :
309 0 : void SetSpatialFilter(int iGeomField, OGRGeometry *poGeom) override
310 : {
311 0 : OGRLayer::SetSpatialFilter(iGeomField, poGeom);
312 0 : }
313 :
314 : OGRFeature *GetFeature(GIntBig nFID) override;
315 : int TestCapability(const char *) override;
316 : };
317 :
318 : /************************************************************************/
319 : /* GetFieldCount() */
320 : /************************************************************************/
321 :
322 110 : int OGCAPITiledLayerFeatureDefn::GetFieldCount() const
323 : {
324 110 : if (m_poLayer)
325 : {
326 110 : m_poLayer->EstablishFields();
327 : }
328 110 : return OGRFeatureDefn::GetFieldCount();
329 : }
330 :
331 : /************************************************************************/
332 : /* OGCAPIDataset() */
333 : /************************************************************************/
334 :
335 35 : OGCAPIDataset::OGCAPIDataset()
336 : {
337 35 : m_adfGeoTransform[0] = 0;
338 35 : m_adfGeoTransform[1] = 1;
339 35 : m_adfGeoTransform[2] = 0;
340 35 : m_adfGeoTransform[3] = 0;
341 35 : m_adfGeoTransform[4] = 0;
342 35 : m_adfGeoTransform[5] = 1;
343 35 : }
344 :
345 : /************************************************************************/
346 : /* ~OGCAPIDataset() */
347 : /************************************************************************/
348 :
349 70 : OGCAPIDataset::~OGCAPIDataset()
350 : {
351 35 : if (m_bMustCleanPersistent)
352 : {
353 35 : char **papszOptions = CSLSetNameValue(nullptr, "CLOSE_PERSISTENT",
354 : CPLSPrintf("OGCAPI:%p", this));
355 35 : CPLHTTPDestroyResult(CPLHTTPFetch(m_osRootURL, papszOptions));
356 35 : CSLDestroy(papszOptions);
357 : }
358 :
359 35 : OGCAPIDataset::CloseDependentDatasets();
360 70 : }
361 :
362 : /************************************************************************/
363 : /* CloseDependentDatasets() */
364 : /************************************************************************/
365 :
366 35 : int OGCAPIDataset::CloseDependentDatasets()
367 : {
368 35 : if (m_apoDatasetsElementary.empty())
369 35 : return false;
370 :
371 : // in this order
372 0 : m_apoDatasetsCropped.clear();
373 0 : m_apoDatasetsAssembled.clear();
374 0 : m_apoDatasetsElementary.clear();
375 0 : return true;
376 : }
377 :
378 : /************************************************************************/
379 : /* GetGeoTransform() */
380 : /************************************************************************/
381 :
382 7 : CPLErr OGCAPIDataset::GetGeoTransform(double *padfGeoTransform)
383 : {
384 7 : memcpy(padfGeoTransform, m_adfGeoTransform, 6 * sizeof(double));
385 7 : return CE_None;
386 : }
387 :
388 : /************************************************************************/
389 : /* GetSpatialRef() */
390 : /************************************************************************/
391 :
392 3 : const OGRSpatialReference *OGCAPIDataset::GetSpatialRef() const
393 : {
394 3 : return !m_oSRS.IsEmpty() ? &m_oSRS : nullptr;
395 : }
396 :
397 : /************************************************************************/
398 : /* CheckContentType() */
399 : /************************************************************************/
400 :
401 : // We may ask for "application/openapi+json;version=3.0"
402 : // and the server returns "application/openapi+json; charset=utf-8; version=3.0"
403 93 : static bool CheckContentType(const char *pszGotContentType,
404 : const char *pszExpectedContentType)
405 : {
406 186 : CPLStringList aosGotTokens(CSLTokenizeString2(pszGotContentType, "; ", 0));
407 : CPLStringList aosExpectedTokens(
408 186 : CSLTokenizeString2(pszExpectedContentType, "; ", 0));
409 186 : for (int i = 0; i < aosExpectedTokens.size(); i++)
410 : {
411 93 : bool bFound = false;
412 93 : for (int j = 0; j < aosGotTokens.size(); j++)
413 : {
414 93 : if (EQUAL(aosExpectedTokens[i], aosGotTokens[j]))
415 : {
416 93 : bFound = true;
417 93 : break;
418 : }
419 : }
420 93 : if (!bFound)
421 0 : return false;
422 : }
423 93 : return true;
424 : }
425 :
426 : /************************************************************************/
427 : /* Download() */
428 : /************************************************************************/
429 :
430 122 : bool OGCAPIDataset::Download(const CPLString &osURL, const char *pszPostContent,
431 : const char *pszAccept, CPLString &osResult,
432 : CPLString &osContentType, bool bEmptyContentOK,
433 : CPLStringList *paosHeaders)
434 : {
435 122 : char **papszOptions = nullptr;
436 244 : CPLString osHeaders;
437 122 : if (pszAccept)
438 : {
439 101 : osHeaders += "Accept: ";
440 101 : osHeaders += pszAccept;
441 : }
442 122 : if (pszPostContent)
443 : {
444 0 : if (!osHeaders.empty())
445 : {
446 0 : osHeaders += "\r\n";
447 : }
448 0 : osHeaders += "Content-Type: application/json";
449 : }
450 122 : if (!osHeaders.empty())
451 : {
452 : papszOptions =
453 101 : CSLSetNameValue(papszOptions, "HEADERS", osHeaders.c_str());
454 : }
455 122 : if (!m_osUserPwd.empty())
456 : {
457 : papszOptions =
458 0 : CSLSetNameValue(papszOptions, "USERPWD", m_osUserPwd.c_str());
459 : }
460 122 : m_bMustCleanPersistent = true;
461 : papszOptions =
462 122 : CSLAddString(papszOptions, CPLSPrintf("PERSISTENT=OGCAPI:%p", this));
463 244 : CPLString osURLWithQueryParameters(osURL);
464 0 : if (!m_osUserQueryParams.empty() &&
465 244 : osURL.find('?' + m_osUserQueryParams) == std::string::npos &&
466 122 : osURL.find('&' + m_osUserQueryParams) == std::string::npos)
467 : {
468 0 : if (osURL.find('?') == std::string::npos)
469 : {
470 0 : osURLWithQueryParameters += '?';
471 : }
472 : else
473 : {
474 0 : osURLWithQueryParameters += '&';
475 : }
476 0 : osURLWithQueryParameters += m_osUserQueryParams;
477 : }
478 122 : if (pszPostContent)
479 : {
480 : papszOptions =
481 0 : CSLSetNameValue(papszOptions, "POSTFIELDS", pszPostContent);
482 : }
483 : CPLHTTPResult *psResult =
484 122 : CPLHTTPFetch(osURLWithQueryParameters, papszOptions);
485 122 : CSLDestroy(papszOptions);
486 122 : if (!psResult)
487 0 : return false;
488 :
489 122 : if (paosHeaders)
490 : {
491 0 : *paosHeaders = CSLDuplicate(psResult->papszHeaders);
492 : }
493 :
494 122 : if (psResult->pszErrBuf != nullptr)
495 : {
496 8 : std::string osErrorMsg(psResult->pszErrBuf);
497 8 : const char *pszData =
498 : reinterpret_cast<const char *>(psResult->pabyData);
499 8 : if (pszData)
500 : {
501 8 : osErrorMsg += ", ";
502 8 : osErrorMsg.append(pszData, CPLStrnlen(pszData, 1000));
503 : }
504 8 : CPLError(CE_Failure, CPLE_AppDefined, "%s", osErrorMsg.c_str());
505 8 : CPLHTTPDestroyResult(psResult);
506 8 : return false;
507 : }
508 :
509 114 : if (psResult->pszContentType)
510 114 : osContentType = psResult->pszContentType;
511 :
512 114 : if (pszAccept != nullptr)
513 : {
514 93 : bool bFoundExpectedContentType = false;
515 93 : if (strstr(pszAccept, "xml") && psResult->pszContentType != nullptr &&
516 0 : (CheckContentType(psResult->pszContentType, MEDIA_TYPE_TEXT_XML) ||
517 0 : CheckContentType(psResult->pszContentType,
518 : MEDIA_TYPE_APPLICATION_XML)))
519 : {
520 0 : bFoundExpectedContentType = true;
521 : }
522 :
523 186 : if (strstr(pszAccept, MEDIA_TYPE_JSON_SCHEMA) &&
524 93 : psResult->pszContentType != nullptr &&
525 0 : (CheckContentType(psResult->pszContentType, MEDIA_TYPE_JSON) ||
526 0 : CheckContentType(psResult->pszContentType,
527 : MEDIA_TYPE_JSON_SCHEMA)))
528 : {
529 0 : bFoundExpectedContentType = true;
530 : }
531 :
532 0 : for (const char *pszMediaType : {
533 : MEDIA_TYPE_JSON,
534 : MEDIA_TYPE_GEOJSON,
535 : MEDIA_TYPE_OAPI_3_0,
536 93 : })
537 : {
538 279 : if (strstr(pszAccept, pszMediaType) &&
539 186 : psResult->pszContentType != nullptr &&
540 93 : CheckContentType(psResult->pszContentType, pszMediaType))
541 : {
542 93 : bFoundExpectedContentType = true;
543 93 : break;
544 : }
545 : }
546 :
547 93 : if (!bFoundExpectedContentType)
548 : {
549 0 : CPLError(CE_Failure, CPLE_AppDefined, "Unexpected Content-Type: %s",
550 0 : psResult->pszContentType ? psResult->pszContentType
551 : : "(null)");
552 0 : CPLHTTPDestroyResult(psResult);
553 0 : return false;
554 : }
555 : }
556 :
557 114 : if (psResult->pabyData == nullptr)
558 : {
559 15 : osResult.clear();
560 15 : if (!bEmptyContentOK)
561 : {
562 0 : CPLError(CE_Failure, CPLE_AppDefined,
563 : "Empty content returned by server");
564 0 : CPLHTTPDestroyResult(psResult);
565 0 : return false;
566 : }
567 : }
568 : else
569 : {
570 99 : osResult.assign(reinterpret_cast<const char *>(psResult->pabyData),
571 99 : psResult->nDataLen);
572 : #ifdef DEBUG_VERBOSE
573 : CPLDebug("OGCAPI", "%s", osResult.c_str());
574 : #endif
575 : }
576 114 : CPLHTTPDestroyResult(psResult);
577 114 : return true;
578 : }
579 :
580 : /************************************************************************/
581 : /* DownloadJSon() */
582 : /************************************************************************/
583 :
584 101 : bool OGCAPIDataset::DownloadJSon(const CPLString &osURL, CPLJSONDocument &oDoc,
585 : const char *pszPostContent,
586 : const char *pszAccept,
587 : CPLStringList *paosHeaders)
588 : {
589 202 : CPLString osResult;
590 202 : CPLString osContentType;
591 101 : if (!Download(osURL, pszPostContent, pszAccept, osResult, osContentType,
592 : false, paosHeaders))
593 8 : return false;
594 93 : return oDoc.LoadMemory(osResult);
595 : }
596 :
597 : /************************************************************************/
598 : /* OpenTile() */
599 : /************************************************************************/
600 :
601 : std::unique_ptr<GDALDataset>
602 21 : OGCAPIDataset::OpenTile(const CPLString &osURLPattern, int nMatrix, int nColumn,
603 : int nRow, bool &bEmptyContent,
604 : unsigned int nOpenTileFlags, const CPLString &osPrefix,
605 : const char *const *papszOpenTileOptions)
606 : {
607 42 : CPLString osURL(osURLPattern);
608 21 : osURL.replaceAll("{tileMatrix}", CPLSPrintf("%d", nMatrix));
609 21 : osURL.replaceAll("{tileCol}", CPLSPrintf("%d", nColumn));
610 21 : osURL.replaceAll("{tileRow}", CPLSPrintf("%d", nRow));
611 :
612 42 : CPLString osContentType;
613 21 : if (!this->Download(osURL, nullptr, nullptr, m_osTileData, osContentType,
614 : true, nullptr))
615 : {
616 0 : return nullptr;
617 : }
618 :
619 21 : bEmptyContent = m_osTileData.empty();
620 21 : if (bEmptyContent)
621 15 : return nullptr;
622 :
623 12 : const CPLString osTempFile(VSIMemGenerateHiddenFilename("ogcapi"));
624 6 : VSIFCloseL(VSIFileFromMemBuffer(osTempFile.c_str(),
625 6 : reinterpret_cast<GByte *>(&m_osTileData[0]),
626 6 : m_osTileData.size(), false));
627 :
628 6 : GDALDataset *result = nullptr;
629 :
630 6 : if (osPrefix.empty())
631 3 : result = GDALDataset::Open(osTempFile.c_str(), nOpenTileFlags, nullptr,
632 : papszOpenTileOptions);
633 : else
634 : result =
635 3 : GDALDataset::Open((osPrefix + ":" + osTempFile).c_str(),
636 : nOpenTileFlags, nullptr, papszOpenTileOptions);
637 :
638 6 : VSIUnlink(osTempFile);
639 :
640 6 : return std::unique_ptr<GDALDataset>(result);
641 : }
642 :
643 : /************************************************************************/
644 : /* Identify() */
645 : /************************************************************************/
646 :
647 60207 : int OGCAPIDataset::Identify(GDALOpenInfo *poOpenInfo)
648 : {
649 60207 : if (STARTS_WITH_CI(poOpenInfo->pszFilename, "OGCAPI:"))
650 58 : return TRUE;
651 60149 : if (EQUAL(CPLGetExtension(poOpenInfo->pszFilename), "moaw"))
652 0 : return TRUE;
653 60147 : if (poOpenInfo->IsSingleAllowedDriver("OGCAPI"))
654 : {
655 12 : return TRUE;
656 : }
657 60127 : return FALSE;
658 : }
659 :
660 : /************************************************************************/
661 : /* BuildURL() */
662 : /************************************************************************/
663 :
664 7183 : CPLString OGCAPIDataset::BuildURL(const std::string &href) const
665 : {
666 7183 : if (!href.empty() && href[0] == '/')
667 0 : return m_osRootURL + href;
668 7183 : return href;
669 : }
670 :
671 : /************************************************************************/
672 : /* SetRootURLFromURL() */
673 : /************************************************************************/
674 :
675 27 : void OGCAPIDataset::SetRootURLFromURL(const std::string &osURL)
676 : {
677 27 : const char *pszStr = osURL.c_str();
678 27 : const char *pszPtr = pszStr;
679 27 : if (STARTS_WITH(pszPtr, "http://"))
680 27 : pszPtr += strlen("http://");
681 0 : else if (STARTS_WITH(pszPtr, "https://"))
682 0 : pszPtr += strlen("https://");
683 27 : pszPtr = strchr(pszPtr, '/');
684 27 : if (pszPtr)
685 27 : m_osRootURL.assign(pszStr, pszPtr - pszStr);
686 27 : }
687 :
688 : /************************************************************************/
689 : /* FigureBands() */
690 : /************************************************************************/
691 :
692 9 : int OGCAPIDataset::FigureBands(const std::string &osContentType,
693 : const CPLString &osImageURL)
694 : {
695 9 : int result = 0;
696 :
697 9 : if (osContentType == "image/png")
698 : {
699 6 : result = 4;
700 : }
701 3 : else if (osContentType == "image/jpeg")
702 : {
703 2 : result = 3;
704 : }
705 : else
706 : {
707 : // Since we don't know the format download a tile and find out
708 1 : bool bEmptyContent = false;
709 : std::unique_ptr<GDALDataset> dataset =
710 1 : OpenTile(osImageURL, 0, 0, 0, bEmptyContent, GDAL_OF_RASTER);
711 :
712 : // Return the bands from the image, if we didn't get an image then assume 3.
713 1 : result = dataset ? (int)dataset->GetBands().size() : 3;
714 : }
715 :
716 9 : return result;
717 : }
718 :
719 : /************************************************************************/
720 : /* InitFromFile() */
721 : /************************************************************************/
722 :
723 0 : bool OGCAPIDataset::InitFromFile(GDALOpenInfo *poOpenInfo)
724 : {
725 0 : CPLJSONDocument oDoc;
726 0 : if (!oDoc.Load(poOpenInfo->pszFilename))
727 0 : return false;
728 0 : auto oProcess = oDoc.GetRoot()["process"];
729 0 : if (oProcess.GetType() != CPLJSONObject::Type::String)
730 : {
731 0 : CPLError(CE_Failure, CPLE_AppDefined,
732 : "Cannot find 'process' key in .moaw file");
733 0 : return false;
734 : }
735 :
736 0 : const CPLString osURLProcess(oProcess.ToString());
737 0 : SetRootURLFromURL(osURLProcess);
738 :
739 0 : GByte *pabyContent = nullptr;
740 0 : vsi_l_offset nSize = 0;
741 0 : if (!VSIIngestFile(poOpenInfo->fpL, nullptr, &pabyContent, &nSize,
742 : 1024 * 1024))
743 0 : return false;
744 0 : CPLString osPostContent(reinterpret_cast<const char *>(pabyContent));
745 0 : CPLFree(pabyContent);
746 0 : if (!DownloadJSon(osURLProcess.c_str(), oDoc, osPostContent.c_str()))
747 0 : return false;
748 :
749 0 : return InitFromCollection(poOpenInfo, oDoc);
750 : }
751 :
752 : /************************************************************************/
753 : /* ProcessScale() */
754 : /************************************************************************/
755 :
756 17 : void OGCAPIDataset::ProcessScale(const CPLJSONObject &oScaleDenominator,
757 : const double dfXMin, const double dfYMin,
758 : const double dfXMax, const double dfYMax)
759 :
760 : {
761 17 : double dfRes = 1e-8; // arbitrary
762 17 : if (oScaleDenominator.IsValid())
763 : {
764 0 : const double dfScaleDenominator = oScaleDenominator.ToDouble();
765 0 : constexpr double HALF_CIRCUMFERENCE = 6378137 * M_PI;
766 0 : dfRes = dfScaleDenominator / ((HALF_CIRCUMFERENCE / 180) / 0.28e-3);
767 : }
768 :
769 17 : double dfXSize = (dfXMax - dfXMin) / dfRes;
770 17 : double dfYSize = (dfYMax - dfYMin) / dfRes;
771 97 : while (dfXSize > INT_MAX || dfYSize > INT_MAX)
772 : {
773 80 : dfXSize /= 2;
774 80 : dfYSize /= 2;
775 : }
776 :
777 17 : nRasterXSize = std::max(1, static_cast<int>(0.5 + dfXSize));
778 17 : nRasterYSize = std::max(1, static_cast<int>(0.5 + dfYSize));
779 17 : m_adfGeoTransform[0] = dfXMin;
780 17 : m_adfGeoTransform[1] = (dfXMax - dfXMin) / nRasterXSize;
781 17 : m_adfGeoTransform[3] = dfYMax;
782 17 : m_adfGeoTransform[5] = -(dfYMax - dfYMin) / nRasterYSize;
783 17 : }
784 :
785 : /************************************************************************/
786 : /* InitFromCollection() */
787 : /************************************************************************/
788 :
789 17 : bool OGCAPIDataset::InitFromCollection(GDALOpenInfo *poOpenInfo,
790 : CPLJSONDocument &oDoc)
791 : {
792 34 : const CPLJSONObject oRoot = oDoc.GetRoot();
793 51 : auto osTitle = oRoot.GetString("title");
794 17 : if (!osTitle.empty())
795 : {
796 17 : SetMetadataItem("TITLE", osTitle.c_str());
797 : }
798 :
799 51 : auto oLinks = oRoot.GetArray("links");
800 17 : if (!oLinks.IsValid())
801 : {
802 0 : CPLError(CE_Failure, CPLE_AppDefined, "Missing links");
803 0 : return false;
804 : }
805 51 : auto oBboxes = oRoot["extent"]["spatial"]["bbox"].ToArray();
806 17 : if (oBboxes.Size() != 1)
807 : {
808 0 : CPLError(CE_Failure, CPLE_AppDefined, "Missing bbox");
809 0 : return false;
810 : }
811 34 : auto oBbox = oBboxes[0].ToArray();
812 17 : if (oBbox.Size() != 4)
813 : {
814 0 : CPLError(CE_Failure, CPLE_AppDefined, "Invalid bbox");
815 0 : return false;
816 : }
817 : const bool bBBOXIsInCRS84 =
818 17 : CSLFetchNameValue(poOpenInfo->papszOpenOptions, "MINX") == nullptr;
819 : const double dfXMin =
820 17 : CPLAtof(CSLFetchNameValueDef(poOpenInfo->papszOpenOptions, "MINX",
821 : CPLSPrintf("%.17g", oBbox[0].ToDouble())));
822 : const double dfYMin =
823 17 : CPLAtof(CSLFetchNameValueDef(poOpenInfo->papszOpenOptions, "MINY",
824 : CPLSPrintf("%.17g", oBbox[1].ToDouble())));
825 : const double dfXMax =
826 17 : CPLAtof(CSLFetchNameValueDef(poOpenInfo->papszOpenOptions, "MAXX",
827 : CPLSPrintf("%.17g", oBbox[2].ToDouble())));
828 : const double dfYMax =
829 17 : CPLAtof(CSLFetchNameValueDef(poOpenInfo->papszOpenOptions, "MAXY",
830 : CPLSPrintf("%.17g", oBbox[3].ToDouble())));
831 :
832 51 : auto oScaleDenominator = oRoot["scaleDenominator"];
833 :
834 17 : ProcessScale(oScaleDenominator, dfXMin, dfYMin, dfXMax, dfYMax);
835 :
836 17 : bool bFoundMap = false;
837 :
838 34 : CPLString osTilesetsMapURL;
839 17 : bool bTilesetsMapURLJson = false;
840 :
841 34 : CPLString osTilesetsVectorURL;
842 17 : bool bTilesetsVectorURLJson = false;
843 :
844 34 : CPLString osCoverageURL;
845 17 : bool bCoverageGeotiff = false;
846 :
847 34 : CPLString osItemsURL;
848 17 : bool bItemsJson = false;
849 :
850 34 : CPLString osSelfURL;
851 17 : bool bSelfJson = false;
852 :
853 518 : for (const auto &oLink : oLinks)
854 : {
855 1503 : const auto osRel = oLink.GetString("rel");
856 1503 : const auto osType = oLink.GetString("type");
857 951 : if ((osRel == "http://www.opengis.net/def/rel/ogc/1.0/map" ||
858 1036 : osRel == "[ogc-rel:map]") &&
859 85 : (osType == "image/png" || osType == "image/jpeg"))
860 : {
861 34 : bFoundMap = true;
862 : }
863 1222 : else if (!bTilesetsMapURLJson &&
864 387 : (osRel ==
865 368 : "http://www.opengis.net/def/rel/ogc/1.0/tilesets-map" ||
866 368 : osRel == "[ogc-rel:tilesets-map]"))
867 : {
868 19 : if (osType == MEDIA_TYPE_JSON)
869 : {
870 16 : bTilesetsMapURLJson = true;
871 16 : osTilesetsMapURL = BuildURL(oLink["href"].ToString());
872 : }
873 3 : else if (osType.empty())
874 : {
875 1 : osTilesetsMapURL = BuildURL(oLink["href"].ToString());
876 : }
877 : }
878 1205 : else if (!bTilesetsVectorURLJson &&
879 384 : (osRel == "http://www.opengis.net/def/rel/ogc/1.0/"
880 373 : "tilesets-vector" ||
881 373 : osRel == "[ogc-rel:tilesets-vector]"))
882 : {
883 11 : if (osType == MEDIA_TYPE_JSON)
884 : {
885 8 : bTilesetsVectorURLJson = true;
886 8 : osTilesetsVectorURL = BuildURL(oLink["href"].ToString());
887 : }
888 3 : else if (osType.empty())
889 : {
890 1 : osTilesetsVectorURL = BuildURL(oLink["href"].ToString());
891 : }
892 : }
893 858 : else if ((osRel == "http://www.opengis.net/def/rel/ogc/1.0/coverage" ||
894 882 : osRel == "[ogc-rel:coverage]") &&
895 24 : (osType == "image/tiff; application=geotiff" ||
896 8 : osType == "application/x-geotiff"))
897 : {
898 8 : if (!bCoverageGeotiff)
899 : {
900 8 : osCoverageURL = BuildURL(oLink["href"].ToString());
901 8 : bCoverageGeotiff = true;
902 : }
903 : }
904 850 : else if ((osRel == "http://www.opengis.net/def/rel/ogc/1.0/coverage" ||
905 858 : osRel == "[ogc-rel:coverage]") &&
906 8 : osType.empty())
907 : {
908 0 : osCoverageURL = BuildURL(oLink["href"].ToString());
909 : }
910 429 : else if (!bItemsJson && osRel == "items")
911 : {
912 9 : if (osType == MEDIA_TYPE_GEOJSON || osType == MEDIA_TYPE_JSON)
913 : {
914 9 : bItemsJson = true;
915 9 : osItemsURL = BuildURL(oLink["href"].ToString());
916 : }
917 0 : else if (osType.empty())
918 : {
919 0 : osItemsURL = BuildURL(oLink["href"].ToString());
920 : }
921 : }
922 420 : else if (!bSelfJson && osRel == "self")
923 : {
924 17 : if (osType == "application/json")
925 : {
926 16 : bSelfJson = true;
927 16 : osSelfURL = BuildURL(oLink["href"].ToString());
928 : }
929 1 : else if (osType.empty())
930 : {
931 1 : osSelfURL = BuildURL(oLink["href"].ToString());
932 : }
933 : }
934 : }
935 :
936 0 : if (!bFoundMap && osTilesetsMapURL.empty() && osTilesetsVectorURL.empty() &&
937 17 : osCoverageURL.empty() && osSelfURL.empty() && osItemsURL.empty())
938 : {
939 0 : CPLError(CE_Failure, CPLE_AppDefined,
940 : "Missing map, tilesets, coverage or items relation in links");
941 0 : return false;
942 : }
943 :
944 : const char *pszAPI =
945 17 : CSLFetchNameValueDef(poOpenInfo->papszOpenOptions, "API", "AUTO");
946 18 : if ((EQUAL(pszAPI, "AUTO") || EQUAL(pszAPI, "COVERAGE")) &&
947 1 : !osCoverageURL.empty())
948 : {
949 1 : return InitWithCoverageAPI(poOpenInfo, osCoverageURL, dfXMin, dfYMin,
950 2 : dfXMax, dfYMax, oDoc.GetRoot());
951 : }
952 29 : else if ((EQUAL(pszAPI, "AUTO") || EQUAL(pszAPI, "TILES")) &&
953 13 : (!osTilesetsMapURL.empty() || !osTilesetsVectorURL.empty()))
954 : {
955 13 : bool bRet = false;
956 13 : if (!osTilesetsMapURL.empty())
957 13 : bRet = InitWithTilesAPI(poOpenInfo, osTilesetsMapURL, true, dfXMin,
958 : dfYMin, dfXMax, dfYMax, bBBOXIsInCRS84,
959 26 : oDoc.GetRoot());
960 13 : if (!bRet && !osTilesetsVectorURL.empty())
961 5 : bRet = InitWithTilesAPI(poOpenInfo, osTilesetsVectorURL, false,
962 : dfXMin, dfYMin, dfXMax, dfYMax,
963 10 : bBBOXIsInCRS84, oDoc.GetRoot());
964 13 : return bRet;
965 : }
966 3 : else if ((EQUAL(pszAPI, "AUTO") || EQUAL(pszAPI, "MAP")) && bFoundMap)
967 : {
968 1 : return InitWithMapAPI(poOpenInfo, oRoot, dfXMin, dfYMin, dfXMax,
969 1 : dfYMax);
970 : }
971 2 : else if ((EQUAL(pszAPI, "AUTO") || EQUAL(pszAPI, "ITEMS")) &&
972 6 : !osSelfURL.empty() && !osItemsURL.empty() &&
973 2 : (poOpenInfo->nOpenFlags & GDAL_OF_VECTOR) != 0)
974 : {
975 4 : m_poOAPIFDS = std::unique_ptr<GDALDataset>(GDALDataset::Open(
976 6 : ("OAPIF_COLLECTION:" + osSelfURL).c_str(), GDAL_OF_VECTOR));
977 2 : if (m_poOAPIFDS)
978 2 : return true;
979 : }
980 :
981 0 : CPLError(CE_Failure, CPLE_AppDefined, "API %s requested, but not available",
982 : pszAPI);
983 0 : return false;
984 : }
985 :
986 : /************************************************************************/
987 : /* InitFromURL() */
988 : /************************************************************************/
989 :
990 35 : bool OGCAPIDataset::InitFromURL(GDALOpenInfo *poOpenInfo)
991 : {
992 6 : const char *pszInitialURL =
993 35 : STARTS_WITH_CI(poOpenInfo->pszFilename, "OGCAPI:")
994 29 : ? poOpenInfo->pszFilename + strlen("OGCAPI:")
995 : : poOpenInfo->pszFilename;
996 70 : CPLJSONDocument oDoc;
997 70 : CPLString osURL(pszInitialURL);
998 35 : if (!DownloadJSon(osURL, oDoc))
999 8 : return false;
1000 :
1001 27 : SetRootURLFromURL(osURL);
1002 :
1003 81 : auto oCollections = oDoc.GetRoot().GetArray("collections");
1004 27 : if (!oCollections.IsValid())
1005 : {
1006 27 : if (!oDoc.GetRoot().GetArray("extent").IsValid())
1007 : {
1008 : // If there is no "colletions" or "extent" member, then it is
1009 : // perhaps a landing page
1010 54 : const auto oLinks = oDoc.GetRoot().GetArray("links");
1011 27 : osURL.clear();
1012 615 : for (const auto &oLink : oLinks)
1013 : {
1014 1188 : if (oLink["rel"].ToString() == "data" &&
1015 600 : oLink["type"].ToString() == MEDIA_TYPE_JSON)
1016 : {
1017 9 : osURL = BuildURL(oLink["href"].ToString());
1018 9 : break;
1019 : }
1020 1161 : else if (oLink["rel"].ToString() == "data" &&
1021 582 : !oLink.GetObj("type").IsValid())
1022 : {
1023 1 : osURL = BuildURL(oLink["href"].ToString());
1024 : }
1025 : }
1026 27 : if (!osURL.empty())
1027 : {
1028 10 : if (!DownloadJSon(osURL, oDoc))
1029 0 : return false;
1030 10 : oCollections = oDoc.GetRoot().GetArray("collections");
1031 : }
1032 : }
1033 :
1034 27 : if (!oCollections.IsValid())
1035 : {
1036 : // This is hopefully a /collections/{id} response
1037 17 : return InitFromCollection(poOpenInfo, oDoc);
1038 : }
1039 : }
1040 :
1041 : // This is a /collections response
1042 10 : CPLStringList aosSubdatasets;
1043 6900 : for (const auto &oCollection : oCollections)
1044 : {
1045 13780 : const auto osTitle = oCollection.GetString("title");
1046 13780 : const auto osLayerDataType = oCollection.GetString("layerDataType");
1047 : // CPLDebug("OGCAPI", "%s: %s", osTitle.c_str(),
1048 : // osLayerDataType.c_str());
1049 6890 : if (!osLayerDataType.empty() &&
1050 0 : (EQUAL(osLayerDataType.c_str(), "Raster") ||
1051 6890 : EQUAL(osLayerDataType.c_str(), "Coverage")) &&
1052 0 : (poOpenInfo->nOpenFlags & GDAL_OF_RASTER) == 0)
1053 : {
1054 0 : continue;
1055 : }
1056 6890 : if (!osLayerDataType.empty() &&
1057 6890 : EQUAL(osLayerDataType.c_str(), "Vector") &&
1058 0 : (poOpenInfo->nOpenFlags & GDAL_OF_VECTOR) == 0)
1059 : {
1060 0 : continue;
1061 : }
1062 6890 : osURL.clear();
1063 13780 : const auto oLinks = oCollection.GetArray("links");
1064 36635 : for (const auto &oLink : oLinks)
1065 : {
1066 66380 : if (oLink["rel"].ToString() == "self" &&
1067 36635 : oLink["type"].ToString() == "application/json")
1068 : {
1069 6201 : osURL = BuildURL(oLink["href"].ToString());
1070 6201 : break;
1071 : }
1072 47777 : else if (oLink["rel"].ToString() == "self" &&
1073 24233 : oLink.GetString("type").empty())
1074 : {
1075 689 : osURL = BuildURL(oLink["href"].ToString());
1076 : }
1077 : }
1078 6890 : if (osURL.empty())
1079 : {
1080 0 : continue;
1081 : }
1082 6890 : const int nIdx = 1 + aosSubdatasets.size() / 2;
1083 : aosSubdatasets.AddNameValue(CPLSPrintf("SUBDATASET_%d_NAME", nIdx),
1084 6890 : CPLSPrintf("OGCAPI:%s", osURL.c_str()));
1085 : aosSubdatasets.AddNameValue(
1086 : CPLSPrintf("SUBDATASET_%d_DESC", nIdx),
1087 6890 : CPLSPrintf("Collection %s", osTitle.c_str()));
1088 : }
1089 10 : SetMetadata(aosSubdatasets.List(), "SUBDATASETS");
1090 :
1091 10 : return true;
1092 : }
1093 :
1094 : /************************************************************************/
1095 : /* SelectImageURL() */
1096 : /************************************************************************/
1097 :
1098 : static const std::pair<std::string, std::string>
1099 19 : SelectImageURL(const char *const *papszOptionOptions,
1100 : std::map<std::string, std::string> &oMapItemUrls)
1101 : {
1102 : // Map IMAGE_FORMATS to their content types. Would be nice if this was
1103 : // globally defined someplace
1104 : const std::map<std::string, std::vector<std::string>>
1105 : oFormatContentTypeMap = {
1106 : {"AUTO",
1107 : {"image/png", "image/jpeg", "image/tiff; application=geotiff"}},
1108 : {"PNG_PREFERRED",
1109 : {"image/png", "image/jpeg", "image/tiff; application=geotiff"}},
1110 : {"JPEG_PREFERRED",
1111 : {"image/jpeg", "image/png", "image/tiff; application=geotiff"}},
1112 : {"PNG", {"image/png"}},
1113 : {"JPEG", {"image/jpeg"}},
1114 532 : {"GEOTIFF", {"image/tiff; application=geotiff"}}};
1115 :
1116 : // Get the IMAGE_FORMAT
1117 : const std::string osFormat =
1118 38 : CSLFetchNameValueDef(papszOptionOptions, "IMAGE_FORMAT", "AUTO");
1119 :
1120 : // Get a list of content types we will search for in priority order based on IMAGE_FORMAT
1121 19 : auto iterFormat = oFormatContentTypeMap.find(osFormat);
1122 19 : if (iterFormat == oFormatContentTypeMap.end())
1123 : {
1124 0 : CPLError(CE_Failure, CPLE_AppDefined,
1125 : "Unknown IMAGE_FORMAT specified: %s", osFormat.c_str());
1126 0 : return std::pair<std::string, CPLString>();
1127 : }
1128 38 : std::vector<std::string> oContentTypes = iterFormat->second;
1129 :
1130 : // For "special" IMAGE_FORMATS we will also accept additional content types
1131 : // specified by the server. Note that this will likely result in having
1132 : // some content types duplicated in the vector but that is fine.
1133 23 : if (osFormat == "AUTO" || osFormat == "PNG_PREFERRED" ||
1134 4 : osFormat == "JPEG_PREFERRED")
1135 : {
1136 : std::transform(oMapItemUrls.begin(), oMapItemUrls.end(),
1137 : std::back_inserter(oContentTypes),
1138 44 : [](const auto &pair) -> const std::string &
1139 60 : { return pair.first; });
1140 : }
1141 :
1142 : // Loop over each content type - return the first one we find
1143 34 : for (auto &oContentType : oContentTypes)
1144 : {
1145 29 : auto iterContentType = oMapItemUrls.find(oContentType);
1146 29 : if (iterContentType != oMapItemUrls.end())
1147 : {
1148 14 : return *iterContentType;
1149 : }
1150 : }
1151 :
1152 5 : if (osFormat != "AUTO")
1153 : {
1154 0 : CPLError(CE_Failure, CPLE_AppDefined,
1155 : "Server does not support specified IMAGE_FORMAT: %s",
1156 : osFormat.c_str());
1157 : }
1158 5 : return std::pair<std::string, CPLString>();
1159 : }
1160 :
1161 : /************************************************************************/
1162 : /* SelectVectorFormatURL() */
1163 : /************************************************************************/
1164 :
1165 : static const CPLString
1166 18 : SelectVectorFormatURL(const char *const *papszOptionOptions,
1167 : const CPLString &osMVT_URL,
1168 : const CPLString &osGEOJSON_URL)
1169 : {
1170 : const char *pszFormat =
1171 18 : CSLFetchNameValueDef(papszOptionOptions, "VECTOR_FORMAT", "AUTO");
1172 18 : if (EQUAL(pszFormat, "AUTO") || EQUAL(pszFormat, "MVT_PREFERRED"))
1173 12 : return !osMVT_URL.empty() ? osMVT_URL : osGEOJSON_URL;
1174 6 : else if (EQUAL(pszFormat, "MVT"))
1175 2 : return osMVT_URL;
1176 4 : else if (EQUAL(pszFormat, "GEOJSON"))
1177 2 : return osGEOJSON_URL;
1178 2 : else if (EQUAL(pszFormat, "GEOJSON_PREFERRED"))
1179 2 : return !osGEOJSON_URL.empty() ? osGEOJSON_URL : osMVT_URL;
1180 0 : return CPLString();
1181 : }
1182 :
1183 : /************************************************************************/
1184 : /* InitWithMapAPI() */
1185 : /************************************************************************/
1186 :
1187 1 : bool OGCAPIDataset::InitWithMapAPI(GDALOpenInfo *poOpenInfo,
1188 : const CPLJSONObject &oRoot, double dfXMin,
1189 : double dfYMin, double dfXMax, double dfYMax)
1190 : {
1191 3 : auto oLinks = oRoot["links"].ToArray();
1192 :
1193 : // Key - mime type, Value url
1194 2 : std::map<std::string, std::string> oMapItemUrls;
1195 :
1196 36 : for (const auto &oLink : oLinks)
1197 : {
1198 70 : if (oLink["rel"].ToString() ==
1199 73 : "http://www.opengis.net/def/rel/ogc/1.0/map" &&
1200 38 : oLink["type"].IsValid())
1201 : {
1202 6 : oMapItemUrls[oLink["type"].ToString()] =
1203 9 : BuildURL(oLink["href"].ToString());
1204 : }
1205 : else
1206 : {
1207 : // For lack of additional information assume we are getting some bytes
1208 64 : oMapItemUrls["application/octet-stream"] =
1209 96 : BuildURL(oLink["href"].ToString());
1210 : }
1211 : }
1212 :
1213 : const std::pair<std::string, std::string> oContentUrlPair =
1214 2 : SelectImageURL(poOpenInfo->papszOpenOptions, oMapItemUrls);
1215 2 : const std::string osContentType = oContentUrlPair.first;
1216 2 : const std::string osImageURL = oContentUrlPair.second;
1217 :
1218 1 : if (osImageURL.empty())
1219 : {
1220 0 : CPLError(CE_Failure, CPLE_AppDefined,
1221 : "Cannot find link to tileset items");
1222 0 : return false;
1223 : }
1224 :
1225 1 : int l_nBands = FigureBands(osContentType, osImageURL);
1226 1 : int nOverviewCount = 0;
1227 1 : int nLargestDim = std::max(nRasterXSize, nRasterYSize);
1228 24 : while (nLargestDim > 256)
1229 : {
1230 23 : nOverviewCount++;
1231 23 : nLargestDim /= 2;
1232 : }
1233 :
1234 1 : m_oSRS.importFromEPSG(4326);
1235 1 : m_oSRS.SetAxisMappingStrategy(OAMS_TRADITIONAL_GIS_ORDER);
1236 :
1237 1 : const bool bCache = CPLTestBool(
1238 1 : CSLFetchNameValueDef(poOpenInfo->papszOpenOptions, "CACHE", "YES"));
1239 1 : const int nMaxConnections = atoi(
1240 1 : CSLFetchNameValueDef(poOpenInfo->papszOpenOptions, "MAX_CONNECTIONS",
1241 : CPLGetConfigOption("GDAL_MAX_CONNECTIONS", "5")));
1242 2 : CPLString osWMS_XML;
1243 1 : char *pszEscapedURL = CPLEscapeString(osImageURL.c_str(), -1, CPLES_XML);
1244 : osWMS_XML.Printf("<GDAL_WMS>"
1245 : " <Service name=\"OGCAPIMaps\">"
1246 : " <ServerUrl>%s</ServerUrl>"
1247 : " </Service>"
1248 : " <DataWindow>"
1249 : " <UpperLeftX>%.17g</UpperLeftX>"
1250 : " <UpperLeftY>%.17g</UpperLeftY>"
1251 : " <LowerRightX>%.17g</LowerRightX>"
1252 : " <LowerRightY>%.17g</LowerRightY>"
1253 : " <SizeX>%d</SizeX>"
1254 : " <SizeY>%d</SizeY>"
1255 : " </DataWindow>"
1256 : " <OverviewCount>%d</OverviewCount>"
1257 : " <BlockSizeX>256</BlockSizeX>"
1258 : " <BlockSizeY>256</BlockSizeY>"
1259 : " <BandsCount>%d</BandsCount>"
1260 : " <MaxConnections>%d</MaxConnections>"
1261 : " %s"
1262 : "</GDAL_WMS>",
1263 : pszEscapedURL, dfXMin, dfYMax, dfXMax, dfYMin,
1264 : nRasterXSize, nRasterYSize, nOverviewCount, l_nBands,
1265 1 : nMaxConnections, bCache ? "<Cache />" : "");
1266 1 : CPLFree(pszEscapedURL);
1267 1 : CPLDebug("OGCAPI", "%s", osWMS_XML.c_str());
1268 1 : m_poWMSDS.reset(
1269 : GDALDataset::Open(osWMS_XML, GDAL_OF_RASTER | GDAL_OF_INTERNAL));
1270 1 : if (m_poWMSDS == nullptr)
1271 0 : return false;
1272 :
1273 5 : for (int i = 1; i <= m_poWMSDS->GetRasterCount(); i++)
1274 : {
1275 4 : SetBand(i, new OGCAPIMapWrapperBand(this, i));
1276 : }
1277 1 : SetMetadataItem("INTERLEAVE", "PIXEL", "IMAGE_STRUCTURE");
1278 :
1279 1 : return true;
1280 : }
1281 :
1282 : /************************************************************************/
1283 : /* InitWithCoverageAPI() */
1284 : /************************************************************************/
1285 :
1286 1 : bool OGCAPIDataset::InitWithCoverageAPI(GDALOpenInfo *poOpenInfo,
1287 : const CPLString &osCoverageURL,
1288 : double dfXMin, double dfYMin,
1289 : double dfXMax, double dfYMax,
1290 : const CPLJSONObject &oJsonCollection)
1291 : {
1292 1 : int l_nBands = 1;
1293 1 : GDALDataType eDT = GDT_Float32;
1294 :
1295 3 : auto oRangeType = oJsonCollection["rangeType"];
1296 1 : if (!oRangeType.IsValid())
1297 1 : oRangeType = oJsonCollection["rangetype"];
1298 :
1299 3 : auto oDomainSet = oJsonCollection["domainset"];
1300 1 : if (!oDomainSet.IsValid())
1301 1 : oDomainSet = oJsonCollection["domainSet"];
1302 :
1303 1 : if (!oRangeType.IsValid() || !oDomainSet.IsValid())
1304 : {
1305 3 : auto oLinks = oJsonCollection.GetArray("links");
1306 22 : for (const auto &oLink : oLinks)
1307 : {
1308 63 : const auto osRel = oLink.GetString("rel");
1309 63 : const auto osType = oLink.GetString("type");
1310 21 : if (osRel == "http://www.opengis.net/def/rel/ogc/1.0/"
1311 22 : "coverage-domainset" &&
1312 1 : (osType == "application/json" || osType.empty()))
1313 : {
1314 3 : CPLString osURL = BuildURL(oLink["href"].ToString());
1315 2 : CPLJSONDocument oDoc;
1316 1 : if (DownloadJSon(osURL.c_str(), oDoc))
1317 : {
1318 1 : oDomainSet = oDoc.GetRoot();
1319 : }
1320 : }
1321 20 : else if (osRel == "http://www.opengis.net/def/rel/ogc/1.0/"
1322 21 : "coverage-rangetype" &&
1323 1 : (osType == "application/json" || osType.empty()))
1324 : {
1325 3 : CPLString osURL = BuildURL(oLink["href"].ToString());
1326 2 : CPLJSONDocument oDoc;
1327 1 : if (DownloadJSon(osURL.c_str(), oDoc))
1328 : {
1329 1 : oRangeType = oDoc.GetRoot();
1330 : }
1331 : }
1332 : }
1333 : }
1334 :
1335 1 : if (oRangeType.IsValid())
1336 : {
1337 3 : auto oField = oRangeType.GetArray("field");
1338 1 : if (oField.IsValid())
1339 : {
1340 1 : l_nBands = oField.Size();
1341 : // Such as in https://maps.gnosis.earth/ogcapi/collections/NaturalEarth:raster:HYP_HR_SR_OB_DR/coverage/rangetype?f=json
1342 : // https://github.com/opengeospatial/coverage-implementation-schema/blob/main/standard/schemas/1.1/json/examples/generalGrid/2D_regular.json
1343 : std::string osDataType =
1344 3 : oField[0].GetString("encodingInfo/dataType");
1345 1 : if (osDataType.empty())
1346 : {
1347 : // Older way?
1348 0 : osDataType = oField[0].GetString("definition");
1349 : }
1350 : static const std::map<std::string, GDALDataType> oMapTypes = {
1351 : // https://edc-oapi.dev.hub.eox.at/oapi/collections/S2L2A
1352 0 : {"UINT8", GDT_Byte},
1353 0 : {"INT16", GDT_Int16},
1354 0 : {"UINT16", GDT_UInt16},
1355 0 : {"INT32", GDT_Int32},
1356 0 : {"UINT32", GDT_UInt32},
1357 0 : {"FLOAT32", GDT_Float32},
1358 0 : {"FLOAT64", GDT_Float64},
1359 : // https://test.cubewerx.com/cubewerx/cubeserv/demo/ogcapi/Daraa/collections/Daraa_DTED/coverage/rangetype?f=json
1360 0 : {"ogcType:unsignedByte", GDT_Byte},
1361 0 : {"ogcType:signedShort", GDT_Int16},
1362 0 : {"ogcType:unsignedShort", GDT_UInt16},
1363 0 : {"ogcType:signedInt", GDT_Int32},
1364 0 : {"ogcType:unsignedInt", GDT_UInt32},
1365 0 : {"ogcType:float32", GDT_Float32},
1366 0 : {"ogcType:float64", GDT_Float64},
1367 0 : {"ogcType:double", GDT_Float64},
1368 16 : };
1369 : // 08-094r1_SWE_Common_Data_Model_2.0_Submission_Package.pdf page
1370 : // 112
1371 : auto oIter = oMapTypes.find(
1372 1 : CPLString(osDataType)
1373 : .replaceAll("http://www.opengis.net/def/dataType/OGC/0/",
1374 1 : "ogcType:"));
1375 1 : if (oIter != oMapTypes.end())
1376 : {
1377 1 : eDT = oIter->second;
1378 : }
1379 : else
1380 : {
1381 0 : CPLDebug("OGCAPI", "Unhandled data type: %s",
1382 : osDataType.c_str());
1383 : }
1384 : }
1385 : }
1386 :
1387 2 : CPLString osXAxisName;
1388 2 : CPLString osYAxisName;
1389 1 : if (oDomainSet.IsValid())
1390 : {
1391 3 : auto oAxisLabels = oDomainSet["generalGrid"]["axisLabels"].ToArray();
1392 1 : if (oAxisLabels.IsValid() && oAxisLabels.Size() >= 2)
1393 : {
1394 1 : osXAxisName = oAxisLabels[0].ToString();
1395 1 : osYAxisName = oAxisLabels[1].ToString();
1396 : }
1397 :
1398 3 : auto oAxis = oDomainSet["generalGrid"]["axis"].ToArray();
1399 1 : if (oAxis.IsValid() && oAxis.Size() >= 2)
1400 : {
1401 1 : double dfXRes = std::abs(oAxis[0].GetDouble("resolution"));
1402 1 : double dfYRes = std::abs(oAxis[1].GetDouble("resolution"));
1403 :
1404 1 : dfXMin = oAxis[0].GetDouble("lowerBound");
1405 1 : dfXMax = oAxis[0].GetDouble("upperBound");
1406 1 : dfYMin = oAxis[1].GetDouble("lowerBound");
1407 1 : dfYMax = oAxis[1].GetDouble("upperBound");
1408 :
1409 1 : if (osXAxisName == "Lat")
1410 : {
1411 1 : std::swap(dfXRes, dfYRes);
1412 1 : std::swap(dfXMin, dfYMin);
1413 1 : std::swap(dfXMax, dfYMax);
1414 : }
1415 :
1416 1 : double dfXSize = (dfXMax - dfXMin) / dfXRes;
1417 1 : double dfYSize = (dfYMax - dfYMin) / dfYRes;
1418 1 : while (dfXSize > INT_MAX || dfYSize > INT_MAX)
1419 : {
1420 0 : dfXSize /= 2;
1421 0 : dfYSize /= 2;
1422 : }
1423 :
1424 1 : nRasterXSize = std::max(1, static_cast<int>(0.5 + dfXSize));
1425 1 : nRasterYSize = std::max(1, static_cast<int>(0.5 + dfYSize));
1426 1 : m_adfGeoTransform[0] = dfXMin;
1427 1 : m_adfGeoTransform[1] = (dfXMax - dfXMin) / nRasterXSize;
1428 1 : m_adfGeoTransform[3] = dfYMax;
1429 1 : m_adfGeoTransform[5] = -(dfYMax - dfYMin) / nRasterYSize;
1430 : }
1431 :
1432 2 : OGRSpatialReference oSRS;
1433 3 : std::string srsName(oDomainSet["generalGrid"].GetString("srsName"));
1434 1 : bool bSwap = false;
1435 :
1436 : // Strip of time component, as found in
1437 : // OGCAPI:https://maps.ecere.com/ogcapi/collections/blueMarble
1438 1 : if (STARTS_WITH(srsName.c_str(),
1439 1 : "http://www.opengis.net/def/crs-compound?1=") &&
1440 0 : srsName.find("&2=http://www.opengis.net/def/crs/OGC/0/") !=
1441 : std::string::npos)
1442 : {
1443 0 : srsName = srsName.substr(
1444 0 : strlen("http://www.opengis.net/def/crs-compound?1="));
1445 0 : srsName.resize(srsName.find("&2="));
1446 : }
1447 :
1448 1 : if (oSRS.SetFromUserInput(
1449 : srsName.c_str(),
1450 1 : OGRSpatialReference::SET_FROM_USER_INPUT_LIMITATIONS_get()) ==
1451 : OGRERR_NONE)
1452 : {
1453 1 : if (oSRS.EPSGTreatsAsLatLong() ||
1454 0 : oSRS.EPSGTreatsAsNorthingEasting())
1455 : {
1456 1 : bSwap = true;
1457 : }
1458 : }
1459 0 : else if (srsName ==
1460 : "https://ows.rasdaman.org/def/crs/EPSG/0/4326") // HACK
1461 : {
1462 0 : bSwap = true;
1463 : }
1464 1 : if (bSwap)
1465 : {
1466 1 : std::swap(osXAxisName, osYAxisName);
1467 : }
1468 : }
1469 :
1470 1 : int nOverviewCount = 0;
1471 1 : int nLargestDim = std::max(nRasterXSize, nRasterYSize);
1472 12 : while (nLargestDim > 256)
1473 : {
1474 11 : nOverviewCount++;
1475 11 : nLargestDim /= 2;
1476 : }
1477 :
1478 1 : m_oSRS.importFromEPSG(4326);
1479 1 : m_oSRS.SetAxisMappingStrategy(OAMS_TRADITIONAL_GIS_ORDER);
1480 :
1481 2 : CPLString osCoverageURLModified(osCoverageURL);
1482 2 : if (osCoverageURLModified.find('&') == std::string::npos &&
1483 1 : osCoverageURLModified.find('?') == std::string::npos)
1484 : {
1485 0 : osCoverageURLModified += '?';
1486 : }
1487 : else
1488 : {
1489 1 : osCoverageURLModified += '&';
1490 : }
1491 :
1492 1 : if (!osXAxisName.empty() && !osYAxisName.empty())
1493 : {
1494 : osCoverageURLModified +=
1495 : CPLSPrintf("subset=%s(${minx}:${maxx}),%s(${miny}:${maxy})&"
1496 : "scaleSize=%s(${width}),%s(${height})",
1497 : osXAxisName.c_str(), osYAxisName.c_str(),
1498 1 : osXAxisName.c_str(), osYAxisName.c_str());
1499 : }
1500 : else
1501 : {
1502 : // FIXME
1503 : osCoverageURLModified += "bbox=${minx},${miny},${maxx},${maxy}&"
1504 0 : "scaleSize=Lat(${height}),Long(${width})";
1505 : }
1506 :
1507 1 : const bool bCache = CPLTestBool(
1508 1 : CSLFetchNameValueDef(poOpenInfo->papszOpenOptions, "CACHE", "YES"));
1509 1 : const int nMaxConnections = atoi(
1510 1 : CSLFetchNameValueDef(poOpenInfo->papszOpenOptions, "MAX_CONNECTIONS",
1511 : CPLGetConfigOption("GDAL_MAX_CONNECTIONS", "5")));
1512 2 : CPLString osWMS_XML;
1513 1 : char *pszEscapedURL = CPLEscapeString(osCoverageURLModified, -1, CPLES_XML);
1514 2 : std::string osAccept("<Accept>image/tiff;application=geotiff</Accept>");
1515 1 : osWMS_XML.Printf("<GDAL_WMS>"
1516 : " <Service name=\"OGCAPICoverage\">"
1517 : " <ServerUrl>%s</ServerUrl>"
1518 : " </Service>"
1519 : " <DataWindow>"
1520 : " <UpperLeftX>%.17g</UpperLeftX>"
1521 : " <UpperLeftY>%.17g</UpperLeftY>"
1522 : " <LowerRightX>%.17g</LowerRightX>"
1523 : " <LowerRightY>%.17g</LowerRightY>"
1524 : " <SizeX>%d</SizeX>"
1525 : " <SizeY>%d</SizeY>"
1526 : " </DataWindow>"
1527 : " <OverviewCount>%d</OverviewCount>"
1528 : " <BlockSizeX>256</BlockSizeX>"
1529 : " <BlockSizeY>256</BlockSizeY>"
1530 : " <BandsCount>%d</BandsCount>"
1531 : " <DataType>%s</DataType>"
1532 : " <MaxConnections>%d</MaxConnections>"
1533 : " %s"
1534 : " %s"
1535 : "</GDAL_WMS>",
1536 : pszEscapedURL, dfXMin, dfYMax, dfXMax, dfYMin,
1537 : nRasterXSize, nRasterYSize, nOverviewCount, l_nBands,
1538 : GDALGetDataTypeName(eDT), nMaxConnections,
1539 1 : osAccept.c_str(), bCache ? "<Cache />" : "");
1540 1 : CPLFree(pszEscapedURL);
1541 1 : CPLDebug("OGCAPI", "%s", osWMS_XML.c_str());
1542 1 : m_poWMSDS.reset(
1543 : GDALDataset::Open(osWMS_XML, GDAL_OF_RASTER | GDAL_OF_INTERNAL));
1544 1 : if (m_poWMSDS == nullptr)
1545 0 : return false;
1546 :
1547 2 : for (int i = 1; i <= m_poWMSDS->GetRasterCount(); i++)
1548 : {
1549 1 : SetBand(i, new OGCAPIMapWrapperBand(this, i));
1550 : }
1551 1 : SetMetadataItem("INTERLEAVE", "PIXEL", "IMAGE_STRUCTURE");
1552 :
1553 1 : return true;
1554 : }
1555 :
1556 : /************************************************************************/
1557 : /* OGCAPIMapWrapperBand() */
1558 : /************************************************************************/
1559 :
1560 5 : OGCAPIMapWrapperBand::OGCAPIMapWrapperBand(OGCAPIDataset *poDSIn, int nBandIn)
1561 : {
1562 5 : poDS = poDSIn;
1563 5 : nBand = nBandIn;
1564 5 : eDataType = poDSIn->m_poWMSDS->GetRasterBand(nBand)->GetRasterDataType();
1565 5 : poDSIn->m_poWMSDS->GetRasterBand(nBand)->GetBlockSize(&nBlockXSize,
1566 : &nBlockYSize);
1567 5 : }
1568 :
1569 : /************************************************************************/
1570 : /* IReadBlock() */
1571 : /************************************************************************/
1572 :
1573 0 : CPLErr OGCAPIMapWrapperBand::IReadBlock(int nBlockXOff, int nBlockYOff,
1574 : void *pImage)
1575 : {
1576 0 : OGCAPIDataset *poGDS = cpl::down_cast<OGCAPIDataset *>(poDS);
1577 0 : return poGDS->m_poWMSDS->GetRasterBand(nBand)->ReadBlock(
1578 0 : nBlockXOff, nBlockYOff, pImage);
1579 : }
1580 :
1581 : /************************************************************************/
1582 : /* IRasterIO() */
1583 : /************************************************************************/
1584 :
1585 1 : CPLErr OGCAPIMapWrapperBand::IRasterIO(
1586 : GDALRWFlag eRWFlag, int nXOff, int nYOff, int nXSize, int nYSize,
1587 : void *pData, int nBufXSize, int nBufYSize, GDALDataType eBufType,
1588 : GSpacing nPixelSpace, GSpacing nLineSpace, GDALRasterIOExtraArg *psExtraArg)
1589 : {
1590 1 : OGCAPIDataset *poGDS = cpl::down_cast<OGCAPIDataset *>(poDS);
1591 1 : return poGDS->m_poWMSDS->GetRasterBand(nBand)->RasterIO(
1592 : eRWFlag, nXOff, nYOff, nXSize, nYSize, pData, nBufXSize, nBufYSize,
1593 1 : eBufType, nPixelSpace, nLineSpace, psExtraArg);
1594 : }
1595 :
1596 : /************************************************************************/
1597 : /* GetOverviewCount() */
1598 : /************************************************************************/
1599 :
1600 4 : int OGCAPIMapWrapperBand::GetOverviewCount()
1601 : {
1602 4 : OGCAPIDataset *poGDS = cpl::down_cast<OGCAPIDataset *>(poDS);
1603 4 : return poGDS->m_poWMSDS->GetRasterBand(nBand)->GetOverviewCount();
1604 : }
1605 :
1606 : /************************************************************************/
1607 : /* GetOverview() */
1608 : /************************************************************************/
1609 :
1610 0 : GDALRasterBand *OGCAPIMapWrapperBand::GetOverview(int nLevel)
1611 : {
1612 0 : OGCAPIDataset *poGDS = cpl::down_cast<OGCAPIDataset *>(poDS);
1613 0 : return poGDS->m_poWMSDS->GetRasterBand(nBand)->GetOverview(nLevel);
1614 : }
1615 :
1616 : /************************************************************************/
1617 : /* GetColorInterpretation() */
1618 : /************************************************************************/
1619 :
1620 6 : GDALColorInterp OGCAPIMapWrapperBand::GetColorInterpretation()
1621 : {
1622 6 : OGCAPIDataset *poGDS = cpl::down_cast<OGCAPIDataset *>(poDS);
1623 : // The WMS driver returns Grey-Alpha for 2 band, RGB(A) for 3 or 4 bands
1624 : // Restrict that behavior to Byte only data.
1625 6 : if (eDataType == GDT_Byte)
1626 5 : return poGDS->m_poWMSDS->GetRasterBand(nBand)->GetColorInterpretation();
1627 1 : return GCI_Undefined;
1628 : }
1629 :
1630 : /************************************************************************/
1631 : /* ParseXMLSchema() */
1632 : /************************************************************************/
1633 :
1634 : static bool
1635 0 : ParseXMLSchema(const std::string &osURL,
1636 : std::vector<std::unique_ptr<OGRFieldDefn>> &apoFields,
1637 : OGRwkbGeometryType &eGeomType)
1638 : {
1639 0 : CPLErrorStateBackuper oErrorStateBackuper(CPLQuietErrorHandler);
1640 :
1641 0 : std::vector<GMLFeatureClass *> apoClasses;
1642 0 : bool bFullyUnderstood = false;
1643 0 : bool bUseSchemaImports = false;
1644 0 : bool bHaveSchema = GMLParseXSD(osURL.c_str(), bUseSchemaImports, apoClasses,
1645 : bFullyUnderstood);
1646 0 : if (bHaveSchema && apoClasses.size() == 1)
1647 : {
1648 0 : auto poGMLFeatureClass = apoClasses[0];
1649 0 : if (poGMLFeatureClass->GetGeometryPropertyCount() == 1 &&
1650 0 : poGMLFeatureClass->GetGeometryProperty(0)->GetType() != wkbUnknown)
1651 : {
1652 0 : eGeomType = static_cast<OGRwkbGeometryType>(
1653 0 : poGMLFeatureClass->GetGeometryProperty(0)->GetType());
1654 : }
1655 :
1656 0 : const int nPropertyCount = poGMLFeatureClass->GetPropertyCount();
1657 0 : for (int iField = 0; iField < nPropertyCount; iField++)
1658 : {
1659 0 : const auto poProperty = poGMLFeatureClass->GetProperty(iField);
1660 0 : OGRFieldSubType eSubType = OFSTNone;
1661 : const OGRFieldType eFType =
1662 0 : GML_GetOGRFieldType(poProperty->GetType(), eSubType);
1663 :
1664 0 : const char *pszName = poProperty->GetName();
1665 0 : auto poField = std::make_unique<OGRFieldDefn>(pszName, eFType);
1666 0 : poField->SetSubType(eSubType);
1667 0 : apoFields.emplace_back(std::move(poField));
1668 : }
1669 0 : delete poGMLFeatureClass;
1670 0 : return true;
1671 : }
1672 :
1673 0 : for (auto poFeatureClass : apoClasses)
1674 0 : delete poFeatureClass;
1675 :
1676 0 : return false;
1677 : }
1678 :
1679 : /************************************************************************/
1680 : /* InitWithTilesAPI() */
1681 : /************************************************************************/
1682 :
1683 18 : bool OGCAPIDataset::InitWithTilesAPI(GDALOpenInfo *poOpenInfo,
1684 : const CPLString &osTilesURL, bool bIsMap,
1685 : double dfXMin, double dfYMin,
1686 : double dfXMax, double dfYMax,
1687 : bool bBBOXIsInCRS84,
1688 : const CPLJSONObject &oJsonCollection)
1689 : {
1690 36 : CPLJSONDocument oDoc;
1691 18 : if (!DownloadJSon(osTilesURL.c_str(), oDoc))
1692 0 : return false;
1693 :
1694 54 : auto oTilesets = oDoc.GetRoot()["tilesets"].ToArray();
1695 18 : if (oTilesets.Size() == 0)
1696 : {
1697 0 : CPLError(CE_Failure, CPLE_AppDefined, "Cannot find tilesets");
1698 0 : return false;
1699 : }
1700 : const char *pszRequiredTileMatrixSet =
1701 18 : CSLFetchNameValue(poOpenInfo->papszOpenOptions, "TILEMATRIXSET");
1702 36 : const char *pszPreferredTileMatrixSet = CSLFetchNameValue(
1703 18 : poOpenInfo->papszOpenOptions, "PREFERRED_TILEMATRIXSET");
1704 36 : CPLString osTilesetURL;
1705 180 : for (const auto &oTileset : oTilesets)
1706 : {
1707 324 : const auto oTileMatrixSetURI = oTileset.GetString("tileMatrixSetURI");
1708 324 : const auto oLinks = oTileset.GetArray("links");
1709 162 : if (bIsMap)
1710 : {
1711 117 : if (oTileset.GetString("dataType") != "map")
1712 0 : continue;
1713 : }
1714 : else
1715 : {
1716 45 : if (oTileset.GetString("dataType") != "vector")
1717 0 : continue;
1718 : }
1719 162 : if (!oLinks.IsValid())
1720 : {
1721 0 : CPLDebug("OGCAPI", "Missing links for a tileset");
1722 0 : continue;
1723 : }
1724 225 : if (pszRequiredTileMatrixSet != nullptr &&
1725 63 : oTileMatrixSetURI.find(pszRequiredTileMatrixSet) ==
1726 : std::string::npos)
1727 : {
1728 56 : continue;
1729 : }
1730 212 : CPLString osCandidateTilesetURL;
1731 318 : for (const auto &oLink : oLinks)
1732 : {
1733 212 : if (oLink["rel"].ToString() == "self")
1734 : {
1735 212 : const auto osType = oLink["type"].ToString();
1736 106 : if (osType == MEDIA_TYPE_JSON)
1737 : {
1738 106 : osCandidateTilesetURL = BuildURL(oLink["href"].ToString());
1739 106 : break;
1740 : }
1741 0 : else if (osType.empty())
1742 : {
1743 0 : osCandidateTilesetURL = BuildURL(oLink["href"].ToString());
1744 : }
1745 : }
1746 : }
1747 106 : if (pszRequiredTileMatrixSet != nullptr)
1748 : {
1749 7 : osTilesetURL = std::move(osCandidateTilesetURL);
1750 : }
1751 99 : else if (pszPreferredTileMatrixSet != nullptr &&
1752 99 : !osCandidateTilesetURL.empty() &&
1753 0 : (oTileMatrixSetURI.find(pszPreferredTileMatrixSet) !=
1754 : std::string::npos))
1755 : {
1756 0 : osTilesetURL = std::move(osCandidateTilesetURL);
1757 : }
1758 99 : else if (oTileMatrixSetURI.find("WorldCRS84Quad") != std::string::npos)
1759 : {
1760 11 : osTilesetURL = std::move(osCandidateTilesetURL);
1761 : }
1762 88 : else if (osTilesetURL.empty())
1763 : {
1764 11 : osTilesetURL = std::move(osCandidateTilesetURL);
1765 : }
1766 : }
1767 18 : if (osTilesetURL.empty())
1768 : {
1769 0 : CPLError(CE_Failure, CPLE_AppDefined, "Cannot find tilematrixset");
1770 0 : return false;
1771 : }
1772 :
1773 : // Download and parse selected tileset definition
1774 18 : if (!DownloadJSon(osTilesetURL.c_str(), oDoc))
1775 0 : return false;
1776 :
1777 54 : const auto oLinks = oDoc.GetRoot().GetArray("links");
1778 18 : if (!oLinks.IsValid())
1779 : {
1780 0 : CPLError(CE_Failure, CPLE_AppDefined, "Missing links for tileset");
1781 0 : return false;
1782 : }
1783 :
1784 : // Key - mime type, Value url
1785 36 : std::map<std::string, std::string> oMapItemUrls;
1786 36 : CPLString osMVT_URL;
1787 36 : CPLString osGEOJSON_URL;
1788 36 : CPLString osTilingSchemeURL;
1789 18 : bool bTilingSchemeURLJson = false;
1790 :
1791 203 : for (const auto &oLink : oLinks)
1792 : {
1793 555 : const auto osRel = oLink.GetString("rel");
1794 555 : const auto osType = oLink.GetString("type");
1795 :
1796 275 : if (!bTilingSchemeURLJson &&
1797 90 : osRel == "http://www.opengis.net/def/rel/ogc/1.0/tiling-scheme")
1798 : {
1799 18 : if (osType == MEDIA_TYPE_JSON)
1800 : {
1801 18 : bTilingSchemeURLJson = true;
1802 18 : osTilingSchemeURL = BuildURL(oLink["href"].ToString());
1803 : }
1804 0 : else if (osType.empty())
1805 : {
1806 0 : osTilingSchemeURL = BuildURL(oLink["href"].ToString());
1807 : }
1808 : }
1809 167 : else if (bIsMap)
1810 : {
1811 117 : if (osRel == "item" && !osType.empty())
1812 : {
1813 52 : oMapItemUrls[osType] = BuildURL(oLink["href"].ToString());
1814 : }
1815 65 : else if (osRel == "item")
1816 : {
1817 : // For lack of additional information assume we are getting some bytes
1818 0 : oMapItemUrls["application/octet-stream"] =
1819 0 : BuildURL(oLink["href"].ToString());
1820 : }
1821 : }
1822 : else
1823 : {
1824 75 : if (osRel == "item" &&
1825 25 : osType == "application/vnd.mapbox-vector-tile")
1826 : {
1827 5 : osMVT_URL = BuildURL(oLink["href"].ToString());
1828 : }
1829 45 : else if (osRel == "item" && osType == "application/geo+json")
1830 : {
1831 5 : osGEOJSON_URL = BuildURL(oLink["href"].ToString());
1832 : }
1833 : }
1834 : }
1835 :
1836 18 : if (osTilingSchemeURL.empty())
1837 : {
1838 0 : CPLError(
1839 : CE_Failure, CPLE_AppDefined,
1840 : "Cannot find http://www.opengis.net/def/rel/ogc/1.0/tiling-scheme");
1841 0 : return false;
1842 : }
1843 :
1844 : // Parse tile matrix set limits.
1845 : const auto oTileMatrixSetLimits =
1846 54 : oDoc.GetRoot().GetArray("tileMatrixSetLimits");
1847 :
1848 : struct Limits
1849 : {
1850 : int minTileRow;
1851 : int maxTileRow;
1852 : int minTileCol;
1853 : int maxTileCol;
1854 : };
1855 :
1856 36 : std::map<CPLString, Limits> oMapTileMatrixSetLimits;
1857 18 : if (CPLTestBool(
1858 : CPLGetConfigOption("GDAL_OGCAPI_TILEMATRIXSET_LIMITS", "YES")))
1859 : {
1860 172 : for (const auto &jsonLimit : oTileMatrixSetLimits)
1861 : {
1862 308 : const auto osTileMatrix = jsonLimit.GetString("tileMatrix");
1863 154 : if (!osTileMatrix.empty())
1864 : {
1865 : Limits limits;
1866 154 : limits.minTileRow = jsonLimit.GetInteger("minTileRow");
1867 154 : limits.maxTileRow = jsonLimit.GetInteger("maxTileRow");
1868 154 : limits.minTileCol = jsonLimit.GetInteger("minTileCol");
1869 154 : limits.maxTileCol = jsonLimit.GetInteger("maxTileCol");
1870 154 : if (limits.minTileRow > limits.maxTileRow)
1871 0 : continue; // shouldn't happen on valid data
1872 154 : oMapTileMatrixSetLimits[osTileMatrix] = limits;
1873 : }
1874 : }
1875 : }
1876 :
1877 : const std::pair<std::string, std::string> oContentUrlPair =
1878 36 : SelectImageURL(poOpenInfo->papszOpenOptions, oMapItemUrls);
1879 36 : const std::string osContentType = oContentUrlPair.first;
1880 36 : const std::string osRasterURL = oContentUrlPair.second;
1881 :
1882 : const CPLString osVectorURL = SelectVectorFormatURL(
1883 36 : poOpenInfo->papszOpenOptions, osMVT_URL, osGEOJSON_URL);
1884 18 : if (osRasterURL.empty() && osVectorURL.empty())
1885 : {
1886 0 : CPLError(CE_Failure, CPLE_AppDefined,
1887 : "Cannot find link to PNG, JPEG, MVT or GeoJSON tiles");
1888 0 : return false;
1889 : }
1890 :
1891 72 : for (const char *pszNeedle : {"{tileMatrix}", "{tileRow}", "{tileCol}"})
1892 : {
1893 93 : if (!osRasterURL.empty() &&
1894 39 : osRasterURL.find(pszNeedle) == std::string::npos)
1895 : {
1896 0 : CPLError(CE_Failure, CPLE_AppDefined, "%s missing in tile URL %s",
1897 : pszNeedle, osRasterURL.c_str());
1898 0 : return false;
1899 : }
1900 69 : if (!osVectorURL.empty() &&
1901 15 : osVectorURL.find(pszNeedle) == std::string::npos)
1902 : {
1903 0 : CPLError(CE_Failure, CPLE_AppDefined, "%s missing in tile URL %s",
1904 : pszNeedle, osVectorURL.c_str());
1905 0 : return false;
1906 : }
1907 : }
1908 :
1909 : // Download and parse tile matrix set definition
1910 18 : if (!DownloadJSon(osTilingSchemeURL.c_str(), oDoc, nullptr,
1911 : MEDIA_TYPE_JSON))
1912 0 : return false;
1913 :
1914 36 : auto tms = gdal::TileMatrixSet::parse(oDoc.SaveAsString().c_str());
1915 18 : if (tms == nullptr)
1916 0 : return false;
1917 :
1918 36 : if (m_oSRS.SetFromUserInput(
1919 18 : tms->crs().c_str(),
1920 18 : OGRSpatialReference::SET_FROM_USER_INPUT_LIMITATIONS_get()) !=
1921 : OGRERR_NONE)
1922 0 : return false;
1923 36 : const bool bInvertAxis = m_oSRS.EPSGTreatsAsLatLong() != FALSE ||
1924 18 : m_oSRS.EPSGTreatsAsNorthingEasting() != FALSE;
1925 18 : m_oSRS.SetAxisMappingStrategy(OAMS_TRADITIONAL_GIS_ORDER);
1926 :
1927 18 : bool bFoundSomething = false;
1928 18 : if (!osVectorURL.empty() && (poOpenInfo->nOpenFlags & GDAL_OF_VECTOR) != 0)
1929 : {
1930 15 : const auto osVectorType = oJsonCollection.GetString("vectorType");
1931 5 : OGRwkbGeometryType eGeomType = wkbUnknown;
1932 5 : if (osVectorType == "Points")
1933 0 : eGeomType = wkbPoint;
1934 5 : else if (osVectorType == "Lines")
1935 0 : eGeomType = wkbMultiLineString;
1936 5 : else if (osVectorType == "Polygons")
1937 0 : eGeomType = wkbMultiPolygon;
1938 :
1939 10 : CPLString osXMLSchemaURL;
1940 180 : for (const auto &oLink : oJsonCollection.GetArray("links"))
1941 : {
1942 350 : if (oLink["rel"].ToString() == "describedBy" &&
1943 175 : oLink["type"].ToString() == "text/xml")
1944 : {
1945 0 : osXMLSchemaURL = BuildURL(oLink["href"].ToString());
1946 : }
1947 : }
1948 :
1949 5 : std::vector<std::unique_ptr<OGRFieldDefn>> apoFields;
1950 5 : bool bGotSchema = false;
1951 5 : if (!osXMLSchemaURL.empty())
1952 : {
1953 0 : bGotSchema = ParseXMLSchema(osXMLSchemaURL, apoFields, eGeomType);
1954 : }
1955 :
1956 155 : for (const auto &tileMatrix : tms->tileMatrixList())
1957 : {
1958 150 : const double dfOriX =
1959 150 : bInvertAxis ? tileMatrix.mTopLeftY : tileMatrix.mTopLeftX;
1960 150 : const double dfOriY =
1961 150 : bInvertAxis ? tileMatrix.mTopLeftX : tileMatrix.mTopLeftY;
1962 :
1963 150 : auto oLimitsIter = oMapTileMatrixSetLimits.find(tileMatrix.mId);
1964 300 : if (!oMapTileMatrixSetLimits.empty() &&
1965 300 : oLimitsIter == oMapTileMatrixSetLimits.end())
1966 : {
1967 : // Tile matrix level not in known limits
1968 115 : continue;
1969 : }
1970 35 : int minCol = std::max(
1971 70 : 0, static_cast<int>((dfXMin - dfOriX) / tileMatrix.mResX /
1972 35 : tileMatrix.mTileWidth));
1973 : int maxCol =
1974 70 : std::min(tileMatrix.mMatrixWidth - 1,
1975 70 : static_cast<int>((dfXMax - dfOriX) / tileMatrix.mResX /
1976 35 : tileMatrix.mTileWidth));
1977 35 : int minRow = std::max(
1978 70 : 0, static_cast<int>((dfOriY - dfYMax) / tileMatrix.mResY /
1979 35 : tileMatrix.mTileHeight));
1980 : int maxRow =
1981 70 : std::min(tileMatrix.mMatrixHeight - 1,
1982 70 : static_cast<int>((dfOriY - dfYMin) / tileMatrix.mResY /
1983 35 : tileMatrix.mTileHeight));
1984 35 : if (oLimitsIter != oMapTileMatrixSetLimits.end())
1985 : {
1986 : // Take into account tileMatrixSetLimits
1987 35 : minCol = std::max(minCol, oLimitsIter->second.minTileCol);
1988 35 : minRow = std::max(minRow, oLimitsIter->second.minTileRow);
1989 35 : maxCol = std::min(maxCol, oLimitsIter->second.maxTileCol);
1990 35 : maxRow = std::min(maxRow, oLimitsIter->second.maxTileRow);
1991 35 : if (minCol > maxCol || minRow > maxRow)
1992 : {
1993 0 : continue;
1994 : }
1995 : }
1996 : auto poLayer =
1997 : std::unique_ptr<OGCAPITiledLayer>(new OGCAPITiledLayer(
1998 35 : this, bInvertAxis, osVectorURL, osVectorURL == osMVT_URL,
1999 70 : tileMatrix, eGeomType));
2000 35 : poLayer->SetMinMaxXY(minCol, minRow, maxCol, maxRow);
2001 35 : poLayer->SetExtent(dfXMin, dfYMin, dfXMax, dfYMax);
2002 35 : if (bGotSchema)
2003 0 : poLayer->SetFields(apoFields);
2004 35 : m_apoLayers.emplace_back(std::move(poLayer));
2005 : }
2006 :
2007 5 : bFoundSomething = true;
2008 : }
2009 :
2010 18 : if (!osRasterURL.empty() && (poOpenInfo->nOpenFlags & GDAL_OF_RASTER) != 0)
2011 : {
2012 8 : if (bBBOXIsInCRS84)
2013 : {
2014 : // Reproject the extent if needed
2015 16 : OGRSpatialReference oCRS84;
2016 8 : oCRS84.importFromEPSG(4326);
2017 8 : oCRS84.SetAxisMappingStrategy(OAMS_TRADITIONAL_GIS_ORDER);
2018 : auto poCT = std::unique_ptr<OGRCoordinateTransformation>(
2019 16 : OGRCreateCoordinateTransformation(&oCRS84, &m_oSRS));
2020 8 : if (poCT)
2021 : {
2022 8 : poCT->TransformBounds(dfXMin, dfYMin, dfXMax, dfYMax, &dfXMin,
2023 8 : &dfYMin, &dfXMax, &dfYMax, 21);
2024 : }
2025 : }
2026 :
2027 8 : const bool bCache = CPLTestBool(
2028 8 : CSLFetchNameValueDef(poOpenInfo->papszOpenOptions, "CACHE", "YES"));
2029 8 : const int nMaxConnections = atoi(CSLFetchNameValueDef(
2030 8 : poOpenInfo->papszOpenOptions, "MAX_CONNECTIONS",
2031 : CPLGetConfigOption("GDAL_WMS_MAX_CONNECTIONS", "5")));
2032 : const char *pszTileMatrix =
2033 8 : CSLFetchNameValue(poOpenInfo->papszOpenOptions, "TILEMATRIX");
2034 :
2035 8 : int l_nBands = FigureBands(osContentType, osRasterURL);
2036 :
2037 191 : for (const auto &tileMatrix : tms->tileMatrixList())
2038 : {
2039 191 : if (pszTileMatrix && !EQUAL(tileMatrix.mId.c_str(), pszTileMatrix))
2040 : {
2041 99 : continue;
2042 : }
2043 191 : if (tileMatrix.mTileWidth == 0 ||
2044 191 : tileMatrix.mMatrixWidth > INT_MAX / tileMatrix.mTileWidth ||
2045 183 : tileMatrix.mTileHeight == 0 ||
2046 183 : tileMatrix.mMatrixHeight > INT_MAX / tileMatrix.mTileHeight)
2047 : {
2048 : // Too resoluted for GDAL limits
2049 : break;
2050 : }
2051 183 : auto oLimitsIter = oMapTileMatrixSetLimits.find(tileMatrix.mId);
2052 366 : if (!oMapTileMatrixSetLimits.empty() &&
2053 366 : oLimitsIter == oMapTileMatrixSetLimits.end())
2054 : {
2055 : // Tile matrix level not in known limits
2056 99 : continue;
2057 : }
2058 :
2059 84 : if (dfXMax - dfXMin < tileMatrix.mResX ||
2060 84 : dfYMax - dfYMin < tileMatrix.mResY)
2061 : {
2062 : // skip levels for which the extent is smaller than the size
2063 : // of one pixel
2064 0 : continue;
2065 : }
2066 :
2067 84 : CPLString osURL(osRasterURL);
2068 84 : osURL.replaceAll("{tileMatrix}", tileMatrix.mId.c_str());
2069 84 : osURL.replaceAll("{tileRow}", "${y}");
2070 84 : osURL.replaceAll("{tileCol}", "${x}");
2071 :
2072 84 : const double dfOriX =
2073 84 : bInvertAxis ? tileMatrix.mTopLeftY : tileMatrix.mTopLeftX;
2074 84 : const double dfOriY =
2075 84 : bInvertAxis ? tileMatrix.mTopLeftX : tileMatrix.mTopLeftY;
2076 :
2077 : const auto CreateWMS_XML =
2078 84 : [=, &osURL, &tileMatrix](int minRow, int rowCount,
2079 : int nCoalesce, double &dfStripMinY,
2080 252 : double &dfStripMaxY)
2081 : {
2082 84 : int minCol = 0;
2083 84 : int maxCol = tileMatrix.mMatrixWidth - 1;
2084 84 : int maxRow = minRow + rowCount - 1;
2085 84 : double dfStripMinX =
2086 84 : dfOriX + minCol * tileMatrix.mTileWidth * tileMatrix.mResX;
2087 84 : double dfStripMaxX = dfOriX + (maxCol + 1) *
2088 84 : tileMatrix.mTileWidth *
2089 84 : tileMatrix.mResX;
2090 84 : dfStripMaxY =
2091 84 : dfOriY - minRow * tileMatrix.mTileHeight * tileMatrix.mResY;
2092 84 : dfStripMinY = dfOriY - (maxRow + 1) * tileMatrix.mTileHeight *
2093 84 : tileMatrix.mResY;
2094 84 : CPLString osWMS_XML;
2095 84 : char *pszEscapedURL = CPLEscapeString(osURL, -1, CPLES_XML);
2096 : osWMS_XML.Printf(
2097 : "<GDAL_WMS>"
2098 : " <Service name=\"TMS\">"
2099 : " <ServerUrl>%s</ServerUrl>"
2100 : " <TileXMultiplier>%d</TileXMultiplier>"
2101 : " </Service>"
2102 : " <DataWindow>"
2103 : " <UpperLeftX>%.17g</UpperLeftX>"
2104 : " <UpperLeftY>%.17g</UpperLeftY>"
2105 : " <LowerRightX>%.17g</LowerRightX>"
2106 : " <LowerRightY>%.17g</LowerRightY>"
2107 : " <TileLevel>0</TileLevel>"
2108 : " <TileY>%d</TileY>"
2109 : " <SizeX>%d</SizeX>"
2110 : " <SizeY>%d</SizeY>"
2111 : " <YOrigin>top</YOrigin>"
2112 : " </DataWindow>"
2113 : " <BlockSizeX>%d</BlockSizeX>"
2114 : " <BlockSizeY>%d</BlockSizeY>"
2115 : " <BandsCount>%d</BandsCount>"
2116 : " <MaxConnections>%d</MaxConnections>"
2117 : " %s"
2118 : "</GDAL_WMS>",
2119 : pszEscapedURL, nCoalesce, dfStripMinX, dfStripMaxY,
2120 : dfStripMaxX, dfStripMinY, minRow,
2121 84 : (maxCol - minCol + 1) / nCoalesce * tileMatrix.mTileWidth,
2122 84 : rowCount * tileMatrix.mTileHeight, tileMatrix.mTileWidth,
2123 84 : tileMatrix.mTileHeight, l_nBands, nMaxConnections,
2124 84 : bCache ? "<Cache />" : "");
2125 84 : CPLFree(pszEscapedURL);
2126 84 : return osWMS_XML;
2127 84 : };
2128 :
2129 84 : auto vmwl = tileMatrix.mVariableMatrixWidthList;
2130 84 : if (vmwl.empty())
2131 : {
2132 : double dfIgnored1, dfIgnored2;
2133 84 : CPLString osWMS_XML(CreateWMS_XML(0, tileMatrix.mMatrixHeight,
2134 84 : 1, dfIgnored1, dfIgnored2));
2135 84 : if (osWMS_XML.empty())
2136 0 : continue;
2137 : std::unique_ptr<GDALDataset> poDS(GDALDataset::Open(
2138 84 : osWMS_XML, GDAL_OF_RASTER | GDAL_OF_INTERNAL));
2139 84 : if (!poDS)
2140 0 : return false;
2141 84 : m_apoDatasetsAssembled.emplace_back(std::move(poDS));
2142 : }
2143 : else
2144 : {
2145 0 : std::sort(vmwl.begin(), vmwl.end(),
2146 0 : [](const gdal::TileMatrixSet::TileMatrix::
2147 : VariableMatrixWidth &a,
2148 : const gdal::TileMatrixSet::TileMatrix::
2149 : VariableMatrixWidth &b)
2150 0 : { return a.mMinTileRow < b.mMinTileRow; });
2151 0 : std::vector<GDALDatasetH> apoStrippedDS;
2152 : // For each variable matrix width, create a separate WMS dataset
2153 : // with the correspond strip
2154 0 : for (size_t i = 0; i < vmwl.size(); i++)
2155 : {
2156 0 : if (vmwl[i].mCoalesce <= 0 ||
2157 0 : (tileMatrix.mMatrixWidth % vmwl[i].mCoalesce) != 0)
2158 : {
2159 0 : CPLError(CE_Failure, CPLE_AppDefined,
2160 : "Invalid coalesce factor (%d) w.r.t matrix "
2161 : "width (%d)",
2162 0 : vmwl[i].mCoalesce, tileMatrix.mMatrixWidth);
2163 0 : return false;
2164 : }
2165 : {
2166 0 : double dfStripMinY = 0;
2167 0 : double dfStripMaxY = 0;
2168 : CPLString osWMS_XML(CreateWMS_XML(
2169 0 : vmwl[i].mMinTileRow,
2170 0 : vmwl[i].mMaxTileRow - vmwl[i].mMinTileRow + 1,
2171 0 : vmwl[i].mCoalesce, dfStripMinY, dfStripMaxY));
2172 0 : if (osWMS_XML.empty())
2173 0 : continue;
2174 0 : if (dfStripMinY < dfYMax && dfStripMaxY > dfYMin)
2175 : {
2176 : std::unique_ptr<GDALDataset> poDS(GDALDataset::Open(
2177 0 : osWMS_XML, GDAL_OF_RASTER | GDAL_OF_INTERNAL));
2178 0 : if (!poDS)
2179 0 : return false;
2180 : m_apoDatasetsElementary.emplace_back(
2181 0 : std::move(poDS));
2182 0 : apoStrippedDS.emplace_back(GDALDataset::ToHandle(
2183 0 : m_apoDatasetsElementary.back().get()));
2184 : }
2185 : }
2186 :
2187 : // Add a strip for non-coalesced tiles
2188 0 : if (i + 1 < vmwl.size() &&
2189 0 : vmwl[i].mMaxTileRow + 1 != vmwl[i + 1].mMinTileRow)
2190 : {
2191 0 : double dfStripMinY = 0;
2192 0 : double dfStripMaxY = 0;
2193 : CPLString osWMS_XML(CreateWMS_XML(
2194 0 : vmwl[i].mMaxTileRow + 1,
2195 0 : vmwl[i + 1].mMinTileRow - vmwl[i].mMaxTileRow - 1,
2196 0 : 1, dfStripMinY, dfStripMaxY));
2197 0 : if (osWMS_XML.empty())
2198 0 : continue;
2199 0 : if (dfStripMinY < dfYMax && dfStripMaxY > dfYMin)
2200 : {
2201 : std::unique_ptr<GDALDataset> poDS(GDALDataset::Open(
2202 0 : osWMS_XML, GDAL_OF_RASTER | GDAL_OF_INTERNAL));
2203 0 : if (!poDS)
2204 0 : return false;
2205 : m_apoDatasetsElementary.emplace_back(
2206 0 : std::move(poDS));
2207 0 : apoStrippedDS.emplace_back(GDALDataset::ToHandle(
2208 0 : m_apoDatasetsElementary.back().get()));
2209 : }
2210 : }
2211 : }
2212 :
2213 0 : if (apoStrippedDS.empty())
2214 0 : return false;
2215 :
2216 : // Assemble the strips in a single VRT
2217 0 : CPLStringList argv;
2218 0 : argv.AddString("-resolution");
2219 0 : argv.AddString("highest");
2220 : GDALBuildVRTOptions *psOptions =
2221 0 : GDALBuildVRTOptionsNew(argv.List(), nullptr);
2222 0 : GDALDatasetH hAssembledDS = GDALBuildVRT(
2223 0 : "", static_cast<int>(apoStrippedDS.size()),
2224 0 : &apoStrippedDS[0], nullptr, psOptions, nullptr);
2225 0 : GDALBuildVRTOptionsFree(psOptions);
2226 0 : if (hAssembledDS == nullptr)
2227 0 : return false;
2228 : m_apoDatasetsAssembled.emplace_back(
2229 0 : GDALDataset::FromHandle(hAssembledDS));
2230 : }
2231 :
2232 84 : CPLStringList argv;
2233 84 : argv.AddString("-of");
2234 84 : argv.AddString("VRT");
2235 84 : argv.AddString("-projwin");
2236 84 : argv.AddString(CPLSPrintf("%.17g", dfXMin));
2237 84 : argv.AddString(CPLSPrintf("%.17g", dfYMax));
2238 84 : argv.AddString(CPLSPrintf("%.17g", dfXMax));
2239 84 : argv.AddString(CPLSPrintf("%.17g", dfYMin));
2240 : GDALTranslateOptions *psOptions =
2241 84 : GDALTranslateOptionsNew(argv.List(), nullptr);
2242 84 : GDALDatasetH hCroppedDS = GDALTranslate(
2243 84 : "", GDALDataset::ToHandle(m_apoDatasetsAssembled.back().get()),
2244 : psOptions, nullptr);
2245 84 : GDALTranslateOptionsFree(psOptions);
2246 84 : if (hCroppedDS == nullptr)
2247 0 : return false;
2248 : m_apoDatasetsCropped.emplace_back(
2249 84 : GDALDataset::FromHandle(hCroppedDS));
2250 :
2251 84 : if (tileMatrix.mResX <= m_adfGeoTransform[1])
2252 0 : break;
2253 : }
2254 8 : if (!m_apoDatasetsCropped.empty())
2255 : {
2256 8 : std::reverse(std::begin(m_apoDatasetsCropped),
2257 8 : std::end(m_apoDatasetsCropped));
2258 8 : nRasterXSize = m_apoDatasetsCropped[0]->GetRasterXSize();
2259 8 : nRasterYSize = m_apoDatasetsCropped[0]->GetRasterYSize();
2260 8 : m_apoDatasetsCropped[0]->GetGeoTransform(m_adfGeoTransform);
2261 :
2262 38 : for (int i = 1; i <= m_apoDatasetsCropped[0]->GetRasterCount(); i++)
2263 : {
2264 30 : SetBand(i, new OGCAPITilesWrapperBand(this, i));
2265 : }
2266 8 : SetMetadataItem("INTERLEAVE", "PIXEL", "IMAGE_STRUCTURE");
2267 :
2268 8 : bFoundSomething = true;
2269 : }
2270 : }
2271 :
2272 18 : return bFoundSomething;
2273 : }
2274 :
2275 : /************************************************************************/
2276 : /* OGCAPITilesWrapperBand() */
2277 : /************************************************************************/
2278 :
2279 30 : OGCAPITilesWrapperBand::OGCAPITilesWrapperBand(OGCAPIDataset *poDSIn,
2280 30 : int nBandIn)
2281 : {
2282 30 : poDS = poDSIn;
2283 30 : nBand = nBandIn;
2284 30 : eDataType = poDSIn->m_apoDatasetsCropped[0]
2285 : ->GetRasterBand(nBand)
2286 30 : ->GetRasterDataType();
2287 30 : poDSIn->m_apoDatasetsCropped[0]->GetRasterBand(nBand)->GetBlockSize(
2288 : &nBlockXSize, &nBlockYSize);
2289 30 : }
2290 :
2291 : /************************************************************************/
2292 : /* IReadBlock() */
2293 : /************************************************************************/
2294 :
2295 1 : CPLErr OGCAPITilesWrapperBand::IReadBlock(int nBlockXOff, int nBlockYOff,
2296 : void *pImage)
2297 : {
2298 1 : OGCAPIDataset *poGDS = cpl::down_cast<OGCAPIDataset *>(poDS);
2299 1 : return poGDS->m_apoDatasetsCropped[0]->GetRasterBand(nBand)->ReadBlock(
2300 1 : nBlockXOff, nBlockYOff, pImage);
2301 : }
2302 :
2303 : /************************************************************************/
2304 : /* IRasterIO() */
2305 : /************************************************************************/
2306 :
2307 0 : CPLErr OGCAPITilesWrapperBand::IRasterIO(
2308 : GDALRWFlag eRWFlag, int nXOff, int nYOff, int nXSize, int nYSize,
2309 : void *pData, int nBufXSize, int nBufYSize, GDALDataType eBufType,
2310 : GSpacing nPixelSpace, GSpacing nLineSpace, GDALRasterIOExtraArg *psExtraArg)
2311 : {
2312 0 : OGCAPIDataset *poGDS = cpl::down_cast<OGCAPIDataset *>(poDS);
2313 :
2314 0 : if ((nBufXSize < nXSize || nBufYSize < nYSize) &&
2315 0 : poGDS->m_apoDatasetsCropped.size() > 1 && eRWFlag == GF_Read)
2316 : {
2317 : int bTried;
2318 0 : CPLErr eErr = TryOverviewRasterIO(
2319 : eRWFlag, nXOff, nYOff, nXSize, nYSize, pData, nBufXSize, nBufYSize,
2320 : eBufType, nPixelSpace, nLineSpace, psExtraArg, &bTried);
2321 0 : if (bTried)
2322 0 : return eErr;
2323 : }
2324 :
2325 0 : return poGDS->m_apoDatasetsCropped[0]->GetRasterBand(nBand)->RasterIO(
2326 : eRWFlag, nXOff, nYOff, nXSize, nYSize, pData, nBufXSize, nBufYSize,
2327 0 : eBufType, nPixelSpace, nLineSpace, psExtraArg);
2328 : }
2329 :
2330 : /************************************************************************/
2331 : /* GetOverviewCount() */
2332 : /************************************************************************/
2333 :
2334 10 : int OGCAPITilesWrapperBand::GetOverviewCount()
2335 : {
2336 10 : OGCAPIDataset *poGDS = cpl::down_cast<OGCAPIDataset *>(poDS);
2337 10 : return static_cast<int>(poGDS->m_apoDatasetsCropped.size() - 1);
2338 : }
2339 :
2340 : /************************************************************************/
2341 : /* GetOverview() */
2342 : /************************************************************************/
2343 :
2344 1 : GDALRasterBand *OGCAPITilesWrapperBand::GetOverview(int nLevel)
2345 : {
2346 1 : OGCAPIDataset *poGDS = cpl::down_cast<OGCAPIDataset *>(poDS);
2347 1 : if (nLevel < 0 || nLevel >= GetOverviewCount())
2348 0 : return nullptr;
2349 1 : return poGDS->m_apoDatasetsCropped[nLevel + 1]->GetRasterBand(nBand);
2350 : }
2351 :
2352 : /************************************************************************/
2353 : /* GetColorInterpretation() */
2354 : /************************************************************************/
2355 :
2356 5 : GDALColorInterp OGCAPITilesWrapperBand::GetColorInterpretation()
2357 : {
2358 5 : OGCAPIDataset *poGDS = cpl::down_cast<OGCAPIDataset *>(poDS);
2359 5 : return poGDS->m_apoDatasetsCropped[0]
2360 5 : ->GetRasterBand(nBand)
2361 5 : ->GetColorInterpretation();
2362 : }
2363 :
2364 : /************************************************************************/
2365 : /* IRasterIO() */
2366 : /************************************************************************/
2367 :
2368 2 : CPLErr OGCAPIDataset::IRasterIO(GDALRWFlag eRWFlag, int nXOff, int nYOff,
2369 : int nXSize, int nYSize, void *pData,
2370 : int nBufXSize, int nBufYSize,
2371 : GDALDataType eBufType, int nBandCount,
2372 : BANDMAP_TYPE panBandMap, GSpacing nPixelSpace,
2373 : GSpacing nLineSpace, GSpacing nBandSpace,
2374 : GDALRasterIOExtraArg *psExtraArg)
2375 : {
2376 2 : if (!m_apoDatasetsCropped.empty())
2377 : {
2378 : // Tiles API
2379 1 : if ((nBufXSize < nXSize || nBufYSize < nYSize) &&
2380 2 : m_apoDatasetsCropped.size() > 1 && eRWFlag == GF_Read)
2381 : {
2382 : int bTried;
2383 0 : CPLErr eErr = TryOverviewRasterIO(
2384 : eRWFlag, nXOff, nYOff, nXSize, nYSize, pData, nBufXSize,
2385 : nBufYSize, eBufType, nBandCount, panBandMap, nPixelSpace,
2386 : nLineSpace, nBandSpace, psExtraArg, &bTried);
2387 0 : if (bTried)
2388 0 : return eErr;
2389 : }
2390 :
2391 1 : return m_apoDatasetsCropped[0]->RasterIO(
2392 : eRWFlag, nXOff, nYOff, nXSize, nYSize, pData, nBufXSize, nBufYSize,
2393 : eBufType, nBandCount, panBandMap, nPixelSpace, nLineSpace,
2394 1 : nBandSpace, psExtraArg);
2395 : }
2396 1 : else if (m_poWMSDS)
2397 : {
2398 : // Maps API
2399 1 : return m_poWMSDS->RasterIO(eRWFlag, nXOff, nYOff, nXSize, nYSize, pData,
2400 : nBufXSize, nBufYSize, eBufType, nBandCount,
2401 : panBandMap, nPixelSpace, nLineSpace,
2402 1 : nBandSpace, psExtraArg);
2403 : }
2404 :
2405 : // Should not be hit
2406 0 : return GDALDataset::IRasterIO(eRWFlag, nXOff, nYOff, nXSize, nYSize, pData,
2407 : nBufXSize, nBufYSize, eBufType, nBandCount,
2408 : panBandMap, nPixelSpace, nLineSpace,
2409 0 : nBandSpace, psExtraArg);
2410 : }
2411 :
2412 : /************************************************************************/
2413 : /* OGCAPITiledLayer() */
2414 : /************************************************************************/
2415 :
2416 35 : OGCAPITiledLayer::OGCAPITiledLayer(
2417 : OGCAPIDataset *poDS, bool bInvertAxis, const CPLString &osTileURL,
2418 : bool bIsMVT, const gdal::TileMatrixSet::TileMatrix &tileMatrix,
2419 35 : OGRwkbGeometryType eGeomType)
2420 : : m_poDS(poDS), m_osTileURL(osTileURL), m_bIsMVT(bIsMVT),
2421 35 : m_oTileMatrix(tileMatrix), m_bInvertAxis(bInvertAxis)
2422 : {
2423 35 : m_poFeatureDefn = new OGCAPITiledLayerFeatureDefn(
2424 35 : this, ("Zoom level " + tileMatrix.mId).c_str());
2425 35 : SetDescription(m_poFeatureDefn->GetName());
2426 35 : m_poFeatureDefn->SetGeomType(eGeomType);
2427 35 : if (eGeomType != wkbNone)
2428 : {
2429 35 : auto poClonedSRS = poDS->m_oSRS.Clone();
2430 35 : m_poFeatureDefn->GetGeomFieldDefn(0)->SetSpatialRef(poClonedSRS);
2431 35 : poClonedSRS->Dereference();
2432 : }
2433 35 : m_poFeatureDefn->Reference();
2434 35 : m_osTileURL.replaceAll("{tileMatrix}", tileMatrix.mId.c_str());
2435 35 : }
2436 :
2437 : /************************************************************************/
2438 : /* ~OGCAPITiledLayer() */
2439 : /************************************************************************/
2440 :
2441 70 : OGCAPITiledLayer::~OGCAPITiledLayer()
2442 : {
2443 35 : m_poFeatureDefn->InvalidateLayer();
2444 35 : m_poFeatureDefn->Release();
2445 70 : }
2446 :
2447 : /************************************************************************/
2448 : /* GetCoalesceFactorForRow() */
2449 : /************************************************************************/
2450 :
2451 40 : int OGCAPITiledLayer::GetCoalesceFactorForRow(int nRow) const
2452 : {
2453 40 : int nCoalesce = 1;
2454 40 : for (const auto &vmw : m_oTileMatrix.mVariableMatrixWidthList)
2455 : {
2456 0 : if (nRow >= vmw.mMinTileRow && nRow <= vmw.mMaxTileRow)
2457 : {
2458 0 : nCoalesce = vmw.mCoalesce;
2459 0 : break;
2460 : }
2461 : }
2462 40 : return nCoalesce;
2463 : }
2464 :
2465 : /************************************************************************/
2466 : /* ResetReading() */
2467 : /************************************************************************/
2468 :
2469 35 : void OGCAPITiledLayer::ResetReading()
2470 : {
2471 35 : if (m_nCurX == m_nCurMinX && m_nCurY == m_nCurMinY && m_poUnderlyingLayer)
2472 : {
2473 0 : m_poUnderlyingLayer->ResetReading();
2474 : }
2475 : else
2476 : {
2477 35 : m_nCurX = m_nCurMinX;
2478 35 : m_nCurY = m_nCurMinY;
2479 35 : m_poUnderlyingDS.reset();
2480 35 : m_poUnderlyingLayer = nullptr;
2481 : }
2482 35 : }
2483 :
2484 : /************************************************************************/
2485 : /* OpenTile() */
2486 : /************************************************************************/
2487 :
2488 20 : GDALDataset *OGCAPITiledLayer::OpenTile(int nX, int nY, bool &bEmptyContent)
2489 : {
2490 20 : int nCoalesce = GetCoalesceFactorForRow(nY);
2491 20 : if (nCoalesce <= 0)
2492 0 : return nullptr;
2493 20 : nX = (nX / nCoalesce) * nCoalesce;
2494 :
2495 20 : const char *const *papszOpenOptions = nullptr;
2496 40 : CPLString poPrefix;
2497 40 : CPLStringList aosOpenOptions;
2498 :
2499 20 : if (m_bIsMVT)
2500 : {
2501 12 : const double dfOriX =
2502 12 : m_bInvertAxis ? m_oTileMatrix.mTopLeftY : m_oTileMatrix.mTopLeftX;
2503 12 : const double dfOriY =
2504 12 : m_bInvertAxis ? m_oTileMatrix.mTopLeftX : m_oTileMatrix.mTopLeftY;
2505 : aosOpenOptions.SetNameValue(
2506 : "@GEOREF_TOPX",
2507 12 : CPLSPrintf("%.17g", dfOriX + nX * m_oTileMatrix.mResX *
2508 12 : m_oTileMatrix.mTileWidth));
2509 : aosOpenOptions.SetNameValue(
2510 : "@GEOREF_TOPY",
2511 12 : CPLSPrintf("%.17g", dfOriY - nY * m_oTileMatrix.mResY *
2512 12 : m_oTileMatrix.mTileHeight));
2513 : aosOpenOptions.SetNameValue(
2514 : "@GEOREF_TILEDIMX",
2515 12 : CPLSPrintf("%.17g", nCoalesce * m_oTileMatrix.mResX *
2516 12 : m_oTileMatrix.mTileWidth));
2517 : aosOpenOptions.SetNameValue(
2518 : "@GEOREF_TILEDIMY",
2519 : CPLSPrintf("%.17g",
2520 12 : m_oTileMatrix.mResY * m_oTileMatrix.mTileWidth));
2521 :
2522 12 : papszOpenOptions = aosOpenOptions.List();
2523 12 : poPrefix = "MVT";
2524 : }
2525 :
2526 20 : std::unique_ptr<GDALDataset> dataset = m_poDS->OpenTile(
2527 40 : m_osTileURL, stoi(m_oTileMatrix.mId), nX, nY, bEmptyContent,
2528 40 : GDAL_OF_VECTOR, poPrefix, papszOpenOptions);
2529 :
2530 20 : return dataset.release();
2531 : }
2532 :
2533 : /************************************************************************/
2534 : /* FinalizeFeatureDefnWithLayer() */
2535 : /************************************************************************/
2536 :
2537 5 : void OGCAPITiledLayer::FinalizeFeatureDefnWithLayer(OGRLayer *poUnderlyingLayer)
2538 : {
2539 5 : if (!m_bFeatureDefnEstablished)
2540 : {
2541 5 : m_bFeatureDefnEstablished = true;
2542 5 : const auto poSrcFieldDefn = poUnderlyingLayer->GetLayerDefn();
2543 5 : const int nFieldCount = poSrcFieldDefn->GetFieldCount();
2544 60 : for (int i = 0; i < nFieldCount; i++)
2545 : {
2546 55 : m_poFeatureDefn->AddFieldDefn(poSrcFieldDefn->GetFieldDefn(i));
2547 : }
2548 : }
2549 5 : }
2550 :
2551 : /************************************************************************/
2552 : /* BuildFeature() */
2553 : /************************************************************************/
2554 :
2555 5 : OGRFeature *OGCAPITiledLayer::BuildFeature(OGRFeature *poSrcFeature, int nX,
2556 : int nY)
2557 : {
2558 5 : int nCoalesce = GetCoalesceFactorForRow(nY);
2559 5 : if (nCoalesce <= 0)
2560 0 : return nullptr;
2561 5 : nX = (nX / nCoalesce) * nCoalesce;
2562 :
2563 5 : OGRFeature *poFeature = new OGRFeature(m_poFeatureDefn);
2564 5 : const GIntBig nFID = nY * m_oTileMatrix.mMatrixWidth + nX +
2565 5 : poSrcFeature->GetFID() * m_oTileMatrix.mMatrixWidth *
2566 5 : m_oTileMatrix.mMatrixHeight;
2567 5 : auto poGeom = poSrcFeature->StealGeometry();
2568 5 : if (poGeom && m_poFeatureDefn->GetGeomType() != wkbUnknown)
2569 : {
2570 : poGeom =
2571 0 : OGRGeometryFactory::forceTo(poGeom, m_poFeatureDefn->GetGeomType());
2572 : }
2573 5 : poFeature->SetFrom(poSrcFeature, true);
2574 5 : poFeature->SetFID(nFID);
2575 5 : if (poGeom && m_poFeatureDefn->GetGeomFieldCount() > 0)
2576 : {
2577 5 : poGeom->assignSpatialReference(
2578 5 : m_poFeatureDefn->GetGeomFieldDefn(0)->GetSpatialRef());
2579 : }
2580 5 : poFeature->SetGeometryDirectly(poGeom);
2581 5 : delete poSrcFeature;
2582 5 : return poFeature;
2583 : }
2584 :
2585 : /************************************************************************/
2586 : /* IncrementTileIndices() */
2587 : /************************************************************************/
2588 :
2589 15 : bool OGCAPITiledLayer::IncrementTileIndices()
2590 : {
2591 :
2592 15 : const int nCoalesce = GetCoalesceFactorForRow(m_nCurY);
2593 15 : if (nCoalesce <= 0)
2594 0 : return false;
2595 15 : if (m_nCurX / nCoalesce < m_nCurMaxX / nCoalesce)
2596 : {
2597 15 : m_nCurX += nCoalesce;
2598 : }
2599 0 : else if (m_nCurY < m_nCurMaxY)
2600 : {
2601 0 : m_nCurX = m_nCurMinX;
2602 0 : m_nCurY++;
2603 : }
2604 : else
2605 : {
2606 0 : m_nCurY = -1;
2607 0 : return false;
2608 : }
2609 15 : return true;
2610 : }
2611 :
2612 : /************************************************************************/
2613 : /* GetNextRawFeature() */
2614 : /************************************************************************/
2615 :
2616 20 : OGRFeature *OGCAPITiledLayer::GetNextRawFeature()
2617 : {
2618 : while (true)
2619 : {
2620 20 : if (m_poUnderlyingLayer == nullptr)
2621 : {
2622 20 : if (m_nCurY < 0)
2623 : {
2624 0 : return nullptr;
2625 : }
2626 20 : bool bEmptyContent = false;
2627 20 : m_poUnderlyingDS.reset(OpenTile(m_nCurX, m_nCurY, bEmptyContent));
2628 20 : if (bEmptyContent)
2629 : {
2630 15 : if (!IncrementTileIndices())
2631 0 : return nullptr;
2632 15 : continue;
2633 : }
2634 5 : if (m_poUnderlyingDS == nullptr)
2635 : {
2636 0 : return nullptr;
2637 : }
2638 5 : m_poUnderlyingLayer = m_poUnderlyingDS->GetLayer(0);
2639 5 : if (m_poUnderlyingLayer == nullptr)
2640 : {
2641 0 : return nullptr;
2642 : }
2643 5 : FinalizeFeatureDefnWithLayer(m_poUnderlyingLayer);
2644 : }
2645 :
2646 5 : auto poSrcFeature = m_poUnderlyingLayer->GetNextFeature();
2647 5 : if (poSrcFeature != nullptr)
2648 : {
2649 5 : return BuildFeature(poSrcFeature, m_nCurX, m_nCurY);
2650 : }
2651 :
2652 0 : m_poUnderlyingDS.reset();
2653 0 : m_poUnderlyingLayer = nullptr;
2654 :
2655 0 : if (!IncrementTileIndices())
2656 0 : return nullptr;
2657 15 : }
2658 : }
2659 :
2660 : /************************************************************************/
2661 : /* GetFeature() */
2662 : /************************************************************************/
2663 :
2664 0 : OGRFeature *OGCAPITiledLayer::GetFeature(GIntBig nFID)
2665 : {
2666 0 : if (nFID < 0)
2667 0 : return nullptr;
2668 0 : const GIntBig nFIDInTile =
2669 0 : nFID / (m_oTileMatrix.mMatrixWidth * m_oTileMatrix.mMatrixHeight);
2670 0 : const GIntBig nTileID =
2671 0 : nFID % (m_oTileMatrix.mMatrixWidth * m_oTileMatrix.mMatrixHeight);
2672 0 : const int nY = static_cast<int>(nTileID / m_oTileMatrix.mMatrixWidth);
2673 0 : const int nX = static_cast<int>(nTileID % m_oTileMatrix.mMatrixWidth);
2674 0 : bool bEmptyContent = false;
2675 : std::unique_ptr<GDALDataset> poUnderlyingDS(
2676 0 : OpenTile(nX, nY, bEmptyContent));
2677 0 : if (poUnderlyingDS == nullptr)
2678 0 : return nullptr;
2679 0 : OGRLayer *poUnderlyingLayer = poUnderlyingDS->GetLayer(0);
2680 0 : if (poUnderlyingLayer == nullptr)
2681 0 : return nullptr;
2682 0 : FinalizeFeatureDefnWithLayer(poUnderlyingLayer);
2683 0 : OGRFeature *poSrcFeature = poUnderlyingLayer->GetFeature(nFIDInTile);
2684 0 : if (poSrcFeature == nullptr)
2685 0 : return nullptr;
2686 0 : return BuildFeature(poSrcFeature, nX, nY);
2687 : }
2688 :
2689 : /************************************************************************/
2690 : /* EstablishFields() */
2691 : /************************************************************************/
2692 :
2693 110 : void OGCAPITiledLayer::EstablishFields()
2694 : {
2695 110 : if (!m_bFeatureDefnEstablished && !m_bEstablishFieldsCalled)
2696 : {
2697 0 : m_bEstablishFieldsCalled = true;
2698 :
2699 : // Try up to 10 requests in order. We could probably remove that
2700 : // to use just the fallback logic.
2701 0 : for (int i = 0; i < 10; ++i)
2702 : {
2703 0 : bool bEmptyContent = false;
2704 0 : m_poUnderlyingDS.reset(OpenTile(m_nCurX, m_nCurY, bEmptyContent));
2705 0 : if (bEmptyContent || !m_poUnderlyingDS)
2706 : {
2707 0 : if (!IncrementTileIndices())
2708 0 : break;
2709 0 : continue;
2710 : }
2711 0 : m_poUnderlyingLayer = m_poUnderlyingDS->GetLayer(0);
2712 0 : if (m_poUnderlyingLayer)
2713 : {
2714 0 : FinalizeFeatureDefnWithLayer(m_poUnderlyingLayer);
2715 0 : break;
2716 : }
2717 : }
2718 :
2719 0 : if (!m_bFeatureDefnEstablished)
2720 : {
2721 : // Try to sample at different locations in the extent
2722 0 : for (int j = 0; !m_bFeatureDefnEstablished && j < 3; ++j)
2723 : {
2724 0 : m_nCurY = m_nMinY + (2 * j + 1) * (m_nMaxY - m_nMinY) / 6;
2725 0 : for (int i = 0; i < 3; ++i)
2726 : {
2727 0 : m_nCurX = m_nMinX + (2 * i + 1) * (m_nMaxX - m_nMinX) / 6;
2728 0 : bool bEmptyContent = false;
2729 0 : m_poUnderlyingDS.reset(
2730 : OpenTile(m_nCurX, m_nCurY, bEmptyContent));
2731 0 : if (bEmptyContent || !m_poUnderlyingDS)
2732 : {
2733 0 : continue;
2734 : }
2735 0 : m_poUnderlyingLayer = m_poUnderlyingDS->GetLayer(0);
2736 0 : if (m_poUnderlyingLayer)
2737 : {
2738 0 : FinalizeFeatureDefnWithLayer(m_poUnderlyingLayer);
2739 0 : break;
2740 : }
2741 : }
2742 : }
2743 : }
2744 :
2745 0 : if (!m_bFeatureDefnEstablished)
2746 : {
2747 0 : CPLDebug("OGCAPI", "Could not establish feature definition. No "
2748 : "valid tile found in sampling done");
2749 : }
2750 :
2751 0 : ResetReading();
2752 : }
2753 110 : }
2754 :
2755 : /************************************************************************/
2756 : /* SetExtent() */
2757 : /************************************************************************/
2758 :
2759 35 : void OGCAPITiledLayer::SetExtent(double dfXMin, double dfYMin, double dfXMax,
2760 : double dfYMax)
2761 : {
2762 35 : m_sEnvelope.MinX = dfXMin;
2763 35 : m_sEnvelope.MinY = dfYMin;
2764 35 : m_sEnvelope.MaxX = dfXMax;
2765 35 : m_sEnvelope.MaxY = dfYMax;
2766 35 : }
2767 :
2768 : /************************************************************************/
2769 : /* GetExtent() */
2770 : /************************************************************************/
2771 :
2772 0 : OGRErr OGCAPITiledLayer::GetExtent(OGREnvelope *psExtent, int /* bForce */)
2773 : {
2774 0 : *psExtent = m_sEnvelope;
2775 0 : return OGRERR_NONE;
2776 : }
2777 :
2778 : /************************************************************************/
2779 : /* SetSpatialFilter() */
2780 : /************************************************************************/
2781 :
2782 0 : void OGCAPITiledLayer::SetSpatialFilter(OGRGeometry *poGeomIn)
2783 : {
2784 0 : OGRLayer::SetSpatialFilter(poGeomIn);
2785 :
2786 0 : OGREnvelope sEnvelope;
2787 0 : if (m_poFilterGeom != nullptr)
2788 0 : sEnvelope = m_sFilterEnvelope;
2789 : else
2790 0 : sEnvelope = m_sEnvelope;
2791 :
2792 0 : const double dfTileDim = m_oTileMatrix.mResX * m_oTileMatrix.mTileWidth;
2793 0 : const double dfOriX =
2794 0 : m_bInvertAxis ? m_oTileMatrix.mTopLeftY : m_oTileMatrix.mTopLeftX;
2795 0 : const double dfOriY =
2796 0 : m_bInvertAxis ? m_oTileMatrix.mTopLeftX : m_oTileMatrix.mTopLeftY;
2797 0 : if (sEnvelope.MinX - dfOriX >= -10 * dfTileDim &&
2798 0 : dfOriY - sEnvelope.MinY >= -10 * dfTileDim &&
2799 0 : sEnvelope.MaxX - dfOriX <= 10 * dfTileDim &&
2800 0 : dfOriY - sEnvelope.MaxY <= 10 * dfTileDim)
2801 : {
2802 0 : m_nCurMinX = std::max(
2803 0 : m_nMinX,
2804 0 : static_cast<int>(floor((sEnvelope.MinX - dfOriX) / dfTileDim)));
2805 0 : m_nCurMinY = std::max(
2806 0 : m_nMinY,
2807 0 : static_cast<int>(floor((dfOriY - sEnvelope.MaxY) / dfTileDim)));
2808 0 : m_nCurMaxX = std::min(
2809 0 : m_nMaxX,
2810 0 : static_cast<int>(floor((sEnvelope.MaxX - dfOriX) / dfTileDim)));
2811 0 : m_nCurMaxY = std::min(
2812 0 : m_nMaxY,
2813 0 : static_cast<int>(floor((dfOriY - sEnvelope.MinY) / dfTileDim)));
2814 : }
2815 : else
2816 : {
2817 0 : m_nCurMinX = m_nMinX;
2818 0 : m_nCurMinY = m_nMinY;
2819 0 : m_nCurMaxX = m_nMaxX;
2820 0 : m_nCurMaxY = m_nMaxY;
2821 : }
2822 :
2823 0 : ResetReading();
2824 0 : }
2825 :
2826 : /************************************************************************/
2827 : /* TestCapability() */
2828 : /************************************************************************/
2829 :
2830 0 : int OGCAPITiledLayer::TestCapability(const char *pszCap)
2831 : {
2832 0 : if (EQUAL(pszCap, OLCRandomRead))
2833 0 : return true;
2834 0 : if (EQUAL(pszCap, OLCFastGetExtent))
2835 0 : return true;
2836 0 : if (EQUAL(pszCap, OLCStringsAsUTF8))
2837 0 : return true;
2838 0 : if (EQUAL(pszCap, OLCFastSpatialFilter))
2839 0 : return true;
2840 0 : return false;
2841 : }
2842 :
2843 : /************************************************************************/
2844 : /* SetMinMaxXY() */
2845 : /************************************************************************/
2846 :
2847 35 : void OGCAPITiledLayer::SetMinMaxXY(int minCol, int minRow, int maxCol,
2848 : int maxRow)
2849 : {
2850 35 : m_nMinX = minCol;
2851 35 : m_nMinY = minRow;
2852 35 : m_nMaxX = maxCol;
2853 35 : m_nMaxY = maxRow;
2854 35 : m_nCurMinX = m_nMinX;
2855 35 : m_nCurMinY = m_nMinY;
2856 35 : m_nCurMaxX = m_nMaxX;
2857 35 : m_nCurMaxY = m_nMaxY;
2858 35 : ResetReading();
2859 35 : }
2860 :
2861 : /************************************************************************/
2862 : /* SetFields() */
2863 : /************************************************************************/
2864 :
2865 0 : void OGCAPITiledLayer::SetFields(
2866 : const std::vector<std::unique_ptr<OGRFieldDefn>> &apoFields)
2867 : {
2868 0 : m_bFeatureDefnEstablished = true;
2869 0 : for (const auto &poField : apoFields)
2870 : {
2871 0 : m_poFeatureDefn->AddFieldDefn(poField.get());
2872 : }
2873 0 : }
2874 :
2875 : /************************************************************************/
2876 : /* Open() */
2877 : /************************************************************************/
2878 :
2879 35 : GDALDataset *OGCAPIDataset::Open(GDALOpenInfo *poOpenInfo)
2880 : {
2881 35 : if (!Identify(poOpenInfo))
2882 0 : return nullptr;
2883 70 : auto poDS = std::make_unique<OGCAPIDataset>();
2884 35 : if (STARTS_WITH_CI(poOpenInfo->pszFilename, "OGCAPI:") ||
2885 6 : STARTS_WITH(poOpenInfo->pszFilename, "http://") ||
2886 0 : STARTS_WITH(poOpenInfo->pszFilename, "https://"))
2887 : {
2888 35 : if (!poDS->InitFromURL(poOpenInfo))
2889 8 : return nullptr;
2890 : }
2891 : else
2892 : {
2893 0 : if (!poDS->InitFromFile(poOpenInfo))
2894 0 : return nullptr;
2895 : }
2896 27 : return poDS.release();
2897 : }
2898 :
2899 : /************************************************************************/
2900 : /* GDALRegister_OGCAPI() */
2901 : /************************************************************************/
2902 :
2903 1595 : void GDALRegister_OGCAPI()
2904 :
2905 : {
2906 1595 : if (GDALGetDriverByName("OGCAPI") != nullptr)
2907 302 : return;
2908 :
2909 1293 : GDALDriver *poDriver = new GDALDriver();
2910 :
2911 1293 : poDriver->SetDescription("OGCAPI");
2912 1293 : poDriver->SetMetadataItem(GDAL_DCAP_RASTER, "YES");
2913 1293 : poDriver->SetMetadataItem(GDAL_DCAP_VECTOR, "YES");
2914 1293 : poDriver->SetMetadataItem(GDAL_DMD_LONGNAME, "OGCAPI");
2915 :
2916 1293 : poDriver->SetMetadataItem(GDAL_DCAP_VIRTUALIO, "YES");
2917 :
2918 1293 : poDriver->SetMetadataItem(
2919 : GDAL_DMD_OPENOPTIONLIST,
2920 : "<OpenOptionList>"
2921 : " <Option name='API' type='string-select' "
2922 : "description='Which API to use to access data' default='AUTO'>"
2923 : " <Value>AUTO</Value>"
2924 : " <Value>MAP</Value>"
2925 : " <Value>TILES</Value>"
2926 : " <Value>COVERAGE</Value>"
2927 : " <Value>ITEMS</Value>"
2928 : " </Option>"
2929 : " <Option name='IMAGE_FORMAT' scope='raster' type='string-select' "
2930 : "description='Which format to use for pixel acquisition' "
2931 : "default='AUTO'>"
2932 : " <Value>AUTO</Value>"
2933 : " <Value>PNG</Value>"
2934 : " <Value>PNG_PREFERRED</Value>"
2935 : " <Value>JPEG</Value>"
2936 : " <Value>JPEG_PREFERRED</Value>"
2937 : " <Value>GEOTIFF</Value>"
2938 : " </Option>"
2939 : " <Option name='VECTOR_FORMAT' scope='vector' type='string-select' "
2940 : "description='Which format to use for vector data acquisition' "
2941 : "default='AUTO'>"
2942 : " <Value>AUTO</Value>"
2943 : " <Value>GEOJSON</Value>"
2944 : " <Value>GEOJSON_PREFERRED</Value>"
2945 : " <Value>MVT</Value>"
2946 : " <Value>MVT_PREFERRED</Value>"
2947 : " </Option>"
2948 : " <Option name='TILEMATRIXSET' type='string' "
2949 : "description='Identifier of the required tile matrix set'/>"
2950 : " <Option name='PREFERRED_TILEMATRIXSET' type='string' "
2951 : "description='dentifier of the preferred tile matrix set' "
2952 : "default='WorldCRS84Quad'/>"
2953 : " <Option name='TILEMATRIX' scope='raster' type='string' "
2954 : "description='Tile matrix identifier.'/>"
2955 : " <Option name='CACHE' scope='raster' type='boolean' "
2956 : "description='Whether to enable block/tile caching' default='YES'/>"
2957 : " <Option name='MAX_CONNECTIONS' scope='raster' type='int' "
2958 : "description='Maximum number of connections' default='5'/>"
2959 : " <Option name='MINX' type='float' "
2960 : "description='Minimum value (in SRS of TileMatrixSet) of X'/>"
2961 : " <Option name='MINY' type='float' "
2962 : "description='Minimum value (in SRS of TileMatrixSet) of Y'/>"
2963 : " <Option name='MAXX' type='float' "
2964 : "description='Maximum value (in SRS of TileMatrixSet) of X'/>"
2965 : " <Option name='MAXY' type='float' "
2966 : "description='Maximum value (in SRS of TileMatrixSet) of Y'/>"
2967 1293 : "</OpenOptionList>");
2968 :
2969 1293 : poDriver->pfnIdentify = OGCAPIDataset::Identify;
2970 1293 : poDriver->pfnOpen = OGCAPIDataset::Open;
2971 :
2972 1293 : GetGDALDriverManager()->RegisterDriver(poDriver);
2973 : }
|