-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1acc21c
commit e50dbba
Showing
26 changed files
with
3,625 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Name tag cmap log vlim vmin vmax label units | ||
# --------------------------------------------- | ||
nppv BIOL jet False set 0. 1. lab un | ||
o2 BIOL jet False set 0. 1. lab un | ||
ph CARB jet False set 0. 1. lab un | ||
talk CARB jet False set 0. 1. lab un | ||
spco2 CO2F jet False set 0. 1. lab un | ||
nh4 NUTR jet False set 0. 1. NH4 $mmol.m^{-3}$ | ||
no3 NUTR cmc.hawaii_r False set 0.5 4. NO3 $mmol.m^{-3}$ | ||
po4 NUTR cmc.batlow False set 0. 0.3 PO4 $mmol.m^{-3}$ | ||
si NUTR jet False set 0. 1. SI $mmol.m^{-3}$ | ||
chl PFTC cmc.imola True set 0.05 0.3 Chlorophyll $mg.m^{-3}$ | ||
phyc PFTC jet False set 0. 1. Phytoplankton $mmol.m^{-3}$ | ||
zooc PFTC cmc.hawaii_r False set 1. 3. Zooplankton $mg.m^{-3}$ | ||
so PSAL jet False set 0. 1. Salinity none | ||
uo RFVL cmc.vik False set -.3 .3 Eastward_current $m.s^{-1}$ | ||
vo RFVL jet False set 0. 1. Northward_current $m.s^{-1}$ | ||
thetao TEMP cmo.thermal False set 13.5 14.8 Temperature °C |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
datasets/BOUSSOLE/data/.~lock.Boussole-pig-maj20240116_modif.csv#
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import pandas as pd | ||
|
||
|
||
|
||
|
||
|
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
############################# | ||
# Routine to get MODIS data # | ||
############################# | ||
|
||
|
||
import numpy as np | ||
import os | ||
|
||
|
||
# Get args | ||
# -------- | ||
config=sys.argv[1] # Configuration name | ||
|
||
|
||
# Load parameters | ||
# --------------- | ||
load_config(config) | ||
from fun_gen import * | ||
|
||
os.system('mkdir -p '+modis_dir) | ||
|
||
|
||
# Loop on days | ||
for jd in range(jdini,jdend+1): | ||
|
||
# Get date | ||
d = dt.datetime.fromordinal(jd) | ||
year = d.strftime('%Y') | ||
doy = d.strftime('%j').zfill(3) | ||
|
||
# Download | ||
# !!!! TO FINISH !!!!! | ||
|
||
|
||
|
||
|
||
|
||
|
Oops, something went wrong.