We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Die NBR-Werte zwischen den beiden Aufnahmen und für Subregionen von z.B. jeweils 10 km x 10 km normalisieren z.B. im Sinne von:
# mean per time and subregion nbr1_means = c(0.75, 0.55, 0.44, 0.66, 0.87) nbr2_means = c(0.62, 0.66, 0.58, 0.34, 0.78) # single pixel nbr test values nbr1 = c(0.75, 0.50, 0.44, 0.66, 0.87) nbr2 = c(0.45, 0.60, 0.60, 0.60, 0.50) # differences nbr2 - nbr1 ## [1] -0.30 0.10 0.16 -0.06 -0.37 # differences "normalized by the mean" nbr2 - nbr1 * (nbr2_means / nbr1_means) ## [1] -0.17 0.00 0.02 0.26 -0.28
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Die NBR-Werte zwischen den beiden Aufnahmen und für Subregionen von z.B. jeweils 10 km x 10 km normalisieren z.B. im Sinne von:
The text was updated successfully, but these errors were encountered: