-
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
CLI Invocation #3
Comments
@mcechini sorry for the delay. I just pushed a new commit which adds an
Generally this library has a lot of good infrastructure, including the |
To comment on the general state of the library, there's a lot of useful stuff here. The Docker app should run fine so you can load the backend server that way. There's a very useful set of functions in If I were to expand on this now, I'd say that this should either (a) be hooked up directly to the OnEarth server as another Docker container (that's what the Dockerfile does by default) so it has fast access to tiles or (b) redesigned to run mostly on the clientside. (a) is basically supported already, and you can basically launch the Dockerfile on AWS and it should interface seamlessly with |
Awesome, thanks! I'll take a look sometime soon. Currently swamped with other stuff. |
Something that would be super helpful would be a way to invoke this via the CLI, providing a date range, bbox (or tile range), interpolation method, and target endpoint. So I could ask for a 5-day average for a layer in a tile endpoint, given a colormap. Internally, all of the necessary tiles would be requested, each pixel averaged, and then new tiles created and returned. Perhaps it could just act on a single tile-by-tile basis. I suspect most of the logic to do that is in the code here, I'm just not totally sure how to tease it out... and I also don't want to have to run a container. Just
git clone
and go, pointing at an already available tile endpoint.The text was updated successfully, but these errors were encountered: