Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentsarago committed Jan 18, 2024
1 parent 90426c9 commit a7b0bda
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,31 @@

## 5.2.0 (2024-01-18)

* fix `CRS` parsing to allow `wkt ({"wkt": ...})` and `uri ({"uri": ...})` defined CRS

```python
TileMatrixSet(
...
crs="http://www.opengis.net/def/crs/EPSG/0/3857"
)

TileMatrixSet(
...
crs={"uri": "http://www.opengis.net/def/crs/EPSG/0/3857"}
)

wkt = pyproj.CRS.from_epsg(3857).to_wkt()
TileMatrixSet(
...
crs={"wkt": wkt}
)
```

* update `TileMatrixSet` representation to use CRS's URI
* remove default for `TileMatrixSet.pointOfOrigin` attribute (**required**)
* add `topLeft` default for `TileMatrixSet.cornerOfOrigin` attribute
* renamed `morecantile.models.CRSType` -> `morecantile.models.CRS`

## 5.1.0 (2024-01-08)

* Simplify bounds calculation by using `TileMatrix.cellSize` instead of `TileMatrix.scaleDenominator`
Expand Down

0 comments on commit a7b0bda

Please sign in to comment.