Skip to content

Commit

Permalink
update changelog and add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentsarago committed Aug 27, 2024
1 parent 27d9192 commit 035cf47
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@

## 5.4.1 (2024-08-27)

* ensure `TileMatrixSet._geographic_crs` is a pyproj CRS object (author @AndrewAnnex, https://github.com/developmentseed/morecantile/pull/152)

## 5.4.0 (2024-08-20)

* adds --tms optional argument to the shapes and tiles cli tools (author @AndrewAnnex, https://github.com/developmentseed/morecantile/pull/151)
Expand Down
11 changes: 4 additions & 7 deletions morecantile/models.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"""Pydantic modules for OGC TileMatrixSets (https://www.ogc.org/standards/tms)"""

import math
import sys
import warnings
from functools import cached_property
from typing import Any, Dict, Iterator, List, Literal, Optional, Sequence, Tuple, Union
Expand All @@ -18,6 +17,7 @@
model_validator,
)
from pyproj.exceptions import CRSError, ProjError
from typing_extensions import Annotated

from morecantile.commons import BoundingBox, Coords, Tile
from morecantile.errors import (
Expand All @@ -37,11 +37,6 @@
to_rasterio_crs,
)

if sys.version_info >= (3, 9):
from typing import Annotated # pylint: disable=no-name-in-module
else:
from typing_extensions import Annotated

NumType = Union[float, int]
BoundsType = Tuple[NumType, NumType]
LL_EPSILON = 1e-11
Expand Down Expand Up @@ -499,7 +494,9 @@ def __init__(self, **data):
"""Set private attributes."""
super().__init__(**data)

self._geographic_crs = pyproj.CRS.from_user_input(data.get("_geographic_crs", WGS84_CRS))
self._geographic_crs = pyproj.CRS.from_user_input(
data.get("_geographic_crs", WGS84_CRS)
)

try:
self._to_geographic = pyproj.Transformer.from_crs(
Expand Down
13 changes: 13 additions & 0 deletions tests/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,19 @@ def test_Custom():
assert round(wmMat.scaleDenominator, 6) == round(cusMat.scaleDenominator, 6)
assert round(wmMat.pointOfOrigin[0], 6) == round(cusMat.pointOfOrigin[0], 6)

extent = (-20037508.3427892, -20037508.3427892, 20037508.3427892, 20037508.3427892)
custom_tms = TileMatrixSet.custom(
extent, pyproj.CRS.from_epsg(3857), geographic_crs="epsg:4326"
)
assert isinstance(custom_tms._geographic_crs, pyproj.CRS)
assert custom_tms._geographic_crs == pyproj.CRS.from_epsg(4326)

extent = (-20037508.3427892, -20037508.3427892, 20037508.3427892, 20037508.3427892)
custom_tms = TileMatrixSet.custom(
extent, pyproj.CRS.from_epsg(3857), geographic_crs=pyproj.CRS.from_epsg(4326)
)
assert isinstance(custom_tms._geographic_crs, pyproj.CRS)


def test_custom_tms_bounds_epsg4326():
"""Check bounds with epsg4326."""
Expand Down

0 comments on commit 035cf47

Please sign in to comment.