Data model: idWeather

General description: Weather info, wind, temps, dust, humidity, timestamped.

Naming convention: idWeather-MJD.par, where MJD int(MJD) date.

Approximate size: Updated once every few minutes. About 20kb/day

File type: FTCL parameter file

Read by products: QA

Written by products: iop/cop

Primary Header




mjd     XXXXX    # MJD day number of night data was obtained
initialTime   909351408

typedef struct {
        double pressure;        #barom pressure (inches of Hg)
        double airtemp;         #temp sensor 1 (degrees C)
        double temp;            #yet another temp (deg C)
        double tempin;          #3.5m heathkit temp (deg F)
        double dewpoint;        #dew point (degrees F)
        double dewpointDep;     #dew point (degrees C)
        double humidity;        #humidity sensor 1 (percent 0-100)
        double humidout;        #humidity sendor 2 (percent 0-100)
        double dusta;           #dust, count of  0.3mu/particles/vol/time
        double dustb;           #dust, count of 1mu/particles/vol/time
        double gustd;           #last wind gust direction (degrees 0=N, 90=E)
        double gusts;           #last wind gust speed (mph)
        double windd;           #wind direction (degrees 0=N, 90=E)
        double winds;           #wind speed (mph)
        int timeStamp;          # unix timestamp (seconds since 1970) when data obtained
} MARMOTWEATHER;