Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pycalibration
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Analyze
Contributor 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
calibration
pycalibration
Commits
42c4d463
Commit
42c4d463
authored
1 year ago
by
Thomas Kluyver
Browse files
Options
Downloads
Patches
Plain Diff
Always create creationTime & updateTime, default to Unix epoch
parent
a1af9eb1
No related branches found
No related tags found
1 merge request
!937
DataFile: Don't write creationDate & updateDate unless specified
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/cal_tools/files.py
+14
-9
14 additions, 9 deletions
src/cal_tools/files.py
with
14 additions
and
9 deletions
src/cal_tools/files.py
+
14
−
9
View file @
42c4d463
from
datetime
import
datetime
from
datetime
import
datetime
,
timezone
from
itertools
import
chain
from
itertools
import
chain
from
numbers
import
Integral
from
numbers
import
Integral
from
pathlib
import
Path
from
pathlib
import
Path
...
@@ -310,14 +310,20 @@ class DataFile(h5py.File):
...
@@ -310,14 +310,20 @@ class DataFile(h5py.File):
if
sequence
is
None
:
if
sequence
is
None
:
sequence
=
self
.
__sequence
sequence
=
self
.
__sequence
if
creation_date
is
None
:
creation_date
=
datetime
.
fromtimestamp
(
0
,
tz
=
timezone
.
utc
)
elif
creation_date
is
True
:
creation_date
=
datetime
.
now
(
timezone
.
utc
)
if
update_date
is
None
:
if
update_date
is
None
:
update_date
=
creation_date
update_date
=
creation_date
elif
update_date
is
True
:
update_date
=
datetime
.
now
(
timezone
.
utc
)
md_group
=
self
.
require_group
(
'
METADATA
'
)
md_group
=
self
.
require_group
(
'
METADATA
'
)
if
creation_date
is
not
None
:
md_group
.
create_dataset
(
md_group
.
create_dataset
(
'
creationDate
'
,
shape
=
(
1
,),
'
creationDate
'
,
shape
=
(
1
,),
data
=
creation_date
.
strftime
(
'
%Y%m%dT%H%M%SZ
'
).
encode
(
'
ascii
'
))
data
=
creation_date
.
strftime
(
'
%Y%m%dT%H%M%SZ
'
).
encode
(
'
ascii
'
))
md_group
.
create_dataset
(
'
daqLibrary
'
,
shape
=
(
1
,),
md_group
.
create_dataset
(
'
daqLibrary
'
,
shape
=
(
1
,),
data
=
daq_library
.
encode
(
'
ascii
'
))
data
=
daq_library
.
encode
(
'
ascii
'
))
md_group
.
create_dataset
(
'
dataFormatVersion
'
,
shape
=
(
1
,),
data
=
b
'
1.2
'
)
md_group
.
create_dataset
(
'
dataFormatVersion
'
,
shape
=
(
1
,),
data
=
b
'
1.2
'
)
...
@@ -358,10 +364,9 @@ class DataFile(h5py.File):
...
@@ -358,10 +364,9 @@ class DataFile(h5py.File):
'
runNumber
'
,
shape
=
(
1
,),
dtype
=
np
.
uint32
,
data
=
run
)
'
runNumber
'
,
shape
=
(
1
,),
dtype
=
np
.
uint32
,
data
=
run
)
md_group
.
create_dataset
(
md_group
.
create_dataset
(
'
sequenceNumber
'
,
shape
=
(
1
,),
dtype
=
np
.
uint32
,
data
=
sequence
)
'
sequenceNumber
'
,
shape
=
(
1
,),
dtype
=
np
.
uint32
,
data
=
sequence
)
if
update_date
is
not
None
:
md_group
.
create_dataset
(
md_group
.
create_dataset
(
'
updateDate
'
,
shape
=
(
1
,),
'
updateDate
'
,
shape
=
(
1
,),
data
=
update_date
.
strftime
(
'
%Y%m%dT%H%M%SZ
'
).
encode
(
'
ascii
'
))
data
=
update_date
.
strftime
(
'
%Y%m%dT%H%M%SZ
'
).
encode
(
'
ascii
'
))
class
ControlSource
(
h5py
.
Group
):
class
ControlSource
(
h5py
.
Group
):
...
...
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