-
Notifications
You must be signed in to change notification settings - Fork 0
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
Incorrect path-row positions #8
Comments
This is because the satellite hadn't yet reached operational orbit. From here:
Find earliest images in pathrow: SELECT productId, acquisitionDate FROM scene_list WHERE pathrow = "035033" ORDER BY acquisitionDate LIMIT 10;
Then visualize: scene = 'LC08_L1TP_035033_20130326_20170310_01_T1'
scene2 = 'LC08_L1TP_035033_20130706_20170309_01_T1'
from rio_tiler.io.landsat8 import bounds
from shapely.geometry import box
geom1 = box(*bounds(scene)['bounds'])
geom2 = box(*bounds(scene2)['bounds'])
bounds(scene2)
from keplergl_cli import Visualize
Visualize([geom1, geom2]) The first scene is on the left. These are bounding boxes, not actual geometries, but it's still clear. Solution: Restrict earliest imagery to be from April 11, 2013 |
path-row positions are sometimes incorrect historically.
These are all defined with a row of 33 and a column of 35, but one of them is far off from the others:
So you should double check geometries of the assets when inserting. The mostly-overlapping set of assets have a maximum translation of 5km.
The text was updated successfully, but these errors were encountered: