Ein Python-Dienstprogramm zum Herunterladen von Sentinel-1-Orbit-Dateien aus der Registry of Open Data auf AWS.
>> > import s1_orbits
>> > orbit_file = s1_orbits . fetch_for_scene ( 'S1A_IW_SLC__1SDV_20230727T075102_20230727T075131_049606_05F70A_AE0A' )
>> > orbit_file
PosixPath ( 'S1A_OPER_AUX_POEORB_OPOD_20230816T080815_V20230726T225942_20230728T005942.EOF' )
Um Abhängigkeiten einfach verwalten zu können, empfehlen wir die Verwendung dedizierter Projektumgebungen über virtuelle Anaconda/Miniconda- oder Python-Umgebungen.
s1_orbits
kann in einer Conda-Umgebung installiert werden mit:
conda install -c conda-forge s1_orbits
oder in eine virtuelle Umgebung mit:
python -m pip install s1_orbits
s1-orbits bietet eine Funktion – fetch_for_scene
– zum Herunterladen der „besten verfügbaren“ Orbitdatei für eine bestimmte Szene. Dies bedeutet, dass die Datei AUX_POEORB heruntergeladen wird, sofern vorhanden. Andernfalls wird die AUX_RESORB- Datei heruntergeladen. Eine umfassendere API finden Sie unter sentineleof oder unter den APIs von CDSE.
fetch_for_scene ( scene : str , dir : Union [ pathlib . Path , str ] = '.' ) - > pathlib . Path
"""
For the given scene, downloads the AUX_POEORB file if available, otherwise downloads the AUX_RESORB file.
Args:
scene: The scene name for which to download the orbit file.
dir: The directory that the orbit file should download into.
Raises:
InvalidSceneError: Thrown if the scene name is not a proper Sentinel-1 scene name.
OrbitNotFoundError: Thrown if an orbit cannot be found for the provided scene.
Returns:
download_path: The path to the downloaded file.
"""
git clone [email protected]:ASFHyP3/sentinel1-orbits-py.git
cd sentinel1-orbits-py
conda env create -f environment.yml
conda activate s1-orbits
pytest tests