Metadata-Version: 2.1
Name: morecantile
Version: 1.3.0
Summary: Construct and use map tile grids (a.k.a TileMatrixSet / TMS).
Home-page: https://github.com/developmentseed/morecantile
Author: Vincent Sarago
Author-email: vincent@developmentseed.org
License: MIT
Description: # Morecantile
        
        ```
            +-------------+-------------+  ymax
            |             |             |
            |    x: 0     |    x: 1     |
            |    y: 0     |    y: 0     |
            |    z: 1     |    z: 1     |
            |             |             |
            +-------------+-------------+
            |             |             |
            |    x: 0     |    x: 1     |
            |    y: 1     |    y: 1     |
            |    z: 1     |    z: 1     |
            |             |             |
            +-------------+-------------+  ymin
        
        xmin                            xmax
        ```
        
        
        
        <p align="center">
          <em>Construct and use map tile grids (a.k.a TileMatrixSet / TMS).</em>
        </p>
        <p align="center">
          <a href="https://github.com/developmentseed/morecantile/actions?query=workflow%3ACI" target="_blank">
              <img src="https://github.com/developmentseed/morecantile/workflows/CI/badge.svg" alt="Test">
          </a>
          <a href="https://codecov.io/gh/developmentseed/morecantile" target="_blank">
              <img src="https://codecov.io/gh/developmentseed/morecantile/branch/master/graph/badge.svg" alt="Coverage">
          </a>
          <a href="https://pypi.org/project/morecantile" target="_blank">
              <img src="https://img.shields.io/pypi/v/morecantile?color=%2334D058&label=pypi%20package" alt="Package version">
          </a>
          <a href="https://pypistats.org/packages/morecantile" target="_blank">
              <img src="https://img.shields.io/pypi/dm/morecantile.svg" alt="Downloads">
          </a>
          <a href="https://github.com/developmentseed/morecantile/blob/master/LICENSE" target="_blank">
              <img src="https://img.shields.io/github/license/developmentseed/morecantile.svg" alt="License">
          </a>
        </p>
        
        ---
        
        **Documentation**: <a href="https://developmentseed.org/morecantile/" target="_blank">https://developmentseed.org/morecantile/</a>
        
        **Source Code**: <a href="https://github.com/developmentseed/morecantile" target="_blank">https://github.com/developmentseed/morecantile</a>
        
        ---
        
        Morecantile is like [mercantile](https://github.com/mapbox/mercantile) (the best tool to work with Web Mercator tile indexes), but with support for other TileMatrixSet grids.
        
        **Morecantile** follows the **OGC Two Dimensional Tile Matrix Set** specification found in [http://docs.opengeospatial.org/is/17-083r2/17-083r2.html](http://docs.opengeospatial.org/is/17-083r2/17-083r2.html)
        
        **Note**: Variable matrix width tile set are not supported.
        
        ## Install
        
        ```bash
        $ pip install -U pip
        $ pip install morecantile
        
        # Or install from source:
        
        $ pip install git+https://github.com/developmentseed/morecantile.git
        ```
        
        ### Defaults Grids
        
        - **CanadianNAD83_LCC**: Lambert conformal conic NAD83 for Canada - EPSG:3978
        - **EuropeanETRS89_LAEAQuad**: ETRS89-extended / LAEA Europe - EPGS:3035
        - **LINZAntarticaMapTilegrid**: LINZ Antarctic Map Tile Grid (Ross Sea Region) - EPSG:5482
        - **NZTM2000**: LINZ NZTM2000 Map Tile Grid - EPSG:2193
        - **UPSAntarcticWGS84Quad**: Universal Polar Stereographic WGS 84 Quad for Antarctic - EPSG:5042
        - **UPSArcticWGS84Quad**: Universal Polar Stereographic WGS 84 Quad for Arctic - EPSG:5041
        - **UTM31WGS84Quad**: Example of UTM grid - EPSG:32631
        - **WebMercatorQuad**: Spherical Mercator - EPGS:3857 (default grid for Web Mercator based maps)
        - **WorldCRS84Quad**: CRS84 for the World - EPGS:4326 (WGS84)
        - **WorldMercatorWGS84Quad**: Elliptical Mercator projection - EPGS:3395
        
        ref: http://schemas.opengis.net/tms/1.0/json/examples/
        
        ## Implementations
        
        - [rio-tiler-crs](https://github.com/cogeotiff/rio-tiler-crs): Create tile from raster using Morecantile TMS.
        
        ## Changes
        
        See [CHANGES.md](https://github.com/developmentseed/morecantile/blob/master/CHANGES.md).
        
        ## Contribution & Development
        
        See [CONTRIBUTING.md](https://github.com/developmentseed/morecantile/blob/master/CONTRIBUTING.md)
        
        ## License
        
        See [LICENSE](https://github.com/developmentseed/morecantile/blob/master/LICENSE)
        
        ## Authors
        
        Created by [Development Seed](<http://developmentseed.org>)
        
Keywords: GIS
Platform: UNKNOWN
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Scientific/Engineering :: GIS
Requires-Python: >=3
Description-Content-Type: text/markdown
Provides-Extra: test
Provides-Extra: dev
Provides-Extra: docs
