Load a PlanetScope satellite GeoTIFF file and return it as an xarray datset.
Parameters:
-
fpath
(str | pathlib.Path
)
–
The path to the directory containing the TIFF files or a specific path to the TIFF file.
Returns:
Raises:
Source code in darts-acquisition/src/darts_acquisition/planet.py
| @stopuhr.funkuhr("Loading Planet scene", printer=logger.debug, print_kwargs=True)
def load_planet_scene(fpath: str | Path) -> xr.Dataset:
"""Load a PlanetScope satellite GeoTIFF file and return it as an xarray datset.
Args:
fpath (str | Path): The path to the directory containing the TIFF files or a specific path to the TIFF file.
Returns:
xr.Dataset: The loaded dataset
Raises:
FileNotFoundError: If no matching TIFF file is found in the specified path.
"""
# Convert to Path object if a string is provided
fpath = fpath if isinstance(fpath, Path) else Path(fpath)
# Check if the directory contains a PSOrthoTile or PSScene
planet_type = parse_planet_type(fpath)
logger.debug(f"Loading Planet PS {planet_type.capitalize()} from {fpath.resolve()}")
# Get imagepath
ps_image = next(fpath.glob("*_SR.tif"), None)
if not ps_image:
ps_image = next(fpath.glob("*_SR_clip.tif"), None)
if not ps_image:
raise FileNotFoundError(f"No matching TIFF files found in {fpath.resolve()} (.glob('*_SR.tif'))")
# Define band names and corresponding indices
planet_da = xr.open_dataarray(ps_image)
# Create a dataset with the bands
bands = ["blue", "green", "red", "nir"]
ds_planet = (
planet_da.fillna(0).rio.write_nodata(0).astype("uint16").assign_coords({"band": bands}).to_dataset(dim="band")
)
for var in ds_planet.variables:
ds_planet[var].assign_attrs(
{
"long_name": f"PLANET {var.capitalize()}",
"data_source": "planet",
"planet_type": planet_type,
"units": "Reflectance",
}
)
ds_planet.attrs = {"tile_id": fpath.parent.stem if planet_type == "orthotile" else fpath.stem}
return ds_planet
|