Metadata-Version: 2.1
Name: titiler.application
Version: 0.6.0a1
Summary: Demo application for TiTiler.
Keywords: COG,Cloud Optimized GeoTIFF,STAC,Spatio Temporal Asset Catalog,FastAPI
Author-email: Vincent Sarago <vincent@developmentseed.com>
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Scientific/Engineering :: GIS
Requires-Dist: rio-cogeo>=3.1,<4.0
Requires-Dist: titiler.core>=0.6.0a1,<0.7
Requires-Dist: titiler.mosaic>=0.6.0a1,<0.7
Requires-Dist: starlette-cramjam>=0.1.0,<0.2
Requires-Dist: python-dotenv
Requires-Dist: uvicorn[standard]>=0.12.0,<0.16.0 ; extra == "server"
Requires-Dist: pytest ; extra == "test"
Requires-Dist: pytest-cov ; extra == "test"
Requires-Dist: pytest-asyncio ; extra == "test"
Requires-Dist: requests ; extra == "test"
Requires-Dist: brotlipy ; extra == "test"
Project-URL: Documentation, https://developmentseed.org/titiler/
Project-URL: Source, https://github.com/developmentseed/titiler
Provides-Extra: server
Provides-Extra: test

## titiler.application

<img style="max-width:400px" src="https://user-images.githubusercontent.com/10407788/115224800-53d9d980-a0db-11eb-86c3-1c94fde3ed4a.png"/>
<p align="center">Titiler's demo application.</p>

## Installation

```bash
$ pip install -U pip

# From Pypi
$ pip install titiler.application

# Or from sources
$ git clone https://github.com/developmentseed/titiler.git
$ cd titiler && pip install -e titiler/application
```

Launch Application
```bash
$ pip install uvicorn
$ uvicorn titiler.application.main:app --reload
```

## Package structure

```
titiler/
 └── application/
    ├── tests/                   - Tests suite
    └── titiler/application/     - `application` namespace package
        ├── routers/
        |   ├── cog.py           - Cloud Optimized `/cog` endpoints
        |   ├── mosaic.py        - mosaic `/mosaicjson` endpoints
        |   ├── stac.py          - STAC `/stac` endpoints
        |   └── tms.py           - TileMatrixSet endpoints
        ├── templates/
        |   ├── index.html       - demo landing page
        |   ├── cog_index.html   - demo viewer for `/cog`
        |   └── stac_index.html  - demo viewer for `/stac`
        ├── custom.py            - Titiler customisation (TMS, colormap...)
        ├── main.py              - Main FastAPI application
        ├── middleware.py        - Titiler custom middlewares
        ├── settings.py          - demo settings (cache, cors...)
        └── version.py           - version
```

