Skip to content
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

add reproject method and padding options #717

Merged
merged 2 commits into from
Oct 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,17 @@

## Unreleased

### titiler.core

* add `dependencies.TileParams` dependency with `buffer` and `padding` options
* add `tile_dependency` attribute in `TilerFactory` class (defaults to `TileParams`)
* add `reproject` (alias to `reproject_method`) option in `DatasetParams` dependency

### titiler.mosaic

* Change `HTTP_404_NOT_FOUND` to `HTTP_204_NO_CONTENT` when no asset is found or tile is empty (author @simouel, https://github.com/developmentseed/titiler/pull/713)
* add `tile_dependency` attribute in `MosaicTilerFactory` class (defaults to `TileParams`)


### cdk application

Expand Down
12 changes: 6 additions & 6 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ nav:
- Rendering: "advanced/rendering.md"
# - APIRoute and environment variables: "advanced/APIRoute_and_environment_variables.md"

- Endpoints documentation:
- /cog: "endpoints/cog.md"
- /stac: "endpoints/stac.md"
- /mosaicjson: "endpoints/mosaic.md"
- /tileMatrixSets: "endpoints/tms.md"

- Examples:
- Create dynamic tilers with TiTiler:
- Minimal COG Tiler: "examples/code/mini_cog_tiler.md"
Expand Down Expand Up @@ -78,12 +84,6 @@ nav:
- factory: api/titiler/mosaic/factory.md
- errors: api/titiler/mosaic/errors.md

- titiler.application:
- /cog: "endpoints/cog.md"
- /stac: "endpoints/stac.md"
- /mosaicjson: "endpoints/mosaic.md"
- /tileMatrixSets: "endpoints/tms.md"

- Deployment:
- Amazon Web Services:
- Intro: "deployment/aws/intro.md"
Expand Down
Loading