Skip to content

Commit 6c4a110

Browse files
author
Gregory E. Maurer
committed
Updating estancia GHCN data
1 parent a0ae6f2 commit 6c4a110

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

UNM_fill_met_gaps_from_nearby_site.m

+2-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,8 @@
212212
addData = UNM_parse_GHCN_met_data( siteID, year );
213213
addData = prepare_daily_precip( addData, 'PRCP' );
214214
% Convert from tenths to mm
215-
addData.Precip = addData.Precip ./ 10;
215+
% Used to be needed - no more
216+
%addData.Precip = addData.Precip ./ 10;
216217

217218
case 'prism'
218219
addData = UNM_parse_PRISM_met_data( siteID, year );

UNM_parse_GHCN_met_data.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
switch metstn
3030
case 'ESTANCIA'
3131
fname = fullfile( getenv( 'FLUXROOT' ), 'Ancillary_met_data',...
32-
sprintf( 'GHCND_ESTANCIA_DailySumm_20060101-20160331.csv' ));
32+
sprintf( 'GHCND_ESTANCIA_DailySumm_20060101-20160831.csv' ));
3333
% Get data from the ESTANCIA - station is north of Hwy 60
3434
metData_T = readtable( fname, 'Delimiter', ',' );
3535

0 commit comments

Comments
 (0)