The National Science Foundation's National Ecological Observatory Network (NEON) offers ecological data from sites across the United States through the NEON Data Portal. neonutilities is a python package that makes it easy to find and download data to your local computer. We also provide some additional utilities to visualize and analyze the data.
Download NEON data files to your local computer. Files can also be read into Pandas DataFrames.
Downloading data locally is as simple as importing the neonutilities package and using the download_data
function with the product ID.
import neonutilities as nu
# Download short wave radiation data
nu.download_data('DP1.00024.001', "HARV", start="2019-01", end="2021-12")