Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"description": "Orthorectified Surface reflectance (0-1 unitless, scaled by 10,000) \ncomputed from the NEON Imaging Spectrometer (NIS) per pixel; data \nare orthorectified and output onto a fixed, uniform spatial grid \nusing nearest-neighbor resampling (tbr). Level 1 flight lines over \na given site are mosaicked into 1 km by 1 km tiles with a spatial \nresolution of 1m.\nData are is a calibrated and atmospherically corrected product \ndistributed as scaled reflectance. It includes QA and ancillary \nrasters used as inputs to ATCOR for atmospheric correction as well \nas outputs from ATCOR for diagnostic purposes. L3 reflectance is \ndistributed in 1 km by 1 km tiles with one HDF5 file per tile \nincluding the reflectance data and all metadata and ancillary data. \nThe mosaic is created using the most-nadir pixels from the flight \nlines observed with the least cloud cover. \nCitation\nPlease use the appropriate citation(s) in your publications. \nSee Data Policies & Citation Guidelines for more info.\ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using EarthEngine | |
Initialize() | |
# base ndvi function to do the calculation | |
function ndvi(n::EE.AbstractEEObject, r::EE.AbstractEEObject) | |
return (n - r) / (n + r) | |
end | |
# ndvi function for image, will extract out the correct bands |
NewerOlder