Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert all hi instances of uint64 CDF variables to int64 #872

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions imap_processing/cdf/config/imap_hi_variable_attrs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ default_uint32_attrs: &default_uint32
VALIDMAX: 4294967295
dtype: uint32

default_uint64_attrs: &default_uint64
default_int64_attrs: &default_int64
<<: *default
FILLVAL: 18446744073709551615
FILLVAL: -9223372036854775808
FORMAT: I20
VALIDMIN: 0
VALIDMAX: 18446744073709551615
dtype: uint64
VALIDMIN: -9223372036854775808
VALIDMAX: 9223372036854775807
dtype: int64

default_int32_attrs: &default_int32
<<: *default
Expand Down Expand Up @@ -91,7 +91,7 @@ hi_de_esa_stepping_num:
<<: *hi_esa_stepping_num

hi_de_event_met:
<<: *default_uint64
<<: *default_int64
subagonsouth marked this conversation as resolved.
Show resolved Hide resolved
CATDESC: Mission Elapsed Time (MET) of Direct Event
DISPLAY_TYPE: no_plot
FIELDNAM: Time since (TODO - what is the def of MET?)
Expand All @@ -101,7 +101,7 @@ hi_de_event_met:
SCALE_TYP: linear

hi_de_meta_event_met:
<<: *default_uint64
<<: *default_int64
CATDESC: Mission elapsed time (MET) of last meta-event
DISPLAY_TYPE: no_plot
FIELDNAM: Meta-event Mission Elapsed Time
Expand All @@ -111,7 +111,7 @@ hi_de_meta_event_met:
VALIDMAX: 4294967295
VAR_TYPE: support_data
SCALE_TYP: linear
dtype: uint64
dtype: int64

hi_de_trigger_id:
<<: *default_uint8
Expand Down
Loading