PazProduct#
- class PazProduct(product_path: str | CloudPath | Path, archive_path: str | CloudPath | Path | None = None, output_path: str | CloudPath | Path | None = None, remove_tmp: bool = False, **kwargs)[source]#
Bases:
TsxProduct
Class for PAZ Products
- __init__(product_path: str | CloudPath | Path, archive_path: str | CloudPath | Path | None = None, output_path: str | CloudPath | Path | None = None, remove_tmp: bool = False, **kwargs) None #
- clean_tmp()#
Clean the temporary directory of the current product
- clear()#
Clear this product’s cache
- get_band_paths(band_list: list, pixel_size: float | None = None, **kwargs) dict #
Return the paths of required bands.
Warning
This functions orthorectifies and despeckles SAR bands if not existing !
>>> from eoreader.reader import Reader >>> from eoreader.bands import * >>> path = r"S1A_IW_GRDH_1SDV_20191215T060906_20191215T060931_030355_0378F7_3696.zip" >>> prod = Reader().open(path) >>> prod.get_band_paths([VV, HH]) { <SarBandNames.VV: 'VV'>: '20191215T060906_S1_IW_GRD/20191215T060906_S1_IW_GRD_VV.tif' } >>> # HH doesn't exist
- get_date(as_date: bool = False) str | date #
Get the product’s acquisition date.
>>> from eoreader.reader import Reader >>> path = r"S2A_MSIL1C_20200824T110631_N0209_R137_T30TTK_20200824T150432.SAFE.zip" >>> prod = Reader().open(path) >>> prod.get_date(as_date=True) datetime.datetime(2020, 8, 24, 0, 0) >>> prod.get_date(as_date=False) '20200824'
- get_datetime(as_datetime: bool = False) str | datetime #
Get the product’s acquisition datetime, with format
YYYYMMDDTHHMMSS
<->%Y%m%dT%H%M%S
>>> from eoreader.reader import Reader >>> path = r"TSX1_SAR__MGD_SE___SM_S_SRA_20160229T223018_20160229T223023" >>> prod = Reader().open(path) >>> prod.get_datetime(as_datetime=True) datetime.datetime(2016, 2, 29, 22, 30, 18) >>> prod.get_datetime(as_datetime=False) '20160229T223018'
- get_default_band() BandNames #
Get default band: The first existing one between
VV
andHH
for SAR data.>>> from eoreader.reader import Reader >>> path = r"S1A_IW_GRDH_1SDV_20191215T060906_20191215T060931_030355_0378F7_3696.zip" >>> prod = Reader().open(path) >>> prod.get_default_band() <SarBandNames.VV: 'VV'>
- Returns:
Default band
- Return type:
- get_default_band_path(**kwargs) CloudPath | Path #
Get default band path (the first existing one between
VV
andHH
for SAR data), ready to use (orthorectified)Warning
This functions orthorectifies SAR bands if not existing !
>>> from eoreader.reader import Reader >>> path = r"S1A_IW_GRDH_1SDV_20191215T060906_20191215T060931_030355_0378F7_3696.zip" >>> prod = Reader().open(path) >>> prod.get_default_band_path() Executing processing graph ....10%....20%....30%....40%....50%....60%....70%....80%....90% done. '20191215T060906_S1_IW_GRD/20191215T060906_S1_IW_GRD_VV.tif'
- Parameters:
kwargs – Additional arguments
- Returns:
Default band path
- Return type:
AnyPathType
- get_existing_band_paths() dict #
Return the existing orthorectified band paths (including despeckle bands).
Warning
This functions orthorectifies SAR bands if not existing !
Warning
This functions despeckles SAR bands if not existing !
>>> from eoreader.reader import Reader >>> from eoreader.bands import * >>> path = r"S1A_IW_GRDH_1SDV_20191215T060906_20191215T060931_030355_0378F7_3696.zip" >>> prod = Reader().open(path) >>> prod.get_existing_band_paths() Executing processing graph ....10%....20%....30%....40%....50%....60%....70%....80%....90% done. Executing processing graph ....10%....20%....30%....40%....50%....60%....70%....80%....90% done. { <SarBandNames.VV: 'VV'>: '20191215T060906_S1_IW_GRD/20191215T060906_S1_IW_GRD_VV.tif', <SarBandNames.VH: 'VH'>: '20191215T060906_S1_IW_GRD/20191215T060906_S1_IW_GRD_VH.tif', <SarBandNames.VV_DSPK: 'VV_DSPK'>: '20191215T060906_S1_IW_GRD/20191215T060906_S1_IW_GRD_VV_DSPK.tif', <SarBandNames.VH_DSPK: 'VH_DSPK'>: '20191215T060906_S1_IW_GRD/20191215T060906_S1_IW_GRD_VH_DSPK.tif' }
- Returns:
Dictionary containing the path of every orthorectified bands
- Return type:
- get_existing_bands() list #
Return the existing orthorectified bands (including despeckle bands).
>>> from eoreader.reader import Reader >>> from eoreader.bands import * >>> path = r"S1A_IW_GRDH_1SDV_20191215T060906_20191215T060931_030355_0378F7_3696.zip" >>> prod = Reader().open(path) >>> prod.get_existing_bands() [<SarBandNames.VV: 'VV'>, <SarBandNames.VH: 'VH'>, <SarBandNames.VV_DSPK: 'VV_DSPK'>, <SarBandNames.VH_DSPK: 'VH_DSPK'>]
- Returns:
List of existing bands in the products
- Return type:
- get_raw_band_paths(**kwargs) dict #
Return the existing band paths (as they come with the archived products).
- Parameters:
**kwargs – Additional arguments
- Returns:
Dictionary containing the path of every band existing in the raw products
- Return type:
- has_band(band: BandNames | str) bool #
Does this product has the specified band ?
By band, we mean:
satellite band
index
DEM band
cloud band
>>> from eoreader.reader import Reader >>> from eoreader.bands import * >>> path = r"S2A_MSIL1C_20200824T110631_N0209_R137_T30TTK_20200824T150432.SAFE.zip" >>> prod = Reader().open(path) >>> prod.has_band(GREEN) True >>> prod.has_band(TIR_2) False >>> prod.has_band(NDVI) True >>> prod.has_band(SHADOWS) False >>> prod.has_band(HILLSHADE) True
- has_bands(bands: list | BandNames | str) bool #
Does this product has the specified bands ?
By band, we mean:
satellite band
index
DEM band
cloud band
See
has_band
for a code example.
- load(bands: list | BandNames | str, pixel_size: float | None = None, size: list | tuple | None = None, **kwargs) Dataset #
Open the bands and compute the wanted index.
- For Optical data:
The bands will be purged of nodata and invalid pixels (if specified with the CLEAN_OPTICAL keyword), the nodata will be set to -9999 and the bands will be DataArrays in float32.
- For SAR data:
The bands will be purged of nodata (not over the sea), the nodata will be set to 0 to respect SNAP’s behavior and the bands will be DataArray in float32.
Bands that come out this function at the same time are collocated and therefore have the same shapes. This can be broken if you load data separately. Its is best to always load DEM data with some real bands.
>>> from eoreader.reader import Reader >>> from eoreader.bands import * >>> path = r"S2A_MSIL1C_20200824T110631_N0209_R137_T30TTK_20200824T150432.SAFE.zip" >>> prod = Reader().open(path) >>> bands = prod.load([GREEN, NDVI], pixel_size=20)
- Parameters:
- Returns:
Dataset with a variable per band
- Return type:
xr.Dataset
- read_mtd()#
Read metadata and outputs the metadata XML root and its namespaces as a dict.
>>> from eoreader.reader import Reader >>> path = r"S1A_IW_GRDH_1SDV_20191215T060906_20191215T060931_030355_0378F7_3696.zip" >>> prod = Reader().open(path) >>> prod.read_mtd() (<Element product at 0x1832895d788>, '')
- Returns:
Metadata XML root and its namespace
- Return type:
(etree._Element, dict)
- stack(bands: list, pixel_size: float | None = None, size: list | tuple | None = None, stack_path: str | CloudPath | Path | None = None, save_as_int: bool = False, **kwargs) DataArray #
Stack bands and index of a products.
>>> from eoreader.reader import Reader >>> from eoreader.bands import * >>> path = r"S2A_MSIL1C_20200824T110631_N0209_R137_T30TTK_20200824T150432.SAFE.zip" >>> prod = Reader().open(path) >>> stack = prod.stack([NDVI, MNDWI, GREEN], pixel_size=20) # In meters
- Parameters:
bands (list) – Bands and index combination
pixel_size (float) – Stack pixel size. . If not specified, use the product pixel size.
size (Union[tuple, list]) – Size of the array (width, height). Not used if pixel_size is provided.
stack_path (AnyPathStrType) – Stack path
save_as_int (bool) – Convert stack to uint16 to save disk space (and therefore multiply the values by 10.000)
**kwargs – Other arguments passed to
load
orrioxarray.to_raster()
(such ascompress
)
- Returns:
Stack as a DataArray
- Return type:
xr.DataArray
- to_band(raw_bands: list | BandNames | str | int) list #
Convert any raw band identifier to a usable band.
Bands can be called with their name, ID or mapped name. For example, for Sentinel-3 OLCI you can use 7, Oa07 or YELLOW. For Landsat-8, you can use BLUE or 2.
- archive_path#
Archive path, same as the product path if not specified. Useful when you want to know where both the extracted and archived version of your product are stored.
- bands#
Band mapping between band wrapping names such as
GREEN
and band real number such as03
for Sentinel-2.
- condensed_name#
Condensed name, the filename with only useful data to keep the name unique (ie.
20191215T110441_S2_30TXP_L2A_122756
). Used to shorten names and paths.
- constellation#
Product constellation, such as Sentinel-2
- constellation_id#
Constellation ID, i.e.
S2
forSentinel-2
- corresponding_ref#
The corresponding reference products to the current one (if the product is not a reference but has a reference data corresponding to it). A list because of multiple ref in case of non-stackable products (S3, S1…)
- crs = <methodtools._LruCacheWire object>#
- date#
Acquisition date.
- datetime#
Acquisition datetime.
- default_transform = <methodtools._LruCacheWire object>#
- extent = <methodtools._LruCacheWire object>#
- filename#
Product filename
- footprint = <methodtools._LruCacheWire object>#
- get_orbit_direction = <methodtools._LruCacheWire object>#
- get_snap_version = <methodtools._LruCacheWire object>#
- instrument#
Product instrument, such as MSI for Sentinel-2 data.
- is_archived#
Is the archived product is processed (a products is considered as archived if its products path is a directory).
- is_ortho#
True if the images are orthorectified and the footprint is retrieved easily.
- is_reference#
If the product is a reference, used for algorithms that need pre and post data, such as fire detection.
- is_stacked#
True if the bands are stacked (like for VHR data).
- name#
Product true name (as specified in the metadata)
- needs_extraction#
Does this product needs to be extracted to be processed ? (
True
by default).
- nodata#
Product nodata, set to -9999 by default
- nof_swaths#
Number of swaths of the current SAR product
- property output: CloudPath | Path#
Output directory of the product, to write orthorectified data for example.
- path#
Usable path to the product, either extracted or archived path, according to the satellite.
- pixel_size#
For SAR data, it is important to distinguish (square) pixel spacing from actual resolution. (see this <https://natural-resources.canada.ca/maps-tools-and-publications/satellite-imagery-and-air-photos/tutorial-fundamentals-remote-sensing/satellites-and-sensors/spatial-resolution-pixel-size-and-scale/9407> for more information). For optical data, those two terms have usually the same meaning (for a fully zoomed raster).
- pol_channels#
Polarization Channels stored in the current product
- product_type#
Product type, satellite-related field, such as L1C or L2A for Sentinel-2 data.
- resolution#
Default resolution in meters of the current product. For SAR product, we use Ground Range resolution as we will automatically orthorectify the tiles.
- sar_prod_type#
SAR product type, either Single Look Complex or Ground Range
- sensor_mode#
Sensor Mode of the current product
- sensor_type#
Sensor type, SAR or optical.
- snap_filename#
Path used by SNAP to process this product
- split_name#
Split name, to retrieve every information from its true name (dates, tile, product type…).
- tile_name#
Tile if possible (for data that can be piled, for example S2 and Landsats).
- wgs84_extent = <methodtools._LruCacheWire object>#