You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
National Ecological Observatory Network (NEON) offers a variety of data products, including airborne data from different forest sites. Airborne data includes RGB orthophotos, LiDAR (CHM) airborne data, and 426 band hyperspectral data. All products are available on https://data.neonscience.org/data-products/, the following are the airborne data products used in this repository:
4
+
5
+
rgb_data_product = 'DP3.30010.001'
6
+
hsi_withbrdf_2022 = 'DP3.30006.002'
7
+
lidar = 'DP3.30015.001' #CHM
8
+
9
+
# Workflow
10
+
## 1. Download NEON data
11
+
- Given the Northing, Easting, Year and Site, download the NEON data using the `download_neon_data.py` script. There are functions to download the RGB, HSI, and LiDAR data. The data is downloaded to a specified directory.
12
+
### To do:
13
+
- Merge this script in neon_utils.py
14
+
- Look into using Google Earth Engine
15
+
16
+
## 2. Generate crowns using deepforest
17
+
- The `deepforest_parallel.py` script uses the deepforest package to generate tree crowns from the RGB data. The script is parallelized on SLURM using Dask. It can run on a given list of RGB tiles and save a pandas dataframe with the tree crowns.
18
+
19
+
# Citations
20
+
21
+
## NEON Airborne Data Products
22
+
NEON (National Ecological Observatory Network). High-resolution orthorectified camera imagery mosaic (DP3.30010.001), RELEASE-2025. https://doi.org/10.48443/gdgn-3r69. Dataset accessed from https://data.neonscience.org/data-products/DP3.30010.001/RELEASE-2025 on April 3, 2025.
23
+
24
+
NEON (National Ecological Observatory Network). Spectrometer orthorectified surface bidirectional reflectance - mosaic (DP3.30006.002), provisional data. Dataset accessed from https://data.neonscience.org/data-products/DP3.30006.002 on April 3, 2025. Data archived at [your DOI].
25
+
26
+
NEON (National Ecological Observatory Network). Ecosystem structure (DP3.30015.001), RELEASE-2025. https://doi.org/10.48443/jqqd-1n30. Dataset accessed from https://data.neonscience.org/data-products/DP3.30015.001/RELEASE-2025 on April 3, 2025.
num_workers=40# be careful with this, memory will be allocated for each worker, so if you have 40 workers and each worker has 35GB of memory, you will need 1.4TB of memory on the node.
Download RGB data from NEON for a specific site and year. Pass a list of easting and northing coordinates to download all the tiles that span the area.
Download HSI data from NEON for a specific site and year. Pass a list of easting and northing coordinates to download all the tiles that span the area.
Download LiDAR CHM data from NEON for a specific site and year. Pass a list of easting and northing coordinates to download all the tiles that span the area.
0 commit comments