Metadata-Version: 2.4
Name: titiler-application
Version: 2.0.1
Summary: A modern dynamic tile server built on top of FastAPI and Rasterio/GDAL.
Project-URL: Homepage, https://developmentseed.org/titiler/
Project-URL: Documentation, https://developmentseed.org/titiler/
Project-URL: Issues, https://github.com/developmentseed/titiler/issues
Project-URL: Source, https://github.com/developmentseed/titiler
Project-URL: Changelog, https://developmentseed.org/titiler/release-notes/
Author-email: Vincent Sarago <vincent@developmentseed.com>
License: MIT
License-File: LICENSE
Keywords: COG,Dynamic tile server,Fastapi,GDAL,MosaicJSON,OGC,Rasterio,STAC
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Scientific/Engineering :: GIS
Requires-Python: >=3.11
Requires-Dist: pydantic-settings~=2.0
Requires-Dist: starlette-cramjam<0.6,>=0.4
Requires-Dist: titiler-core[telemetry]==2.0.1
Requires-Dist: titiler-extensions[cogeo,stac]==2.0.1
Requires-Dist: titiler-mosaic[mosaicjson]==2.0.1
Requires-Dist: titiler-xarray==2.0.1
Provides-Extra: server
Requires-Dist: uvicorn[standard]>=0.12.0; extra == 'server'
Description-Content-Type: text/markdown

## 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
python -m pip install -U pip

# From Pypi
python -m pip install titiler.application

# Or from sources
git clone https://github.com/developmentseed/titiler.git
cd titiler && python -m pip install -e src/titiler/core -e src/titiler/extensions -e src/titiler/mosaic -e src/titiler/xarray -e src/titiler/application
```

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

## Package structure

```
titiler/
 └── application/
    ├── tests/                   - Tests suite
    └── titiler/application/     - `application` namespace package
        ├── templates/
        |   └── index.html       - Landing page
        ├── main.py              - Main FastAPI application
        └── settings.py          - demo settings (cache, cors...)
```
