-
Notifications
You must be signed in to change notification settings - Fork 6
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
Raster timeseries #655
Raster timeseries #655
Conversation
✅ Deploy Preview for veda-ui ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
0b8a66b
to
5e21005
Compare
5e21005
to
70d0782
Compare
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.
This is looking really good. And the layer usage is pretty clean!
@@ -11,7 +11,7 @@ import { | |||
} from 'mapbox-gl'; |
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.
Please remind me:
I recall us having a discussion about whether or not to make the STAC layer data requests outside the layer component. Did we end up deciding to keep it this way because of how tightly coupled with the rendering these requests are?
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.
If I remember correctly, we opted to keep the STAC layer data requests inside the component/generator because the results from those requests are only relevant to the map.
A recap for my own sanity:
search
-> get STAC features -> used to render points layer, if anymosaic/register
-> get tilejson url- `mosaic/[id]/tilejson.json -> get XYZ tiles URL -> used to render raster tiles
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.
Yes, that is correct
Adds raster timeseries back to the new map component with some architecture fixes (please review ignoring the first commit which was mostly copying files from the old version around).