-
Notifications
You must be signed in to change notification settings - Fork 45
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
Add rf_clip and rf_rescale and rf_normalize #218
Comments
I have looked into such things a little in the past but never gone very far. Seems maybe geotrellis rf_rescale is interesting because that can be done on a per tile basis, but could also imagine a case where the user wants to consider the column min and max. See optional parameters. Similar sentinment for normalize. Easy to do it locally, more powerful to consider entire column mean and standard deviation, but less clear about implementation. I think there may be some functionality for rescaling in geotrellis, but not exactly sure. Possible function signatures / doc
|
One thing to work out is that in the case where you don't provide the scaling parameters and expect the system to compute it for you, you can't actually have a columnar function (a regular expression) invoke an aggregation first. Either the user would have to compute the summary statistics first and pass the resultant structure in, or pass in the dataframe for the code to invoke it first. |
@vpipkt Interested in your thoughts on this.
The text was updated successfully, but these errors were encountered: