You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the path parameter values tileMatrix, tileRow, tileCol for a tile request are out-of-range (outside the tile matrix set or tile matrix set limits of the resource), validate that the HTTP response is a status code 404 or a 400.
If the tile has no content due to lack of data in the area, but is within the data resource’s tile matrix sets and tile matrix sets limits, validate that the HTTP response is a status code either 204 (indicating an empty tile with no content) or a 200 with the content of a blank response compatible with the requested media type (which may or may not be zero bytes long, depending on the output format; e.g., a 0 byte file if valid for the requested format, or a PNG with internal headers and no “pixels”).
pygeoapi is always returning a 404 when it does not find the tile, regardless of whether it is within the tilematrix set limits.
Steps to Reproduce
Request a tile that is within the tile matrix set limits, but has no data. Example:
Description
According to Requirement 6 of the OGC API - Tiles Standard:
pygeoapi is always returning a 404 when it does not find the tile, regardless of whether it is within the tilematrix set limits.
Steps to Reproduce
Request a tile that is within the tile matrix set limits, but has no data. Example:
Expected behavior
The answer should be 200 or 204. Instead it is 404.
Environment
The text was updated successfully, but these errors were encountered: