Understanding set_1, set_1d, set_2, etc. #21
-
I'm trying to understand Synoptic's variable naming convention. What do the suffixes to various variables (e.g. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Good question. Some stations have multiple sensors measuring the same things, like wind at 2 meters and wind at 10 meters. The Synoptic API returns both report as and uses The |
Beta Was this translation helpful? Give feedback.
Good question.
Some stations have multiple sensors measuring the same things, like wind at 2 meters and wind at 10 meters. The Synoptic API returns both report as and uses
wind_speed_set_1
andwind_speed_set_2
to distiguish between the two measurements. Usually you would have to have some insider knowledge about the station to know which is which (or it might be in the metadata if you're lucky). Most stations won't have multiple sensors.The
d
in_set_1d
means it is a derived variable. For example, if a station does not report Relative Humidity, but it reports temperature and dew point, if you request RH from the API, then Synoptic will derive RH from temperature and dew point. In other w…