Skip to content

Commit

Permalink
add profile_id
Browse files Browse the repository at this point in the history
  • Loading branch information
ocefpaf committed Oct 13, 2023
1 parent d07a148 commit 6adfaff
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions gliderpy/servers.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,28 @@

server_vars = {
"https://gliders.ioos.us/erddap": [
"pressure",
"latitude",
"longitude",
"pressure",
"profile_id",
"salinity",
"temperature",
"time",
"profile_id",
],
}

server_parameter_rename = {
"latitude (degrees_north)": "latitude",
"longitude (degrees_east)": "longitude",
"salinity (1)": "salinity",
"psal (psu)": "salinity",
"ctdgv_m_glider_instrument_practical_salinity (1)": "salinity",
"temperature (celsius)": "temperature",
"temp (degree_celsius)": "temperature",
"ctdgv_m_glider_instrument_sci_water_pressure_dbar (dbar)": "pressure",
"ctdgv_m_glider_instrument_sci_water_temp (deg_c)": "temperature",
"dataset_url": "dataset_url",
"latitude (degrees_north)": "latitude",
"longitude (degrees_east)": "longitude",
"pres (decibar)": "pressure",
"pressure (dbar)": "pressure",
"ctdgv_m_glider_instrument_sci_water_pressure_dbar (dbar)": "pressure",
"dataset_url": "dataset_url",
"profile_id": "profile_id",
"psal (psu)": "salinity",
"salinity (1)": "salinity",
"temp (degree_celsius)": "temperature",
"temperature (celsius)": "temperature",
}

0 comments on commit 6adfaff

Please sign in to comment.