-
Notifications
You must be signed in to change notification settings - Fork 1
/
read_coriolis_deployment.R
77 lines (55 loc) · 2.42 KB
/
read_coriolis_deployment.R
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
############################################################################################
# Routine developpee par C. Schmechtig
#
# January 2018 : Use this routine to estimate coefficient for adjustment to compare
# Float data to data at deployment
#############################################################################################
library(ncdf4)
require(oce)
source("./read_CTD.R")
source("./read_BFILE_DOXY.R")
source("./WINKLER_to_PPOX_ADJ.R")
source("./DOXY_to_PPOX.R")
source("./read_deployment_bottle.R")
##########################################################################
# 0. Get the WMO for the command line
##########################################################################
uf=commandArgs()
WMO <- uf[2]
PROFILE <- uf[3]
#############################################################################################
# 1. OPEN the files
#############################################################################################
###### to change
# File B
file_in_B=paste("/home/schmechtig/TRAITEMENT_FLOTTEUR/ANTOINE/DATA_MANAGEMENT/RT/DATA/",WMO,"/BR",WMO,"_",PROFILE,".nc",sep="")
# File C (could be D or R)
file_in_C=paste("/home/schmechtig/TRAITEMENT_FLOTTEUR/ANTOINE/DATA_MANAGEMENT/RT/DATA/",WMO,"/R",WMO,"_",PROFILE,".nc",sep="")
# Open the file
filenc_B=nc_open(file_in_B,readunlim=FALSE,write=FALSE)
##################################################
#### 1. Get CTD Data from the Netcdf C File
##################################################
CTD=read_CTD(file_in_C)
# we get : CTD$PRES
# : CTD$PSAL
# : CTD$TEMP
##################################################
#### 2. Get BGC data from the B File
##################################################
DOXY=read_BFILE_DOXY(filenc_B)
# we get : DOXY$PRES
# : DOXY$DOXY microg/kg
###################################################
#### 3. Work on DOXY data
###################################################
# We interpolate CTD DATA to get TEMP and PSAL a DOXY$PRES LEVEL
TEMP_DOXY <- approx(CTD$PRES, CTD$TEMP, DOXY$PRES, rule=2)$y
PSAL_DOXY <- approx(CTD$PRES, CTD$PSAL, DOXY$PRES, rule=2)$y
# calculate PPOX_DOXY in mbar from DOXY in micromol/kg
PPOX_DOXY=DOXY_to_PPOX(DOXY$PRES, TEMP_DOXY, PSAL_DOXY, DOXY$DOXY)
#####################################################
#### 4. COMPARE to WINKLER DATA
#####################################################
SLOPE_PPOX=WINKLER_to_PPOX_ADJ(DOXY$PRES,PPOX_DOXY,WMO)
print(SLOPE_PPOX)