-
Notifications
You must be signed in to change notification settings - Fork 5
Upgrade to become compatible with titiler.core/titiler.mosaic v0.19 #32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
"""titiler.stacapi""" | ||
|
||
__version__ = "0.3.2" | ||
__version__ = "0.4.0" |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,8 +25,6 @@ class STACReader(stac.STACReader): | |
|
||
""" | ||
|
||
input: pystac.Item = attr.ib() | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why do we need this change? I'm pretty sure we did this on purpose before There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This was throwing following error and it is already defined in its parent class (stac.STACReader).
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let me know if you need some more input from out side |
||
|
||
tms: TileMatrixSet = attr.ib(default=WEB_MERCATOR_TMS) | ||
minzoom: int = attr.ib() | ||
maxzoom: int = attr.ib() | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm pretty sure we could go up to 0.21 (there are
minor
changes between 0.20 et 0.21)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, but now it only made it compatible to 0.19. In 0.20 there were some other breaking changes.