-
Notifications
You must be signed in to change notification settings - Fork 7
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
Project TS #38
base: develop
Are you sure you want to change the base?
Project TS #38
Conversation
@ingalls this is looking really great! thanks so much! One question I have is about mosaics (imagery source). I think we should have a table that registers mosaics which the frontend can list. And eventually the frontend will allow an interface to create them with the Planetary Computer API. It can certainly be a separate PR but I do think currently it's unclear how we store mosaics. cc @vgeorge |
Production deploy Jan 19, 2023
I needed to make a small change to the Helm templates for deploy to work on newer versions on Kubernetes: 1497007 These changes are now in develop + main and deployed here. It would be create if we could rebase this PR on develop / main and then I'll be able to deploy them onto our new cluster. @ingalls do you think you'd be able to rebase |
Make cpu node count max 2
…d/pearl-backend into project-ts-staging-deploy
…d/pearl-backend into project-ts-staging-deploy
…d/pearl-backend into project-ts-staging-deploy
…d/pearl-backend into project-ts-staging-deploy
@geohacker should this be merged to a v2 branch? |
I'm tempted to merge this to develop. Let me mull a bit |
Context
Mosaic data is currently stored at the project level with subsequent AOIs of a given project inheriting the single mosaic type from their parent project. This has worked up until now as we have essentially only used the
naip.latest
mosaic for all projects.Adding timeseries data complicates this model as it means that there is no relationship to be made between similiar AOIs that use mosaics with different timestamps. Although a user would be able to manually select mosaics that might overlap and compare them, a DB relationship wasn't possible.
This PR changes the way mosaic data is stored in the database and surfaced via the API. Mosaic data has been removed from the project data and is instead stored
Closes: #36
cc/ @geohacker