Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -471,9 +471,9 @@
// Make per log file .html files to test with lrauv_deployment_plots and --update_ssds_provenance
//"args": ["-v", "1", "--auv_name", "ahi", "--start", "20251022T000000", "--end", "20251024T000000", "--update_ssds_provenance", "--clobber"]
// Make per log file .html files to test with lrauv_deployment_plots and --update_ssds_provenance to test dynamic map bounds
//"args": ["-v", "1", "--auv_name", "ahi", "--start", "20260409T000000", "--end", "20260415T000000", "--update_ssds_provenance", "--clobber"]
"args": ["-v", "1", "--auv_name", "ahi", "--start", "20260409T000000", "--end", "20260415T000000", "--update_ssds_provenance", "--clobber"]
// Fixup labels on No Data plots
"args": ["-v", "1", "--log_file", "ahi/missionlogs/2026/20260406_20260412/20260411T145332/202604111453_202604111937.nc4", "--update_ssds_provenance", "--clobber"]
//"args": ["-v", "1", "--log_file", "ahi/missionlogs/2026/20260406_20260412/20260411T145332/202604111453_202604111937.nc4", "--update_ssds_provenance", "--clobber"]
},
{
"name": "lrauv_deployment_plots",
Expand Down
6 changes: 4 additions & 2 deletions src/data/create_products.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,10 +206,11 @@ def __init__( # noqa: PLR0913
"casepress": "deep",
"pitch_angle": "balance",
"average_current": "jet",
"battery_charge": "jet",
}

centered_vars = {"pitch_angle"} # noqa: RUF012
scatter_marker_size = {"average_current": 5} # noqa: RUF012
scatter_marker_size = {"average_current": 5, "battery_charge": 10} # noqa: RUF012

# Override labels for variables whose name is not a good y-axis label.
variable_display_names: dict[str, str] = {"density": "Sigma-t"} # noqa: RUF012
Expand Down Expand Up @@ -250,6 +251,7 @@ def __init__( # noqa: PLR0913
"ctdseabird_mass_concentration_of_oxygen_in_sea_water": ("ug/l", "oxy"),
# ── LRAUV other ───────────────────────────────────────────────────────
"onboard_platform_average_current": ("mA", "jet"),
"bpc1_platform_battery_charge": ("Ah", "jet"),
"universals_platform_pitch_angle": ("degrees", "balance"),
# ── LRAUV WetLabs BB2FL ───────────────────────────────────────────────
"wetlabsbb2fl_particulatebackscatteringcoeff470nm": ("1/m", "BuPu"),
Expand Down Expand Up @@ -441,7 +443,7 @@ def _get_lrauv_plot_variables(self) -> list:
("density", "linear"),
("ctdseabird_sea_water_temperature", "linear"),
("ctdseabird_sea_water_salinity", "linear"),
("onboard_platform_average_current", "linear"),
("bpc1_platform_battery_charge", "linear"),
("ctdseabird_mass_concentration_of_oxygen_in_sea_water", "linear"),
("wetlabsbb2fl_particulatebackscatteringcoeff470nm", "linear"),
("wetlabsbb2fl_particulatebackscatteringcoeff650nm", "linear"),
Expand Down
Loading