Skip to content

IMAP-Lo - Final tweaks before data release #3289

@vineetbansal

Description

@vineetbansal

This issue is to keep track of some changes requested by the IMAP-Lo team before the first release of their maps:

  • Change to the star sensor binning due to a flight software update.

    sample_centers = (bin_indices + 0.5) * deg_per_bin

    before 5/22, remain as sample_centers = (bin_indices + 0.5) * deg_per_bin
    From 5/22 and so on, revise as sample_centers = (bin_indices + 0.0) * deg_per_bin

    i.e., before 5/22, bin to the center, while since 5/22 with FSW 4.8, bin to the left.

  • Pivot angle thresholds have changed - all values are 2x the previous ones:

    before:

      # Background-rate thresholds [counts/s] by pivot-angle range (low, high) [deg].
      # Each value is (ram_threshold, anti_ram_threshold).
      PIVOT_ANGLE_THRESHOLDS = {
          (88.0, 92.0): (0.014, 0.007),
          (73.0, 77.0): (0.0175, 0.00875),
          (103.0, 107.0): (0.0112, 0.0056),
      }
    

    after:

      # Background-rate thresholds [counts/s] by pivot-angle range (low, high) [deg].
      # Each value is (ram_threshold, anti_ram_threshold).
      PIVOT_ANGLE_THRESHOLDS = {
          (88.0, 92.0): (0.028, 0.014),
          (73.0, 77.0): (0.035, 0.0175),
          (103.0, 107.0): (0.0224, 0.0112),
      }
    

Metadata

Metadata

Assignees

Labels

Ins: LoRelated to the IMAP-Lo instrument

Type

No type
No fields configured for issues without a type.

Projects

Status
Todo

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions