Skip to content

Commit bb0d278

Browse files
committed
edit readme
1 parent 413bcb6 commit bb0d278

3 files changed

Lines changed: 32 additions & 18 deletions

File tree

README.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,23 @@
1-
# ApRES_processing
1+
# ApRES_processing
2+
3+
A series of scripts that can be used to process ApRES data. The outputs are
4+
5+
* complex signal as a function of range for each shot (standard processing)
6+
* displacement time series for each range (for a specified bin width)
7+
* displacement time series of the basal reflector (using 2 different techniques)
8+
9+
Instructions are in the following:
10+
ct_processing_sequence_V4.m
11+
12+
13+
For more information see:
14+
15+
Vaňková, I., K. W. Nicholls, H. F. J. Corr, K. Makinson, and P. V. Brennan (2020), Observations of Tidal Melt and Vertical Strain at the Filchner-Ronne Ice Shelf, Antarctica, Journal of Geophysical Research: Earth Surface, 125(1), doi:10.1029/2019JF005280
16+
17+
The package is based on scripts developed by:
18+
19+
Stewart, C. L. (2018), Ice-ocean interactions beneath the north-western Ross Ice Shelf, Antarctica, Thesis, University of Cambridge, doi:10.17863/CAM.21483
20+
21+
Nicholls, K. W., H. F. Corr, C. L. Stewart, L. B. Lok, P. V. Brennan, and D. G. Vaughan (2015), A ground-based radar for measuring vertical strain rates and time-varying basal melt rates in ice sheets and shelves, Journal of Glaciology, 61(230), 1079–1087, doi: 10.3189/2015JoG15J073
22+
23+

example_site/ex01/ct_site_param_processing.m

Lines changed: 7 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,20 @@
55
%--------------------------------------------------------------
66

77
% Directory with files to be processed
8-
cfg.myDirPath = '/Volumes/GoogleDrive/My Drive/Research/DOVuFRIS/Fris_Apres/Fris_data/data2test_processing/ex01';
8+
9+
cfg.myDirPath = '/path_to_data_folder';
10+
%cfg.myDirPath = '/Volumes/GoogleDrive/My Drive/Research/DOVuFRIS/Fris_Apres/Fris_data/data2test_processing/ex01';
911

1012
cfg.myDir = [cfg.myDirPath '/**/'];
1113

1214
cfg.output_mat_file_name = 'ex01';
1315
cfg.output_mat_fname_tseries_fine = [cfg.output_mat_file_name '_ts_fine'];
1416
cfg.output_mat_fname_tseries_coarse = [cfg.output_mat_file_name '_ts_coarse'];
1517

16-
% % Bad burst option (if not define defaults are assigned)
17-
% % MANUAL SELECT
18-
% cfg.bad_burst.filename = [];
19-
% cfg.bad_burst.burst_in_file = [];
20-
% cfg.bad_burst.chirpselect = [];
21-
% % APPROACH
22-
% cfg.chirp_quality_test.type = 'none';
23-
% cfg.chirp_quality_test.range = [];
24-
% cfg.chirp_quality_test.tol_num_over = [];
25-
%
26-
% % Subset of bursts limited by first and last file to consider
27-
% cfg.burst_subset_end_files = 0;
28-
% cfg.burst_subset_first_file = [];
29-
% cfg.burst_subset_last_file = [];
18+
% If want only a subset of files in the directory, uncomment the following and provide the first and last files here:
19+
%cfg.burst_subset_end_files = 1;
20+
%cfg.burst_subset_first_file = 'DATA2016-01-16-1428.DAT';
21+
%cfg.burst_subset_last_file = 'DATA2016-01-17-2328.DAT';
3022

3123
% Subset of bursts to choose (set options to 0 to process all bursts)
3224
cfg.first_burst_infile_only = 0; %Set to 1 if want only first burst in each file

example_site/ex01/ct_site_param_processing_first_look.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
cfg = ct_site_param_processing;
44

5-
% Subset of bursts limited by first and last file to consider
5+
% Provide 2 filenames from which the first chirp will be plotted and compared
66
cfg.burst_subset_end_files = 1;
77
cfg.burst_subset_first_file = 'DATA2016-01-16-1428.DAT';
8-
cfg.burst_subset_last_file = 'DATA2016-01-25-1728.DAT';
8+
cfg.burst_subset_last_file = 'DATA2016-01-17-2328.DAT';

0 commit comments

Comments
 (0)