-
Notifications
You must be signed in to change notification settings - Fork 1
/
load_pars.m
33 lines (26 loc) · 859 Bytes
/
load_pars.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
% This script sets common parameters for the study.
%
% SPDX-FileCopyrightText: 2023-2024 Helmholtz-Zentrum hereon GmbH
% SPDX-FileContributor: Kai W. Wirtz <kai.wirtz@hereon.de>
% SPDX-License-Identifier: GPL-3.0-or-later
% Add path to the m_map toolbox
addpath('~/tools/m_map');
% Geographic boundary of the study area
latitudeLimits = [34 71]; % Entire Europe
longitudeLimits = [-12 37];
% Time period of interest in kyrBP
timeLimits = [3 9.3];
timeStep = 200;
breakPoints = 3000:(2*timeStep):9800;
% Names of data treatments in SPD generation
dataTags = {'_NoNorm_Bin100', '_Norm_Bin100'};
% Output directory
outputDirectory = 'out/';
% Work directory
currentDirectory = pwd;
workDirectory = [currentDirectory '/'];
% Color settings
color1 = [223 233 130]/256;
markerColors(1,:) = [1 0.5 0];
markerColors(2,:) = [0 0.5 1];
alphabet = 'alphabetd';