Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d50ffee

Browse files
Merge pull request #13 from SnowEx/update_snow_poles_dataset
Updated the snowpoles dataset to use the doi-ed version
2 parents 0578b83 + 02c4207 commit d50ffee

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

scripts/download/nsidc_sources.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ https://n5eil01u.ecs.nsidc.org/SNOWEX/SNEX20_SMP.001/
55
https://n5eil01u.ecs.nsidc.org/SNOWEX/SNEX20_SD.001/
66
https://n5eil01u.ecs.nsidc.org/SNOWEX/SNEX20_GM_CSU_GPR.001/2020.02.06/SNEX20_GM_CSU_GPR_1GHz_v01.csv
77
https://n5eil01u.ecs.nsidc.org/SNOWEX/SNEX20_UNM_GPR.001/2020.01.28/SNEX20_UNM_GPR.csv
8+
https://n5eil01u.ecs.nsidc.org/SNOWEX/SNEX20_SD_TLI.001/2019.09.29/SNEX20_SD_TLI_clean.csv

scripts/upload/add_snow_poles.py

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,8 @@
1414

1515

1616
def main():
17-
# Site name
18-
start = time.time()
19-
site_name = 'Grand Mesa'
20-
2117
# Read in the Grand Mesa Snow Depths Data
22-
f = abspath('../download/data/SnowEx2020.snowdepth.snowstakes.alldepths_clean_v10.csv')
18+
f = abspath('../download/data/SNOWEX/SNEX20_SD_TLI.001/2019.09.29/SNEX20_SD_TLI_clean.csv')
2319

2420
# Start the Database
2521
db_name = 'localhost/snowex'
@@ -29,12 +25,12 @@ def main():
2925
f,
3026
depth_is_metadata=False,
3127
units='cm',
32-
site_name=site_name,
33-
observers='Catherine Breen, Cassie Lumbrazo',
28+
site_name='Grand Mesa',
29+
observers='Catherine Breen',
3430
instrument='camera',
3531
in_timezone='MST',
36-
epsg=26912,
37-
doi=None)
32+
doi='https://doi.org/10.5067/14EU7OLF051V',
33+
epsg=26912)
3834

3935
csv.submit(session)
4036
errors = len(csv.errors)

0 commit comments

Comments
 (0)