Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
webgeodyn
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
Geodynamo
webgeodyn
Commits
646fcb34
Commit
646fcb34
authored
3 years ago
by
EXT Istas
Browse files
Options
Downloads
Patches
Plain Diff
change end of line to linux standards and add analysis as a possible keyword
parent
d5c24e41
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
webgeodyn/inout/pygeodyn_hdf5.py
+65
-66
65 additions, 66 deletions
webgeodyn/inout/pygeodyn_hdf5.py
with
65 additions
and
66 deletions
webgeodyn/inout/pygeodyn_hdf5.py
+
65
−
66
View file @
646fcb34
#-*- coding: utf-8 -*-
import
glob
import
h5py
import
os
import
numpy
as
np
from
.default
import
giveMeasureTypeUnits
def
load
(
dataDirectory
,
dataModel
,
keepRealisations
,
state_type
=
'
analysed
'
):
"""
Loading function for pygeodyn files of hdf5 format. Also adds the data to the dataModel.
:param dataDirectory: Location of the pygeodyn files
:type dataDirectory: os.path
:param dataModel: Model in which to add the loaded measures
:type dataModel: Model
:param keepRealisations: If True, all realisations are kept in the data. Else, the data is averaged over the realisations
:type keepRealisations: bool
:return: 0 if everything went well, -1 otherwise
:rtype: int
:param state_type: Either forecast, computed or analysed depending on the type of states needed
"""
firstpoint
=
3
assert
state_type
in
(
'
computed
'
,
'
analysed
'
,
'
forecast
'
)
measures_to_load
=
[
'
MF
'
,
'
SV
'
,
'
ER
'
,
'
U
'
]
hdf5_files
=
glob
.
glob
(
os
.
path
.
join
(
dataDirectory
,
'
*.hdf5
'
))
if
len
(
hdf5_files
)
==
0
:
raise
IOError
(
'
No hdf5 file was found in {} !
'
.
format
(
dataDirectory
))
# Assuming that the file to read is the first one
hdf_filename
=
hdf5_files
[
0
]
print
(
'
Reading:
'
,
hdf_filename
,
'
state_type:
'
,
state_type
)
with
h5py
.
File
(
hdf_filename
)
as
hdf_file
:
computed_data
=
hdf_file
[
state_type
]
times
=
np
.
array
(
computed_data
[
'
times
'
])[
firstpoint
:]
for
measureName
,
measureData
in
computed_data
.
items
():
if
measureName
not
in
measures_to_load
:
continue
else
:
measureType
,
units
=
giveMeasureTypeUnits
(
measureName
)
# Move realisation axis to last place to have data of form [ntimes, ncoef, nreal] (originally [nreal, ntimes, ncoef])
# Remove firstpoints
formattedData
=
np
.
moveaxis
(
measureData
,
0
,
-
1
)[
firstpoint
:]
if
measureName
==
'
MF
'
:
lmax
=
hdf_file
.
attrs
[
'
Lb
'
]
elif
measureName
==
'
U
'
:
lmax
=
hdf_file
.
attrs
[
'
Lu
'
]
else
:
lmax
=
hdf_file
.
attrs
[
'
Lsv
'
]
if
keepRealisations
:
dataModel
.
addMeasure
(
measureName
,
measureType
,
lmax
,
units
,
formattedData
,
times
=
times
)
else
:
meanData
=
formattedData
.
mean
(
axis
=
2
)
rmsData
=
formattedData
.
std
(
axis
=
2
)
dataModel
.
addMeasure
(
measureName
,
measureType
,
lmax
,
units
,
meanData
,
rmsData
,
times
)
# Returns 0 if everything went well
return
0
#-*- coding: utf-8 -*-
import
glob
import
h5py
import
os
import
numpy
as
np
from
.default
import
giveMeasureTypeUnits
def
load
(
dataDirectory
,
dataModel
,
keepRealisations
,
state_type
=
'
analysed
'
):
"""
Loading function for pygeodyn files of hdf5 format. Also adds the data to the dataModel.
:param dataDirectory: Location of the pygeodyn files
:type dataDirectory: os.path
:param dataModel: Model in which to add the loaded measures
:type dataModel: Model
:param keepRealisations: If True, all realisations are kept in the data. Else, the data is averaged over the realisations
:type keepRealisations: bool
:return: 0 if everything went well, -1 otherwise
:rtype: int
:param state_type: Either forecast, computed or analysed depending on the type of states needed
"""
firstpoint
=
3
assert
state_type
in
(
'
computed
'
,
'
analysed
'
,
'
analysis
'
,
'
forecast
'
)
measures_to_load
=
[
'
MF
'
,
'
SV
'
,
'
ER
'
,
'
U
'
]
hdf5_files
=
glob
.
glob
(
os
.
path
.
join
(
dataDirectory
,
'
*.hdf5
'
))
if
len
(
hdf5_files
)
==
0
:
raise
IOError
(
'
No hdf5 file was found in {} !
'
.
format
(
dataDirectory
))
# Assuming that the file to read is the first one
hdf_filename
=
hdf5_files
[
0
]
print
(
'
Reading:
'
,
hdf_filename
,
'
state_type:
'
,
state_type
)
with
h5py
.
File
(
hdf_filename
)
as
hdf_file
:
computed_data
=
hdf_file
[
state_type
]
times
=
np
.
array
(
computed_data
[
'
times
'
])[
firstpoint
:]
for
measureName
,
measureData
in
computed_data
.
items
():
if
measureName
not
in
measures_to_load
:
continue
else
:
measureType
,
units
=
giveMeasureTypeUnits
(
measureName
)
# Move realisation axis to last place to have data of form [ntimes, ncoef, nreal] (originally [nreal, ntimes, ncoef])
# Remove firstpoints
formattedData
=
np
.
moveaxis
(
measureData
,
0
,
-
1
)[
firstpoint
:]
if
measureName
==
'
MF
'
:
lmax
=
hdf_file
.
attrs
[
'
Lb
'
]
elif
measureName
==
'
U
'
:
lmax
=
hdf_file
.
attrs
[
'
Lu
'
]
else
:
lmax
=
hdf_file
.
attrs
[
'
Lsv
'
]
if
keepRealisations
:
dataModel
.
addMeasure
(
measureName
,
measureType
,
lmax
,
units
,
formattedData
,
times
=
times
)
else
:
meanData
=
formattedData
.
mean
(
axis
=
2
)
rmsData
=
formattedData
.
std
(
axis
=
2
)
dataModel
.
addMeasure
(
measureName
,
measureType
,
lmax
,
units
,
meanData
,
rmsData
,
times
)
# Returns 0 if everything went well
return
0
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