Skip to content
Snippets Groups Projects
Commit a26d7671 authored by Alex Rojas's avatar Alex Rojas
Browse files

updated run.sh file to activate environment

parent a1e2f7f0
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
basedir=$( cd "$(dirname "$0")" ; pwd -P) basedir=$( cd "$(dirname "$0")" ; pwd -P)
# Activate environment that was created in the builed-env.sh file # Activate environment that was created in the builed-env.sh file
# source activate osgeo-env source activate osgeo-env
# Create output dir # Create output dir
# OUTPUTDIR="${PWD}/output" # OUTPUTDIR="${PWD}/output"
......
%% Cell type:code id:25172537-794b-4135-bb28-63c0fcefbb68 tags: %% Cell type:code id:25172537-794b-4135-bb28-63c0fcefbb68 tags:
``` python ``` python
import os import os
import re import re
from maap.maap import MAAP from maap.maap import MAAP
import re import re
# maap = MAAP(maap_host='api.maap-project.org') # maap = MAAP(maap_host='api.maap-project.org')
maap = MAAP(maap_host='api.maap-project.org') maap = MAAP(maap_host='api.maap-project.org')
``` ```
%% Cell type:code id:f176e75b-5104-478b-ade6-a84006e966b0 tags: %% Cell type:code id:f176e75b-5104-478b-ade6-a84006e966b0 tags:
``` python ``` python
import time import time
``` ```
%% Cell type:code id:f203a6c0-852b-4645-a3a5-4b65c462f4f5 tags: %% Cell type:code id:f203a6c0-852b-4645-a3a5-4b65c462f4f5 tags:
``` python ``` python
``` ```
%% Cell type:code id:b0d65f96-5dad-44e9-ae85-9d4086c4b29f tags: %% Cell type:code id:b0d65f96-5dad-44e9-ae85-9d4086c4b29f tags:
``` python ``` python
``` ```
%% Cell type:code id:b39e76ac-d765-4b8c-baf1-fe41f3296de9 tags: %% Cell type:code id:b39e76ac-d765-4b8c-baf1-fe41f3296de9 tags:
``` python ``` python
# Change to appropriate filepaths for urls # Change to appropriate filepaths for urls
l1b_urls_fpath = "../GEDI-L1B-2021-URLS.txt" l1b_urls_fpath = "../GEDI-L1B-2021-URLS.txt"
l2a_urls_fpath = "../GEDI-L2A-2021-URLS.txt" l2a_urls_fpath = "../GEDI-L2A-2021-URLS.txt"
# l1b_urls_fpath = "/projects/biomass-gedi-conus/data/GEDI-L1B-2022-URLS.txt" # l1b_urls_fpath = "/projects/biomass-gedi-conus/data/GEDI-L1B-2022-URLS.txt"
# l2a_urls_fpath = "/projects/biomass-gedi-conus/data/GEDI-L2A-2022-URLS.txt" # l2a_urls_fpath = "/projects/biomass-gedi-conus/data/GEDI-L2A-2022-URLS.txt"
with open(l1b_urls_fpath) as f: with open(l1b_urls_fpath) as f:
l1b_fpaths = f.read().splitlines() l1b_fpaths = f.read().splitlines()
with open(l2a_urls_fpath) as f: with open(l2a_urls_fpath) as f:
l2a_fpaths = f.read().splitlines() l2a_fpaths = f.read().splitlines()
# Get matching string pattern and run main.py # Get matching string pattern and run main.py
jobs_list = [] jobs_list = []
counter=1 counter=1
for l1b_fp in l1b_fpaths: for l1b_fp in l1b_fpaths:
# Get string pattern # Get string pattern
str_pattern = re.findall("[0-9]{13}", os.path.basename(l1b_fp))[0] str_pattern = re.findall("[0-9]{13}", os.path.basename(l1b_fp))[0]
try: try:
l2a_fp = [s for s in l2a_fpaths if str_pattern in s][0] l2a_fp = [s for s in l2a_fpaths if str_pattern in s][0]
except: except:
print("No matching L2 file!", l1b_fp) print("No matching L2 file!", l1b_fp)
continue continue
# print(l1b_fp) # print(l1b_fp)
# print(l2a_fp) # print(l2a_fp)
job = maap.submitJob(identifier="GEDI-biomass-2022", job = maap.submitJob(identifier="GEDI-biomass-2022",
algo_id="arojas_biomass_gedi", algo_id="arojas_biomass_gedi",
version="master", version="master",
username="arojearthdata", username="arojearthdata",
queue="maap-dps-worker-8gb", queue="maap-dps-worker-8gb",
L1B_URL=l1b_fp, L1B_URL=l1b_fp,
L2A_URL=l2a_fp) L2A_URL=l2a_fp)
jobs_list.append(job) jobs_list.append(job)
if counter%100==0: if counter%100==0:
print("on file num: ", counter, end='\r') print("on file num: ", counter, end='\r')
# break # break
time.sleep(900) time.sleep(900)
counter+=1 counter+=1
``` ```
%% Output %% Output
on file num: 200 on file num: 200
---------------------------------------------------------------------------
KeyboardInterrupt Traceback (most recent call last)
Cell In[3], line 38
36 print("on file num: ", counter, end='\r')
37 # break
---> 38 time.sleep(900)
39 counter+=1
KeyboardInterrupt:
%% Cell type:code id:8f0b9f73-ffb1-40b7-be0e-b31480571a4a tags: %% Cell type:code id:8f0b9f73-ffb1-40b7-be0e-b31480571a4a tags:
``` python ``` python
counter counter
``` ```
%% Output %% Output
529 529
%% Cell type:code id:4f6093c5-1f63-4556-abb8-02714f560ad1 tags: %% Cell type:code id:4f6093c5-1f63-4556-abb8-02714f560ad1 tags:
``` python ``` python
``` ```
%% Cell type:code id:7fe1c6f4-37c5-4fe7-b9ff-51e17b7a5cf0 tags: %% Cell type:code id:7fe1c6f4-37c5-4fe7-b9ff-51e17b7a5cf0 tags:
``` python ``` python
# View job status # View job status
for job in jobs_list: for job in jobs_list:
print(job.retrieve_status()) print(job.retrieve_status())
print(job.id) print(job.id)
break break
``` ```
%% Output %% Output
Running Running
f2d0f231-4565-4f7b-a460-5b824de4639e f2d0f231-4565-4f7b-a460-5b824de4639e
%% Cell type:code id:2018077f-9640-4e70-bd01-a9d939b3626a tags: %% Cell type:code id:2018077f-9640-4e70-bd01-a9d939b3626a tags:
``` python ``` python
# View job status # View job status
for job in jobs_list: for job in jobs_list:
print(job.retrieve_status()) print(job.retrieve_status())
print(job.id) print(job.id)
break break
``` ```
%% Output %% Output
Succeeded Succeeded
6152410f-1e33-4561-965a-83fd364e3767 6152410f-1e33-4561-965a-83fd364e3767
%% Cell type:code id:873e9ea7-d6cb-4bb9-b082-5bffb4026615 tags: %% Cell type:code id:873e9ea7-d6cb-4bb9-b082-5bffb4026615 tags:
``` python ``` python
# View job status # View job status
f_list = [] f_list = []
s_list = [] s_list = []
r_list = [] r_list = []
for job in jobs_list: for job in jobs_list:
status = job.retrieve_status() status = job.retrieve_status()
if status=="Succeeded": if status=="Succeeded":
s_list.append(status) s_list.append(status)
elif status=="Running": elif status=="Running":
r_list.append(status) r_list.append(status)
elif status=="Failed": elif status=="Failed":
f_list.append(status) f_list.append(status)
print(s_list[0], len(s_list)) print(s_list[0], len(s_list))
print(r_list[0], len(r_list)) print(r_list[0], len(r_list))
print(f_list[0], len(f_list)) print(f_list[0], len(f_list))
``` ```
%% Output %% Output
Succeeded 528 Succeeded 528
--------------------------------------------------------------------------- ---------------------------------------------------------------------------
IndexError Traceback (most recent call last) IndexError Traceback (most recent call last)
Cell In[21], line 16 Cell In[21], line 16
13 f_list.append(status) 13 f_list.append(status)
15 print(s_list[0], len(s_list)) 15 print(s_list[0], len(s_list))
---> 16 print(r_list[0], len(r_list)) ---> 16 print(r_list[0], len(r_list))
17 print(f_list[0], len(f_list)) 17 print(f_list[0], len(f_list))
IndexError: list index out of range IndexError: list index out of range
%% Cell type:code id:e8a40e13-dcdd-4b7f-a3b6-d060bb52eaf5 tags: %% Cell type:code id:e8a40e13-dcdd-4b7f-a3b6-d060bb52eaf5 tags:
``` python ``` python
``` ```
%% Cell type:code id:988420a0-1145-499c-927c-eec059c0dde9 tags: %% Cell type:code id:988420a0-1145-499c-927c-eec059c0dde9 tags:
``` python ``` python
################ ################
############### ###############
############## ##############
``` ```
%% Cell type:code id:31626d2a-4edf-4572-81c2-7b68080e2dd3 tags: %% Cell type:code id:31626d2a-4edf-4572-81c2-7b68080e2dd3 tags:
``` python ``` python
## Some files downloaded, other didnt (due to limit on download through USGS) ## Some files downloaded, other didnt (due to limit on download through USGS)
``` ```
%% Cell type:code id:9ecb7ffc-319f-40c9-8f6e-d18b6ea1c890 tags: %% Cell type:code id:9ecb7ffc-319f-40c9-8f6e-d18b6ea1c890 tags:
``` python ``` python
import glob import glob
indir = "/projects/my-private-bucket/dps_output/arojas_biomass_gedi/master/GEDI-biomass-2022" indir = "/projects/my-private-bucket/dps_output/arojas_biomass_gedi/master/GEDI-biomass-2022"
csv_list = [] csv_list = []
for subdir, dirs, files in os.walk(indir): for subdir, dirs, files in os.walk(indir):
for file in files: for file in files:
if file.endswith(".csv"): if file.endswith(".csv"):
# fp = os.path.join(subdir, file) # fp = os.path.join(subdir, file)
# print(fp) # print(fp)
# csv_list.append(fp) # csv_list.append(fp)
csv_list.append(file) csv_list.append(file)
``` ```
%% Cell type:code id:f3ae4e2c-fa90-41ae-8fa2-9e3fd1241157 tags: %% Cell type:code id:f3ae4e2c-fa90-41ae-8fa2-9e3fd1241157 tags:
``` python ``` python
len(csv_list) len(csv_list)
``` ```
%% Output %% Output
637 637
%% Cell type:code id:5bb204a4-e7d4-4a83-898f-81db03d080aa tags: %% Cell type:code id:5bb204a4-e7d4-4a83-898f-81db03d080aa tags:
``` python ``` python
print("done") print("done")
``` ```
%% Output %% Output
done done
%% Cell type:code id:bb5b4efc tags: %% Cell type:code id:bb5b4efc tags:
``` python ``` python
# print("Waiting some time to run this cell...") # print("Waiting some time to run this cell...")
# time.sleep(3600) # time.sleep(3600)
print("Running this cell now!") print("Running this cell now!")
# Get all CSV files # Get all CSV files
indir = "/projects/my-private-bucket/dps_output/arojas_biomass_gedi/master/GEDI-biomass-2022" indir = "/projects/my-private-bucket/dps_output/arojas_biomass_gedi/master/GEDI-biomass-2022"
csv_list = [] csv_list = []
for subdir, dirs, files in os.walk(indir): for subdir, dirs, files in os.walk(indir):
for file in files: for file in files:
if file.endswith(".csv"): if file.endswith(".csv"):
# fp = os.path.join(subdir, file) # fp = os.path.join(subdir, file)
# print(fp) # print(fp)
# csv_list.append(fp) # csv_list.append(fp)
csv_list.append(file) csv_list.append(file)
# Change to appropriate filepaths for urls # Change to appropriate filepaths for urls
l1b_urls_fpath = "/projects/biomass-gedi-conus/data/GEDI-L1B-2022-URLS.txt" l1b_urls_fpath = "/projects/biomass-gedi-conus/data/GEDI-L1B-2022-URLS.txt"
l2a_urls_fpath = "/projects/biomass-gedi-conus/data/GEDI-L2A-2022-URLS.txt" l2a_urls_fpath = "/projects/biomass-gedi-conus/data/GEDI-L2A-2022-URLS.txt"
with open(l1b_urls_fpath) as f: with open(l1b_urls_fpath) as f:
l1b_fpaths = f.readlines() l1b_fpaths = f.readlines()
with open(l2a_urls_fpath) as f: with open(l2a_urls_fpath) as f:
l2a_fpaths = f.readlines() l2a_fpaths = f.readlines()
# Get matching string pattern and run main.py # Get matching string pattern and run main.py
jobs_list = [] jobs_list = []
counter=1 counter=1
for l1b_fp in l1b_fpaths: for l1b_fp in l1b_fpaths:
# Get string pattern # Get string pattern
str_pattern = re.findall("[0-9]{13}", os.path.basename(l1b_fp))[0] str_pattern = re.findall("[0-9]{13}", os.path.basename(l1b_fp))[0]
try: try:
l2a_fp = [s for s in l2a_fpaths if str_pattern in s][0] l2a_fp = [s for s in l2a_fpaths if str_pattern in s][0]
except: except:
print("No matching L2 file!", l1b_fp) print("No matching L2 file!", l1b_fp)
continue continue
# Check if file was already downloaded # Check if file was already downloaded
date_str = os.path.basename(l1b_fp).split("_")[2] date_str = os.path.basename(l1b_fp).split("_")[2]
if any(date_str in x for x in csv_list): if any(date_str in x for x in csv_list):
continue continue
print(l1b_fp) print(l1b_fp)
print(l2a_fp) print(l2a_fp)
job = maap.submitJob(identifier="GEDI-biomass-2022", job = maap.submitJob(identifier="GEDI-biomass-2022",
algo_id="arojas_biomass_gedi", algo_id="arojas_biomass_gedi",
version="master", version="master",
username="arojearthdata", username="arojearthdata",
queue="maap-dps-worker-16gb", queue="maap-dps-worker-16gb",
L1B_URL=l1b_fp, L1B_URL=l1b_fp,
L2A_URL=l2a_fp) L2A_URL=l2a_fp)
jobs_list.append(job) jobs_list.append(job)
if counter%100==0: if counter%100==0:
print("on file num: ", counter, end='\r') print("on file num: ", counter, end='\r')
time.sleep(1200) time.sleep(1200)
counter+=1 counter+=1
print('Done') print('Done')
``` ```
%% Output %% Output
Running this cell now! Running this cell now!
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.31/GEDI01_B_2022243142430_O21056_03_T06784_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.31/GEDI01_B_2022243142430_O21056_03_T06784_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.31/GEDI02_A_2022243142430_O21056_03_T06784_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.31/GEDI02_A_2022243142430_O21056_03_T06784_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.31/GEDI01_B_2022243125140_O21055_03_T02667_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.31/GEDI01_B_2022243125140_O21055_03_T02667_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.31/GEDI02_A_2022243125140_O21055_03_T02667_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.31/GEDI02_A_2022243125140_O21055_03_T02667_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.31/GEDI01_B_2022243111849_O21054_03_T05512_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.31/GEDI01_B_2022243111849_O21054_03_T05512_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.31/GEDI02_A_2022243111849_O21054_03_T05512_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.31/GEDI02_A_2022243111849_O21054_03_T05512_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.31/GEDI01_B_2022243094558_O21053_02_T01242_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.31/GEDI01_B_2022243094558_O21053_02_T01242_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.31/GEDI02_A_2022243094558_O21053_02_T01242_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.31/GEDI02_A_2022243094558_O21053_02_T01242_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.31/GEDI01_B_2022243064017_O21051_02_T02816_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.31/GEDI01_B_2022243064017_O21051_02_T02816_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.31/GEDI02_A_2022243064017_O21051_02_T02816_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.31/GEDI02_A_2022243064017_O21051_02_T02816_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.30/GEDI01_B_2022242151152_O21041_03_T05958_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.30/GEDI01_B_2022242151152_O21041_03_T05958_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.30/GEDI02_A_2022242151152_O21041_03_T05958_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.30/GEDI02_A_2022242151152_O21041_03_T05958_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.30/GEDI01_B_2022242072738_O21036_02_T10528_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.30/GEDI01_B_2022242072738_O21036_02_T10528_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.30/GEDI02_A_2022242072738_O21036_02_T10528_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.30/GEDI02_A_2022242072738_O21036_02_T10528_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.29/GEDI01_B_2022241155913_O21026_03_T05132_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.29/GEDI01_B_2022241155913_O21026_03_T05132_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.29/GEDI02_A_2022241155913_O21026_03_T05132_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.29/GEDI02_A_2022241155913_O21026_03_T05132_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.29/GEDI01_B_2022241142622_O21025_03_T03708_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.29/GEDI01_B_2022241142622_O21025_03_T03708_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.29/GEDI02_A_2022241142622_O21025_03_T03708_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.29/GEDI02_A_2022241142622_O21025_03_T03708_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.29/GEDI01_B_2022241112041_O21023_02_T10974_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.29/GEDI01_B_2022241112041_O21023_02_T10974_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.29/GEDI02_A_2022241112041_O21023_02_T10974_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.29/GEDI02_A_2022241112041_O21023_02_T10974_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.29/GEDI01_B_2022241094750_O21022_02_T01012_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.29/GEDI01_B_2022241094750_O21022_02_T01012_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.29/GEDI02_A_2022241094750_O21022_02_T01012_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.29/GEDI02_A_2022241094750_O21022_02_T01012_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.29/GEDI01_B_2022241081459_O21021_02_T03857_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.29/GEDI01_B_2022241081459_O21021_02_T03857_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.29/GEDI02_A_2022241081459_O21021_02_T03857_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.29/GEDI02_A_2022241081459_O21021_02_T03857_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.28/GEDI01_B_2022240120800_O21008_03_T08572_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.28/GEDI01_B_2022240120800_O21008_03_T08572_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.28/GEDI02_A_2022240120800_O21008_03_T08572_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.28/GEDI02_A_2022240120800_O21008_03_T08572_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.28/GEDI01_B_2022240103510_O21007_02_T00186_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.28/GEDI01_B_2022240103510_O21007_02_T00186_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.28/GEDI02_A_2022240103510_O21007_02_T00186_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.28/GEDI02_A_2022240103510_O21007_02_T00186_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.28/GEDI01_B_2022240072928_O21005_02_T10298_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.28/GEDI01_B_2022240072928_O21005_02_T10298_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.28/GEDI02_A_2022240072928_O21005_02_T10298_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.28/GEDI02_A_2022240072928_O21005_02_T10298_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.27/GEDI01_B_2022239160101_O20995_03_T07595_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.27/GEDI01_B_2022239160101_O20995_03_T07595_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.27/GEDI02_A_2022239160101_O20995_03_T07595_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.27/GEDI02_A_2022239160101_O20995_03_T07595_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.27/GEDI01_B_2022239125519_O20993_03_T10745_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.27/GEDI01_B_2022239125519_O20993_03_T10745_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.27/GEDI02_A_2022239125519_O20993_03_T10745_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.27/GEDI02_A_2022239125519_O20993_03_T10745_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.27/GEDI01_B_2022239112229_O20992_02_T07898_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.27/GEDI01_B_2022239112229_O20992_02_T07898_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.27/GEDI02_A_2022239112229_O20992_02_T07898_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.27/GEDI02_A_2022239112229_O20992_02_T07898_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.27/GEDI01_B_2022239094938_O20991_02_T06474_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.27/GEDI01_B_2022239094938_O20991_02_T06474_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.27/GEDI02_A_2022239094938_O20991_02_T06474_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.27/GEDI02_A_2022239094938_O20991_02_T06474_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.27/GEDI01_B_2022239081647_O20990_02_T02357_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.27/GEDI01_B_2022239081647_O20990_02_T02357_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.27/GEDI02_A_2022239081647_O20990_02_T02357_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.27/GEDI02_A_2022239081647_O20990_02_T02357_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.26/GEDI01_B_2022238164819_O20980_03_T11191_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.26/GEDI01_B_2022238164819_O20980_03_T11191_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.26/GEDI02_A_2022238164819_O20980_03_T11191_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.26/GEDI02_A_2022238164819_O20980_03_T11191_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.26/GEDI01_B_2022238134238_O20978_03_T09766_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.26/GEDI01_B_2022238134238_O20978_03_T09766_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.26/GEDI02_A_2022238134238_O20978_03_T09766_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.26/GEDI02_A_2022238134238_O20978_03_T09766_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.26/GEDI01_B_2022238120947_O20977_02_T09765_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.26/GEDI01_B_2022238120947_O20977_02_T09765_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.26/GEDI02_A_2022238120947_O20977_02_T09765_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.26/GEDI02_A_2022238120947_O20977_02_T09765_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.26/GEDI01_B_2022238090405_O20975_02_T06917_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.26/GEDI01_B_2022238090405_O20975_02_T06917_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.26/GEDI02_A_2022238090405_O20975_02_T06917_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.26/GEDI02_A_2022238090405_O20975_02_T06917_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.25/GEDI01_B_2022237173537_O20965_03_T10365_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.25/GEDI01_B_2022237173537_O20965_03_T10365_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.25/GEDI02_A_2022237173537_O20965_03_T10365_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.25/GEDI02_A_2022237173537_O20965_03_T10365_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.25/GEDI01_B_2022237142955_O20963_03_T01978_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.25/GEDI01_B_2022237142955_O20963_03_T01978_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.25/GEDI02_A_2022237142955_O20963_03_T01978_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.25/GEDI02_A_2022237142955_O20963_03_T01978_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.25/GEDI01_B_2022237095123_O20960_02_T03398_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.25/GEDI01_B_2022237095123_O20960_02_T03398_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.25/GEDI02_A_2022237095123_O20960_02_T03398_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.25/GEDI02_A_2022237095123_O20960_02_T03398_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.24/GEDI01_B_2022236182301_O20950_03_T08116_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.24/GEDI01_B_2022236182301_O20950_03_T08116_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.24/GEDI02_A_2022236182301_O20950_03_T08116_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.24/GEDI02_A_2022236182301_O20950_03_T08116_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.24/GEDI01_B_2022236165012_O20949_03_T06692_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.24/GEDI01_B_2022236165012_O20949_03_T06692_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.24/GEDI02_A_2022236165012_O20949_03_T06692_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.24/GEDI02_A_2022236165012_O20949_03_T06692_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.23/GEDI01_B_2022235125920_O20931_02_T01747_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.23/GEDI01_B_2022235125920_O20931_02_T01747_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.23/GEDI02_A_2022235125920_O20931_02_T01747_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.23/GEDI02_A_2022235125920_O20931_02_T01747_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.21/GEDI01_B_2022233191305_O20904_03_T06907_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.21/GEDI01_B_2022233191305_O20904_03_T06907_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.21/GEDI02_A_2022233191305_O20904_03_T06907_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.21/GEDI02_A_2022233191305_O20904_03_T06907_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.21/GEDI01_B_2022233174015_O20903_03_T09752_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.21/GEDI01_B_2022233174015_O20903_03_T09752_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.21/GEDI02_A_2022233174015_O20903_03_T09752_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.21/GEDI02_A_2022233174015_O20903_03_T09752_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.21/GEDI01_B_2022233160726_O20902_03_T11327_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.21/GEDI01_B_2022233160726_O20902_03_T11327_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.21/GEDI02_A_2022233160726_O20902_03_T11327_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.21/GEDI02_A_2022233160726_O20902_03_T11327_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.21/GEDI01_B_2022233095608_O20898_02_T01515_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.21/GEDI01_B_2022233095608_O20898_02_T01515_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.21/GEDI02_A_2022233095608_O20898_02_T01515_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.21/GEDI02_A_2022233095608_O20898_02_T01515_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.20/GEDI01_B_2022232182753_O20888_03_T00388_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.20/GEDI01_B_2022232182753_O20888_03_T00388_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.20/GEDI02_A_2022232182753_O20888_03_T00388_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.20/GEDI02_A_2022232182753_O20888_03_T00388_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.20/GEDI01_B_2022232165503_O20887_03_T03233_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.20/GEDI01_B_2022232165503_O20887_03_T03233_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.20/GEDI02_A_2022232165503_O20887_03_T03233_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.20/GEDI02_A_2022232165503_O20887_03_T03233_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.20/GEDI01_B_2022232134924_O20885_02_T10499_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.20/GEDI01_B_2022232134924_O20885_02_T10499_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.20/GEDI02_A_2022232134924_O20885_02_T10499_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.20/GEDI02_A_2022232134924_O20885_02_T10499_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.18/GEDI01_B_2022230165724_O20856_03_T07272_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.18/GEDI01_B_2022230165724_O20856_03_T07272_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.18/GEDI02_A_2022230165724_O20856_03_T07272_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.18/GEDI02_A_2022230165724_O20856_03_T07272_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.18/GEDI01_B_2022230152435_O20855_02_T05848_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.18/GEDI01_B_2022230152435_O20855_02_T05848_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.18/GEDI02_A_2022230152435_O20855_02_T05848_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.18/GEDI02_A_2022230152435_O20855_02_T05848_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.18/GEDI01_B_2022230121855_O20853_02_T04576_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.18/GEDI01_B_2022230121855_O20853_02_T04576_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.18/GEDI02_A_2022230121855_O20853_02_T04576_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.18/GEDI02_A_2022230121855_O20853_02_T04576_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.17/GEDI01_B_2022229205038_O20843_03_T00603_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.17/GEDI01_B_2022229205038_O20843_03_T00603_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.17/GEDI02_A_2022229205038_O20843_03_T00603_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.17/GEDI02_A_2022229205038_O20843_03_T00603_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.17/GEDI01_B_2022229161209_O20840_03_T05022_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.17/GEDI01_B_2022229161209_O20840_03_T05022_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.17/GEDI02_A_2022229161209_O20840_03_T05022_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.17/GEDI02_A_2022229161209_O20840_03_T05022_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.17/GEDI01_B_2022229130629_O20838_02_T03597_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.17/GEDI01_B_2022229130629_O20838_02_T03597_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.17/GEDI02_A_2022229130629_O20838_02_T03597_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.17/GEDI02_A_2022229130629_O20838_02_T03597_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.16/GEDI01_B_2022228183232_O20826_03_T06890_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.16/GEDI01_B_2022228183232_O20826_03_T06890_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.16/GEDI02_A_2022228183232_O20826_03_T06890_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.16/GEDI02_A_2022228183232_O20826_03_T06890_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.16/GEDI01_B_2022228135402_O20823_02_T01348_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.16/GEDI01_B_2022228135402_O20823_02_T01348_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.16/GEDI02_A_2022228135402_O20823_02_T01348_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.16/GEDI02_A_2022228135402_O20823_02_T01348_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.16/GEDI01_B_2022228122113_O20822_02_T04193_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.16/GEDI01_B_2022228122113_O20822_02_T04193_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.16/GEDI02_A_2022228122113_O20822_02_T04193_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.16/GEDI02_A_2022228122113_O20822_02_T04193_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.15/GEDI01_B_2022227205255_O20812_03_T04642_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.15/GEDI01_B_2022227205255_O20812_03_T04642_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.15/GEDI02_A_2022227205255_O20812_03_T04642_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.15/GEDI02_A_2022227205255_O20812_03_T04642_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.15/GEDI01_B_2022227161426_O20809_02_T08908_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.15/GEDI01_B_2022227161426_O20809_02_T08908_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.15/GEDI02_A_2022227161426_O20809_02_T08908_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.15/GEDI02_A_2022227161426_O20809_02_T08908_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.15/GEDI01_B_2022227144136_O20808_02_T04791_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.15/GEDI01_B_2022227144136_O20808_02_T04791_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.15/GEDI02_A_2022227144136_O20808_02_T04791_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.15/GEDI02_A_2022227144136_O20808_02_T04791_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.15/GEDI01_B_2022227113556_O20806_02_T10481_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.15/GEDI01_B_2022227113556_O20806_02_T10481_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.15/GEDI02_A_2022227113556_O20806_02_T10481_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.15/GEDI02_A_2022227113556_O20806_02_T10481_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.14/GEDI01_B_2022226200737_O20796_03_T05238_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.14/GEDI01_B_2022226200737_O20796_03_T05238_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.14/GEDI02_A_2022226200737_O20796_03_T05238_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.14/GEDI02_A_2022226200737_O20796_03_T05238_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.14/GEDI01_B_2022226170158_O20794_02_T03813_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.14/GEDI01_B_2022226170158_O20794_02_T03813_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.14/GEDI02_A_2022226170158_O20794_02_T03813_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.14/GEDI02_A_2022226170158_O20794_02_T03813_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.14/GEDI01_B_2022226152908_O20793_02_T02542_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.14/GEDI01_B_2022226152908_O20793_02_T02542_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.14/GEDI02_A_2022226152908_O20793_02_T02542_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.14/GEDI02_A_2022226152908_O20793_02_T02542_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.13/GEDI01_B_2022225222759_O20782_03_T07106_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.13/GEDI01_B_2022225222759_O20782_03_T07106_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.13/GEDI02_A_2022225222759_O20782_03_T07106_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.13/GEDI02_A_2022225222759_O20782_03_T07106_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.13/GEDI01_B_2022225174929_O20779_03_T00141_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.13/GEDI01_B_2022225174929_O20779_03_T00141_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.13/GEDI02_A_2022225174929_O20779_03_T00141_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.13/GEDI02_A_2022225174929_O20779_03_T00141_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.12/GEDI01_B_2022224200950_O20765_03_T03432_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.12/GEDI01_B_2022224200950_O20765_03_T03432_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.12/GEDI02_A_2022224200950_O20765_03_T03432_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.12/GEDI02_A_2022224200950_O20765_03_T03432_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.12/GEDI01_B_2022224183700_O20764_03_T10699_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.12/GEDI01_B_2022224183700_O20764_03_T10699_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.12/GEDI02_A_2022224183700_O20764_03_T10699_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.12/GEDI02_A_2022224183700_O20764_03_T10699_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.12/GEDI01_B_2022224170410_O20763_02_T07852_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.12/GEDI01_B_2022224170410_O20763_02_T07852_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.12/GEDI02_A_2022224170410_O20763_02_T07852_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.12/GEDI02_A_2022224170410_O20763_02_T07852_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.12/GEDI01_B_2022224153120_O20762_02_T06428_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.12/GEDI01_B_2022224153120_O20762_02_T06428_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.12/GEDI02_A_2022224153120_O20762_02_T06428_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.12/GEDI02_A_2022224153120_O20762_02_T06428_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.12/GEDI01_B_2022224135830_O20761_02_T09273_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.12/GEDI01_B_2022224135830_O20761_02_T09273_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.12/GEDI02_A_2022224135830_O20761_02_T09273_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.12/GEDI02_A_2022224135830_O20761_02_T09273_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.11/GEDI01_B_2022223144600_O20746_02_T07024_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.11/GEDI01_B_2022223144600_O20746_02_T07024_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.11/GEDI02_A_2022223144600_O20746_02_T07024_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.11/GEDI02_A_2022223144600_O20746_02_T07024_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.10/GEDI01_B_2022222214450_O20735_03_T00357_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.10/GEDI01_B_2022222214450_O20735_03_T00357_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.10/GEDI02_A_2022222214450_O20735_03_T00357_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.10/GEDI02_A_2022222214450_O20735_03_T00357_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.10/GEDI01_B_2022222183910_O20733_02_T01931_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.10/GEDI01_B_2022222183910_O20733_02_T01931_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.10/GEDI02_A_2022222183910_O20733_02_T01931_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.10/GEDI02_A_2022222183910_O20733_02_T01931_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.10/GEDI01_B_2022222153330_O20731_02_T06198_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.10/GEDI01_B_2022222153330_O20731_02_T06198_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.10/GEDI02_A_2022222153330_O20731_02_T06198_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.10/GEDI02_A_2022222153330_O20731_02_T06198_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.09/GEDI01_B_2022221192645_O20718_03_T11066_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.09/GEDI01_B_2022221192645_O20718_03_T11066_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.09/GEDI02_A_2022221192645_O20718_03_T11066_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.09/GEDI02_A_2022221192645_O20718_03_T11066_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.09/GEDI01_B_2022221162106_O20716_02_T06795_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.09/GEDI01_B_2022221162106_O20716_02_T06795_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.09/GEDI02_A_2022221162106_O20716_02_T06795_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.09/GEDI02_A_2022221162106_O20716_02_T06795_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.09/GEDI01_B_2022221144816_O20715_02_T03948_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.09/GEDI01_B_2022221144816_O20715_02_T03948_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.09/GEDI02_A_2022221144816_O20715_02_T03948_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.09/GEDI02_A_2022221144816_O20715_02_T03948_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.08/GEDI01_B_2022220201422_O20703_03_T07241_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.08/GEDI01_B_2022220201422_O20703_03_T07241_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.08/GEDI02_A_2022220201422_O20703_03_T07241_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.08/GEDI02_A_2022220201422_O20703_03_T07241_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.08/GEDI01_B_2022220153553_O20700_02_T10237_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.08/GEDI01_B_2022220153553_O20700_02_T10237_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.08/GEDI02_A_2022220153553_O20700_02_T10237_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.08/GEDI02_A_2022220153553_O20700_02_T10237_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.07/GEDI01_B_2022219223448_O20689_03_T02147_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.07/GEDI01_B_2022219223448_O20689_03_T02147_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.07/GEDI02_A_2022219223448_O20689_03_T02147_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.07/GEDI02_A_2022219223448_O20689_03_T02147_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.07/GEDI01_B_2022219210158_O20688_03_T07838_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.07/GEDI01_B_2022219210158_O20688_03_T07838_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.07/GEDI02_A_2022219210158_O20688_03_T07838_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.07/GEDI02_A_2022219210158_O20688_03_T07838_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.07/GEDI01_B_2022219162330_O20685_02_T07835_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.07/GEDI01_B_2022219162330_O20685_02_T07835_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.07/GEDI02_A_2022219162330_O20685_02_T07835_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.07/GEDI02_A_2022219162330_O20685_02_T07835_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.07/GEDI01_B_2022219145040_O20684_02_T06411_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.07/GEDI01_B_2022219145040_O20684_02_T06411_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.07/GEDI02_A_2022219145040_O20684_02_T06411_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.07/GEDI02_A_2022219145040_O20684_02_T06411_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.07/GEDI01_B_2022219005514_O20675_03_T05438_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.07/GEDI01_B_2022219005514_O20675_03_T05438_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.07/GEDI02_A_2022219005514_O20675_03_T05438_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.07/GEDI02_A_2022219005514_O20675_03_T05438_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.06/GEDI01_B_2022218214935_O20673_03_T09705_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.06/GEDI01_B_2022218214935_O20673_03_T09705_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.06/GEDI02_A_2022218214935_O20673_03_T09705_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.06/GEDI02_A_2022218214935_O20673_03_T09705_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.06/GEDI01_B_2022218184355_O20671_02_T04011_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.06/GEDI01_B_2022218184355_O20671_02_T04011_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.06/GEDI02_A_2022218184355_O20671_02_T04011_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.06/GEDI02_A_2022218184355_O20671_02_T04011_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.06/GEDI01_B_2022218014249_O20660_03_T05882_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.06/GEDI01_B_2022218014249_O20660_03_T05882_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.06/GEDI02_A_2022218014249_O20660_03_T05882_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.06/GEDI02_A_2022218014249_O20660_03_T05882_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.05/GEDI01_B_2022217223710_O20658_03_T01764_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.05/GEDI01_B_2022217223710_O20658_03_T01764_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.05/GEDI02_A_2022217223710_O20658_03_T01764_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.05/GEDI02_A_2022217223710_O20658_03_T01764_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.05/GEDI01_B_2022217210421_O20657_03_T01916_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.05/GEDI01_B_2022217210421_O20657_03_T01916_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.05/GEDI02_A_2022217210421_O20657_03_T01916_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.05/GEDI02_A_2022217210421_O20657_03_T01916_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.05/GEDI01_B_2022217175841_O20655_02_T06030_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.05/GEDI01_B_2022217175841_O20655_02_T06030_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.05/GEDI02_A_2022217175841_O20655_02_T06030_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.05/GEDI02_A_2022217175841_O20655_02_T06030_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.04/GEDI01_B_2022216232445_O20643_03_T02361_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.04/GEDI01_B_2022216232445_O20643_03_T02361_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.04/GEDI02_A_2022216232445_O20643_03_T02361_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.04/GEDI02_A_2022216232445_O20643_03_T02361_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.04/GEDI01_B_2022216215156_O20642_03_T05206_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.04/GEDI01_B_2022216215156_O20642_03_T05206_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.04/GEDI02_A_2022216215156_O20642_03_T05206_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.04/GEDI02_A_2022216215156_O20642_03_T05206_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.04/GEDI01_B_2022216201906_O20641_02_T00936_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.04/GEDI01_B_2022216201906_O20641_02_T00936_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.04/GEDI02_A_2022216201906_O20641_02_T00936_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.04/GEDI02_A_2022216201906_O20641_02_T00936_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.04/GEDI01_B_2022216184616_O20640_02_T09320_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.04/GEDI01_B_2022216184616_O20640_02_T09320_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.04/GEDI02_A_2022216184616_O20640_02_T09320_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.04/GEDI02_A_2022216184616_O20640_02_T09320_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.03/GEDI01_B_2022215210640_O20626_02_T07072_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.03/GEDI01_B_2022215210640_O20626_02_T07072_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.03/GEDI02_A_2022215210640_O20626_02_T07072_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.03/GEDI02_A_2022215210640_O20626_02_T07072_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.02/GEDI01_B_2022214232704_O20612_03_T10516_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.02/GEDI01_B_2022214232704_O20612_03_T10516_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.02/GEDI02_A_2022214232704_O20612_03_T10516_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.02/GEDI02_A_2022214232704_O20612_03_T10516_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.02/GEDI01_B_2022214202125_O20610_02_T00706_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.02/GEDI01_B_2022214202125_O20610_02_T00706_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.02/GEDI02_A_2022214202125_O20610_02_T00706_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.02/GEDI02_A_2022214202125_O20610_02_T00706_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.02/GEDI01_B_2022214184835_O20609_02_T09090_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.02/GEDI01_B_2022214184835_O20609_02_T09090_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.02/GEDI02_A_2022214184835_O20609_02_T09090_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.02/GEDI02_A_2022214184835_O20609_02_T09090_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.02/GEDI01_B_2022214014728_O20598_03_T08268_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.02/GEDI01_B_2022214014728_O20598_03_T08268_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.02/GEDI02_A_2022214014728_O20598_03_T08268_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.02/GEDI02_A_2022214014728_O20598_03_T08268_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.02/GEDI01_B_2022214001438_O20597_03_T08267_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.02/GEDI01_B_2022214001438_O20597_03_T08267_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.02/GEDI02_A_2022214001438_O20597_03_T08267_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.02/GEDI02_A_2022214001438_O20597_03_T08267_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.01/GEDI01_B_2022213224147_O20596_03_T06843_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.01/GEDI01_B_2022213224147_O20596_03_T06843_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.01/GEDI02_A_2022213224147_O20596_03_T06843_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.01/GEDI02_A_2022213224147_O20596_03_T06843_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.01/GEDI01_B_2022213210858_O20595_02_T09688_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.01/GEDI01_B_2022213210858_O20595_02_T09688_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.01/GEDI02_A_2022213210858_O20595_02_T09688_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.01/GEDI02_A_2022213210858_O20595_02_T09688_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.01/GEDI01_B_2022213180318_O20593_02_T08416_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.08.01/GEDI01_B_2022213180318_O20593_02_T08416_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.01/GEDI02_A_2022213180318_O20593_02_T08416_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.08.01/GEDI02_A_2022213180318_O20593_02_T08416_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.31/GEDI01_B_2022212014943_O20567_03_T03616_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.31/GEDI01_B_2022212014943_O20567_03_T03616_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.31/GEDI02_A_2022212014943_O20567_03_T03616_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.31/GEDI02_A_2022212014943_O20567_03_T03616_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.31/GEDI01_B_2022212001653_O20566_03_T10883_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.31/GEDI01_B_2022212001653_O20566_03_T10883_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.31/GEDI02_A_2022212001653_O20566_03_T10883_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.31/GEDI02_A_2022212001653_O20566_03_T10883_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.30/GEDI01_B_2022211193823_O20563_02_T03765_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.30/GEDI01_B_2022211193823_O20563_02_T03765_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.30/GEDI02_A_2022211193823_O20563_02_T03765_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.30/GEDI02_A_2022211193823_O20563_02_T03765_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.30/GEDI01_B_2022211041005_O20553_03_T08483_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.30/GEDI01_B_2022211041005_O20553_03_T08483_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.30/GEDI02_A_2022211041005_O20553_03_T08483_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.30/GEDI02_A_2022211041005_O20553_03_T08483_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.30/GEDI01_B_2022211023715_O20552_03_T07059_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.30/GEDI01_B_2022211023715_O20552_03_T07059_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.30/GEDI02_A_2022211023715_O20552_03_T07059_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.30/GEDI02_A_2022211023715_O20552_03_T07059_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.29/GEDI01_B_2022210185305_O20547_02_T08630_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.29/GEDI01_B_2022210185305_O20547_02_T08630_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.29/GEDI02_A_2022210185305_O20547_02_T08630_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.29/GEDI02_A_2022210185305_O20547_02_T08630_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.29/GEDI01_B_2022210032446_O20537_03_T07656_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.29/GEDI01_B_2022210032446_O20537_03_T07656_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.29/GEDI02_A_2022210032446_O20537_03_T07656_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.29/GEDI02_A_2022210032446_O20537_03_T07656_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.29/GEDI01_B_2022210015156_O20536_03_T06232_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.29/GEDI01_B_2022210015156_O20536_03_T06232_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.29/GEDI02_A_2022210015156_O20536_03_T06232_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.29/GEDI02_A_2022210015156_O20536_03_T06232_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.29/GEDI01_B_2022210001906_O20535_03_T09077_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.29/GEDI01_B_2022210001906_O20535_03_T09077_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.29/GEDI02_A_2022210001906_O20535_03_T09077_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.29/GEDI02_A_2022210001906_O20535_03_T09077_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.28/GEDI01_B_2022209224616_O20534_02_T10652_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.28/GEDI01_B_2022209224616_O20534_02_T10652_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.28/GEDI02_A_2022209224616_O20534_02_T10652_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.28/GEDI02_A_2022209224616_O20534_02_T10652_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.28/GEDI01_B_2022209194036_O20532_02_T06381_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.28/GEDI01_B_2022209194036_O20532_02_T06381_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.28/GEDI02_A_2022209194036_O20532_02_T06381_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.28/GEDI02_A_2022209194036_O20532_02_T06381_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.28/GEDI01_B_2022209041217_O20522_03_T11099_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.28/GEDI01_B_2022209041217_O20522_03_T11099_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.28/GEDI02_A_2022209041217_O20522_03_T11099_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.28/GEDI02_A_2022209041217_O20522_03_T11099_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.27/GEDI01_B_2022208233346_O20519_02_T09673_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.27/GEDI01_B_2022208233346_O20519_02_T09673_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.27/GEDI02_A_2022208233346_O20519_02_T09673_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.27/GEDI02_A_2022208233346_O20519_02_T09673_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.27/GEDI01_B_2022208032656_O20506_03_T10272_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.27/GEDI01_B_2022208032656_O20506_03_T10272_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.27/GEDI02_A_2022208032656_O20506_03_T10272_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.27/GEDI02_A_2022208032656_O20506_03_T10272_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.27/GEDI01_B_2022208015406_O20505_03_T07425_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.27/GEDI01_B_2022208015406_O20505_03_T07425_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.27/GEDI02_A_2022208015406_O20505_03_T07425_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.27/GEDI02_A_2022208015406_O20505_03_T07425_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.26/GEDI01_B_2022207224826_O20503_02_T08846_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.26/GEDI01_B_2022207224826_O20503_02_T08846_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.26/GEDI02_A_2022207224826_O20503_02_T08846_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.26/GEDI02_A_2022207224826_O20503_02_T08846_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.26/GEDI01_B_2022207054716_O20492_03_T06448_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.26/GEDI01_B_2022207054716_O20492_03_T06448_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.26/GEDI02_A_2022207054716_O20492_03_T06448_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.26/GEDI02_A_2022207054716_O20492_03_T06448_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.26/GEDI01_B_2022207041426_O20491_03_T09293_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.26/GEDI01_B_2022207041426_O20491_03_T09293_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.26/GEDI02_A_2022207041426_O20491_03_T09293_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.26/GEDI02_A_2022207041426_O20491_03_T09293_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.25/GEDI01_B_2022206220304_O20487_02_T09442_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.25/GEDI01_B_2022206220304_O20487_02_T09442_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.25/GEDI02_A_2022206220304_O20487_02_T09442_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.25/GEDI02_A_2022206220304_O20487_02_T09442_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.25/GEDI01_B_2022206203014_O20486_02_T11017_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.25/GEDI01_B_2022206203014_O20486_02_T11017_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.25/GEDI02_A_2022206203014_O20486_02_T11017_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.25/GEDI02_A_2022206203014_O20486_02_T11017_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.25/GEDI01_B_2022206050154_O20476_03_T07044_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.25/GEDI01_B_2022206050154_O20476_03_T07044_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.25/GEDI02_A_2022206050154_O20476_03_T07044_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.25/GEDI02_A_2022206050154_O20476_03_T07044_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.25/GEDI01_B_2022206032904_O20475_03_T01504_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.25/GEDI01_B_2022206032904_O20475_03_T01504_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.25/GEDI02_A_2022206032904_O20475_03_T01504_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.25/GEDI02_A_2022206032904_O20475_03_T01504_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.25/GEDI01_B_2022206015614_O20474_03_T04349_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.25/GEDI01_B_2022206015614_O20474_03_T04349_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.25/GEDI02_A_2022206015614_O20474_03_T04349_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.25/GEDI02_A_2022206015614_O20474_03_T04349_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.24/GEDI01_B_2022205211744_O20471_02_T08615_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.24/GEDI01_B_2022205211744_O20471_02_T08615_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.24/GEDI02_A_2022205211744_O20471_02_T08615_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.24/GEDI02_A_2022205211744_O20471_02_T08615_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.24/GEDI01_B_2022205054923_O20461_03_T00526_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.24/GEDI01_B_2022205054923_O20461_03_T00526_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.24/GEDI02_A_2022205054923_O20461_03_T00526_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.24/GEDI02_A_2022205054923_O20461_03_T00526_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.24/GEDI01_B_2022205024343_O20459_03_T02100_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.24/GEDI01_B_2022205024343_O20459_03_T02100_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.24/GEDI02_A_2022205024343_O20459_03_T02100_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.24/GEDI02_A_2022205024343_O20459_03_T02100_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.23/GEDI01_B_2022204203222_O20455_02_T07941_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.23/GEDI01_B_2022204203222_O20455_02_T07941_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.23/GEDI02_A_2022204203222_O20455_02_T07941_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.23/GEDI02_A_2022204203222_O20455_02_T07941_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.23/GEDI01_B_2022204063650_O20446_03_T05392_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.23/GEDI01_B_2022204063650_O20446_03_T05392_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.23/GEDI02_A_2022204063650_O20446_03_T05392_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.23/GEDI02_A_2022204063650_O20446_03_T05392_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.23/GEDI01_B_2022204002530_O20442_02_T05541_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.23/GEDI01_B_2022204002530_O20442_02_T05541_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.23/GEDI02_A_2022204002530_O20442_02_T05541_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.23/GEDI02_A_2022204002530_O20442_02_T05541_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.22/GEDI01_B_2022203225239_O20441_02_T06963_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.22/GEDI01_B_2022203225239_O20441_02_T06963_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.22/GEDI02_A_2022203225239_O20441_02_T06963_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.22/GEDI02_A_2022203225239_O20441_02_T06963_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.22/GEDI01_B_2022203211948_O20440_02_T09808_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.22/GEDI01_B_2022203211948_O20440_02_T09808_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.22/GEDI02_A_2022203211948_O20440_02_T09808_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.22/GEDI02_A_2022203211948_O20440_02_T09808_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.22/GEDI01_B_2022203055126_O20430_03_T07411_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.22/GEDI01_B_2022203055126_O20430_03_T07411_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.22/GEDI02_A_2022203055126_O20430_03_T07411_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.22/GEDI02_A_2022203055126_O20430_03_T07411_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.22/GEDI01_B_2022203024546_O20428_03_T10408_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.22/GEDI01_B_2022203024546_O20428_03_T10408_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.22/GEDI02_A_2022203024546_O20428_03_T10408_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.22/GEDI02_A_2022203024546_O20428_03_T10408_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.21/GEDI01_B_2022202220715_O20425_02_T06136_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.21/GEDI01_B_2022202220715_O20425_02_T06136_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.21/GEDI02_A_2022202220715_O20425_02_T06136_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.21/GEDI02_A_2022202220715_O20425_02_T06136_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.21/GEDI01_B_2022202050602_O20414_03_T00892_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.21/GEDI01_B_2022202050602_O20414_03_T00892_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.21/GEDI02_A_2022202050602_O20414_03_T00892_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.21/GEDI02_A_2022202050602_O20414_03_T00892_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.21/GEDI01_B_2022202020021_O20412_02_T02466_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.21/GEDI01_B_2022202020021_O20412_02_T02466_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.21/GEDI02_A_2022202020021_O20412_02_T02466_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.21/GEDI02_A_2022202020021_O20412_02_T02466_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.20/GEDI01_B_2022201225441_O20410_02_T01041_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.20/GEDI01_B_2022201225441_O20410_02_T01041_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.20/GEDI02_A_2022201225441_O20410_02_T01041_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.20/GEDI02_A_2022201225441_O20410_02_T01041_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.20/GEDI01_B_2022201055327_O20399_03_T07334_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.20/GEDI01_B_2022201055327_O20399_03_T07334_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.20/GEDI02_A_2022201055327_O20399_03_T07334_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.20/GEDI02_A_2022201055327_O20399_03_T07334_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.19/GEDI01_B_2022200234206_O20395_02_T07330_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.19/GEDI01_B_2022200234206_O20395_02_T07330_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.19/GEDI02_A_2022200234206_O20395_02_T07330_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.19/GEDI02_A_2022200234206_O20395_02_T07330_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.19/GEDI01_B_2022200081341_O20385_03_T09049_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.19/GEDI01_B_2022200081341_O20385_03_T09049_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.19/GEDI02_A_2022200081341_O20385_03_T09049_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.19/GEDI02_A_2022200081341_O20385_03_T09049_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.19/GEDI01_B_2022200064051_O20384_03_T10624_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.19/GEDI01_B_2022200064051_O20384_03_T10624_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.19/GEDI02_A_2022200064051_O20384_03_T10624_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.19/GEDI02_A_2022200064051_O20384_03_T10624_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.19/GEDI01_B_2022200050800_O20383_03_T07777_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.19/GEDI01_B_2022200050800_O20383_03_T07777_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.19/GEDI02_A_2022200050800_O20383_03_T07777_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.19/GEDI02_A_2022200050800_O20383_03_T07777_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.19/GEDI01_B_2022200033510_O20382_02_T06353_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.19/GEDI01_B_2022200033510_O20382_02_T06353_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.19/GEDI02_A_2022200033510_O20382_02_T06353_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.19/GEDI02_A_2022200033510_O20382_02_T06353_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.18/GEDI01_B_2022199090106_O20370_03_T03954_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.18/GEDI01_B_2022199090106_O20370_03_T03954_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.18/GEDI02_A_2022199090106_O20370_03_T03954_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.18/GEDI02_A_2022199090106_O20370_03_T03954_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.18/GEDI01_B_2022199042234_O20367_03_T06950_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.18/GEDI01_B_2022199042234_O20367_03_T06950_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.18/GEDI02_A_2022199042234_O20367_03_T06950_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.18/GEDI02_A_2022199042234_O20367_03_T06950_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.18/GEDI01_B_2022199024943_O20366_02_T09795_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.18/GEDI01_B_2022199024943_O20366_02_T09795_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.18/GEDI02_A_2022199024943_O20366_02_T09795_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.18/GEDI02_A_2022199024943_O20366_02_T09795_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.17/GEDI01_B_2022198020414_O20350_02_T06275_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.17/GEDI01_B_2022198020414_O20350_02_T06275_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.17/GEDI02_A_2022198020414_O20350_02_T06275_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.17/GEDI02_A_2022198020414_O20350_02_T06275_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.15/GEDI01_B_2022196064436_O20322_03_T07318_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.15/GEDI01_B_2022196064436_O20322_03_T07318_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.15/GEDI02_A_2022196064436_O20322_03_T07318_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.15/GEDI02_A_2022196064436_O20322_03_T07318_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.15/GEDI01_B_2022196033855_O20320_02_T03047_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.15/GEDI01_B_2022196033855_O20320_02_T03047_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.15/GEDI02_A_2022196033855_O20320_02_T03047_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.15/GEDI02_A_2022196033855_O20320_02_T03047_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.15/GEDI01_B_2022196020604_O20319_02_T01776_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.15/GEDI01_B_2022196020604_O20319_02_T01776_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.15/GEDI02_A_2022196020604_O20319_02_T01776_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.15/GEDI02_A_2022196020604_O20319_02_T01776_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.14/GEDI01_B_2022195103737_O20309_03_T03495_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.14/GEDI01_B_2022195103737_O20309_03_T03495_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.14/GEDI02_A_2022195103737_O20309_03_T03495_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.14/GEDI02_A_2022195103737_O20309_03_T03495_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.14/GEDI01_B_2022195025324_O20304_02_T06489_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.14/GEDI01_B_2022195025324_O20304_02_T06489_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.14/GEDI02_A_2022195025324_O20304_02_T06489_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.14/GEDI02_A_2022195025324_O20304_02_T06489_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.13/GEDI01_B_2022194095206_O20293_03_T06937_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.13/GEDI01_B_2022194095206_O20293_03_T06937_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.13/GEDI02_A_2022194095206_O20293_03_T06937_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.13/GEDI02_A_2022194095206_O20293_03_T06937_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.12/GEDI01_B_2022193090633_O20277_03_T08956_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.12/GEDI01_B_2022193090633_O20277_03_T08956_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.12/GEDI02_A_2022193090633_O20277_03_T08956_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.12/GEDI02_A_2022193090633_O20277_03_T08956_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.12/GEDI01_B_2022193042801_O20274_02_T02144_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.12/GEDI01_B_2022193042801_O20274_02_T02144_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.12/GEDI02_A_2022193042801_O20274_02_T02144_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.12/GEDI02_A_2022193042801_O20274_02_T02144_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.11/GEDI01_B_2022192112641_O20263_03_T09554_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.11/GEDI01_B_2022192112641_O20263_03_T09554_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.11/GEDI02_A_2022192112641_O20263_03_T09554_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.11/GEDI02_A_2022192112641_O20263_03_T09554_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.11/GEDI01_B_2022192095350_O20262_03_T09553_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.11/GEDI01_B_2022192095350_O20262_03_T09553_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.11/GEDI02_A_2022192095350_O20262_03_T09553_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.11/GEDI02_A_2022192095350_O20262_03_T09553_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.11/GEDI01_B_2022192064808_O20260_02_T04012_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.11/GEDI01_B_2022192064808_O20260_02_T04012_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.11/GEDI02_A_2022192064808_O20260_02_T04012_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.11/GEDI02_A_2022192064808_O20260_02_T04012_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.11/GEDI01_B_2022192051518_O20259_02_T02741_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.11/GEDI01_B_2022192051518_O20259_02_T02741_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.11/GEDI02_A_2022192051518_O20259_02_T02741_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.11/GEDI02_A_2022192051518_O20259_02_T02741_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.11/GEDI01_B_2022192020936_O20257_02_T01316_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.11/GEDI01_B_2022192020936_O20257_02_T01316_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.11/GEDI02_A_2022192020936_O20257_02_T01316_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.11/GEDI02_A_2022192020936_O20257_02_T01316_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.10/GEDI01_B_2022191121358_O20248_03_T01766_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.10/GEDI01_B_2022191121358_O20248_03_T01766_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.10/GEDI02_A_2022191121358_O20248_03_T01766_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.10/GEDI02_A_2022191121358_O20248_03_T01766_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.10/GEDI01_B_2022191104107_O20247_03_T08727_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.10/GEDI01_B_2022191104107_O20247_03_T08727_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.10/GEDI02_A_2022191104107_O20247_03_T08727_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.10/GEDI02_A_2022191104107_O20247_03_T08727_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.08/GEDI01_B_2022189025832_O20211_02_T05799_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.08/GEDI01_B_2022189025832_O20211_02_T05799_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.08/GEDI02_A_2022189025832_O20211_02_T05799_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.08/GEDI02_A_2022189025832_O20211_02_T05799_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.07/GEDI01_B_2022188130252_O20202_03_T04826_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.07/GEDI01_B_2022188130252_O20202_03_T04826_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.07/GEDI02_A_2022188130252_O20202_03_T04826_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.07/GEDI02_A_2022188130252_O20202_03_T04826_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.07/GEDI01_B_2022188034546_O20196_02_T03703_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.07/GEDI01_B_2022188034546_O20196_02_T03703_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.07/GEDI02_A_2022188034546_O20196_02_T03703_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.07/GEDI02_A_2022188034546_O20196_02_T03703_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.06/GEDI01_B_2022187121715_O20186_03_T09691_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.06/GEDI01_B_2022187121715_O20186_03_T09691_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.06/GEDI02_A_2022187121715_O20186_03_T09691_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.06/GEDI02_A_2022187121715_O20186_03_T09691_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.06/GEDI01_B_2022187104424_O20185_03_T05574_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.06/GEDI01_B_2022187104424_O20185_03_T05574_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.06/GEDI02_A_2022187104424_O20185_03_T05574_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.06/GEDI02_A_2022187104424_O20185_03_T05574_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.06/GEDI01_B_2022187091133_O20184_03_T01304_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.06/GEDI01_B_2022187091133_O20184_03_T01304_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.06/GEDI02_A_2022187091133_O20184_03_T01304_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.06/GEDI02_A_2022187091133_O20184_03_T01304_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.06/GEDI01_B_2022187060551_O20182_02_T09993_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.06/GEDI01_B_2022187060551_O20182_02_T09993_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.06/GEDI02_A_2022187060551_O20182_02_T09993_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.06/GEDI02_A_2022187060551_O20182_02_T09993_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.04/GEDI01_B_2022185091308_O20153_02_T08342_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.04/GEDI01_B_2022185091308_O20153_02_T08342_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.04/GEDI02_A_2022185091308_O20153_02_T08342_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.04/GEDI02_A_2022185091308_O20153_02_T08342_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.04/GEDI01_B_2022185060726_O20151_02_T04071_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.04/GEDI01_B_2022185060726_O20151_02_T04071_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.04/GEDI02_A_2022185060726_O20151_02_T04071_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.04/GEDI02_A_2022185060726_O20151_02_T04071_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.03/GEDI01_B_2022184065438_O20136_02_T08937_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.03/GEDI01_B_2022184065438_O20136_02_T08937_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.03/GEDI02_A_2022184065438_O20136_02_T08937_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.03/GEDI02_A_2022184065438_O20136_02_T08937_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.02/GEDI01_B_2022183104732_O20123_03_T00998_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.02/GEDI01_B_2022183104732_O20123_03_T00998_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.02/GEDI02_A_2022183104732_O20123_03_T00998_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.02/GEDI02_A_2022183104732_O20123_03_T00998_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.02/GEDI01_B_2022183091441_O20122_02_T03843_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.02/GEDI01_B_2022183091441_O20122_02_T03843_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.02/GEDI02_A_2022183091441_O20122_02_T03843_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.02/GEDI02_A_2022183091441_O20122_02_T03843_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.01/GEDI01_B_2022182130735_O20109_03_T04442_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.07.01/GEDI01_B_2022182130735_O20109_03_T04442_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.01/GEDI02_A_2022182130735_O20109_03_T04442_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.07.01/GEDI02_A_2022182130735_O20109_03_T04442_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.30/GEDI01_B_2022181135445_O20094_03_T07885_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.30/GEDI01_B_2022181135445_O20094_03_T07885_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.30/GEDI02_A_2022181135445_O20094_03_T07885_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.30/GEDI02_A_2022181135445_O20094_03_T07885_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.30/GEDI01_B_2022181122154_O20093_03_T06461_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.30/GEDI01_B_2022181122154_O20093_03_T06461_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.30/GEDI02_A_2022181122154_O20093_03_T06461_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.30/GEDI02_A_2022181122154_O20093_03_T06461_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.30/GEDI01_B_2022181104902_O20092_02_T06460_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.30/GEDI01_B_2022181104902_O20092_02_T06460_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.30/GEDI02_A_2022181104902_O20092_02_T06460_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.30/GEDI02_A_2022181104902_O20092_02_T06460_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.30/GEDI01_B_2022181091611_O20091_02_T10881_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.30/GEDI01_B_2022181091611_O20091_02_T10881_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.30/GEDI02_A_2022181091611_O20091_02_T10881_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.30/GEDI02_A_2022181091611_O20091_02_T10881_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.30/GEDI01_B_2022181074320_O20090_02_T08034_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.30/GEDI01_B_2022181074320_O20090_02_T08034_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.30/GEDI02_A_2022181074320_O20090_02_T08034_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.30/GEDI02_A_2022181074320_O20090_02_T08034_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.29/GEDI01_B_2022180113612_O20077_02_T01518_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.29/GEDI01_B_2022180113612_O20077_02_T01518_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.29/GEDI02_A_2022180113612_O20077_02_T01518_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.29/GEDI02_A_2022180113612_O20077_02_T01518_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.28/GEDI01_B_2022179170155_O20065_03_T07657_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.28/GEDI01_B_2022179170155_O20065_03_T07657_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.28/GEDI02_A_2022179170155_O20065_03_T07657_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.28/GEDI02_A_2022179170155_O20065_03_T07657_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.26/GEDI01_B_2022177135735_O20032_03_T07578_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.26/GEDI01_B_2022177135735_O20032_03_T07578_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.26/GEDI02_A_2022177135735_O20032_03_T07578_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.26/GEDI02_A_2022177135735_O20032_03_T07578_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.22/GEDI01_B_2022173183918_O19973_03_T04275_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.22/GEDI01_B_2022173183918_O19973_03_T04275_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.22/GEDI02_A_2022173183918_O19973_03_T04275_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.22/GEDI02_A_2022173183918_O19973_03_T04275_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.21/GEDI01_B_2022172192635_O19958_03_T04872_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.21/GEDI01_B_2022172192635_O19958_03_T04872_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.21/GEDI02_A_2022172192635_O19958_03_T04872_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.21/GEDI02_A_2022172192635_O19958_03_T04872_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.21/GEDI01_B_2022172175343_O19957_03_T00602_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.21/GEDI01_B_2022172175343_O19957_03_T00602_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.21/GEDI02_A_2022172175343_O19957_03_T00602_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.21/GEDI02_A_2022172175343_O19957_03_T00602_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.21/GEDI01_B_2022172131509_O19954_02_T07867_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.21/GEDI01_B_2022172131509_O19954_02_T07867_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.21/GEDI02_A_2022172131509_O19954_02_T07867_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.21/GEDI02_A_2022172131509_O19954_02_T07867_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.19/GEDI01_B_2022170114349_O19922_02_T02097_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.19/GEDI01_B_2022170114349_O19922_02_T02097_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.19/GEDI02_A_2022170114349_O19922_02_T02097_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.19/GEDI02_A_2022170114349_O19922_02_T02097_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.18/GEDI01_B_2022169153638_O19909_02_T06659_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.18/GEDI01_B_2022169153638_O19909_02_T06659_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.18/GEDI02_A_2022169153638_O19909_02_T06659_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.18/GEDI02_A_2022169153638_O19909_02_T06659_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.16/GEDI01_B_2022167171058_O19879_03_T06736_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.16/GEDI01_B_2022167171058_O19879_03_T06736_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.16/GEDI02_A_2022167171058_O19879_03_T06736_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.16/GEDI02_A_2022167171058_O19879_03_T06736_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.16/GEDI01_B_2022167123226_O19876_02_T06733_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.16/GEDI01_B_2022167123226_O19876_02_T06733_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.16/GEDI02_A_2022167123226_O19876_02_T06733_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.16/GEDI02_A_2022167123226_O19876_02_T06733_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.15/GEDI01_B_2022166210402_O19866_03_T04336_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.15/GEDI01_B_2022166210402_O19866_03_T04336_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.15/GEDI02_A_2022166210402_O19866_03_T04336_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.15/GEDI02_A_2022166210402_O19866_03_T04336_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.15/GEDI01_B_2022166131950_O19861_02_T07483_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.15/GEDI01_B_2022166131950_O19861_02_T07483_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.15/GEDI02_A_2022166131950_O19861_02_T07483_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.15/GEDI02_A_2022166131950_O19861_02_T07483_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.13/GEDI01_B_2022164223847_O19836_03_T02684_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.13/GEDI01_B_2022164223847_O19836_03_T02684_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.13/GEDI02_A_2022164223847_O19836_03_T02684_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.13/GEDI02_A_2022164223847_O19836_03_T02684_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.13/GEDI01_B_2022164193306_O19834_03_T01259_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.13/GEDI01_B_2022164193306_O19834_03_T01259_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.13/GEDI02_A_2022164193306_O19834_03_T01259_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.13/GEDI02_A_2022164193306_O19834_03_T01259_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.11/GEDI01_B_2022162193457_O19803_03_T05451_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.11/GEDI01_B_2022162193457_O19803_03_T05451_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.11/GEDI02_A_2022162193457_O19803_03_T05451_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.11/GEDI02_A_2022162193457_O19803_03_T05451_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.10/GEDI01_B_2022161202216_O19788_03_T05895_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.10/GEDI01_B_2022161202216_O19788_03_T05895_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.10/GEDI02_A_2022161202216_O19788_03_T05895_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.10/GEDI02_A_2022161202216_O19788_03_T05895_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.10/GEDI01_B_2022161184925_O19787_02_T03048_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.10/GEDI01_B_2022161184925_O19787_02_T03048_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.10/GEDI02_A_2022161184925_O19787_02_T03048_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.10/GEDI02_A_2022161184925_O19787_02_T03048_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.10/GEDI01_B_2022161171634_O19786_02_T10315_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.10/GEDI01_B_2022161171634_O19786_02_T10315_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.10/GEDI02_A_2022161171634_O19786_02_T10315_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.10/GEDI02_A_2022161171634_O19786_02_T10315_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.09/GEDI01_B_2022160224226_O19774_03_T07916_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.09/GEDI01_B_2022160224226_O19774_03_T07916_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.09/GEDI02_A_2022160224226_O19774_03_T07916_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.09/GEDI02_A_2022160224226_O19774_03_T07916_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.09/GEDI01_B_2022160193644_O19772_03_T09337_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.09/GEDI01_B_2022160193644_O19772_03_T09337_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.09/GEDI02_A_2022160193644_O19772_03_T09337_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.09/GEDI02_A_2022160193644_O19772_03_T09337_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.08/GEDI01_B_2022159171822_O19755_02_T05816_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.08/GEDI01_B_2022159171822_O19755_02_T05816_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.08/GEDI02_A_2022159171822_O19755_02_T05816_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.08/GEDI02_A_2022159171822_O19755_02_T05816_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.08/GEDI01_B_2022159154531_O19754_02_T04392_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.08/GEDI01_B_2022159154531_O19754_02_T04392_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.08/GEDI02_A_2022159154531_O19754_02_T04392_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.08/GEDI02_A_2022159154531_O19754_02_T04392_02_003_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.08/GEDI01_B_2022159001702_O19744_03_T08957_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.08/GEDI01_B_2022159001702_O19744_03_T08957_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.07/GEDI01_B_2022158224411_O19743_03_T10532_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.07/GEDI01_B_2022158224411_O19743_03_T10532_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.07/GEDI01_B_2022158145957_O19738_02_T03565_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.07/GEDI01_B_2022158145957_O19738_02_T03565_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.07/GEDI02_A_2022158145957_O19738_02_T03565_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.07/GEDI02_A_2022158145957_O19738_02_T03565_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.06/GEDI01_B_2022157001845_O19713_03_T07457_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.06/GEDI01_B_2022157001845_O19713_03_T07457_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.06/GEDI02_A_2022157001845_O19713_03_T07457_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.06/GEDI02_A_2022157001845_O19713_03_T07457_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.05/GEDI01_B_2022156211303_O19711_03_T08878_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.05/GEDI01_B_2022156211303_O19711_03_T08878_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.05/GEDI02_A_2022156211303_O19711_03_T08878_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.05/GEDI02_A_2022156211303_O19711_03_T08878_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.03/GEDI01_B_2022154180859_O19678_02_T02954_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.03/GEDI01_B_2022154180859_O19678_02_T02954_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.03/GEDI02_A_2022154180859_O19678_02_T02954_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.03/GEDI02_A_2022154180859_O19678_02_T02954_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.03/GEDI01_B_2022154163608_O19677_02_T01836_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.03/GEDI01_B_2022154163608_O19677_02_T01836_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.03/GEDI02_A_2022154163608_O19677_02_T01836_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.03/GEDI02_A_2022154163608_O19677_02_T01836_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.01/GEDI01_B_2022152194326_O19648_02_T04301_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.06.01/GEDI01_B_2022152194326_O19648_02_T04301_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.01/GEDI02_A_2022152194326_O19648_02_T04301_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.06.01/GEDI02_A_2022152194326_O19648_02_T04301_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.31/GEDI01_B_2022151032913_O19622_03_T09615_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.31/GEDI01_B_2022151032913_O19622_03_T09615_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.31/GEDI02_A_2022151032913_O19622_03_T09615_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.31/GEDI02_A_2022151032913_O19622_03_T09615_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.30/GEDI01_B_2022150211749_O19618_02_T11340_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.30/GEDI01_B_2022150211749_O19618_02_T11340_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.30/GEDI02_A_2022150211749_O19618_02_T11340_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.30/GEDI02_A_2022150211749_O19618_02_T11340_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.30/GEDI01_B_2022150194457_O19617_02_T08493_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.30/GEDI01_B_2022150194457_O19617_02_T08493_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.30/GEDI02_A_2022150194457_O19617_02_T08493_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.30/GEDI02_A_2022150194457_O19617_02_T08493_02_003_03_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.30/GEDI01_B_2022150041625_O19607_03_T08789_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.30/GEDI01_B_2022150041625_O19607_03_T08789_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.30/GEDI01_B_2022150024333_O19606_03_T04672_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.30/GEDI01_B_2022150024333_O19606_03_T04672_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.30/GEDI01_B_2022150011042_O19605_03_T00402_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.30/GEDI01_B_2022150011042_O19605_03_T00402_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.29/GEDI01_B_2022149233751_O19604_02_T03247_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.29/GEDI01_B_2022149233751_O19604_02_T03247_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.28/GEDI01_B_2022148225209_O19588_02_T11111_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.28/GEDI01_B_2022148225209_O19588_02_T11111_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.28/GEDI02_A_2022148225209_O19588_02_T11111_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.28/GEDI02_A_2022148225209_O19588_02_T11111_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.28/GEDI01_B_2022148011208_O19574_03_T01748_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.28/GEDI01_B_2022148011208_O19574_03_T01748_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.28/GEDI02_A_2022148011208_O19574_03_T01748_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.28/GEDI02_A_2022148011208_O19574_03_T01748_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.27/GEDI01_B_2022147050459_O19561_03_T06463_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.27/GEDI01_B_2022147050459_O19561_03_T06463_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.27/GEDI02_A_2022147050459_O19561_03_T06463_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.27/GEDI02_A_2022147050459_O19561_03_T06463_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.27/GEDI01_B_2022147015916_O19559_03_T10883_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.27/GEDI01_B_2022147015916_O19559_03_T10883_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.27/GEDI02_A_2022147015916_O19559_03_T10883_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.27/GEDI02_A_2022147015916_O19559_03_T10883_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.26/GEDI01_B_2022146212041_O19556_02_T09457_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.26/GEDI01_B_2022146212041_O19556_02_T09457_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.26/GEDI02_A_2022146212041_O19556_02_T09457_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.26/GEDI02_A_2022146212041_O19556_02_T09457_02_003_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.26/GEDI01_B_2022146055205_O19546_03_T04214_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.26/GEDI01_B_2022146055205_O19546_03_T04214_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.25/GEDI01_B_2022145020034_O19528_03_T07807_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.25/GEDI01_B_2022145020034_O19528_03_T07807_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.25/GEDI02_A_2022145020034_O19528_03_T07807_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.25/GEDI02_A_2022145020034_O19528_03_T07807_02_003_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.24/GEDI01_B_2022144225451_O19526_02_T05112_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.24/GEDI01_B_2022144225451_O19526_02_T05112_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.24/GEDI01_B_2022144212159_O19525_02_T00842_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.24/GEDI01_B_2022144212159_O19525_02_T00842_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.24/GEDI01_B_2022144011446_O19512_02_T04287_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.24/GEDI01_B_2022144011446_O19512_02_T04287_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.23/GEDI01_B_2022143220903_O19510_02_T02862_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.23/GEDI01_B_2022143220903_O19510_02_T02862_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.22/GEDI01_B_2022142225605_O19495_02_T09151_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.22/GEDI01_B_2022142225605_O19495_02_T09151_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.22/GEDI02_A_2022142225605_O19495_02_T09151_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.22/GEDI02_A_2022142225605_O19495_02_T09151_02_003_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.22/GEDI01_B_2022142212313_O19494_02_T05034_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.22/GEDI01_B_2022142212313_O19494_02_T05034_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.22/GEDI01_B_2022142055433_O19484_03_T11175_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.22/GEDI01_B_2022142055433_O19484_03_T11175_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.22/GEDI02_A_2022142055433_O19484_03_T11175_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.22/GEDI02_A_2022142055433_O19484_03_T11175_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.21/GEDI01_B_2022141234306_O19480_02_T11324_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.21/GEDI01_B_2022141234306_O19480_02_T11324_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.21/GEDI02_A_2022141234306_O19480_02_T11324_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.21/GEDI02_A_2022141234306_O19480_02_T11324_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.19/GEDI01_B_2022139064237_O19438_03_T04580_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.19/GEDI01_B_2022139064237_O19438_03_T04580_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.19/GEDI02_A_2022139064237_O19438_03_T04580_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.19/GEDI02_A_2022139064237_O19438_03_T04580_02_003_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.18/GEDI01_B_2022138090225_O19424_03_T05178_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.18/GEDI01_B_2022138090225_O19424_03_T05178_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.18/GEDI01_B_2022138042348_O19421_03_T11020_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.18/GEDI01_B_2022138042348_O19421_03_T11020_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.17/GEDI01_B_2022137064335_O19407_03_T10195_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.17/GEDI01_B_2022137064335_O19407_03_T10195_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.17/GEDI01_B_2022137051042_O19406_03_T07348_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.17/GEDI01_B_2022137051042_O19406_03_T07348_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.17/GEDI01_B_2022137033750_O19405_02_T03078_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.17/GEDI01_B_2022137033750_O19405_02_T03078_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.17/GEDI01_B_2022137020458_O19404_02_T01807_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.17/GEDI01_B_2022137020458_O19404_02_T01807_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.17/GEDI01_B_2022137003205_O19403_02_T10344_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.17/GEDI01_B_2022137003205_O19403_02_T10344_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.16/GEDI01_B_2022136090323_O19393_03_T05101_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.16/GEDI01_B_2022136090323_O19393_03_T05101_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.16/GEDI02_A_2022136090323_O19393_03_T05101_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.16/GEDI02_A_2022136090323_O19393_03_T05101_02_003_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.16/GEDI01_B_2022136025153_O19389_02_T08096_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.16/GEDI01_B_2022136025153_O19389_02_T08096_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.16/GEDI01_B_2022136011900_O19388_02_T06672_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.16/GEDI01_B_2022136011900_O19388_02_T06672_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.15/GEDI01_B_2022135234608_O19387_02_T09517_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.15/GEDI01_B_2022135234608_O19387_02_T09517_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.15/GEDI01_B_2022135064429_O19376_03_T08542_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.15/GEDI01_B_2022135064429_O19376_03_T08542_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.14/GEDI01_B_2022134103717_O19363_03_T09141_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.14/GEDI01_B_2022134103717_O19363_03_T09141_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.14/GEDI01_B_2022134073137_O19361_03_T07869_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.14/GEDI01_B_2022134073137_O19361_03_T07869_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.14/GEDI01_B_2022134055846_O19360_03_T09291_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.14/GEDI01_B_2022134055846_O19360_03_T09291_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.13/GEDI01_B_2022133081902_O19346_03_T08466_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.13/GEDI01_B_2022133081902_O19346_03_T08466_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.13/GEDI01_B_2022133064612_O19345_03_T07042_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.13/GEDI01_B_2022133064612_O19345_03_T07042_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.13/GEDI01_B_2022133051321_O19344_02_T04195_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.13/GEDI01_B_2022133051321_O19344_02_T04195_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.13/GEDI01_B_2022133034031_O19343_02_T01501_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.13/GEDI01_B_2022133034031_O19343_02_T01501_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.13/GEDI01_B_2022133020741_O19342_02_T05769_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.13/GEDI01_B_2022133020741_O19342_02_T05769_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.12/GEDI01_B_2022132060046_O19329_02_T07791_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.12/GEDI01_B_2022132060046_O19329_02_T07791_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.12/GEDI01_B_2022132042756_O19328_02_T09213_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.12/GEDI01_B_2022132042756_O19328_02_T09213_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.12/GEDI01_B_2022132025505_O19327_02_T10788_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.12/GEDI01_B_2022132025505_O19327_02_T10788_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.12/GEDI01_B_2022132012215_O19326_02_T06365_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.12/GEDI01_B_2022132012215_O19326_02_T06365_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.11/GEDI01_B_2022131082100_O19315_03_T09659_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.11/GEDI01_B_2022131082100_O19315_03_T09659_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.11/GEDI02_A_2022131082100_O19315_03_T09659_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.11/GEDI02_A_2022131082100_O19315_03_T09659_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.11/GEDI01_B_2022131064810_O19314_02_T11234_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.11/GEDI01_B_2022131064810_O19314_02_T11234_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.11/GEDI02_A_2022131064810_O19314_02_T11234_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.11/GEDI02_A_2022131064810_O19314_02_T11234_02_003_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.11/GEDI01_B_2022131034229_O19312_02_T08233_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.11/GEDI01_B_2022131034229_O19312_02_T08233_02_005_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.10/GEDI01_B_2022130090823_O19300_03_T05987_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.10/GEDI01_B_2022130090823_O19300_03_T05987_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.10/GEDI01_B_2022130073533_O19299_03_T05986_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.10/GEDI01_B_2022130073533_O19299_03_T05986_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.10/GEDI02_A_2022130073533_O19299_03_T05986_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.10/GEDI02_A_2022130073533_O19299_03_T05986_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.10/GEDI01_B_2022130060242_O19298_02_T10407_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.10/GEDI01_B_2022130060242_O19298_02_T10407_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.10/GEDI02_A_2022130060242_O19298_02_T10407_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.10/GEDI02_A_2022130060242_O19298_02_T10407_02_003_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.10/GEDI01_B_2022130025702_O19296_02_T06136_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.10/GEDI01_B_2022130025702_O19296_02_T06136_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.09/GEDI01_B_2022129095548_O19285_03_T06584_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.09/GEDI01_B_2022129095548_O19285_03_T06584_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.09/GEDI02_A_2022129095548_O19285_03_T06584_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.09/GEDI02_A_2022129095548_O19285_03_T06584_02_003_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.09/GEDI01_B_2022129065007_O19283_02_T08005_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.09/GEDI01_B_2022129065007_O19283_02_T08005_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.09/GEDI02_A_2022129065007_O19283_02_T08005_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.09/GEDI02_A_2022129065007_O19283_02_T08005_02_003_03_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.09/GEDI01_B_2022129034426_O19281_02_T02464_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.09/GEDI01_B_2022129034426_O19281_02_T02464_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.07/GEDI01_B_2022127130321_O19256_03_T04780_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.07/GEDI01_B_2022127130321_O19256_03_T04780_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.07/GEDI02_A_2022127130321_O19256_03_T04780_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.07/GEDI02_A_2022127130321_O19256_03_T04780_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.07/GEDI01_B_2022127113030_O19255_03_T09048_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.07/GEDI01_B_2022127113030_O19255_03_T09048_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.07/GEDI02_A_2022127113030_O19255_03_T09048_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.07/GEDI02_A_2022127113030_O19255_03_T09048_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.07/GEDI01_B_2022127082449_O19253_02_T04930_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.07/GEDI01_B_2022127082449_O19253_02_T04930_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.07/GEDI02_A_2022127082449_O19253_02_T04930_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.07/GEDI02_A_2022127082449_O19253_02_T04930_02_003_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.06/GEDI01_B_2022126121750_O19240_03_T01107_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.06/GEDI01_B_2022126121750_O19240_03_T01107_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.06/GEDI02_A_2022126121750_O19240_03_T01107_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.06/GEDI02_A_2022126121750_O19240_03_T01107_02_003_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.04/GEDI01_B_2022124121938_O19209_03_T09568_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.04/GEDI01_B_2022124121938_O19209_03_T09568_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.04/GEDI01_B_2022124104647_O19208_03_T10990_02_005_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.04/GEDI01_B_2022124104647_O19208_03_T10990_02_005_03_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.04/GEDI02_A_2022124104647_O19208_03_T10990_02_003_03_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.04/GEDI02_A_2022124104647_O19208_03_T10990_02_003_03_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.03/GEDI01_B_2022123082823_O19191_02_T00201_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.03/GEDI01_B_2022123082823_O19191_02_T00201_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.03/GEDI01_B_2022123065532_O19190_02_T03046_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.03/GEDI01_B_2022123065532_O19190_02_T03046_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.03/GEDI02_A_2022123065532_O19190_02_T03046_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.03/GEDI02_A_2022123065532_O19190_02_T03046_02_003_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.03/GEDI01_B_2022123052241_O19189_02_T04621_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.03/GEDI01_B_2022123052241_O19189_02_T04621_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.02/GEDI01_B_2022122074249_O19175_02_T09335_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.02/GEDI01_B_2022122074249_O19175_02_T09335_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.02/GEDI02_A_2022122074249_O19175_02_T09335_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.02/GEDI02_A_2022122074249_O19175_02_T09335_02_003_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.01/GEDI01_B_2022121144129_O19164_03_T04091_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.01/GEDI01_B_2022121144129_O19164_03_T04091_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.01/GEDI01_B_2022121130838_O19163_03_T02820_02_005_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.01/GEDI01_B_2022121130838_O19163_03_T02820_02_005_02_V002.h5
https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.01/GEDI02_A_2022121130838_O19163_03_T02820_02_003_02_V002.h5 https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI02_A.002/2022.05.01/GEDI02_A_2022121130838_O19163_03_T02820_02_003_02_V002.h5
No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.01/GEDI01_B_2022121113547_O19162_03_T05665_02_005_02_V002.h5 No matching L2 file! https://e4ftl01.cr.usgs.gov//GEDI_L1_L2/GEDI/GEDI01_B.002/2022.05.01/GEDI01_B_2022121113547_O19162_03_T05665_02_005_02_V002.h5
Done Done
%% Cell type:code id:6d8ef38d tags: %% Cell type:code id:6d8ef38d tags:
``` python ``` python
``` ```
%% Cell type:code id:da773e1f tags: %% Cell type:code id:da773e1f tags:
``` python ``` python
``` ```
%% Cell type:code id:ee0b897a tags: %% Cell type:code id:ee0b897a tags:
``` python ``` python
############# #############
## SCRATCH ## SCRATCH
############# #############
``` ```
%% Cell type:code id:b364772a tags: %% Cell type:code id:b364772a tags:
``` python ``` python
import h5py import h5py
fp = "../output/GEDI01_B_2022243142430_O21056_03_T06784_02_005_02_V002.h5" fp = "../output/GEDI01_B_2022243142430_O21056_03_T06784_02_005_02_V002.h5"
with h5py.File(fp, "r") as f: with h5py.File(fp, "r") as f:
print(f.keys()) print(f.keys())
print(f['BEAM0000']["rxwaveform"][:10]) print(f['BEAM0000']["rxwaveform"][:10])
``` ```
%% Output %% Output
<KeysViewHDF5 ['BEAM0000', 'BEAM0001', 'BEAM0010', 'BEAM0011', 'BEAM0101', 'BEAM0110', 'BEAM1000', 'BEAM1011', 'METADATA']> <KeysViewHDF5 ['BEAM0000', 'BEAM0001', 'BEAM0010', 'BEAM0011', 'BEAM0101', 'BEAM0110', 'BEAM1000', 'BEAM1011', 'METADATA']>
[243.6951 244.02603 244.26328 244.186 243.79663 243.32755 243.1004 [243.6951 244.02603 244.26328 244.186 243.79663 243.32755 243.1004
243.24414 243.63077 243.96375] 243.24414 243.63077 243.96375]
%% Cell type:code id:4a6460a7-4d65-4311-901c-e5685daeb2f0 tags: %% Cell type:code id:4a6460a7-4d65-4311-901c-e5685daeb2f0 tags:
``` python ``` python
``` ```
%% Cell type:code id:ebb58d7e-c295-4955-a056-58fa8efc596f tags: %% Cell type:code id:ebb58d7e-c295-4955-a056-58fa8efc596f tags:
``` python ``` python
``` ```
%% Cell type:code id:23b92856 tags: %% Cell type:code id:23b92856 tags:
``` python ``` python
``` ```
%% Cell type:code id:d1804399 tags: %% Cell type:code id:d1804399 tags:
``` python ``` python
``` ```
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
basedir=$( cd "$(dirname "$0")" ; pwd -P) basedir=$( cd "$(dirname "$0")" ; pwd -P)
# Activate environment that was created in the builed-env.sh file # Activate environment that was created in the builed-env.sh file
# source activate osgeo-env source activate osgeo-env
# Create output dir # Create output dir
# OUTPUTDIR="${PWD}/output" # OUTPUTDIR="${PWD}/output"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment