Skip to content

Commit

Permalink
Fix parsing of sim file header for x-track sensors.
Browse files Browse the repository at this point in the history
  • Loading branch information
simonpf committed Aug 29, 2024
1 parent 4243e38 commit 811dea8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gprof_nn/data/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ def get_sim_file_header(n_chans, n_angles, kind):
("satellite_code", "a5"),
("sensor", "a5"),
("frequencies", f"f4", (n_chans,)),
("viewing_angles", f"f4", (n_chans,)),
("viewing_angles", f"f4", (n_angles,)),
("start_pixel", "i4"),
("end_pixel", "i4"),
("start_scan", "i4"),
Expand Down

0 comments on commit 811dea8

Please sign in to comment.