Skip to content

Commit

Permalink
Add VOLTS as a valid unit for raw CTDTURB
Browse files Browse the repository at this point in the history
  • Loading branch information
DocOtak committed Dec 12, 2023
1 parent 43f5ac0 commit a23cac2
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 0 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
v2024.01.0 (2024-01-??)
=======================
Parameter Changes
-----------------
* Add VOLTS as a valid unit for raw CTDTURB

API Changes
-----------
* None Yet

v2023.11.0 (2023-11-25)
=======================
Parameter Changes
Expand Down
29 changes: 29 additions & 0 deletions cchdo/params/_whp_names.py
Original file line number Diff line number Diff line change
Expand Up @@ -9400,6 +9400,35 @@
emission_wavelength=None,
nc_group=None,
),
WHPNameDC(
whp_name='CTDTURB',
dtype='decimal',
in_erddap=True,
whp_unit='VOLTS',
nc_name='ctd_turbidity_raw',
flag_w='woce_ctd',
cf_name=None,
numeric_min=None,
numeric_max=None,
numeric_precision=4,
field_width=9,
description='Turbidity describes the light scattered back (or passed though depending on units) depending on particle loading in the water. It is a dimensionless quantity.',
note=None,
warning=None,
error_name=None,
cf_unit='volts',
reference_scale=None,
whp_number=None,
scope='sample',
analytical_temperature_name=None,
analytical_temperature_units=None,
rank=74.5,
radiation_wavelength=None,
scattering_angle=None,
excitation_wavelength=None,
emission_wavelength=None,
nc_group=None,
),
]
for name in names:
whp_names[name.key] = name
Expand Down
Binary file modified cchdo/params/params.sqlite3
Binary file not shown.
1 change: 1 addition & 0 deletions cchdo/params/params.sqlite3.sql
Original file line number Diff line number Diff line change
Expand Up @@ -6184,4 +6184,5 @@ INSERT INTO "whp_names" VALUES('Nd_143_144_D_RATIO_BOTTLE',NULL,NULL,'nd_143_144
INSERT INTO "whp_names" VALUES('Nd_D_CONC','PMOL/KG',NULL,'nd_d_conc',NULL,NULL,'Nd_D_CONC_ERROR',NULL,NULL,9,2,NULL,NULL,NULL,NULL,NULL);
INSERT INTO "whp_names" VALUES('NITRAT','UMOL/L','mole_concentration_of_nitrate_in_sea_water','nitrate_l',-0.1,47.0,'NRAUNC',NULL,NULL,9,2,NULL,NULL,NULL,NULL,NULL);
INSERT INTO "whp_names" VALUES('NITRIT','UMOL/L','mole_concentration_of_nitrite_in_sea_water','nitrite_l',-0.1,15.0,'NRIUNC',NULL,NULL,9,2,NULL,NULL,NULL,NULL,NULL);
INSERT INTO "whp_names" VALUES('CTDTURB','VOLTS',NULL,'ctd_turbidity_raw',NULL,NULL,NULL,NULL,NULL,9,4,NULL,NULL,NULL,NULL,NULL);
COMMIT;

0 comments on commit a23cac2

Please sign in to comment.