{ "info": { "author": "Joachim Ungar", "author_email": "joachim.ungar@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.6", "Topic :: Scientific/Engineering :: GIS" ], "description": "==========\nTilematrix\n==========\n\nTilematrix handles geographic web tiles and tile pyramids.\n\n.. image:: https://badge.fury.io/py/tilematrix.svg\n :target: https://badge.fury.io/py/tilematrix\n\n.. image:: https://travis-ci.org/ungarj/tilematrix.svg?branch=master\n :target: https://travis-ci.org/ungarj/tilematrix\n\n.. image:: https://coveralls.io/repos/github/ungarj/tilematrix/badge.svg?branch=master\n :target: https://coveralls.io/github/ungarj/tilematrix?branch=master\n\n.. image:: https://img.shields.io/pypi/pyversions/mapchete.svg\n\n\nThe module is designed to translate between tile indices (zoom, row, column) and\nmap coordinates (e.g. latitute, longitude).\n\nTilematrix supports **metatiling** and **tile buffers**. Furthermore it makes\nheavy use of shapely_ and it can also generate ``Affine`` objects per tile which\nfacilitates working with rasterio_ for tile based data reading and writing.\n\nIt is very similar to mercantile_ but besides of supporting spherical mercator\ntile pyramids, it also supports geodetic (WGS84) tile pyramids.\n\n.. _shapely: http://toblerity.org/shapely/\n.. _rasterio: https://github.com/mapbox/rasterio\n.. _mercantile: https://github.com/mapbox/mercantile\n\n------------\nInstallation\n------------\n\nUse ``pip`` to install the latest stable version:\n\n.. code-block:: shell\n\n pip install tilematrix\n\nManually install the latest development version\n\n.. code-block:: shell\n\n pip install -r requirements.txt\n python setup.py install\n\n\n-------------\nDocumentation\n-------------\n\n* `API documentation `_\n* `examples `_\n\nCLI\n---\n\nThis package ships with a command line tool ``tmx`` which provides the following\nsubcommands:\n\n* ``bounds``: Print bounds of given Tile.\n* ``bbox``: Print bounding box geometry of given Tile.\n* ``tile``: Print Tile covering given point.\n* ``tiles``: Print Tiles covering given bounds.\n\nGeometry outputs can either be formatted as ``WKT`` or ``GeoJSON``. For example\nthe following command will print a valid ``GeoJSON`` representing all tiles\nfor zoom level 1 of the ``geodetic`` WMTS grid:\n\n.. code-block:: shell\n\n $ tmx -f GeoJSON tiles -- 1 -180 -90 180 90\n {\n \"type\": \"FeatureCollection\",\n \"features\": [\n {\"geometry\": {\"coordinates\": [[[-90.0, 0.0], [-90.0, 90.0], [-180.0, 90.0], [-180.0, 0.0], [-90.0, 0.0]]], \"type\": \"Polygon\"}, \"properties\": {\"col\": 0, \"row\": 0, \"zoom\": 1}, \"type\": \"Feature\"},\n {\"geometry\": {\"coordinates\": [[[0.0, 0.0], [0.0, 90.0], [-90.0, 90.0], [-90.0, 0.0], [0.0, 0.0]]], \"type\": \"Polygon\"}, \"properties\": {\"col\": 1, \"row\": 0, \"zoom\": 1}, \"type\": \"Feature\"},\n {\"geometry\": {\"coordinates\": [[[90.0, 0.0], [90.0, 90.0], [0.0, 90.0], [0.0, 0.0], [90.0, 0.0]]], \"type\": \"Polygon\"}, \"properties\": {\"col\": 2, \"row\": 0, \"zoom\": 1}, \"type\": \"Feature\"},\n {\"geometry\": {\"coordinates\": [[[180.0, 0.0], [180.0, 90.0], [90.0, 90.0], [90.0, 0.0], [180.0, 0.0]]], \"type\": \"Polygon\"}, \"properties\": {\"col\": 3, \"row\": 0, \"zoom\": 1}, \"type\": \"Feature\"},\n {\"geometry\": {\"coordinates\": [[[-90.0, -90.0], [-90.0, 0.0], [-180.0, 0.0], [-180.0, -90.0], [-90.0, -90.0]]], \"type\": \"Polygon\"}, \"properties\": {\"col\": 0, \"row\": 1, \"zoom\": 1}, \"type\": \"Feature\"},\n {\"geometry\": {\"coordinates\": [[[0.0, -90.0], [0.0, 0.0], [-90.0, 0.0], [-90.0, -90.0], [0.0, -90.0]]], \"type\": \"Polygon\"}, \"properties\": {\"col\": 1, \"row\": 1, \"zoom\": 1}, \"type\": \"Feature\"},\n {\"geometry\": {\"coordinates\": [[[90.0, -90.0], [90.0, 0.0], [0.0, 0.0], [0.0, -90.0], [90.0, -90.0]]], \"type\": \"Polygon\"}, \"properties\": {\"col\": 2, \"row\": 1, \"zoom\": 1}, \"type\": \"Feature\"},\n {\"geometry\": {\"coordinates\": [[[180.0, -90.0], [180.0, 0.0], [90.0, 0.0], [90.0, -90.0], [180.0, -90.0]]], \"type\": \"Polygon\"}, \"properties\": {\"col\": 3, \"row\": 1, \"zoom\": 1}, \"type\": \"Feature\"}\n ]\n }\n\n\n\nPrint ``WKT`` representation of tile ``4 15 23``:\n\n.. code-block:: shell\n\n $ tmx bbox 4 15 23\n POLYGON ((90 -90, 90 -78.75, 78.75 -78.75, 78.75 -90, 90 -90))\n\n\nAlso, tiles can have buffers around called ``pixelbuffer``:\n\n.. code-block:: shell\n\n $ tmx --pixelbuffer 10 bbox 4 15 23\n POLYGON ((90.439453125 -90, 90.439453125 -78.310546875, 78.310546875 -78.310546875, 78.310546875 -90, 90.439453125 -90))\n\n\nPrint ``GeoJSON`` representation of tile ``4 15 23`` on a ``mercator`` tile\npyramid:\n\n.. code-block:: shell\n\n $ tmx -output_format GeoJSON -grid mercator bbox 4 15 15\n {\"type\": \"Polygon\", \"coordinates\": [[[20037508.342789203, -20037508.3427892], [20037508.342789203, -17532819.799940553], [17532819.799940553, -17532819.799940553], [17532819.799940553, -20037508.3427892], [20037508.342789203, -20037508.3427892]]]}\n\n\n\n-------\nLicense\n-------\n\nMIT License\n\nCopyright (c) 2015, 2016, 2017 `EOX IT Services`_\n\n.. _`EOX IT Services`: https://eox.at/\n\n\n", "description_content_type": "text/x-rst", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/ungarj/tilematrix", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "tilematrix", "package_url": "https://pypi.org/project/tilematrix/", "platform": "", "project_url": "https://pypi.org/project/tilematrix/", "project_urls": { "Homepage": "https://github.com/ungarj/tilematrix" }, "release_url": "https://pypi.org/project/tilematrix/0.20/", "requires_dist": [ "affine", "click", "geojson", "rasterio (>=1.0.21)", "shapely" ], "requires_python": "", "summary": "helps handling tile pyramids", "version": "0.20" }, "last_serial": 5125153, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "16d4f86a200b9e5acd35a10d5728de2c", "sha256": "6cc9345414499584283a1bdf3f9c790448bb0f1638628342341ab567fbb30232" }, "downloads": -1, "filename": "tilematrix-0.0.1.tar.gz", "has_sig": false, "md5_digest": "16d4f86a200b9e5acd35a10d5728de2c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8965, "upload_time": "2016-01-21T18:31:19", "url": "https://files.pythonhosted.org/packages/f2/14/ae91a99c124cf5487b04960ec0c2f8423e25887920310cdf634cf36c6173/tilematrix-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "a7a025bf938bb5403b27c775859cf4fb", "sha256": "242882b27ba41b5227ecd15437383b3ec4e5a1ca7efa455dbbb54aed230010e0" }, "downloads": -1, "filename": "tilematrix-0.0.2.tar.gz", "has_sig": false, "md5_digest": "a7a025bf938bb5403b27c775859cf4fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9537, "upload_time": "2016-01-21T18:44:05", "url": "https://files.pythonhosted.org/packages/cf/48/4aea6aed605692d26fb91e58ebdf27ebaf910272dbcf45ed85f9cc9ade82/tilematrix-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "6b3e708cc5fb705a630074645a964fae", "sha256": "6f55627c1495784df8a06ccf26a583237561b9bb06cee04389a940138f54e112" }, "downloads": -1, "filename": "tilematrix-0.0.3.tar.gz", "has_sig": false, "md5_digest": "6b3e708cc5fb705a630074645a964fae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11052, "upload_time": "2016-02-04T15:55:40", "url": "https://files.pythonhosted.org/packages/a7/17/89dc8fb4c6e00358e3bc6ab3cc6f14f7ff8fe3b83d4dca323fb6f5ac484b/tilematrix-0.0.3.tar.gz" } ], "0.1": [ { "comment_text": "", "digests": { "md5": "7afc71e65a055235f161dc55c852c5ad", "sha256": "b2ecac5160f675a986273c9a6fdfc407c1a4bb139223f48a4ee88ca852562f9f" }, "downloads": -1, "filename": "tilematrix-0.1.tar.gz", "has_sig": false, "md5_digest": "7afc71e65a055235f161dc55c852c5ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8742, "upload_time": "2016-07-27T08:39:15", "url": "https://files.pythonhosted.org/packages/b3/9a/a0e14b28b4e82f573d4a0cb106ec18c6b038a771ccc0201d0f837b687483/tilematrix-0.1.tar.gz" } ], "0.10": [ { "comment_text": "", "digests": { "md5": "00eaa42ad8036171ec98b5349d34f7aa", "sha256": "765aaf72fcf314340115e2871c2bd39be3e24989647c3530d8559c99d3c5b869" }, "downloads": -1, "filename": "tilematrix-0.10.tar.gz", "has_sig": false, "md5_digest": "00eaa42ad8036171ec98b5349d34f7aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11630, "upload_time": "2017-12-23T13:51:03", "url": "https://files.pythonhosted.org/packages/e8/d7/87f7bbc55f6319ae6a9c13eeb74c6bd63181d029e59ad2319e1e28288dca/tilematrix-0.10.tar.gz" } ], "0.11": [ { "comment_text": "", "digests": { "md5": "de171a0fb1572dc14a66253c868632ec", "sha256": "43ab30db47793b2da8c6290107475051accb159ab7821f63e0eedaeee6f10e0f" }, "downloads": -1, "filename": "tilematrix-0.11.tar.gz", "has_sig": false, "md5_digest": "de171a0fb1572dc14a66253c868632ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12367, "upload_time": "2018-01-29T13:42:23", "url": "https://files.pythonhosted.org/packages/fc/2e/dfc724d66c247a10b10cf8c6c5178e9c66f1d5b003f4832a81f2e7a6af27/tilematrix-0.11.tar.gz" } ], "0.12": [ { "comment_text": "", "digests": { "md5": "12096971fbd2f12d5d18eb6361c0f1f8", "sha256": "01547db8ee7935fd61f24207e0c2123b701029e4c726c6a344721290e6a131a5" }, "downloads": -1, "filename": "tilematrix-0.12.tar.gz", "has_sig": false, "md5_digest": "12096971fbd2f12d5d18eb6361c0f1f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13099, "upload_time": "2018-02-02T11:37:39", "url": "https://files.pythonhosted.org/packages/a8/7c/06466b18ce01179ca34689934cded1cbbbc4b60bb3c74560c5eaac47ba0f/tilematrix-0.12.tar.gz" } ], "0.13": [ { "comment_text": "", "digests": { "md5": "6880e72b3c3d4b503e357b0335f5f9f7", "sha256": "7d24541e7cf4c98493426c22d0dc28768a8dd3a28d54e5c9236674a81ebf7e13" }, "downloads": -1, "filename": "tilematrix-0.13.tar.gz", "has_sig": false, "md5_digest": "6880e72b3c3d4b503e357b0335f5f9f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13282, "upload_time": "2018-02-27T08:48:57", "url": "https://files.pythonhosted.org/packages/83/d5/cd23be751054b22be4465516805074db5ead52a46a2bd658608663619613/tilematrix-0.13.tar.gz" } ], "0.14": [ { "comment_text": "", "digests": { "md5": "ab6cf23a4226aa57a8f44b4af6504ce3", "sha256": "4bd8f0162ad745f82326a989de3427c25dce0c0fde26949f7b11ac78df52a7e1" }, "downloads": -1, "filename": "tilematrix-0.14.tar.gz", "has_sig": false, "md5_digest": "ab6cf23a4226aa57a8f44b4af6504ce3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15184, "upload_time": "2018-04-28T18:06:03", "url": "https://files.pythonhosted.org/packages/06/ce/baff9a7c102dbae7158016f32be62e95d10ee9ec5f57470c4e1d9f35bee9/tilematrix-0.14.tar.gz" } ], "0.14.2": [ { "comment_text": "", "digests": { "md5": "1e01edb3b4ecce26ca835f418032ad96", "sha256": "984daae03643f9d6eef5f427f3af8d40f462f59844007177b56cfc55b92f94ed" }, "downloads": -1, "filename": "tilematrix-0.14.2.tar.gz", "has_sig": false, "md5_digest": "1e01edb3b4ecce26ca835f418032ad96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16174, "upload_time": "2018-05-08T13:46:32", "url": "https://files.pythonhosted.org/packages/1d/eb/28953ac6b2870b2d7f9fac2c49a0bb185dff99145d9948a468aec4ec6707/tilematrix-0.14.2.tar.gz" } ], "0.15": [ { "comment_text": "", "digests": { "md5": "8800eb1ccaf6b436b3a59f3f0f654d8f", "sha256": "e46abe821ce54354168c06f2ff488289a8ffc5132acd15a4566de2bcd0ae76b7" }, "downloads": -1, "filename": "tilematrix-0.15-py3-none-any.whl", "has_sig": false, "md5_digest": "8800eb1ccaf6b436b3a59f3f0f654d8f", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 11339, "upload_time": "2018-07-24T13:56:32", "url": "https://files.pythonhosted.org/packages/f6/6c/ea5aa8b136a7f99c5ea66d0456d0ca2d0275b54dfe47f0f23031328bddfd/tilematrix-0.15-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2fa82db097cdd6b00cb7dda17b206779", "sha256": "edca227fab238c3487cd57ba0d90af9d60f39d4727c7746531043ed0eb42f05a" }, "downloads": -1, "filename": "tilematrix-0.15.tar.gz", "has_sig": false, "md5_digest": "2fa82db097cdd6b00cb7dda17b206779", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17112, "upload_time": "2018-07-24T13:56:30", "url": "https://files.pythonhosted.org/packages/02/f2/4abbe158b38c557400c4cc5253c29d4130f6e4ea5d7ef3fceb7d276e9dea/tilematrix-0.15.tar.gz" } ], "0.16": [ { "comment_text": "", "digests": { "md5": "2f732bc82c5c655e5c029295d6f7c6b7", "sha256": "63051827eadeab9fee1c6498114d8cacdc5f389ee0092e117bf09fbb68c2e131" }, "downloads": -1, "filename": "tilematrix-0.16-py3-none-any.whl", "has_sig": false, "md5_digest": "2f732bc82c5c655e5c029295d6f7c6b7", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 11449, "upload_time": "2018-07-27T13:16:30", "url": "https://files.pythonhosted.org/packages/8d/42/12fd2ebd0ccc92ec91ce22fea2b375497c5de5fb04f87090bcc82da378d5/tilematrix-0.16-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "63806f0b2e6a89fb0bdff7e5c3b478cf", "sha256": "53e253bbffcec97f4abcc8f5f4866c5ef6694516d5e5911c7cf31e16e99fb8bc" }, "downloads": -1, "filename": "tilematrix-0.16.tar.gz", "has_sig": false, "md5_digest": "63806f0b2e6a89fb0bdff7e5c3b478cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17276, "upload_time": "2018-07-27T13:16:29", "url": "https://files.pythonhosted.org/packages/91/26/8c16ccd4f276d968ade1b76def1c75a87f080e66960f6df570dc9d7057fe/tilematrix-0.16.tar.gz" } ], "0.17": [ { "comment_text": "", "digests": { "md5": "1ce0341415dd9db8f77141db76b497cf", "sha256": "20ba5178aa882ecbab5fc4495ec02e6b2158396b3e226dd7b9abb90b24e6f16b" }, "downloads": -1, "filename": "tilematrix-0.17-py3-none-any.whl", "has_sig": false, "md5_digest": "1ce0341415dd9db8f77141db76b497cf", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 11469, "upload_time": "2018-08-17T12:29:17", "url": "https://files.pythonhosted.org/packages/07/a2/b853db708dac48caeeb1e5fbdff692f37fdcabfa63aa29e7057d6555f3ad/tilematrix-0.17-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "075c9562ec54f0762c11bddfb771d49a", "sha256": "54cbef6a148eb0fa747ade11baa305ae0f5a74cd44082c4119d3d0870a6baadb" }, "downloads": -1, "filename": "tilematrix-0.17.tar.gz", "has_sig": false, "md5_digest": "075c9562ec54f0762c11bddfb771d49a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17313, "upload_time": "2018-08-17T12:29:15", "url": "https://files.pythonhosted.org/packages/75/dc/9b22f38caddc28e39cdd5f0294b666538ed9d1472f14a0c7cc35f2b288bf/tilematrix-0.17.tar.gz" } ], "0.18": [ { "comment_text": "", "digests": { "md5": "f46654d8bf113e983c4903b7ef1c7c68", "sha256": "2ad2492585c214bbcf87d6e2410f883ed9ed7f17af3f948d025f4ce7564f3eff" }, "downloads": -1, "filename": "tilematrix-0.18.tar.gz", "has_sig": false, "md5_digest": "f46654d8bf113e983c4903b7ef1c7c68", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17429, "upload_time": "2018-11-20T10:07:46", "url": "https://files.pythonhosted.org/packages/18/65/9da8a184cd630bbd05327ad0abe656b5d871e1ad64404204b7e4e93ce32a/tilematrix-0.18.tar.gz" } ], "0.19": [ { "comment_text": "", "digests": { "md5": "50370a498cc891d62cdcd280671f3851", "sha256": "872a4c0692e7dbadf5fbd76bafc55571edd0b69c3b453c699e1164918e3c3c7a" }, "downloads": -1, "filename": "tilematrix-0.19-py3-none-any.whl", "has_sig": false, "md5_digest": "50370a498cc891d62cdcd280671f3851", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 15101, "upload_time": "2019-03-11T11:29:33", "url": "https://files.pythonhosted.org/packages/79/77/46e311e579c7323d70d0df31efcf76e35bc365b0d16b8e48e439afa83af6/tilematrix-0.19-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "37efff3e235b5824a6b071fb1de7146e", "sha256": "c8e87db18df9e734cfc71604f02ab2d305012f49c7e6bb9a71bcaa3b3101ff54" }, "downloads": -1, "filename": "tilematrix-0.19.tar.gz", "has_sig": false, "md5_digest": "37efff3e235b5824a6b071fb1de7146e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20648, "upload_time": "2019-03-11T11:29:34", "url": "https://files.pythonhosted.org/packages/04/f7/072ca31e89f84609863924e772679b554b3934d90cf61961ecd0411e6bcf/tilematrix-0.19.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "e5e38cdd1e9e61e55ef2df0900dddf4c", "sha256": "4085dff4c002ed4ae39efab69af91c4055a693a65d43b0326b649874d9a52f92" }, "downloads": -1, "filename": "tilematrix-0.2.tar.gz", "has_sig": false, "md5_digest": "e5e38cdd1e9e61e55ef2df0900dddf4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11137, "upload_time": "2016-08-23T16:01:00", "url": "https://files.pythonhosted.org/packages/4a/a0/e52a30f0e04eb43c77201c6a781231be4c59d2aca0baed272b7d1ade13c3/tilematrix-0.2.tar.gz" } ], "0.20": [ { "comment_text": "", "digests": { "md5": "3ce45787a188bf6526171dd4be622770", "sha256": "54a8b44fe15b55e109eb7716455a114e194d2c84ffe33ebc68320417ba18fc1e" }, "downloads": -1, "filename": "tilematrix-0.20-py3-none-any.whl", "has_sig": false, "md5_digest": "3ce45787a188bf6526171dd4be622770", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 15474, "upload_time": "2019-04-10T17:28:04", "url": "https://files.pythonhosted.org/packages/59/be/539fe6d0a87ef3a611cbef80faf7ee9cda32bec2e5d973e16f34beecf408/tilematrix-0.20-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "46469ca33344f28b8731016cacdd80ad", "sha256": "154241fe3bf0e664dc9501cbf05a55fe28ae77a98b655e73d97af63396cca82a" }, "downloads": -1, "filename": "tilematrix-0.20.tar.gz", "has_sig": false, "md5_digest": "46469ca33344f28b8731016cacdd80ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21730, "upload_time": "2019-04-10T17:28:07", "url": "https://files.pythonhosted.org/packages/d6/12/53d8ca5d45c832fcd76a1aa03de48f8d54fb6be0df1179f437160aface9d/tilematrix-0.20.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "52c27e32e21208ef0af19e4ed9f2accd", "sha256": "6b9ed9d6b7f2f65459241c1296e4908e0ec5939065505a1fe14ae73111175dcd" }, "downloads": -1, "filename": "tilematrix-0.3.tar.gz", "has_sig": false, "md5_digest": "52c27e32e21208ef0af19e4ed9f2accd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11142, "upload_time": "2016-09-07T14:45:51", "url": "https://files.pythonhosted.org/packages/6c/fb/dfd9532fe6a5c7410b57d7fa19ba7cd0537eec1aeb20886dcde945f52175/tilematrix-0.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "9d8cbbe7ae8d2cfa302619ecc5a32902", "sha256": "e877e0fae9fb417b39459c0da74833d914152cd8a6172f805a751cba925ad257" }, "downloads": -1, "filename": "tilematrix-0.4.tar.gz", "has_sig": false, "md5_digest": "9d8cbbe7ae8d2cfa302619ecc5a32902", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11785, "upload_time": "2016-10-03T14:22:18", "url": "https://files.pythonhosted.org/packages/d8/04/cc163e447d53967389a005478193cf6310399737acb859b0a1d6f1d9bc93/tilematrix-0.4.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "cb49489e0232889ff8b925449270e89e", "sha256": "67c9d72fd0fac9f9cf51a5deba6e640222dd5a3f28ae2bcf8bd7b137d70ec987" }, "downloads": -1, "filename": "tilematrix-0.5.tar.gz", "has_sig": false, "md5_digest": "cb49489e0232889ff8b925449270e89e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11932, "upload_time": "2017-02-01T14:49:32", "url": "https://files.pythonhosted.org/packages/58/1e/feae82c4c696bb2f0212212068481e75a34d369bf7e0709fbebcc17542c6/tilematrix-0.5.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "502d851e5b88038147d0833a015504a6", "sha256": "0f82bcff5cba2428221d35224f8c890d3256a156a521ffd93b8ad651ec0bcc0f" }, "downloads": -1, "filename": "tilematrix-0.6.tar.gz", "has_sig": false, "md5_digest": "502d851e5b88038147d0833a015504a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11730, "upload_time": "2017-06-07T10:00:46", "url": "https://files.pythonhosted.org/packages/a6/a4/a5675fe86c9db4fe250463290e40f3f1907e2c74754cb8f5f7e693fa1ca4/tilematrix-0.6.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "7891d68d6161fe34d692af31b5c9af7f", "sha256": "8d2267e97bce5e9023feb7802b001c66db81462fbb3f610e32c70383bb10dedc" }, "downloads": -1, "filename": "tilematrix-0.7.1.tar.gz", "has_sig": false, "md5_digest": "7891d68d6161fe34d692af31b5c9af7f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11718, "upload_time": "2017-08-18T11:58:18", "url": "https://files.pythonhosted.org/packages/33/af/ba7d032b3f8e845977e8a172dfc79ce06bea5e3cc355f84cf9c034bb9463/tilematrix-0.7.1.tar.gz" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "0f682af376038cff2e7acaf6a32faf60", "sha256": "1f358d6e21f8aa746d076ee34d010e4264d39818297afa01cc60156082d017c9" }, "downloads": -1, "filename": "tilematrix-0.8.tar.gz", "has_sig": false, "md5_digest": "0f682af376038cff2e7acaf6a32faf60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11766, "upload_time": "2017-09-20T14:32:28", "url": "https://files.pythonhosted.org/packages/cd/7d/4e64e93092c1311886c02281a7ab343e63cd1c701a2a2ec9238a52243aa0/tilematrix-0.8.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "9070df292d8517060c59dec7cabdd844", "sha256": "3e3ef6d0a80e39147759c752a89292bf597d17c1354164b84d14f92d25ac1ae6" }, "downloads": -1, "filename": "tilematrix-0.9.tar.gz", "has_sig": false, "md5_digest": "9070df292d8517060c59dec7cabdd844", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11629, "upload_time": "2017-12-23T13:35:57", "url": "https://files.pythonhosted.org/packages/30/16/5d3cc9eb89b6a5fea86be576b6576fc19f7ce8e1365be41a4b9f5d427cfd/tilematrix-0.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "3ce45787a188bf6526171dd4be622770", "sha256": "54a8b44fe15b55e109eb7716455a114e194d2c84ffe33ebc68320417ba18fc1e" }, "downloads": -1, "filename": "tilematrix-0.20-py3-none-any.whl", "has_sig": false, "md5_digest": "3ce45787a188bf6526171dd4be622770", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 15474, "upload_time": "2019-04-10T17:28:04", "url": "https://files.pythonhosted.org/packages/59/be/539fe6d0a87ef3a611cbef80faf7ee9cda32bec2e5d973e16f34beecf408/tilematrix-0.20-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "46469ca33344f28b8731016cacdd80ad", "sha256": "154241fe3bf0e664dc9501cbf05a55fe28ae77a98b655e73d97af63396cca82a" }, "downloads": -1, "filename": "tilematrix-0.20.tar.gz", "has_sig": false, "md5_digest": "46469ca33344f28b8731016cacdd80ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21730, "upload_time": "2019-04-10T17:28:07", "url": "https://files.pythonhosted.org/packages/d6/12/53d8ca5d45c832fcd76a1aa03de48f8d54fb6be0df1179f437160aface9d/tilematrix-0.20.tar.gz" } ] }