Skip to main content

Add your description here

Project description

izisat

izisat is a Python library designed to facilitate the automated download of Sentinel-2 satellite imagery bands from the Copernicus Open Access Hub (previously SciHub). It provides functionalities to connect to the Copernicus API, construct queries based on geographical footprints and time ranges, retrieve product information, and download specified bands to a local directory structure.

Features

  • API Connection: Securely connect to the Copernicus Open Access Hub using provided credentials.
  • Query Construction: Build complex queries for Sentinel-2 products based on:
    • Geographical footprint (WKT format)
    • Start and End Dates
    • Cloud Cover Percentage
    • Product Type (e.g., L2A)
    • Platform Name (e.g., SENTINEL-2)
  • Product Retrieval: Fetch a list of available Sentinel-2 products matching the constructed query.
  • Automated Folder Creation: Organize downloaded bands into a structured directory based on product information (e.g., auxiliary/Sentinel-2/YYYY/MM/DD/TILE/L2A/RESOLUTION/).
  • Band Downloading: Download specific Sentinel-2 bands (e.g., B02, B03, B04, B08) for retrieved products.

Installation

(Placeholder: Add installation instructions here, e.g., using pip and a requirements.txt or pyproject.toml)

Usage

The IZISentinel class is the main entry point for interacting with the library. Below is an example demonstrating how to use izisat to download Sentinel-2 bands.

import geopandas as gpd
from datetime import datetime, timedelta
from izisat.izisentinel import IZISentinel

# Configuration
DOWNLOAD_FOLDER = '/home/ppz/Documentos/coding/izisat/auxiliary' # Adjust as needed
MAX_CLOUD_COVER = 99
BANDS_DICT = {"L2A":{"10m": ["B02", "B03","B04", "B08"]}} # Specify bands and resolutions
PLATFORM_NAME = "SENTINEL-2"
SATELLITE_TYPE = 'L2A' # Level 2A products (bottom-of-atmosphere corrected)
COPERNICUS_USER='your_copernicus_username' # Replace with your Copernicus username
COPERNICUS_PASSWD='your_copernicus_password' # Replace with your Copernicus password

# Define date range
today = datetime.now().strftime('%Y-%m-%d')
one_week_ago = (datetime.now() - timedelta(days=7)).strftime('%Y-%m-%d')

# Initialize the downloader
downloader = IZISentinel(output_base_path=DOWNLOAD_FOLDER)

# 1. Connect to Copernicus API
access_token, refresh_token, dt_access_token = downloader.connect_to_api(
    username=COPERNICUS_USER,
    password=COPERNICUS_PASSWD
)

# 2. Load geographical footprint (example using a GeoJSON file)
# Replace 'path/to/your/farm.geojson' with the actual path to your GeoJSON file
# The GeoJSON should contain a polygon representing your area of interest.
try:
    farm = gpd.read_file('/home/ppz/Documentos/coding/forestry_monitor/data/vectors/farms/farms.geojson')
    footprint = farm.iloc[0].geometry.wkt # Assuming the first feature's geometry is the desired footprint
except Exception as e:
    print(f"Error loading GeoJSON or extracting footprint: {e}")
    print("Please ensure 'forestry_monitor/data/vectors/farms/farms.geojson' exists and is valid, or provide a WKT string directly.")
    footprint = "POLYGON ((<lon1> <lat1>, <lon2> <lat2>, ...))" # Example placeholder for direct WKT

# 3. Construct the query
query = downloader.construct_query(
    footprint=footprint,
    end_date=today,
    start_date=one_week_ago,
    cloud_cover_percentage=MAX_CLOUD_COVER,
    type=SATELLITE_TYPE,
    platform_name=PLATFORM_NAME
)

# 4. Retrieve products
products = downloader.products_from_sentinel_2(query)

# 5. Download specified bands
if products:
    images_downloaded = downloader.download_sentinel2_bands(
        access_token,
        products,
        BANDS_DICT,
        dt_access_token,
        refresh_token,
        tile=None # Specify a tile if you want to filter by tile, otherwise None
    )
    print(f"Downloaded images info: {images_downloaded}")
else:
    print("No products found for the given query.")

Dependencies

The core dependencies for izisat include:

  • loguru: For logging.
  • geopandas: For handling geographical data (used in the example for footprint).
  • datetime: For date and time operations.

(Note: Specific versions and other implicit dependencies from izisat.misc modules would be listed in pyproject.toml or requirements.txt)

Project Structure

.
├── auxiliary/
│   └── Sentinel-2/  # Default download location for Sentinel-2 bands
├── src/
│   └── izisat/
│       ├── __init__.py
│       ├── izisentinel.py  # Main class for Sentinel-2 band downloading
│       └── misc/
│           ├── __init__.py
│           ├── connections.py # Handles API connections to Copernicus
│           ├── dates.py       # Utility functions for date handling
│           ├── files.py       # Utility functions for file and directory operations
│           └── utils.py       # General utility functions (e.g., query construction, product info retrieval)
├── .gitignore
├── LICENSE
├── pyproject.toml
├── README.md
└── uv.lock

How to Contribute

We welcome contributions to izisat! If you'd like to contribute, please follow these guidelines:

  1. Reporting Bugs: If you find a bug, please open an issue on the GitHub repository. Provide a clear and concise description of the bug, steps to reproduce it, and expected behavior.
  2. Suggesting Features: For new features or enhancements, open an issue to discuss your ideas.
  3. Submitting Pull Requests:
    • Fork the repository and create a new branch for your changes.
    • Ensure your code adheres to the project's coding style.
    • Write clear and concise commit messages.
    • Include tests for new features or bug fixes.
    • Submit a pull request with a detailed description of your changes.

Thank you for your contributions!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

izisat-1.0.15.tar.gz (24.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

izisat-1.0.15-py3-none-any.whl (25.6 kB view details)

Uploaded Python 3

File details

Details for the file izisat-1.0.15.tar.gz.

File metadata

  • Download URL: izisat-1.0.15.tar.gz
  • Upload date:
  • Size: 24.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for izisat-1.0.15.tar.gz
Algorithm Hash digest
SHA256 758f04fc8fd061fc4ebdd1ba5fbbabbdc3af09a39d4872a444817d45bf999992
MD5 02b3a3604617a4d8cd0c253fad2d5c69
BLAKE2b-256 3a6c7ddfda95ec898a3bf1e99b7e527b04a43e65f3c8bd669d61e668704a8b3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for izisat-1.0.15.tar.gz:

Publisher: python-publish.yml on popogis24/izisat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file izisat-1.0.15-py3-none-any.whl.

File metadata

  • Download URL: izisat-1.0.15-py3-none-any.whl
  • Upload date:
  • Size: 25.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for izisat-1.0.15-py3-none-any.whl
Algorithm Hash digest
SHA256 a0a26247bcc663d74f8e0a3cae1316273efca4112d564417b8eff77e0f6ee818
MD5 167ba3b301ca2685f35e89a3d55fbc94
BLAKE2b-256 d49f5462d7a5841fc4a1ef0b03b4b90d1cb7623c1c9d9de64725d9a6921ec9d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for izisat-1.0.15-py3-none-any.whl:

Publisher: python-publish.yml on popogis24/izisat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page