iprapas / landslide-sar-unet

Repository for the paper "Deep Learning for Rapid Landslide Detection using Synthetic Aperture Radar (SAR) Datacubes"
MIT License
32 stars 3 forks source link

What is "sat:orbit_state"? #2

Closed LostGeorge closed 1 year ago

LostGeorge commented 1 year ago

https://github.com/iprapas/landslide-sar-unet/blob/main/src/datamodule.py#L18 in the data preprocessing, we filter by sat:orbit_state "d". It seems like sat:orbit_state can be either "a" or "d." What do these mean, and why do we filter by "d"?

weiji14 commented 1 year ago

https://github.com/iprapas/landslide-sar-unet/blob/main/src/datamodule.py#L18 in the data preprocessing, we filter by sat:orbit_state "d". It seems like sat:orbit_state can be either "a" or "d." What do these mean, and why do we filter by "d"?

The a and d stands for ascending and descending orbits of the Synthetic Aperture Radar satellite. I.e. images taken when the satellite is flying Northwards or flying Southwards. For certain locations on the Earth, the ascending pass image might not capture the entire area nicely, so we filtered those out and only keep the descending pass images. Hopefully this answers your question.