AWS のオープン データのレジストリから Sentinel-1 Orbit ファイルをダウンロードするための Python ユーティリティ。
>> > 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' )
依存関係を簡単に管理するには、Anaconda/Miniconda または Python 仮想環境経由で専用のプロジェクト環境を使用することをお勧めします。
s1_orbits
、次のようにして conda 環境にインストールできます。
conda install -c conda-forge s1_orbits
または、以下を使用して仮想環境に移動します。
python -m pip install s1_orbits
s1-orbits は、特定のシーンの「利用可能な最良の」軌道ファイルをダウンロードする 1 つの関数fetch_for_scene
を提供します。これは、 AUX_POOERBファイルが存在する場合はそれをダウンロードすることを意味します。それ以外の場合は、 AUX_RESORBファイルがダウンロードされます。よりフル機能の API については、sentineleof または CDSE の API を参照してください。
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