-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Document MODIS data sampling #311
base: main
Are you sure you want to change the base?
Conversation
@yellowcap can you share more about the projection choice? |
@brunosan Based on my discussion with Daniel, default projection of MODIS had a lot of empty pixels, so he had to reproject them into Web Mercator & slice to areas that are best available. |
wavelength: | ||
sur_refl_b01: 645.0 | ||
sur_refl_b02: 858.5 | ||
sur_refl_b03: 469.0 | ||
sur_refl_b04: 555.0 | ||
sur_refl_b05: 1240.0 | ||
sur_refl_b06: 1640.0 | ||
sur_refl_b07: 2130.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pass the wavelengths in millimeter:
wavelength: | |
sur_refl_b01: 645.0 | |
sur_refl_b02: 858.5 | |
sur_refl_b03: 469.0 | |
sur_refl_b04: 555.0 | |
sur_refl_b05: 1240.0 | |
sur_refl_b06: 1640.0 | |
sur_refl_b07: 2130.0 | |
wavelength: | |
sur_refl_b01: .645 | |
sur_refl_b02: .858 | |
sur_refl_b03: .469 | |
sur_refl_b04: .555 | |
sur_refl_b05: 1.240 | |
sur_refl_b06: 1.640 | |
sur_refl_b07: 2.130 |
- sur_refl_b07 | ||
gsd: 500 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We would also need an rgb index.
- sur_refl_b07 | |
gsd: 500 | |
rgb_indices: | |
- 0 | |
- 3 | |
- 2 |
Added Modis to our training data set using stacchip.
Most of the work went into finding a reasonable projection for the data, which comes in SIN grid originally. The processor reprojects the modis tiles into web mercator. The prechipping and stats were working almost out of the box 🚀 .