forked from CelsoReyes/zmap7
-
Notifications
You must be signed in to change notification settings - Fork 7
/
ini_zmap.m
29 lines (23 loc) · 1.11 KB
/
ini_zmap.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
function ini_zmap()
% INI_ZMAP modifies ZMAP globals according to user preference
% use this file to override default Zmap Global values
%
% system-specific initialization happens in the following
% see also ini_zmap_GLXNA64, ini_zmap_PCWIN64, ini_zmap_MACI64
report_this_filefun();
ZG=ZmapGlobal.Data;
% MAINMAP_FEATURES lists which features will be plotted by default on the main map.
% provide the list as a cell. Valid choices are:
% {'borders','coastline','faults','lakes','plates','rivers','stations','volcanoes'}
ZG.mainmap_features={'borders','coastline','faults','lakes','plates','rivers'};
% seislap default parameters
%ldx = 100;
%tlap = 100;
%set the recursion slightly, to avoid error (specialy with ploop functions)
set(0,'RecursionLimit',750)
set(0,'DefaultAxesFontName','Arial');
set(0,'DefaultTextFontName','Arial');
set(0,'DefaultAxesTickLength',[0.01 0.01]);
set(0,'DefaultFigurePaperPositionMode','auto');
%system_dependent(14,'on') % helps with possible wierd copy/paste issues with windows
end