{ "info": { "author": "Alireza J (scisco), Matthew Hanson (matthewhanson)", "author_email": "alireza@developmentseed.org", "bugtrack_url": null, "classifiers": [ "Framework :: Pytest", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: Freeware", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: GIS" ], "description": "sat-testdata\n============\n\n.. image:: https://travis-ci.org/sat-utils/sat-testdata.svg?branch=develop\n :target: https://travis-ci.org/sat-utils/sat-testdata\n\nA repository of satellite testdata for use in testing. Currently includes samples for\n\n- landsat8\n- sentinel2\n\n\nExample\n+++++++\n\n\n.. code-block:: python\n\n >>> import pprint\n >>> from stestdata import TestData\n >>> t = TestData('landsat8')\n >>> t.names\n ['small_full_data_cloudy']\n >>> pprint.pprint(t.examples)\n {'small_full_data_cloudy': {'B1': {'band_name': 'B1',\n 'band_type': 'coastal',\n 'filename': 'test_B1.tif',\n 'path': '/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_B1.tif'},\n 'B2': {'band_name': 'B2',\n 'band_type': 'blue',\n 'filename': 'test_B2.tif',\n 'path': '/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_B2.tif'},\n 'B3': {'band_name': 'B3',\n 'band_type': 'green',\n 'filename': 'test_B3.tif',\n 'path': '/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_B3.tif'},\n 'B4': {'band_name': 'B4',\n 'band_type': 'red',\n 'filename': 'test_B4.tif',\n 'path': '/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_B4.tif'},\n 'B5': {'band_name': 'B5',\n 'band_type': 'nir',\n 'filename': 'test_B5.tif',\n 'path': '/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_B5.tif'},\n 'B6': {'band_name': 'B6',\n 'band_type': 'swir1',\n 'filename': 'test_B6.tif',\n 'path': '/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_B6.tif'},\n 'B7': {'band_name': 'B7',\n 'band_type': 'swir2',\n 'filename': 'test_B7.tif',\n 'path': '/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_B7.tif'},\n 'B8': {'band_name': 'B8',\n 'band_type': 'pan',\n 'filename': 'test_B8.tif',\n 'path': '/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_B8.tif'},\n 'B9': {'band_name': 'B9',\n 'band_type': 'cirrus',\n 'filename': 'test_B9.tif',\n 'path': '/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_B9.tif'},\n 'BQA': {'band_name': 'BQA',\n 'band_type': 'quality',\n 'filename': 'test_BQA.tif',\n 'path': '/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_BQA.tif'}}}\n >>> t.files_bands\n {'small_full_data_cloudy': {'/Users/ajdevseed/lib/repos/sat/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_B6.tif': ['swir1'], '/Users/ajdevseed/lib/repos/sat/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_B8.tif': ['pan'], '/Users/ajdevseed/lib/repos/sat/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_B1.tif': ['coastal'], '/Users/ajdevseed/lib/repos/sat/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_B9.tif': ['cirrus'], '/Users/ajdevseed/lib/repos/sat/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_B2.tif': ['blue'], '/Users/ajdevseed/lib/repos/sat/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_B4.tif': ['red'], '/Users/ajdevseed/lib/repos/sat/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_BQA.tif': ['quality'], '/Users/ajdevseed/lib/repos/sat/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_B3.tif': ['green'], '/Users/ajdevseed/lib/repos/sat/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_B5.tif': ['nir'], '/Users/ajdevseed/lib/repos/sat/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_B7.tif': ['swir2']}}\n >>> t.files\n {'small_full_data_cloudy': ['/Users/ajdevseed/lib/repos/sat/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_B1.tif', '/Users/ajdevseed/lib/repos/sat/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_B2.tif', '/Users/ajdevseed/lib/repos/sat/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_B3.tif', '/Users/ajdevseed/lib/repos/sat/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_B4.tif', '/Users/ajdevseed/lib/repos/sat/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_B5.tif', '/Users/ajdevseed/lib/repos/sat/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_B6.tif', '/Users/ajdevseed/lib/repos/sat/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_B7.tif', '/Users/ajdevseed/lib/repos/sat/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_B8.tif', '/Users/ajdevseed/lib/repos/sat/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_B9.tif', '/Users/ajdevseed/lib/repos/sat/sat-testdata/stestdata/data/landsat8/small_full_data_cloudy/test_BQA.tif']}\n\nAbout\n+++++++\nSat Testdata was made by `Development Seed `_. The tool is available under a `MIT license `_.\n\nThe data in this repository is available under a `CC0 `_ license and contains `Copernicus Sentinel data `_ and Landsat data from the `US Geological Survey `_.", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/sat-utils/sat-testdata", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "stestdata", "package_url": "https://pypi.org/project/stestdata/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/stestdata/", "project_urls": { "Homepage": "https://github.com/sat-utils/sat-testdata" }, "release_url": "https://pypi.org/project/stestdata/0.1.0/", "requires_dist": null, "requires_python": "", "summary": "Variety of remote sensing data for testing", "version": "0.1.0" }, "last_serial": 2161329, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "e45265bf1aeeba14e9b405154460d4f6", "sha256": "30e6240eb23050beff6e22be6ccbc5f08873c8b7fa07456e91cdcf50b237d20c" }, "downloads": -1, "filename": "stestdata-0.0.1.tar.gz", "has_sig": false, "md5_digest": "e45265bf1aeeba14e9b405154460d4f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37879769, "upload_time": "2016-04-25T18:18:37", "url": "https://files.pythonhosted.org/packages/a1/c7/1d86a0a80820630840188799dc710471d1f2464e812223f8a0a07a2eec7c/stestdata-0.0.1.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "b468ac5c3d4a9c02e518edc620a57eb0", "sha256": "b99ec8eac055809609ba804a0518774ebe50e3c6b6c276067c6b23d2d5929753" }, "downloads": -1, "filename": "stestdata-0.1.0.tar.gz", "has_sig": false, "md5_digest": "b468ac5c3d4a9c02e518edc620a57eb0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37879852, "upload_time": "2016-06-10T20:26:12", "url": "https://files.pythonhosted.org/packages/14/d7/a2514385321cc08d42175cb3bc6b1786aefa25e588c6808446a866d03706/stestdata-0.1.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b468ac5c3d4a9c02e518edc620a57eb0", "sha256": "b99ec8eac055809609ba804a0518774ebe50e3c6b6c276067c6b23d2d5929753" }, "downloads": -1, "filename": "stestdata-0.1.0.tar.gz", "has_sig": false, "md5_digest": "b468ac5c3d4a9c02e518edc620a57eb0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37879852, "upload_time": "2016-06-10T20:26:12", "url": "https://files.pythonhosted.org/packages/14/d7/a2514385321cc08d42175cb3bc6b1786aefa25e588c6808446a866d03706/stestdata-0.1.0.tar.gz" } ] }