Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
CTDAS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CTDAS
CTDAS
Commits
4731a9e6
Commit
4731a9e6
authored
11 years ago
by
Peters, Wouter
Browse files
Options
Downloads
Patches
Plain Diff
updated to work better, absorbed the daily, monthly, yearly, and longterm flux modules
parent
39c23ebf
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
da/analysis/time_avg_fluxes.py
+159
-10
159 additions, 10 deletions
da/analysis/time_avg_fluxes.py
with
159 additions
and
10 deletions
da/analysis/time_avg_fluxes.py
+
159
−
10
View file @
4731a9e6
...
...
@@ -13,11 +13,9 @@ sys.path.append('../../')
import
os
import
sys
import
shutil
from
dateutil.relativedelta
import
relativedelta
import
datetime
from
da.analysis.daily_fluxes
import
daily_avg
from
da.analysis.monthly_fluxes
import
monthly_avg
from
da.analysis.yearly_fluxes
import
yearly_avg
from
da.analysis.longterm_fluxes
import
longterm_avg
import
subprocess
def
time_avg
(
dacycle
,
avg
=
'
transcom
'
):
"""
Function to create a set of averaged files in a folder, needed to make longer term means
"""
...
...
@@ -30,15 +28,15 @@ def time_avg(dacycle,avg='transcom'):
if
not
os
.
path
.
exists
(
analysisdir
):
raise
IOError
,
'
analysis dir requested (%s) does not exist, exiting...
'
%
analysisdir
daily_avg
(
analysisdir
,
avg
)
daily_avg
(
dacycle
,
avg
)
if
new_month
(
dacycle
):
monthly_avg
(
analysisdir
,
avg
)
monthly_avg
(
dacycle
,
avg
)
if
new_year
(
dacycle
):
yearly_avg
(
analysisdir
,
avg
)
yearly_avg
(
dacycle
,
avg
)
longterm_avg
(
analysisdir
,
avg
)
longterm_avg
(
dacycle
,
avg
)
def
new_month
(
dacycle
):
"""
check whether we just entered a new month
"""
...
...
@@ -56,18 +54,169 @@ def new_year(dacycle):
return
(
this_year
!=
prev_year
)
def
daily_avg
(
dacycle
,
avg
):
"""
Function to create a set of daily files in a folder, needed to make longer term means
"""
if
avg
not
in
[
'
transcom
'
,
'
olson
'
,
'
country
'
,
'
flux1x1
'
]:
raise
IOError
,
'
Choice of averaging invalid
'
analysisdir
=
dacycle
[
'
dir.analysis
'
]
weekdir
=
os
.
path
.
join
(
analysisdir
,
'
data_%s_weekly
'
%
avg
)
daydir
=
os
.
path
.
join
(
analysisdir
,
'
data_%s_daily
'
%
avg
)
if
not
os
.
path
.
exists
(
daydir
):
print
"
Creating new output directory
"
+
daydir
os
.
makedirs
(
daydir
)
files
=
os
.
listdir
(
weekdir
)
files
=
[
f
for
f
in
files
if
'
-
'
in
f
]
fileinfo
=
{}
for
filename
in
files
:
date
=
datetime
.
datetime
.
strptime
(
filename
.
split
(
'
.
'
)[
-
2
],
'
%Y-%m-%d
'
)
fileinfo
[
filename
]
=
date
dt
=
dacycle
[
'
cyclelength
'
]
for
k
,
v
in
fileinfo
.
iteritems
():
cycle_file
=
os
.
path
.
join
(
weekdir
,
k
)
for
i
in
range
(
abs
(
dt
.
days
)):
daily_file
=
os
.
path
.
join
(
daydir
,
'
%s_fluxes.%s.nc
'
%
(
avg
,(
v
+
datetime
.
timedelta
(
days
=
i
)).
strftime
(
'
%Y-%m-%d
'
)))
if
not
os
.
path
.
lexists
(
daily_file
):
os
.
symlink
(
cycle_file
,
daily_file
)
#print daily_file,cycle_file
def
monthly_avg
(
dacycle
,
avg
):
"""
Function to average a set of files in a folder from daily to monthly means
"""
if
avg
not
in
[
'
transcom
'
,
'
olson
'
,
'
country
'
,
'
flux1x1
'
]:
raise
IOError
,
'
Choice of averaging invalid
'
analysisdir
=
dacycle
[
'
dir.analysis
'
]
daydir
=
os
.
path
.
join
(
analysisdir
,
'
data_%s_daily
'
%
avg
)
monthdir
=
os
.
path
.
join
(
analysisdir
,
'
data_%s_monthly
'
%
avg
)
if
not
os
.
path
.
exists
(
monthdir
):
print
"
Creating new output directory
"
+
monthdir
os
.
makedirs
(
monthdir
)
files
=
os
.
listdir
(
daydir
)
# get daily files
files
=
[
f
for
f
in
files
if
'
-
'
in
f
]
fileinfo
=
{}
for
filename
in
files
:
# parse date from each of them
date
=
datetime
.
datetime
.
strptime
(
filename
.
split
(
'
.
'
)[
-
2
],
'
%Y-%m-%d
'
)
fileinfo
[
filename
]
=
date
years
=
[
d
.
year
for
d
in
fileinfo
.
values
()]
# get actual years
months
=
set
([
d
.
month
for
d
in
fileinfo
.
values
()])
# get actual months
sd
=
datetime
.
datetime
(
min
(
years
),
1
,
1
)
ed
=
datetime
.
datetime
(
max
(
years
)
+
1
,
1
,
1
)
while
sd
<
ed
:
nd
=
sd
+
relativedelta
(
months
=+
1
)
avg_files
=
[
os
.
path
.
join
(
daydir
,
k
)
for
k
,
v
in
fileinfo
.
iteritems
()
if
v
<
nd
and
v
>=
sd
]
if
len
(
avg_files
)
>
0
:
targetfile
=
os
.
path
.
join
(
monthdir
,
'
%s_fluxes.%s.nc
'
%
(
avg
,
sd
.
strftime
(
'
%Y-%m
'
)))
if
not
os
.
path
.
exists
(
targetfile
):
command
=
[
'
ncra
'
,
'
-O
'
]
+
avg_files
+
[
targetfile
]
status
=
subprocess
.
check_call
(
command
)
else
:
pass
sd
=
nd
def
yearly_avg
(
dacycle
,
avg
):
"""
Function to average a set of files in a folder from monthly to yearly means
"""
if
avg
not
in
[
'
transcom
'
,
'
olson
'
,
'
country
'
,
'
flux1x1
'
]:
raise
IOError
,
'
Choice of averaging invalid
'
analysisdir
=
dacycle
[
'
dir.analysis
'
]
monthdir
=
os
.
path
.
join
(
analysisdir
,
'
data_%s_monthly
'
%
avg
)
yeardir
=
os
.
path
.
join
(
analysisdir
,
'
data_%s_yearly
'
%
avg
)
if
not
os
.
path
.
exists
(
yeardir
):
print
"
Creating new output directory
"
+
yeardir
os
.
makedirs
(
yeardir
)
files
=
os
.
listdir
(
monthdir
)
# get monthly files
files
=
[
f
for
f
in
files
if
'
-
'
in
f
]
fileinfo
=
{}
for
filename
in
files
:
date
=
datetime
.
datetime
.
strptime
(
filename
.
split
(
'
.
'
)[
-
2
],
'
%Y-%m
'
)
fileinfo
[
filename
]
=
date
years
=
set
([
d
.
year
for
d
in
fileinfo
.
values
()])
sd
=
datetime
.
datetime
(
min
(
years
),
1
,
1
)
ed
=
datetime
.
datetime
(
max
(
years
)
+
1
,
1
,
1
)
while
sd
<
ed
:
nd
=
sd
+
relativedelta
(
years
=+
1
)
avg_files
=
[
os
.
path
.
join
(
monthdir
,
k
)
for
k
,
v
in
fileinfo
.
iteritems
()
if
v
<
nd
and
v
>=
sd
]
if
len
(
avg_files
)
>
0
:
targetfile
=
os
.
path
.
join
(
yeardir
,
'
%s_fluxes.%s.nc
'
%
(
avg
,
sd
.
strftime
(
'
%Y
'
)))
if
not
os
.
path
.
exists
(
targetfile
):
command
=
[
'
ncra
'
,
'
-O
'
]
+
avg_files
+
[
targetfile
]
print
command
status
=
subprocess
.
check_call
(
command
)
sd
=
nd
def
longterm_avg
(
dacycle
,
avg
):
"""
Function to average a set of files in a folder from monthly to yearly means
"""
if
avg
not
in
[
'
transcom
'
,
'
olson
'
,
'
country
'
,
'
flux1x1
'
]:
raise
IOError
,
'
Choice of averaging invalid
'
analysisdir
=
dacycle
[
'
dir.analysis
'
]
yeardir
=
os
.
path
.
join
(
analysisdir
,
'
data_%s_yearly
'
%
avg
)
longtermdir
=
os
.
path
.
join
(
analysisdir
,
'
data_%s_longterm
'
%
avg
)
if
not
os
.
path
.
exists
(
longtermdir
):
print
"
Creating new output directory
"
+
longtermdir
os
.
makedirs
(
longtermdir
)
files
=
os
.
listdir
(
yeardir
)
files
=
[
f
for
f
in
files
if
avg
in
f
]
dates
=
[]
for
filename
in
files
:
date
=
datetime
.
datetime
.
strptime
(
filename
.
split
(
'
.
'
)[
-
2
],
'
%Y
'
)
dates
.
append
(
date
)
avg_files
=
[
os
.
path
.
join
(
yeardir
,
k
)
for
k
in
files
]
if
len
(
avg_files
)
>
0
:
command
=
[
'
ncra
'
,
'
-O
'
]
+
avg_files
+
[
os
.
path
.
join
(
longtermdir
,
'
%s_fluxes.%04d-%04d.nc
'
%
(
avg
,
min
(
dates
).
year
,
max
(
dates
).
year
))]
status
=
subprocess
.
check_call
(
command
)
if
__name__
==
"
__main__
"
:
from
da.tools.initexit
import
CycleControl
sys
.
path
.
append
(
'
../../
'
)
dacycle
=
CycleControl
(
args
=
{
'
rc
'
:
'
../../ctdas-ei-
gfed2-glb6x4-griddedNH
.rc
'
})
dacycle
=
CycleControl
(
args
=
{
'
rc
'
:
'
../../ctdas-ei-
nobcb-zoom-ecoregions
.rc
'
})
dacycle
.
setup
()
dacycle
.
parse_times
()
time_avg
(
dacycle
,
avg
=
'
flux1x1
'
)
time_avg
(
dacycle
,
avg
=
'
transcom
'
)
time_avg
(
dacycle
,
avg
=
'
olson
'
)
time_avg
(
dacycle
,
avg
=
'
country
'
)
time_avg
(
dacycle
,
avg
=
'
flux1x1
'
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment