Skip to content

Commit

Permalink
removing unneeded changes
Browse files Browse the repository at this point in the history
  • Loading branch information
maxinelasp committed Aug 30, 2024
1 parent add62a4 commit 4763b02
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 13 deletions.
3 changes: 1 addition & 2 deletions examples/Dockerfile.processing
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ FROM public.ecr.aws/docker/library/python:3.10-slim
# TODO: delete this section once imap_processing is released
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y git
# RUN pip install git+https://github.com/IMAP-Science-Operations-Center/imap_processing.git@dev
RUN pip install git+https://github.com/maxinelasp/imap_processing.git@mag_l1a_compression
RUN pip install git+https://github.com/IMAP-Science-Operations-Center/imap_processing.git@dev

# Uncomment this once imap_processing is released
# RUN pip install imap_processing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -273,9 +273,6 @@ attribute_key:
metadata
ignore_data
alternate: null



COORDINATE_SYSTEM:
description: >
All variables for which the values are dependent on the system of coordinates are
Expand Down
16 changes: 8 additions & 8 deletions imap_processing/glows/l1b/glows_l1b_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -491,16 +491,16 @@ class HistogramL1B:
# ) # Could be datetime TODO: Can't put a string in data
imap_spin_angle_bin_cntr: np.ndarray = field(init=False) # Same size as bins
histogram_flag_array: np.ndarray = field(init=False)
spin_period_ground_average: np.double = field(init=False) # Spin table
spin_period_ground_std_dev: np.double = field(init=False) # Spin table
spin_period_ground_average: np.double = field(init=False) # retrieved from SPICE?
spin_period_ground_std_dev: np.double = field(init=False) # retrieved from SPICE?
position_angle_offset_average: np.double = field(init=False) # retrieved from SPICE
position_angle_offset_std_dev: np.double = field(init=False) # retrieved from SPICE
spin_axis_orientation_std_dev: np.double = field(init=False) # SPICE - CK
spin_axis_orientation_average: np.double = field(init=False) # SPICE - CK
spacecraft_location_average: np.ndarray = field(init=False) # retrieved from SPICE
spacecraft_location_std_dev: np.ndarray = field(init=False) # retrieved from SPICE
spacecraft_velocity_average: np.ndarray = field(init=False) # retrieved from SPICE
spacecraft_velocity_std_dev: np.ndarray = field(init=False) # retrieved from SPICE
spin_axis_orientation_std_dev: np.double = field(init=False) # retrieved from SPICE
spin_axis_orientation_average: np.double = field(init=False) # retrieved from SPICE
spacecraft_location_average: np.ndarray = field(init=False) # retrieved from SPIC
spacecraft_location_std_dev: np.ndarray = field(init=False) # retrieved from SPIC
spacecraft_velocity_average: np.ndarray = field(init=False) # retrieved from SPIC
spacecraft_velocity_std_dev: np.ndarray = field(init=False) # retrieved from SPIC
flags: np.ndarray = field(init=False)
# TODO:
# - Determine a good way to output flags as "human readable"
Expand Down

0 comments on commit 4763b02

Please sign in to comment.