-
Notifications
You must be signed in to change notification settings - Fork 142
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
Browser showing smeared thumbnails #369
Comments
Hi, @jlaura . Just wanted to let you know that I saw this. If I had to guess, I'd say it's an issue with georaster-layer-for-leaflet stumbling on the custom projection or a custom geotransform. I don't think we are currently trying to reproject thumbnails. I'll try to look into it within a fortnight. I'm sorry for the inconvenience this is causing. Looks like a really cool dataset! |
I looked into this a little more. I think my assumption that the issue was with georaster-layer-for-leaflet is incorrect for this specific example. It looks like the issues appear in the overlay pane, which is consistent with displaying ImageOverlay layers. The thumbnails appear almost square-like, but for some reason Leaflet is rendering them as very non-square rectangles. My best guess is that the code is tripping up over the projection or miscalculating the bounds of the thumbnail some how. Maybe the answer can be found here? https://github.com/stac-utils/stac-layer/blob/main/src/add.js#L178 In either case, very interesting problem indeed. Thank you for bringing this to our attention and for providing such an awesome use case! |
Tagging @m-mohr , who might have an idea! |
Will check in October once I'm back at work. |
The issue likely comes from https://github.com/stac-utils/stac-layer/blob/v0.15.0/src/utils/bboxToLatLngBounds.js There it expects the bbox to consist of 4 numbers, but here we get 6 (includes z). That will likely make the bounds invalid and as such the images get smeared. I think it should be fixed by the new stac-layer codebase, but it hasn't be integrated in STAC Browser yet. The least time consuming option to solve this would be to release v0.15.1 with a fix, but I'm not sure whether anyone has time/funding to work on this right now? |
Indeed, if I fix this function, the images don't get distorted (but in 1.0.0 they get shown too large, so there's more work to do). Related (draft) PRs:
|
See: https://stac.astrogeology.usgs.gov/browser-dev/#/api/collections/lunar_orbiter_laser_altimeter?.language=en
Is this perhaps because the projection is being described at the item level and the browser is assuming that the projection information also applies to the thumbnail? Or is something else happening causing the thumbnails to display at some upper left origin and then smear across the context map?
The text was updated successfully, but these errors were encountered: