Python libraries for extracting Sentinel-2's metadata from Amazon S3
Project description
This packages includes a few functions that facilitates extraction of Sentinel-2’s metadata from Amazon S3.
Installation
$ pip install sentinel-s3
or
$ python setup.py install
Tests
$ python setup.py test
Example
import logging
from datetime import date
from sentinel_s3 import range_metadata
def main():
start_date = date(2016, 2, 1)
end_date = date(2016, 3, 22)
return range_metadata(start_date, end_date, '.', 20)
if __name__ == '__main__':
logger = logging.getLogger('sentinel.meta.s3')
logger.setLevel(logging.DEBUG)
ch = logging.StreamHandler()
ch.setLevel(logging.INFO)
formatter = logging.Formatter('%(message)s')
ch.setFormatter(formatter)
logger.addHandler(ch)
result = main()
print(result)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
sentinel-s3-0.3.1.tar.gz
(5.6 kB
view details)
File details
Details for the file sentinel-s3-0.3.1.tar.gz
.
File metadata
- Download URL: sentinel-s3-0.3.1.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2f85170731bc755a8bb0c7fd387703a87e0f6a4a6312af2f65229a436e346940 |
|
MD5 | 9a7c914bbbac872dd3b445d6b78c5a7e |
|
BLAKE2b-256 | 13b90d02c994bb1bde26b49efa4f3b52ce462706731a04b4022b996334045e4d |