Skip to content

Commit

Permalink
One liner to fix Issue #104.
Browse files Browse the repository at this point in the history
  • Loading branch information
phaesler committed Mar 14, 2019
1 parent d8617b9 commit 7298599
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datacube_wms/wmts.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def wmts_args_to_wms(args):
"requestid": args["requestid"]
}

if tileMatrixSet != "urn:ogc:def:wkss:OGC:1.0:GoogleMapsCompatible":
if tileMatrixSet not in ("urn:ogc:def:wkss:OGC:1.0:GoogleMapsCompatible", "WholeWorld_WebMercator"):
raise WMTSException("Invalid Tile Matrix Set: " + tileMatrixSet)

try:
Expand Down

0 comments on commit 7298599

Please sign in to comment.