-
Notifications
You must be signed in to change notification settings - Fork 0
/
configIEOOS.m
50 lines (35 loc) · 1.45 KB
/
configIEOOS.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
% Here are the variables used by the different programs
%% General settings
titulo_webpage="Sistema de observación oceánica del IEO";
domainName='http://www.oceanografia.es/IEOOS';
Verbose=0;
Visible=0; %Flag to outpun in the screen the figures
SubeFTP=1; %1 to upload from matlab de figures and web page to the ftp.
%% Input Directories and files
% Directory where the matlab scripts than update the web page are located
PaginaWebDir=strcat(GlobalSU.AnaPath,'/IEOOSWebpage');
dirDemarcaciones=strcat(PaginaWebDir,"/LimiteDemarcaciones/");
Demarcaciones={'CAN', 'NOR', 'SUD', 'ESA', 'LEB';...
'Canaria', 'Noratlántica','Sudatlántica','Estrecho y Alborán','Levantino-Balear'; ...
'#bf3eff', '#d57016', '#61a347', '#e28b05', '#ff9999'};
%% Output Directories and files
%Directory to output the graphic files
DirOutGraph=strcat(PaginaWebDir,'/images');
%Names of the outputs files
FileHtmMapaSST = strcat(PaginaWebDir,'/html/','MapaSST.html');
FileHtmlIEOOSStatus=strcat(PaginaWebDir,'/html/','IEOOSStatusLL.html');
%% Geographical Regions
lat_minIB= 15.00; lat_maxIB=54;
lon_minIB=-45; lon_maxIB=38;
%Atlantico
lat_min=-65; lat_max=65;
lon_min=-80; lon_max=40;
%Map limits
GMCentroArgoIb=[39,-16];
GMZoomArgoIb=4;
GMTamanoArgoIb=[700,650];
%% Ftp
ftp_dir='/html/IEOOS';
ftp_dir_SST='/html/IEOOS/SST';
ftp_dir_status='/html/IEOOS';
ftp_dir_clim='/html/IEOOS/Clim';