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는 주어진 장면에 대해 "가장 적합한" 궤도 파일을 다운로드하기 위해 fetch_for_scene
이라는 하나의 기능을 제공합니다. 이는 AUX_POEORB 파일이 있으면 다운로드한다는 의미입니다. 그렇지 않으면 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