diff --git a/R_notebooks/01_Introducing_Tidyverse.Rmd b/R_notebooks/01_Introducing_Tidyverse.Rmd
deleted file mode 100644
index b4d5db3..0000000
--- a/R_notebooks/01_Introducing_Tidyverse.Rmd
+++ /dev/null
@@ -1,156 +0,0 @@
----
-title: "Introducing the Tidyverse"
-output: html_notebook
----
-
-## Outline
-
-- What is the Tidyverse?
-- Dataframes / tibbles
-- Tidy data format
-
-
-## What is the Tidyverse?
-
-The Tidyverse is self-described as:
-
-> "...an opinionated collection of R packages designed for data science. All
-> packages share an underlying design philosophy, grammar, and data
-> structures'."
->
-> —
-
-When you install the `tidyverse` package, you install a suite of packages. These
-include the following packages; we've marked the ones this course
-will introduce with a ☺:
-
-- ☺ `readr`: Load 'rectangular' data into an R session (e.g. CSV files).
-- ☺ `dplyr`: Manipulate data (filtering, computing summaries, etc.)
-- ☺ `tidyr`: Reshape data (e.g. into 'tidy' format).
-- ☺ `stringr`: Working with strings.
-- ☺ `lubridate`: Working with dates
-- `ggplot2`: Visualise data.
-- `tibble`: A modern refresh of the core R dataframe, used throughout
- Tidyverse packages.
-- `forcats`: Tools for working with R 'factors', often used for categorical
- data.
-- `purrr`: Tools for working with R objects in a functional way.
-
-These are designed to help you work with data, from cleaning and manipulation to
-plotting and modelling. The benefits of the Tidyverse include:
-
-- They are increasingly popular with large user bases (good for support /
- advice).
-- The packages are generally very well-documented.
-- The packages are designed to work together seamlessly and operate well with
- many other modern R packages.
-- Provide features to help you write expressive code and avoid common pitfalls
- when working with data.
-- Built around a consistent philosophy of how to structure data for analysis
- (the 'tidy' data format).
-
-
-## Dataframes / tibbles
-
-The key data structure that Tidyverse packages are designed to work with is the
-*dataframe*.
-
-Actually, this is not quite the whole story. As you read the documentation for
-Tidyverse packages, you'll inevitably come across the term *tibble*. This is
-essentially the same thing as a dataframe, although there are some minor
-differences. For the purposes of this course, you can consider dataframes and
-tibbles to be interchangeable and mentally think of them as 'the same thing'.
-
-To demonstrate this, let's consider the Palmer Station penguins data related to
-three species of Antarctic penguins from Horst, Hill, and Gorman [^1]. We'll
-work with this dataset throughout this course. The data contains size
-measurements for male and female adult foraging Adélie, Chinstrap, and Gentoo
-penguins observed on islands in the Palmer Archipelago near Palmer Station,
-Antarctica between 2007-2009. Data were collected and made available by
-Dr Kristen Gorman and the Palmer Station Long Term Ecological Research (LTER)
-Program. You can read more about the package on the
-[`palmerpenguins` documentation website](https://allisonhorst.github.io/palmerpenguins/index.html).
-
-To load the dataset, we just import the `palmerpenguins` package and look at
-the `penguins` object.
-
-```{r}
-library(palmerpenguins) # loads `penguins` object
-penguins
-```
-
-If we look closely, we see that the class of `penguins` (i.e. the kind of object
-it is) is a tibble, indicated by the `"tbl_df"` in the output below:
-
-```{r}
-class(penguins)
-```
-
-
-## Tidy data
-
-*Tidy data* is a convention that specifies how to arrange our data into a table.
-It states that
-
-- The columns of the table should correspond to the variables in the data.
-- The rows of the table should correspond to observations (or samples) of the
- variables in the data.
-
-Packages in the Tidyverse are designed to work with tidy data.
-
-You can read more about the tidy data format in [Hadley Wickham's Tidy
-Data](https://doi.org/10.18637/jss.v059.i10) paper[^2].
-
-
-### Tidy data: Example
-
-Suppose we have a pet dog and a pet cat, and we want to study the average weight
-of our pets by year, to see if there is some kind of association between the
-species and the trend in weight variation over time. We could represent this in
-a 'matrix-like' format, with the years corresponding to rows and species
-corresponding to columns:
-
-| Year | Dog_weight_kg | Cat_weight_kg |
-|:-----|:--------------|:--------------|
-| 2021 | 21.4 | 8.7 |
-| 2022 | 20.9 | 8.4 |
-| 2023 | 21.8 | 8.1 |
-
-: Weights of pets by year (non-tidy format)
-
-However, this is not in a tidy format. The variables in our data we're
-interested in studying are the year, animal species and weight, but there the
-columns correspond to the weights for each kind of species. Instead, we should
-have a separate column for the species:
-
-| Year | Species | Weight_kg |
-|:-----|:--------|:----------|
-| 2021 | dog | 21.4 |
-| 2021 | cat | 8.7 |
-| 2022 | dog | 20.9 |
-| 2022 | cat | 8.4 |
-| 2023 | dog | 21.8 |
-| 2023 | cat | 8.1 |
-
-: Weights of pets by year (tidy format)
-
-
-## Acknowledgement
-
-The material in this notebook is adapted from Eliza Wood's [Tidyverse: Data
-wrangling & visualization](https://liza-wood.github.io/tidyverse_intro/) course,
-which is licensed under [Creative Commons BY-NC-SA
-4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/). This in itself is
-based on material from [UC Davis's R-DAVIS
-course](https://gge-ucd.github.io/R-DAVIS/index.html), which draws heavily on
-[Carpentries](https://datacarpentry.org/R-ecology-lesson/) R lessons.
-
-
-## Footnotes
-
-[^1]: Horst AM, Hill AP, Gorman KB (2020). palmerpenguins: Palmer Archipelago
- (Antarctica) penguin data. R package version 0.1.1.
- . doi: 10.5281/zenodo.3960218.
-
-[^2]: Wickham, H. (2014). Tidy Data. *Journal of Statistical Software*,
- *59*(10), 1–23.
diff --git a/R_notebooks/02_Loading_data.Rmd b/R_notebooks/02_Loading_data.Rmd
deleted file mode 100644
index ff45f64..0000000
--- a/R_notebooks/02_Loading_data.Rmd
+++ /dev/null
@@ -1,130 +0,0 @@
----
-title: "Loading data into R with `readr`"
-output: html_notebook
----
-
-## Outline
-
-- Loading data from a csv file
-- Other file formats (Excel workbook, Google Sheets)
-
-
-## Introduction
-
-The package `readr` provides functions for reading data from 'flat' files,
-such as csv or other delimited files. The functionality provided by `readr`
-offers some advantages over the base R functions available for performing the
-same task.
-
-
-
-## Loading data from a csv file
-
-You may have used the R function `read.csv` to load data from a csv file into
-a dataframe:
-
-```{r}
-timeseries <- read.csv("./data/timeseries_data.csv")
-print(timeseries)
-```
-
-This is fine in a lot of cases, however, note some assumptions have been made.
-For example, in the above, the `Id` column is read as an integer and the `Date`
-column is read in as a string. In fact, the original data file records the Id
-with padded zeros, like so:
-
-```
-Id,Date,X_variable,Y_variable
-001,2024-02-01,1.1967837194583961,7.900464364159182
-002,2024-02-02,-0.7507563344053951,12.690405000912477
-003,2024-02-03,-0.7850492689583279,10.280088829160382
-004,2024-02-04,-0.6185457481359723,10.073199260115578
-005,2024-02-05,0.6188251316696602,9.183892504016947
-006,2024-02-06,-1.295559729374875,4.830591718912964
-007,2024-02-07,-1.0478610080617479,11.950495760617637
-008,2024-02-08,1.2772821688688454,7.008456322119265
-009,2024-02-09,-0.06582643175389392,3.4034822391265145
-010,2024-02-10,-0.07455295463910701,11.6370557133845
-```
-
-What we really want to is to read the Id as a string and the Date as a date
-object.
-
-The `read_csv` from the `readr` package is more 'shouty' about assumptions made
-when parsing the data, and can have better default interpretations. For example:
-
-```{r}
-timeseries <- readr::read_csv("./data/timeseries_data.csv")
-```
-
-Notice how it has explicitly told us that
-
-- `Id` is parsed as a string (which is what we wanted!)
-- `Date` is parsed as a date (more about dates later in the course)
-- `X_variable` and `Y_variable` are parsed as doubles, as expected.
-
-In general, it's good practice to be explicit about how we parse data from
-files, rather than assuming the defaults will work. For example, we've no way of
-knowing whether in the future the `readr` package maintainers will decide in the
-future to interpret padded numbers as in the `Id` column as integers.
-
-We can be explicit about how columns are parsed by using the `col_types`
-optional argument. The general way to do this is to supply a list with names
-being the column names and values being a _column specifier_,
-`readr::col_()`:
-
-```
-readr::read_csv("path/to/data.csv",
- col_types = list(colA = readr::col_logical(), # column colA is a boolean
- colB = readr::col_integer(), # column colB is an integer
- colC = readr::col_double(), # column colC is a floating point number
- colD = readr::col_character(), # column colD is a string
- colE = readr::col_date(), # column colE is a date
- .default = readr::col_double() # columns are floating point numbers
- # unless specified otherwise
- ))
-```
-
-**Note:** For a full list of the available column specifiers, run
-`vignette("readr")` in the R console.
-
-So, to specify that we want to read the `Id` column as a string, the `Date`
-column as a date, and the remaining columns as floating point numbers:
-
-```{r}
-timeseries <- readr::read_csv("./data/timeseries_data.csv",
- col_types = list(Id = readr::col_character(),
- Date = readr::col_date(),
- .default = readr::col_double()))
-print(timeseries)
-```
-
-
-Notice how the informational message about parsing has gone away, because we
-explicitly gave the types.
-
-
-### Exercise: parsing data from files
-
-Change the above so that the `Id` column is parsed as an integer and the
-`Date` column is parsed as a string.
-
-```{r}
-timeseries <- readr::read_csv("./data/timeseries_data.csv",
- col_types = list(Id = readr::col_integer(),
- Date = readr::col_character(),
- .default = readr::col_double()))
-print(timeseries)
-```
-
-
-## Other file formats
-
-There are related packages in the Tidyverse ecosystem that provide support for
-reading data from file types other than csv:
-
-- `readxl`: package for reading data from Excel workbooks.
-- `googlesheets4`: package for reading data from Google Sheets spreadsheets.
-
-We also mention here the `ncdf4` package for reading NetCDF files (not part of
-the Tidyverse).
\ No newline at end of file
diff --git a/R_notebooks/03_Manipulating_a_dataframe.Rmd b/R_notebooks/03_Manipulating_a_dataframe.Rmd
deleted file mode 100644
index 4445873..0000000
--- a/R_notebooks/03_Manipulating_a_dataframe.Rmd
+++ /dev/null
@@ -1,431 +0,0 @@
----
-title: "Manipulating a dataframe with `dplyr`"
-output: html_notebook
----
-
-## Outline
-
-- Sub-setting data
-- Creating new variables
-- Sorting
-- Summarising data
-
-
-## Introduction
-
-The package `dplyr` from the Tidyverse contains functions for manipulating
-dataframes. We will use the `penguins` dataset contained in the `palmerpenguins`
-package. Note that this data is already in tidy format.
-
-```{r}
-library(palmerpenguins) # loads `penguins` data
-head(penguins)
-```
-
-
-## Sub-setting data
-
-For taking subsets of data, we can use the functions `select` and
-`filter` from `dplyr`:
-
-- `dplyr::select` is used to keep only specified columns of the dataframe, i.e. to
- 'select' certain variables from the data.
-- `dplyr::filter` is used to keep rows that meet some specified condition, i.e. to
- 'filter' the observations in the data.
-
-
-### Selecting columns
-
-To use `select`, name the columns to keep after supplying the dataframe
-(or tibble), like so:
-
-```
-dplyr::select(data, column1, column2, ...)
-```
-
-**Note**: We _don't_ use strings to specify the columns! Instead, we write them
-as if they were variables e.g. `dplyr::select(data, column1)` instead of
-`dplyr::select(data, "column1")`.
-
-Let's first check the column names in our tibble:
-
-```{r}
-colnames(penguins)
-```
-
-Now let's select the species, year, sex, and body mass columns:
-
-```{r}
-# Select species, year, sex, and body mass
-penguins_selected <- dplyr::select(penguins, species, year, sex, body_mass_g)
-
-head(penguins_selected)
-```
-
-The `select` function can also be used to _remove_ columns by using the `-`
-operator. For example, we may want to remove only two columns, island and year:
-
-```{r}
-# Remove the island and year columns by using `-`.
-penguins_deselected <- dplyr::select(penguins, -island, -year)
-
-# Take a look at the columns
-colnames(penguins_deselected)
-```
-
-### Filtering rows
-
-The `filter` function from `dplyr` is used to keep rows from a dataframe/tibble
-that meet a _predicate condition_ in terms of the column values, i.e. a
-statement that is either `TRUE` or `FALSE`.
-
-
-#### Comparitive operators
-
-One way to create predicate conditions is to use the
-[comparative operators](https://www.w3schools.com/r/r_operators.asp), which
-should be familiar:
-
-```
-x == y : equal
-x != y : not equal
-x > y : greater than
-x < y : less than
-x >= y : greater than or equal
-x <= y : less than or equal
-```
-
-For example, suppose we want to keep all penguin data only from the year
-2008. In base R, we could accomplish this by indexing on a boolean vector
-created using the `==` operator:
-
-```{r}
-# Create boolean vector indicating where year = 2008
-is_year_2008 <- penguins$year == 2008
-head(is_year_2008, n = 75)
-```
-
-```{r}
-# Index on this vector
-head(penguins[is_year_2008,])
-```
-
-The `filter` function works by specifying the predicate condition for filtering
-in terms of the column names, like so:
-
-```
-dplyr::filter(data, condition) # keep rows satisfying condition
-```
-
-So to filter the penguins data to keep only the 2008 observations:
-
-```{r}
-penguins_2008 <- dplyr::filter(penguins, year == 2008)
-head(penguins_2008)
-```
-
-
-#### Logical operators
-
-We can build more complicated predicate conditions by using the
-[logical operators](https://www.w3schools.com/r/r_operators.asp) on columns:
-
-```
-A & B : A AND B e.g. col1 == 2 & col2 == 10
-A | B : A OR B e.g. col1 > 2 | col2 != 10
-!A : NOT A e.g. !(col1 < 2)
-```
-
-In addition, `filter` allows us to specify multiple AND operations by listing
-out multiple predicate conditions:
-
-```
-dplyr::filter(data, condition1, condition2, ...) # keep rows satisfying
- # condition1 AND condition2 AND ...
-```
-
-Some examples on the penguin data:
-
-```{r}
-# Observations of male penguins from the year 2008:
-print(dplyr::filter(penguins, sex == "male" & year == 2008)) # using &
-print(dplyr::filter(penguins, sex == "male", year == 2008)) # listing multiple conditions in filter
-
-# Observations of penguins with bill length > 40mm or bill depth < 20mm
-print(dplyr::filter(penguins, bill_length_mm > 40 | bill_depth_mm < 20))
-
-# Observations except those of male penguins on the island of Biscoe
-print(dplyr::filter(penguins, !(sex == "male" & island == "Biscoe")))
-```
-
-
-#### Filtering missing values
-
-There are other functions we can use to evaluate columns and get a true/false
-output. An important one is `is.na()`. This function evaluates a column and
-reports back a `TRUE` value when there is an `NA` in that column's row. For
-example, we can use the `head()` function to look at the top 6 values of the
-`sex` column, and see that there is an NA in the fourth row.
-
-```{r}
-head(penguins$sex)
-```
-
-The `is.na` function evaluates the whole column and gives us `TRUE`s whenever it
-sees an NA. Not surprisingly, we see a `TRUE` in the fourth observation.
-
-```{r}
-head(is.na(penguins$sex))
-```
-
-Since `is.na()` gives us a `TRUE`/`FALSE` vector, we can use it with `filter`.
-The following gives us all rows where the sex column has missing data (i.e. is
-set to `NA`):
-
-```{r}
-dplyr::filter(penguins, is.na(sex))
-```
-
-To do the reverse, i.e. keep only the observations where the sex value is not
-missing, combine `is.na` with the NOT operator:
-
-```{r}
-dplyr::filter(penguins, !is.na(sex))
-```
-
-### Exercise: subsetting data
-
-Write code to extract data for Gentoo penguins with weight between 4.8kg and
-5.2kg (inclusive). Only keep the species, sex and body mass columns in the
-output. Give the numbers of resulting observations for male penguins, female
-penguins and penguins with unknown sex.
-
-```{r}
-penguins_subset <- dplyr::filter(penguins,
- species == "Gentoo",
- 4800 <= body_mass_g & body_mass_g <= 5200)
-penguins_subset <- dplyr::select(penguins_subset, species, sex, body_mass_g)
-penguins_subset
-```
-
-```{r}
-cat("Number of male penguins:", nrow(dplyr::filter(penguins_subset, sex == "male")), "\n")
-cat("Number of female penguins:", nrow(dplyr::filter(penguins_subset, sex == "female")), "\n")
-cat("Number of penguins of unknown sex:", nrow(dplyr::filter(penguins_subset, is.na(sex))), "\n")
-```
-
-
-## Creating new variables
-
-We may often want to make a new column with some updated or transformed value.
-We can use the `mutate` function in `dplyr` for this:
-
-```
-# value1, value2,... are expressions, possibly involving column names
-
-dplyr::mutate(data, new_column1 = value1, new_column2 = value2, ...)
-```
-
-For example, to add a column of IDs for identifying each row in the data:
-
-```{r}
-penguins_with_ids <- dplyr::mutate(penguins, id = 1:nrow(penguins))
-
-# Optional: Put the ID column at the beginning of the dataframe
-penguins_with_ids <- dplyr::relocate(penguins_with_ids, id, .before = species)
-
-head(penguins_with_ids)
-```
-
-Another example: if we wanted to calculate a new value, the ratio of bill length
-to bill depth, we could do the following
-
-```{r}
-dplyr::mutate(penguins, bill_ratio = bill_length_mm / bill_depth_mm)
-```
-
-**Note**: the output of mutate is not just a new column on its own,
-but the whole dataframe with the new column appended. To update `penguins` to
-have the new column, we need to overwrite it:
-
-```{r}
-penguins <- dplyr::mutate(penguins, bill_ratio = bill_length_mm / bill_depth_mm)
-colnames(penguins)
-```
-
-
-### Exercise: creating variables
-
-Update the `penguins` dataframe so that it contains an ID column
-_with IDs represented as strings_.
-
-```{r}
-# Solution 1
-penguins <- dplyr::mutate(penguins, id = as.character(1:nrow(penguins)))
-
-# Solution 2
-penguins <- dplyr::mutate(penguins, id = 1:nrow(penguins)) # int IDs
-penguins <- dplyr::mutate(penguins, id = as.character(id)) # update column to strings
-```
-
-
-## Sorting observations
-
-We can sort the rows of data by the value of a particular column using the
-`arrange` function in `dplyr`. By default, the sorting is performed in increasing
-order, although we can use the `desc()` function on the column to sort in
-descending order:
-
-```
-dplyr::arrange(data, col) # sort rows by ascending order of values from column
- # `col`
-
-dplyr::arrange(data, dplyr::desc(col)) # sort rows by descending order of
- # values from column `col`
-```
-
-For example, to sort the `penguins` data by descending value of flipper length:
-
-```{r}
-penguins_sorted_flipper <- dplyr::arrange(penguins, dplyr::desc(flipper_length_mm))
-penguins_sorted_flipper
-```
-
-
-### Exercise: sorting
-
-Sort the `penguins` data by the id column we created in the previous exercise.
-Explain the resulting order on the id column.
-
-```{r}
-penguins_sorted_id <- dplyr::arrange(penguins, id)
-head(dplyr::select(penguins_sorted_id, id, species, year, bill_length_mm))
-```
-
-
-## Summarising / aggregating data
-
-Often we want to aggregate data at certain levels to better understand
-differences across groups. For instance, does flipper length differ by species?
-Does body mass change between years?
-
-First, we can use `summarise` on its own, without any grouping, to get a single
-summary about the dataframe. Here are some examples using the body mass variable:
-
-```{r}
-# Count number of observations
-print(dplyr::summarise(penguins, num_rows = dplyr::n()))
-
-# Count number of different years in the data
-print(dplyr::summarise(penguins, num_years = dplyr::n_distinct(year)))
-
-# Get the min and max year
-print(dplyr::summarise(penguins, min_year = min(year), max_year = max(year)))
-
-# calculate the sum of body masses for the whole data frame
-print(dplyr::summarise(penguins, sum_flipper_length_mm = sum(flipper_length_mm)))
-```
-
-If the result is `NA`, it's likely because the column contained missing values.
-We include the `na.rm = TRUE` optional argument to tell `summarise` to remove
-`NA`s before calculating:
-
-```{r}
-# remove missing values
-dplyr::summarise(penguins, sum_flipper_length_mm = sum(flipper_length_mm, na.rm = TRUE))
-```
-
-More generally, we can compute summaries for subgroups of the data by combining
-the `group_by` and `summarise` (or `summarize`) functions in `dplyr`. The steps
-to do this are:
-
-1. First use `group_by` to declare the column (or columns) that you want to
- group the data by.
-2. Then use `summarise` to actually do the summarising on each of the subgroups
- from step 1. The resulting dataframe will have one summary per subgroup.
-
-For example, to get the average flipper length of each sex:
-
-```{r}
-# First group the data by sex
-penguins_grouped_by_sex <- dplyr::group_by(penguins, sex)
-
-# Then find the mean flipper length for each sex
-dplyr::summarise(penguins_grouped_by_sex, mean_flipper_length_mm = mean(flipper_length_mm, na.rm = TRUE))
-```
-
-
-These functions are powerful. We can group by multiple columns at once to create
-pairwise groups. As we saw above, we can also create several summary variables
-at the same time:
-
-```
-dplyr::group_by(data, col1, col2, ...) # group by combinations of values in
- # col1, col2, ...
-
-# Compute multiple summaries on the same data
-dplyr::summarise(grouped_data, summary1 = <...>, summary2 = <...>, ...)
-```
-
-
-### Exercise: grouping and summarising
-
-Create a summary dataframe that gives the mean, range (i.e. `max - min`)
-and standard deviation of the body mass for each species / sex combination, as
-well as the number of observations in each group.
-
-```{r}
-penguins_grouped <- dplyr::group_by(penguins, species, sex)
-dplyr::summarise(penguins_grouped,
- mean_body_mass_g = mean(body_mass_g, na.rm = TRUE),
- sd_body_mass_g = sd(body_mass_g, na.rm = TRUE),
- range_body_mass_g = max(body_mass_g, na.rm = TRUE) - min(body_mass_g, na.rm = TRUE))
-```
-
-
-### An unimportant detail: grouped dataframes
-
-`dplyr::group_by` returns a 'grouped dataframe' (`dplyr::grouped_df`). These
-behave just like tibbles/dataframes except they have some extra information
-about the grouping attached to them.
-
-When you group by multiple columns, the result of `summarise` will typically
-also be a grouped dataframe. Usually, the groups are given by all columns except
-the last one in the grouped dataframe supplied to `summarise`. By default, you
-get a console message telling you on which columns the output is grouped by (see
-the result of the exercise above).
-
-The upshot of this is that it allows us to do successive summaries without
-having to keep regrouping the data. For example, the code below will produce a
-'max of averages':
-
-```{r}
-penguins_grouped <- dplyr::group_by(penguins, sex, species) # grouped by sex and species
-
-# Average mass for each species / sex combination
-# Result is grouped by sex (see console output)
-penguins_grouped_mass <- dplyr::summarise(penguins_grouped,
- mean_body_mass_g = mean(body_mass_g, na.rm = TRUE))
-print(penguins_grouped_mass)
-
-# Max of the average mass for each species
-penguins_max_species_avg_mass <- dplyr::summarise(
- penguins_grouped_mass,
- max_species_avg_body_mass_g = max(mean_body_mass_g, na.rm = TRUE)
- )
-print(penguins_max_species_avg_mass)
-```
-
-In practice, you don't have to worry about this detail. If you want to get back
-to a plain old tibble/dataframe, use the `dplyr::ungroup` function.
-
-
-## Acknowledgement
-
-The material in this notebook is adapted from Eliza Wood's [Tidyverse: Data
-wrangling & visualization](https://liza-wood.github.io/tidyverse_intro/) course,
-which is licensed under [Creative Commons BY-NC-SA
-4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/). This in itself is
-based on material from [UC Davis's R-DAVIS
-course](https://gge-ucd.github.io/R-DAVIS/index.html), which draws heavily on
-[Carpentries](https://datacarpentry.org/R-ecology-lesson/) R lessons.
\ No newline at end of file
diff --git a/R_notebooks/04_Piping.Rmd b/R_notebooks/04_Piping.Rmd
deleted file mode 100644
index 7ada745..0000000
--- a/R_notebooks/04_Piping.Rmd
+++ /dev/null
@@ -1,132 +0,0 @@
----
-title: "Piping and functional style"
-output: html_notebook
----
-
-## Outline
-
-- The functional philosophy of Tidyverse
-- Piping operator
-
-
-## The Functional philosophy of Tidyverse
-
-The Tidyverse packages are built around a philosophy of having functions that
-work well together. Let's look at some of the functions we've seen so far:
-
-| Package | Function | Data input type | Output type |
-|---------|-------------|-----------------|-------------------|
-| `tidyr` | `read_csv` | string | dataframe |
-| `dplyr` | `filter` | dataframe | dataframe |
-| `dplyr` | `select` | dataframe | dataframe |
-| `dplyr` | `mutate` | dataframe | dataframe |
-| `dplyr` | `relocate` | dataframe | dataframe |
-| `dplyr` | `arrange` | dataframe | dataframe |
-| `dplyr` | `summarise` | dataframe | dataframe |
-| `dplyr` | `group_by` | dataframe | grouped dataframe |
-
-Notice how consistent these are in accepting a dataframe as input and returning
-a dataframe (or something like a dataframe). It is this consistency that makes
-it easy to compose functions.
-
-In addition, it's important to note that none of the functions we've seen so
-far modify the input dataframe 'in place', they always return a new dataframe.
-(This is even the case for the `mutate` function, despite the name!) This
-encourages a 'pipeline' approach, where we successively take the output
-of one function and feed it in as the input to another function.
-
-
-## Piping operator
-
-Since version 4.1, R has had a pipe operator `|>` which facilitates chaining
-function calls.
-
-**Note:** Before a pipe operator was introduced into the base R language, people
-used another pipe operator `%>%` from the `magrittr` package. It is still very
-common to see people using the `magrittr` pipe and it behaves in a similar way
-to base R's `|>` (though there are some minor differences). You can use
-whichever you like, though for this course we'll use the base R pipe.
-
-The pipe operator takes the value in the left hand side and 'feeds it into' the
-_first_ argument of a function call on the right hand side. So, using
-`dplyr::select` as an example, the following two expressions are equivalent ways
-to select two columns `colA` and `colB` from a dataframe `data`:
-
-```
-dplyr::select(data, colA, colB) data |> dplyr::select(colA, colB)
-```
-
-Notice how it looks like the dataframe argument to `dplyr::select` is missing
-in the second expression. The pipe takes care of putting `data` into the first
-argument slot, and the remaining slots are available for all other arguments
-(in this case, the column names `colA` and `colB`).
-
-We can now chain multiple pipe calls together, like so:
-
-```
-data |> dplyr::select(colA, colB) |> dplyr::filter(colA > 10)
-```
-
-The result of the whole of the expression to the right of the assignment `<-`
-gets stored in the `transformed_data`. In words, the above
-
-1. Takes a variable `data`
-2. Selects columns `colA` and `colB`
-3. Takes the result of 2. and filters it to keep rows where `colA > 10`
-
-
-Usually, to make it easier to read, people will put successive pipe calls
-on new lines, like so:
-
-```
-data |>
- dplyr::select(colA, colB) |>
- dplyr::filter(colA > 10)
-```
-
-If we want to store the overall result in a new variable `data_transformed`,
-we can do so by putting the assignment `data_transformed <- ` at the beginning
-of the chain, like so:
-
-```
-data_transformed <- data |>
- dplyr::select(colA, colB) |>
- dplyr::filter(colA > 10)
-```
-
-
-### Exercise: piping
-
-The following code calculates the average bill ratio for penguins observed in
-the year 2009.
-
-```{r}
-library(palmerpenguins) # loads `penguins` data
-
-# Select species, year, bill_length_mm, bill_depth_mm
-penguins1 <- dplyr::select(penguins, year, species, bill_length_mm, bill_depth_mm)
-
-# Filter to keep year 2009 data only
-penguins2 <- dplyr::filter(penguins1, year == 2009)
-
-# Compute new bill_ratio column
-penguins3 <- dplyr::mutate(penguins2, bill_ratio = bill_length_mm / bill_depth_mm)
-
-# Compute average bill ratio
-penguins4 <- dplyr::summarise(penguins3, mean_bill_ratio = mean(bill_ratio, na.rm = TRUE))
-
-print(penguins4)
-```
-
-Rewrite this code to use the pipe operator instead of storing each intermediate
-dataframe, storing the overall result in a new variable called `summarised`.
-
-```{r}
-summarised <- penguins |>
- dplyr::select(year, species, bill_length_mm, bill_depth_mm) |>
- dplyr::filter(year == 2009) |>
- dplyr::mutate(bill_ratio = bill_length_mm / bill_depth_mm) |>
- dplyr::summarise(mean_bill_ratio = mean(bill_ratio, na.rm = TRUE))
-
-print(summarised)
-```
\ No newline at end of file
diff --git a/R_notebooks/05_Combining_datasets.Rmd b/R_notebooks/05_Combining_datasets.Rmd
deleted file mode 100644
index 8df4e63..0000000
--- a/R_notebooks/05_Combining_datasets.Rmd
+++ /dev/null
@@ -1,214 +0,0 @@
----
-title: "Combining datasets with `dplyr`"
-output: html_notebook
----
-
-## Outline
-
-- Joining datasets
-
-
-## Joining datasets
-
-In your data wrangling journey, you will often find yourself wanting to combine
-one dataframe with some kind of supplementary or partner dataframe. In our
-case, we have the penguins and weather data stored separately, but if we ever
-wanted to explore any relationships between them, we'd ideally want it in a
-single dataframe / table. This requires lining up the observations and variables
-in the datasets appropriately, something which is accomplished by performing
-appropriate **joins**.
-
-The key to joining is to identify the variables by which you want to join the
-data. In other words, which columns in each data are the ones that link them
-together? In some cases these may be one-to-one matches (e.g. ID numbers to IDs
-numbers), or in other cases there is data at different levels that need to be
-lined up.
-
-### Left joins
-
-There are several kinds of join function in `dplyr`, but we'll just focus on
-`left_join` and leave you to explore the others for yourself.
-
-Like all the join functions, `left_join` takes three arguments: the two dataframes
-you'd like to join, and the name of the column (or columns) by which to join.
-
-```
-dplyr::left_join(data_left, data_right, by = )
-```
-
-The way `left_join` works is to match up the columns given in the `by` column
-and create a new dataframe by pasting new columns from `data_right` alongside
-the columns from `data_left`. We bring in as many rows from `data_right` as we
-can. The 'left' in `left_join` indicates that we're keeping everything from the
-'left' dataframe (i.e. the first one) and joining the other dataframe onto the
-'left' one.
-
-It's helpful to use small, toy dataframes to explore how joins work (or remind
-yourself after a period of time away).
-
-```{r}
-df1 <- data.frame(colA = c(1, 2, 3, 4),
- colB = c(2021, 2022, 2023, 2024),
- colC = c('a', 'b', 'c', 'd'))
-
-df2 <- data.frame(colA = c(1, 3),
- colD = c('foo', 'bar'),
- colE = c('dog', 'cat'))
-```
-
-```{r}
-df1
-```
-
-```{r}
-df2
-```
-
-Now let's join `df2` onto `df1` by the column `colA`:
-
-```{r}
-df1 |>
- dplyr::left_join(df2, by = "colA")
-```
-
-Notice:
-
-- All the data from the left-hand dataframe, `df1`, is kept (columns `colA` -- `colC`).
-
-- The data from the right-hand dataframe `df2` has been brought over
- for the rows where the 'by' column `colA` has matching values in the
- left-hand dataframe `df1`.
-
-- The rows where there aren't matching values in the 'by' column `colA` have
- missing values for the other right-hand dataframe columns (`colD` and `colE`
- in this case).
-
-
-### Exercise: left join practice
-
-Suppose now the right hand dataframe is as follows:
-
-```{r}
-df2 <- data.frame(colA = c(1, 3, 2, 4, 5),
- colD = c('foo', 'bar', 'baz', 'qux', 'foo'),
- colE = c('dog', 'cat', 'mouse', 'rabbit', 'horse'))
-```
-
-Can you guess what the output of `dplyr::left_join(df1, df2, by = "colA")` will
-be? Check your guess with code below.
-
-```{r}
-df1 |>
- dplyr::left_join(df2, by = "colA")
-```
-
-Now what if you swap the order of `df1` and `df2`? Guess the output of
-`dplyr::left_join(df2, df1, by = "colA")` and check your answer below.
-
-```{r}
-df2 |>
- dplyr::left_join(df1, by = "colA")
-```
-
-
-### Optional exercise: repeated keys
-
-The values in the 'by' column(s) are sometimes called _keys_ for the join. The
-rules we described in the above example are not the whole story and can be
-complicated by the presence of repeated keys.
-
-What do you think happens if there are repeated keys? For example, try to
-guess the output of the following code:
-
-```{r}
-df1 <- data.frame(colA = c(1, 2, 3, 3), # repeated key 3
- colB = c(2021, 2022, 2023, 2024),
- colC = c('a', 'b', 'c', 'd'))
-
-df2 <- data.frame(colA = c(1, 3),
- colD = c('foo', 'bar'),
- colE = c('dog', 'cat'))
-
-df1 |>
- dplyr::left_join(df2, by = "colA")
-```
-
-Now what if we swap the roles of `df1` and `df2`?
-
-```{r}
-df2 |>
- dplyr::left_join(df1, by = "colA")
-```
-
-#### Warning about doubles
-
-It's generally not a good idea to join on a 'by' column (or columns)
-that contain doubles. This is because matching in the join will be done
-by an exact equality test on the doubles, which can create strange
-results due to numerical imprecision and be difficult to reproduce. Example: in
-the following, two doubles that look distinct are considered equal to
-`1 / 3 = 0.333...`, so 'match' on the `1 / 3` entry in data frame `x`.
-
-```{r}
-x <- data.frame(colA = c(1 / 3, 2 / 3),
- colB = c(1000, 2000))
-
-y <- data.frame(colA = c(0.33333333333333331, 0.33333333333333334),
- colB = c("foo", "bar"))
-
-dplyr::left_join(x, y, by = "colA")
-```
-
-
-### Exercise: joining penguin and weather data
-
-Recall the penguin data from the `palmerpenguins` package. We're going to join
-this with some annual weather data, taken from the Palmer Station in Antarctica
-from 1989 - 2019[^1].
-
-```{r}
-library(palmerpenguins) # loads `penguins` data
-weather <- readr::read_csv("./data/weather_annual.csv")
-
-penguins
-weather
-```
-
-Use a join to create a single dataframe that has all the penguin data and
-weather data combined. Hint: there are some subtleties to be aware of:
-
-- First think about which column(s) to join on -- a call to `dplyr::rename`
- might be in order!
-
-- We should make sure that the 'by' column(s) to join on are of the same type.
- Examine the kind of data in each dataframe closely and coerce if necessary!
-
-```{r}
-weather_cleaned <- weather |>
- dplyr::rename(year = Year) |>
- dplyr::mutate(year = as.integer(year))
-
-penguins |>
- dplyr::left_join(weather_cleaned, by = "year")
-```
-
-
-## Acknowledgement
-
-The material in this notebook is adapted from Eliza Wood's [Tidyverse: Data
-wrangling & visualization](https://liza-wood.github.io/tidyverse_intro/) course,
-which is licensed under [Creative Commons BY-NC-SA
-4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/). This in itself is
-based on material from [UC Davis's R-DAVIS
-course](https://gge-ucd.github.io/R-DAVIS/index.html), which draws heavily on
-[Carpentries](https://datacarpentry.org/R-ecology-lesson/) R lessons.
-
-
-## Footnotes
-
-[^1]: The dataset was derived from the following dataset: Palmer Station
- Antarctica LTER. 2023. Daily weather averages for Palmer
- Station, Antarctica (1989-2023) ver 9. Environmental Data Initiative.
- https://doi.org/10.6073/pasta/3eefb45dbfb784c3cabe3690ea46fe9e (Accessed
- 2024-01-08). See the README in the data folder accompanying these
- notebooks for more details.
\ No newline at end of file
diff --git a/R_notebooks/06_Reshaping_data.Rmd b/R_notebooks/06_Reshaping_data.Rmd
deleted file mode 100644
index 399bf95..0000000
--- a/R_notebooks/06_Reshaping_data.Rmd
+++ /dev/null
@@ -1,186 +0,0 @@
----
-title: "Reshaping data with `tidyr`"
-output: html_notebook
----
-
-## Outline
-
-- Converting to/from tidy format
-
-## Introduction
-
-There are often cases where you'd like to change the shape of your data, by
-which we mean to change the structure of the columns and/or rows. The `tidyr`
-package contains functions to support this.
-
-As an example dataset for reshaping, we'll use data on territorial fossil CO2
-emissions by country (Friedlingstein et al. 2023)[^1].
-
-**Note:** To read the data, we'll use a call to the `read_excel` function from
-the `readxl` package. We only touched on this in notebook 2, so don't worry
-about understanding exactly how the data is read in. Treat this as a glimpse of
-seeing the Tidyverse in action 'in the wild'. You can read up about `read_excel`
-as extra homework, if you're keen :-)
-
-```{r}
-emissions <- readxl::read_excel("data/National_Fossil_Carbon_Emissions_2023v1.0.xlsx",
- sheet = "Territorial Emissions",
- skip = 11) |>
- dplyr::rename(Year = `...1`) |> # missing column name in data got assigned name `...1` when reading
- dplyr::select(Year, World, Africa, Asia, `Central America`, Europe,
- `Middle East`, `North America`, Oceania, `South America`,
- Bunkers) |>
- dplyr::mutate(Year = as.integer(Year))
-
-print(emissions)
-```
-
-## Converting to/from tidy format
-
-One scenario for reshaping data is when we receive data that is not in tidy
-format and want to transform it so that it is tidy.
-
-In the emissions data above, notice how each column other than 'Year'
-corresponds to a region of the world (or the category 'Bunkers'):
-
-```{r}
-colnames(emissions)
-```
-
-This is not in tidy format. The observations correspond to year-region pairs,
-while the variable being measured is territorial emissions. But the data is
-structured as a matrix, where to get the emissions value for a region and year
-you look up the entry for the appropriate row and column.
-
-What we'd like to do is create a dataframe with columns 'Year', 'Country' and
-'Territorial_emissions' columns, with rows corresponding to year-region pairs.
-
-### Matrix format to tidy format with `pivot_longer`
-
-We can use the function `pivot_longer` from the `tidyr` package to help us make
-the required transformation. Like most of the Tidyverse functions, there are a
-lot of possible parameters to use in this function, but we only need to use it
-as follows:
-
-```
-tidyr::pivot_longer(data, , names_to = "Name_for_gathered_columns", values_to = "Variable_name")
-```
-
-where
-
-- `data` is the dataframe to transform.
-- `` is a specification of the columns that should be
- gathered into a new column.
-- `names_to` defines the name of the new column to create, whose values will
- be the names in ``.
-- `values_to` is the name of a new column that contains the values that were
- in the columns `` (i.e. the variable that the original
- data was giving).
-
-**Note**: More specifically, `` is a 'tidy-select'. This is a
-way of specifying collections of columns within the Tidyverse. Unfortunately
-details of this are outside the scope of this course, but you can learn more by
-running `?tidyr::tidyr_tidy_select` in the R console. We will explain our use of
-'tidy-select' in code comments below.
-
-The behaviour of `pivot_longer` is much easier to see with an example. The
-following creates a new column called 'Region' that contains all the column
-names in `emissions` from 'World' to 'Bunkers'. The values from these columns
-are put into a new column called 'Territorial_emissions'.
-
-```{r}
-emissions_tidy <- emissions |>
- tidyr::pivot_longer(World:Bunkers, # All columns from 'World' to 'Bunkers'
- names_to = "Region",
- values_to = "Territorial_emissions")
-
-print(emissions_tidy)
-```
-
-Notice how each row corresponds to a year-region pair. The
-'Territorial_emissions' values line up with the year and region they
-corresponded to in the original data.
-
-Notice that the number of rows is equal to the number of regions multiplied by
-the number of years, as we'd expect:
-
-```{r}
-cat("Number of rows in emissions_tidy:", nrow(emissions_tidy), "\n")
-
-# Use ncol(emissions) - 1 so not to include the year column
-cat("Number of year-region pairs:", length(emissions$Year) * (ncol(emissions) - 1), "\n")
-```
-
-In general, `pivot_longer` is called such because it make the table of data
-'longer' i.e. have more rows.
-
-#### Exercise: pivoting
-
-What do you think the output of the following `pivot_longer` will be?
-
-```
-emissions |>
- tidyr::pivot_longer(!Africa, # this means all columns except 'Africa'
- names_to = "Names_column",
- values_to = "Territorial_emissions?")
-```
-
-Run the code below to see if you're correct!
-
-```{r}
-emissions |>
- tidyr::pivot_longer(!Africa, # this means all columns except 'Africa'
- names_to = "Names_column",
- values_to = "Territorial_emissions?")
-```
-
-What do values in the 'Africa' and 'Territorial_emissions?' columns correspond
-to in the following output?
-
-```{r}
-emissions |>
- tidyr::pivot_longer(!Africa, # this means all columns except 'Africa'
- names_to = "Names_column",
- values_to = "Territorial_emissions?") |>
- dplyr::filter(Names_column == "Year")
-```
-
-### Tidy format to matrix format with `pivot_wider`
-
-What if we want to go the other way, i.e. turn a tidy dataframe into a matrix
-format? In that case, we can use `pivot_wider` from the `tidyr` package.
-
-```
-tidyr::pivot_wider(data, names_from = , values_from = )
-```
-
-where
-
-- `data` is the dataframe to transform.
-- `names_from` is the column whose values will be the names of new columns in
- the new dataframe.
-- `values_from` is the name of a column whose values will go into the 'cells'
- of the new dataframe.
-
-To see this in action, the following use of `pivot_wider` will take our tidied
-emissions data and put it back into the original 'matrix' format, where regions
-corresponded to columns and the entries gave the emissions for each year-region
-combination.
-
-```{r}
-emissions_tidy |>
- tidyr::pivot_wider(names_from = Region, values_from = Territorial_emissions)
-```
-
-## Acnowledgements
-
-We acknowledge the Global Carbon Project, which is responsible for the Global
-Carbon Budget and we thank the fossil carbon emissions modelling groups for
-producing and making available their model output.
-
-
-## Footnotes
-
-[^1]: Taken from Global Carbon Budget 2023 (Friedlingstein et al., 2023, ESSD).
- Excel workbook obtained from https://globalcarbonbudgetdata.org/downloads/latest-data/National_Fossil_Carbon_Emissions_2023v1.0.xlsx
- (accessed 2024-02-28).
\ No newline at end of file
diff --git a/R_notebooks/07_Strings_and_dates.Rmd b/R_notebooks/07_Strings_and_dates.Rmd
deleted file mode 100644
index 6c1f4c3..0000000
--- a/R_notebooks/07_Strings_and_dates.Rmd
+++ /dev/null
@@ -1,431 +0,0 @@
----
-title: "Working with strings and dates with `stringr` and `lubridate`"
-output: html_notebook
----
-
-## Outline
-
-- Working with strings
- - Cleaning strings
- - Splitting / pasting strings
- - Extracting substrings
-- Working with dates
- - Converting from strings
- - Accessing timestamp components
-
-
-## Introduction
-
-In this notebook we'll be looking at ways to work with two common kinds of
-data: text data and dates/timestamps. When we first create and collect data, it
-may not be in its tidiest form, especially when it comes to working with
-text data and timestamps. The following packages provide lots of useful
-functions for working with strings / timestamps:
-
-- `stringr`: working with strings (included with `tidyverse`).
-- `lubridate`: working with dates/timestamps (a non-core Tidyverse package).
-
-To demonstrate these packages, we'll be working with two datasets:
-
-- A toy dataset consisting of some coin flipping experiments (thrilling stuff).
-- Weather data from the Palmer Station in Antarctica from 1989 - 2019, where
- data are available for each day[^1].
-
-**Note** We'll be making use of the pipe operator `|>` throughout; see
-the `04_Piping.Rmd` notebook.
-
-
-## Working with text - heads and tails
-
-We have a toy dataset for getting familiar with working with text. The
-`heads_and_tails.csv` file contains data on some coin flipping experiments
-performed by two people, Joe Bloggs and Jane Doe. The experiments were performed
-on different days and are split up into different parts (coin flipping is
-tiring work).
-
-The data is not in a clean state:
-- Joe and Jane's names are recorded in multiple ways
-- The results are inconsistently formatted.
-- The experiments look pretty consistent, but note that in some rows the date is
- separated from the `part n` bit by a colon `:` whereas in other rows it's
- separated by a space.
-
-```{r}
-experiments <- readr::read_csv("./data/heads_and_tales.csv")
-experiments
-```
-
-We'll some of the functions in `stringr` to clean up this dataset.
-
-
-### Cleaning whitespace
-
-Before tidying up the columns, let's first rename the current columns to indicate
-they contain the 'raw' values. We can use the function `rename` from the `dplyr`
-package to do this:
-
-```
-dplyr::rename(new_col_name1 = old_col_name1, new_col_name1 = old_col_name1, ...)
-```
-
-```{r}
-experiments <- experiments |>
- dplyr::rename(Experiment_raw = Experiment,
- Technician_raw = Technician,
- Result_raw = Result)
-print(colnames(experiments))
-```
-
-Let's first tackle cleaning up the technician's names. Look at the unique values
-in the Technician column:
-
-```{r}
-unique(experiments$Technician_raw)
-```
-
-Let's make the case consistent. There are several `stringr` functions we could
-use for this, of the form `str_to_*`
-
-```{r}
-print(stringr::str_to_lower("aLbErt EinStEin")) # albert einstein
-print(stringr::str_to_upper("aLbErt EinStEin")) # ALBERT EINSTEIN
-print(stringr::str_to_title("aLbErt EinStEin")) # Albert Einstein
-print(stringr::str_to_sentence("aLbErt EinStEin")) # Albert einstein
-```
-Let's convert the technicians' names to title case. Do we now have consistent
-names for Joe and Jane?
-
-```{r}
-experiments <- experiments |>
- dplyr::mutate(Technician = stringr::str_to_title(Technician_raw))
-
-unique(experiments$Technician)
-```
-
-Not quite. We can replace the two spaces in the middle of "Joe Bloggs" with a
-single space by using `stringr::str_squish`:
-
-```{r}
-experiments <- experiments |>
- dplyr::mutate(Technician = stringr::str_squish(Technician))
-
-unique(experiments$Technician)
-```
-
-Note that a closely related `stringr` function, `str_trim`, can be used for only
-removing leading and trailing whitespace, if for some reason we wanted to keep
-all the whitespace between the words:
-
-```{r}
-# \t = tab character, \n = new line character
-cat("\tAda Lovelace \n")
-cat(stringr::str_trim("\tAda Lovelace \n")) # "Ada Lovelace"
-```
-
-### Replacing characters / substrings
-
-Next, let's make the Result entries consistently formatted. We'll remove
-the commas from the first few experiments and instead just have a string of
-`H`s and `T`s. We can view this as replacing each comma with the empty string,
-`""`.
-
-In general, to perform text replacement, we can use one of the following
-`stringr` functions:
-
-```{r}
-# Replace the *first* instance of "--" with ", "
-print(stringr::str_replace("a--e--i--o--u", pattern = "--", replacement = ", ")) # a, e--i--o--u
-
-# Replace *all* instances of "--" with ", "
-print(stringr::str_replace_all("a--e--i--o--u", pattern = "--", replacement = ", ")) # a, e, i, o, u
-```
-
-You may wonder why the parameter name 'pattern' is used for the string we want
-to replace. The reason is that we actually need to supply a _regular expression_
-to match on. We'll come back to this.
-
-Let's now clean up the Result column by removing the commas:
-
-```{r}
-experiments <- experiments |>
- dplyr::mutate(Result = stringr::str_replace_all(Result_raw, ",", ""))
-
-experiments |>
- dplyr::select(Result_raw, Result)
-```
-
-
-### Exercise: replacing strings
-
-Put the Experiment column into a consistent format, so that the experiment is
-recorded as `:part ` where `` is a date string and `` is a
-number `1`, `2`, etc.
-
-```{r}
-experiments <- experiments |>
- dplyr::mutate(Experiment = stringr::str_replace(Experiment_raw, " part", ":part"))
-
-experiments |>
- dplyr::select(Experiment_raw, Experiment)
-```
-
-
-### Splitting and concatenating columns
-
-With the columns cleaned up, we no longer need the 'raw' columns, so let's
-remove them:
-
-```{r}
-experiments <- experiments |>
- dplyr::select(-Experiment_raw, -Technician_raw, -Result_raw)
-```
-
-It would be good to have the Experiment column consist of a unique identifier
-for each experiment. We could just give it an integer label, but let's do
-something more sophisticated. Each row is uniquely identifiable from the
-current Experiment string and the name of the Technician. So let's combine
-these together to make a new ID string, as follows:
-
-```
-Joe Bloggs + 2024-01-04:part 2 --> 2024-01-04:2:JoeBloggs
-```
-
-Note that we've removed the `part ` string and removed the inner space in the
-name. How can we accomplish this transformation in smaller steps?
-
-- First split the experiment label `2024-01-04:part 2` into two pieces:
- `2024-01-04` and `2`.
-
-- Remove the space from the name, `Joe Bloggs` to `JoeBloggs`.
-
-- Paste the results together using colons:
- `2024-01-04` + `2` + `JoeBloggs` --> `2024-01-04:2:JoeBloggs`.
-
-We know how to do the second step (use `str_replace`), but steps 1 and 3 are new.
-
-The trick is to do this column-wise in the dataframe. Se we'll
-**make new columns** containing the pieces we want to paste together, and then
-create a new column by pasting these two columns together.
-
-To perform the splitting, we can use the `separate` function from the
-`tidyr` package (not `stringr`!) to split a column on a separator. The result is
-one column for each piece of the split; we thus need to also provide names for
-the new columns:
-
-```
-tidyr::separate(data,
- col,
- into = c("NewCol1", "NewCol2", ...),
- sep = )
-```
-
-To paste columns back together with a custom separator, we can use the
-`str_c` function from `stringr`:
-
-```{r}
-stringr::str_c("foo", "bar", "baz", sep = " -- ") # foo -- bar -- baz
-```
-
-
-### Exercise: splitting and concatenating columns
-
-Use `tidyr::separate` and `stringr:str_c` to create a unique experiment ID by
-pasting together:
-
-- The experiment date
-- The sub-experiment number
-- The technician's name (without a space)
-
-E.g.
-```
-Joe Bloggs + 2024-01-04:part 2 --> 2024-01-04:2:JoeBloggs
-```
-
-Hint: don't try to do this all in one go. Instead, build it up step-by-step and
-use the pipe operator `|>` join the steps together.
-
-```{r}
-experiments |>
- tidyr::separate(col = Experiment,
- into = c("Experiment_date", "Sub_experiment"),
- sep = ":part ") |> # don't forget the space!
- dplyr::mutate(Experiment_id = stringr::str_c(Experiment_date,
- Sub_experiment,
- stringr::str_remove(Technician, " "),
- sep = ":"))
-```
-
-
-### Finding substrings
-
-How many of the experiments features a run of 5 heads or 5 tails?
-
-We can answer this by:
-- For each row, determine whether it contains a run of 5 heads or 5 tails
-- Filter on the result
-
-To perform the first step, we can use `str_detect` from `stringr`. This simply
-returns `TRUE` or `FALSE` depending on whether it finds a given pattern in
-a string:
-
-```
-stringr::str_detect(a_string, pattern)
-```
-
-The `pattern` argument is interpreted as a _regular expression_. We mentioned
-this earlier when looking at `str_replace` / `str_replace_all`. Regular expressions
-are a mini-language for specifying matches on strings. We're not going to go into
-this much here, but they are useful to know about, especially if you work with
-text data a lot; check out the great
-[stringr cheat sheet](https://github.com/rstudio/cheatsheets/blob/main/strings.pdf)
-for a summary, or consult the
-[chapter on regular expressions in R for Data Science (2e)](https://r4ds.hadley.nz/regexps)
-for an introduction. Here are some example regular expressions in action, using
-`str_detect` to indicate whether the given string matches or not:
-
-```{r}
-# Match on a string as-is (case sensitive)
-stringr::str_detect("Regex is cool.", pattern = "ex") |> print() # true
-stringr::str_detect("Regex is cool.", pattern = "COOL") |> print() # false
-
-# Match on 1 or more instances
-stringr::str_detect("Regex is cool.", pattern = "o+") |> print() # true
-stringr::str_detect("Regex is cool.", pattern = "coolcool+") |> print() # false
-
-# Regex-special characters need escaping e.g. to match on a period, use \\.
-stringr::str_detect("Regex is cool.", pattern = "\\.") |> print() # true
-
-# Match on either one pattern or another with pipe |
-stringr::str_detect("Regex is cool.", pattern = "cool|meh") |> print() # true
-stringr::str_detect("Regex is meh.", pattern = "cool|meh") |> print() # true
-stringr::str_detect("Regex is cool.", pattern = "meh|lame") |> print() # false
-
-# Match at the beginning of the string only with ^
-stringr::str_detect("Regex is cool.", pattern = "^Regex") |> print() # true
-stringr::str_detect("Regex is cool.", pattern = "^cool") |> print() # false
-```
-
-
-### Exercise: finding substrings
-
-With the help of `str_detect` and a suitable regular expression, write code to
-work out how many experiments feature a run of at least 5 straight heads or 5
-straight tails.
-
-```{r}
-experiments |>
- dplyr::mutate(Has_run_of_5 = stringr::str_detect(Result, pattern = "HHHHH|TTTTT")) |>
- dplyr::filter(Has_run_of_5) |>
- nrow()
-```
-
-## Working with dates
-
-We have weather data from the Palmer Station in Antarctica from 1989 - 2019[^1],
-where data are available for each day.
-
-```{r}
-weather <- read.csv("./data/PalmerStation_Daily_Weather.csv")
-str(weather)
-```
-
-However, the structure of the data above indicate that the first variable, Date,
-is a 'character'. This means that R is not reading these dates as numbers, and
-so it may be hard to manipulate them any further (e.g. extracting certain
-years).
-
-```{r}
-head(weather$Date)
-class(weather$Date)
-```
-
-(**Note**: if we'd used `read_csv` from the `readr` package then these would
-automatically have been coerced into dates. We're avoiding this for now to
-demonstrate how to convert raw strings into dates.)
-
-We'll use the `lubridate` package (loaded in when we load in `tidyverse`)
-to convert these variables into dates and create a column for the year.
-
-
-### Converting from strings
-
-The `lubridate` package has very intuitive function names and argument
-structures. For instance, you can convert a character type into a date type by
-using a function with letters representing the date format. In `lubridate`,
-y = year, m = month, d = day, h = hour, m = minute, s = second, etc.
-
-(You can see all of these formats by using the auto-complete box in RStudio,
-e.g. to see all functions starting with 'y', begin typing `lubridate::y`.)
-
-We can see that our data is formatted in the year-month-day format, and so we
-can use the `ymd` function to indicate to R what format we want it to detect as
-it converts characters to dates. If we use this function and assign the output
-to a date vector, we can then evaluate the class to see that it is a date.
-
-```{r}
-date_vector <- lubridate::ymd(weather$Date)
-class(date_vector)
-```
-
-Remember that manipulating a column does not mean it automatically saves into
-the dataframe. Instead, we need to remember to write (or overwrite) that column
-into our dataframe. Remember that we can use the mutate function to do this,
-where we can overwrite out date column:
-
-```{r}
-weather <- weather |>
- dplyr::mutate(Date = lubridate::ymd(Date))
-
-class(weather$Date)
-```
-
-
-### Accessing timestamp components
-
-Now that R recognizes these as dates, we can extract certain date-related
-features, such as the year, month, and day. The `lubridate` package has functions
-conveniently named `year`, `month`, `day` that can be used with a date argument,
-and that element of the date will be extracted. For example:
-
-```{r}
-weather <- weather |>
- dplyr::mutate(Year = lubridate::year(Date))
-
-head(weather) |>
- dplyr::select(Date, Year)
-```
-
-
-#### Exercise: working with dates
-
-Create a summary of the weather data that gives the maximum, minimum, and
-mean of the average temperatures for each **month** of the year.
-
-```{r}
-weather |>
- dplyr::mutate(Month = lubridate::month(Date)) |>
- dplyr::group_by(Month) |>
- dplyr::summarize(Average_temp = mean(Temperature.Average..C., na.rm = TRUE),
- Max_temp = max(Temperature.High..C., na.rm = TRUE),
- Min_temp = min(Temperature.Low..C., na.rm = TRUE))
-
-```
-
-
-## Acknowledgement
-
-The material in this notebook is adapted from Eliza Wood's [Tidyverse: Data
-wrangling & visualization](https://liza-wood.github.io/tidyverse_intro/) course,
-which is licensed under [Creative Commons BY-NC-SA
-4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/). This in itself is
-based on material from [UC Davis's R-DAVIS
-course](https://gge-ucd.github.io/R-DAVIS/index.html), which draws heavily on
-[Carpentries](https://datacarpentry.org/R-ecology-lesson/) R lessons.
-
-
-## Footnotes
-
-[^1]: Palmer Station Antarctica LTER. 2023. Daily weather averages for Palmer
- Station, Antarctica (1989-2023) ver 9. Environmental Data Initiative.
- https://doi.org/10.6073/pasta/3eefb45dbfb784c3cabe3690ea46fe9e (Accessed
- 2024-01-08).
\ No newline at end of file
diff --git a/R_notebooks/08_Summary.Rmd b/R_notebooks/08_Summary.Rmd
deleted file mode 100644
index 1689bc6..0000000
--- a/R_notebooks/08_Summary.Rmd
+++ /dev/null
@@ -1,51 +0,0 @@
----
-title: "Summary and next steps"
-output: html_notebook
----
-
-
-## Review
-
-This course has provided an introduction to working with data using packages
-in the Tidyverse. We looked at
-
-- Using `readr` to reading csv data with explicit column specifications, and
- touched on other packages for reading other kinds of files e.g. Excel
- workbooks.
-- Using `dplyr` to manipulate data (selecting columns, filtering, summarising,
- sorting, etc.) and for joining multiple dataframes together.
-- Using `tidyr` to reshape data e.g. from 'matrix' format to tidy format.
-- Working with strings and dates using the `stringr` and `lubridate` packages.
-
-We also discussed some key philosophical underpinnings of the Tidyverse:
-
-- Adopting the convention of putting data into _tidy_ format.
-- The idea that the functions in Tidyverse packages are designed with very
- consistent 'interfaces' e.g. taking in a dataframe and returning a new
- dataframe.
-- The 'functional' style of programming, where we can set up pipelines for
- performing successive transformations of data.
-
-
-## Next steps / further resources
-
-This course has given you a grounding in using the Tidyverse and you
-now feel confident using it in your own work. To take your knowledge further,
-the following extra resources are available:
-
-- Cheatsheets for several Tidyverse packages, including the ones we've covered
- in this course, are available at .
- These are a great way to quickly look up function(s) that help you perform
- some concrete task. Often it's a good idea to look at the cheatsheet to know
- what functions(s) you need, then use the help system in R to read the
- documentation, or search the web for further advice.
-
-- The [R for Data Science book (2nd ed.)](https://r4ds.hadley.nz/) by Hadley
- Wickham, Mine Çetinkaya-Rundel and Garrett Grolemund is a freely available,
- online book which covers lots of aspects of working with and visualising data
- using the Tidyverse in a way that's approachable for non-expert R programmers.
-
-- A natural follow up to this course would be to learn about plotting and
- visualising data in R with the `ggplot2` package, which is part of the
- Tidyverse. The R for Data Science book above is a great resource to start
- with for learning how to plot with `ggplot2`.
diff --git a/R_notebooks/Working_with_data_in_R.Rproj b/R_notebooks/Working_with_data_in_R.Rproj
deleted file mode 100644
index 6d8b9a6..0000000
--- a/R_notebooks/Working_with_data_in_R.Rproj
+++ /dev/null
@@ -1,18 +0,0 @@
-Version: 1.0
-
-RestoreWorkspace: Default
-SaveWorkspace: Default
-AlwaysSaveHistory: Default
-
-EnableCodeIndexing: Yes
-UseSpacesForTab: Yes
-NumSpacesForTab: 2
-Encoding: UTF-8
-
-RnwWeave: Sweave
-LaTeX: pdfLaTeX
-
-MarkdownWrap: Column
-MarkdownWrapAtColumn: 80
-
-SpellingDictionary: en_GB
diff --git a/R_notebooks/data/National_Fossil_Carbon_Emissions_2023v1.0.xlsx b/R_notebooks/data/National_Fossil_Carbon_Emissions_2023v1.0.xlsx
deleted file mode 100644
index 58c0753..0000000
Binary files a/R_notebooks/data/National_Fossil_Carbon_Emissions_2023v1.0.xlsx and /dev/null differ
diff --git a/R_notebooks/data/PalmerStation_Daily_Weather.csv b/R_notebooks/data/PalmerStation_Daily_Weather.csv
deleted file mode 100644
index 4b7a462..0000000
--- a/R_notebooks/data/PalmerStation_Daily_Weather.csv
+++ /dev/null
@@ -1,12478 +0,0 @@
-Date,Temperature High (C),Temperature Low (C),Temperature Average (C),Sea Surface Temperature (C),Sea Ice (WMO Code),Pressure High (mbar),Pressure Low (mbar),Pressure Average (mbar),Wind Peak (knots),Wind 5-Sec Peak (knots),Wind 2-Min Peak (knots),Wind Average (knots),Wind Peak Direction,Wind 5-Sec Peak Direction,Wind 2-Min Peak Direction,Wind Prevailing Direction,Precipitation Melted (mm),Precipitation Snow (cm),Depth at Snowstake (cm),Sky Coverage (tenths)
-1989-04-01,2.8,-1.0,,,,1003.8,997.6,,18.0,,,4.0,110.0,,,SW,0.0,0,,4.0
-1989-04-02,1.1,-2.7,,,,997.6,994.9,,24.0,,,9.0,30.0,,,NE,0.0,0,,2.0
-1989-04-03,-0.6,-3.5,,,,998.1,995.2,,13.0,,,8.0,60.0,,,NE,0.0,0,,5.0
-1989-04-04,1.1,-4.4,,,,1002.0,998.1,,14.0,,,6.0,210.0,,,NW,0.0,0,,5.0
-1989-04-05,-0.6,-2.9,,,,1001.8,997.2,,14.0,,,4.0,230.0,,,SW,0.0,0,,10.0
-1989-04-06,2.5,-3.1,,,,997.3,994.6,,15.0,,,4.0,180.0,,,W,0.0,0,,2.0
-1989-04-07,-1.4,-3.2,,,,995.4,988.4,,16.0,,,8.0,40.0,,,NE,1.0,T,,9.0
-1989-04-08,-0.8,-4.5,,,,996.8,983.0,,39.0,,,14.0,120.0,,,E,0.0,0,,5.0
-1989-04-09,-1.0,-4.0,,,,1002.9,996.8,,27.0,,,11.0,50.0,,,E,0.0,0,,0.0
-1989-04-10,-1.5,-3.8,,,,1002.8,995.0,,16.0,,,6.0,60.0,,,NE,T,T,,10.0
-1989-04-11,-1.2,-3.3,,,,995.0,988.1,,12.0,,,8.0,360.0,,,W,T,T,,10.0
-1989-04-12,-0.6,-5.8,,,,995.8,981.0,,30.0,,,12.0,260.0,,,SE,T,T,,1.0
-1989-04-13,-3.5,-7.2,,,,1001.8,995.8,,16.0,,,10.0,30.0,,,SW,0.0,0,,4.0
-1989-04-14,-3.0,-6.9,,,,1003.1,1001.1,,13.0,,,6.0,70.0,,,E,0.0,0,,7.0
-1989-04-15,1.7,-5.5,,,,1001.1,988.0,,18.0,,,6.0,130.0,,,SE,T,T,,10.0
-1989-04-16,3.6,0.0,,,,988.0,983.8,,32.0,,,16.0,80.0,,,N,0.0,0,,8.0
-1989-04-17,0.8,-0.5,,,,989.2,985.7,,19.0,,,6.0,250.0,,,N,0.3,1,,10.0
-1989-04-18,-1.1,-2.8,,,,996.1,989.2,,25.0,,,8.0,30.0,,,NE,2.0,T,,10.0
-1989-04-19,-3.3,-5.8,,,,997.0,994.0,,26.0,,,10.0,40.0,,,NE,0.0,0,,6.0
-1989-04-20,-2.8,-6.1,,,,994.8,992.1,,19.0,,,5.0,90.0,,,N,1.0,1,,10.0
-1989-04-21,-0.2,-2.7,,,,992.1,983.1,,10.0,,,4.0,310.0,,,N,2.0,1,,10.0
-1989-04-22,0.7,-1.9,,,,985.1,979.9,,20.0,,,2.0,10.0,,,N,4.0,4,,10.0
-1989-04-23,0.6,-2.8,,,,988.5,979.7,,33.0,,,15.0,30.0,,,N,T,T,,10.0
-1989-04-24,-0.5,-3.9,,,,983.8,979.6,,33.0,,,16.0,360.0,,,E,2.0,9,,10.0
-1989-04-25,-1.1,-2.2,,,,992.5,983.1,,22.0,,,8.0,110.0,,,NW,2.0,4,,10.0
-1989-04-26,-1.1,-3.1,,,,997.9,992.5,,16.0,,,8.0,240.0,,,SW,0.0,0,,10.0
-1989-04-27,-0.3,-3.0,,,,997.0,981.0,,24.0,,,10.0,330.0,,,NW,1.0,2,,10.0
-1989-04-28,-0.8,-1.7,,,,981.1,977.3,,20.0,,,12.0,210.0,,,W,4.0,10,,10.0
-1989-04-29,-0.3,-3.3,,,,995.9,981.1,,17.0,,,12.0,20.0,,,N,0.0,0,,7.0
-1989-04-30,0.5,-1.0,,,,995.0,977.0,,45.0,,,16.0,40.0,,,NE,0.0,0,,9.0
-1989-05-01,-0.3,-1.7,,,,994.8,977.0,,40.0,,,10.0,60.0,,,N,0.8,3,,9.0
-1989-05-02,-0.3,-3.8,,,,1011.4,994.9,,21.0,,,8.0,220.0,,,SW,T,T,,7.0
-1989-05-03,2.9,0.0,,,,1010.9,1000.2,,40.0,,,10.0,40.0,,,N,1.0,3,,10.0
-1989-05-04,0.5,-2.7,,,,1005.8,992.9,,20.0,,,8.0,360.0,,,NW,0.0,0,,10.0
-1989-05-05,2.8,-2.8,,,,993.0,982.0,,42.0,,,22.0,360.0,,,W,T,1,,10.0
-1989-05-06,2.2,-3.3,,,,993.5,970.7,,46.0,,,18.0,30.0,,,S,0.0,0,,10.0
-1989-05-07,3.9,0.8,,,,987.9,972.7,,40.0,,,15.0,30.0,,,E,0.5,T,,10.0
-1989-05-08,3.3,0.8,,,,984.0,971.0,,61.0,,,24.0,30.0,,,N,6.0,0,,10.0
-1989-05-09,0.3,-1.3,,,,973.0,971.4,,18.0,,,5.0,310.0,,,NE,0.0,0,,10.0
-1989-05-10,-2.8,-5.0,,,,978.8,973.0,,52.0,,,28.0,30.0,,,NE,T,T,,10.0
-1989-05-11,-4.2,-6.2,,,,994.1,979.0,,26.0,,,14.0,30.0,,,NE,2.0,2,,8.0
-1989-05-12,-2.2,-6.1,,,,1008.4,994.1,,27.0,,,14.0,220.0,,,W,1.0,2,,10.0
-1989-05-13,1.1,-6.1,,,,1009.7,1003.7,,46.0,,,25.0,10.0,,,NW,2.8,4,,10.0
-1989-05-14,2.2,1.1,,,,1013.1,1008.0,,35.0,,,20.0,10.0,,,NW,0.0,0,,10.0
-1989-05-15,4.4,1.7,,,,1010.9,986.9,,45.0,,,30.0,30.0,,,NE,T,0,,10.0
-1989-05-16,3.0,0.0,,,,989.4,970.2,,52.0,,,18.0,30.0,,,NE,3.6,1,,10.0
-1989-05-17,1.7,-1.4,,,,987.5,978.1,,48.0,,,22.0,10.0,,,NW,T,T,,4.0
-1989-05-18,0.3,-2.8,,,,987.6,979.0,,48.0,,,18.0,340.0,,,NW,0.0,0,,10.0
-1989-05-19,0.5,-2.8,,,,992.8,981.6,,46.0,,,16.0,40.0,,,NE,2.0,1,,10.0
-1989-05-20,2.2,-0.5,,,,989.8,981.9,,44.0,,,16.0,30.0,,,N,0.5,1,,10.0
-1989-05-21,2.2,-0.8,,,,987.7,979.0,,65.0,,,30.0,10.0,,,N,2.6,1,,10.0
-1989-05-22,0.6,-1.7,,,,980.9,974.0,,39.0,,,20.0,350.0,,,NW,2.6,3,,9.0
-1989-05-23,-0.3,-2.8,,,,991.0,979.0,,42.0,,,18.0,20.0,,,NW,0.0,0,,8.0
-1989-05-24,0.0,-1.5,,,,991.0,980.6,,47.0,,,22.0,360.0,,,N,T,1,,10.0
-1989-05-25,1.1,-5.6,,,,982.8,956.0,,55.0,,,30.0,10.0,,,N,11.8,5,,10.0
-1989-05-26,1.0,-3.2,,,,965.0,954.0,,77.0,,,26.0,20.0,,,NW,T,T,,10.0
-1989-05-27,1.6,-5.5,,,,969.9,948.0,,66.0,,,30.0,350.0,,,NW,2.0,1,,10.0
-1989-05-28,1.1,-4.4,,,,961.5,944.0,,66.0,,,32.0,30.0,,,NW,T,T,,10.0
-1989-05-29,-2.2,-6.1,,,,964.3,957.3,,52.0,,,20.0,360.0,,,N,T,T,,10.0
-1989-05-30,-1.1,-10.8,,,,972.2,954.9,,44.0,,,20.0,300.0,,,NW,T,T,,8.0
-1989-05-31,0.0,-5.5,,,,972.2,949.0,,79.0,,,38.0,30.0,,,NW,0.5,5,,10.0
-1989-06-01,-0.2,-4.4,,,,965.8,947.0,,56.0,,,34.0,50.0,,,NW,0.2,2,,10.0
-1989-06-02,-1.1,-5.1,,,,971.1,944.1,,58.0,,,30.0,340.0,,,NW,0.9,2,,10.0
-1989-06-03,-4.5,-8.2,,,,971.9,965.0,,34.0,,,16.0,310.0,,,NE,10.0,10,,8.0
-1989-06-04,-5.0,-6.1,,,,988.0,964.1,,44.0,,,22.0,190.0,,,S,0.3,T,,7.0
-1989-06-05,-3.2,-8.5,,,,1001.6,988.0,,20.0,,,12.0,120.0,,,SW,0.0,0,,6.0
-1989-06-06,-3.1,-6.4,,,,999.5,994.8,,18.0,,,6.0,240.0,,,E,T,0,,8.0
-1989-06-07,-2.2,-4.0,,,,998.9,992.0,,26.0,,,15.0,210.0,,,SW,0.0,0,,6.0
-1989-06-08,-2.7,-9.8,,,,1014.3,998.9,,28.0,,,6.0,190.0,,,NW,0.0,0,,6.0
-1989-06-09,-0.6,-5.0,,,,1018.0,1014.3,,14.0,,,8.0,330.0,,,N,0.0,0,,9.0
-1989-06-10,-0.4,-1.6,,,,1017.0,1005.2,,20.0,,,12.0,330.0,,,N,0.6,2,,10.0
-1989-06-11,-0.2,-6.6,,,,1012.0,1005.0,,34.0,,,16.0,230.0,,,SW,0.0,0,,9.0
-1989-06-12,-0.8,-8.3,,,,1023.6,1012.0,,34.0,,,10.0,40.0,,,E,0.0,0,,8.0
-1989-06-13,-1.3,-5.5,,,,1023.9,1012.0,,34.0,,,14.0,60.0,,,NE,T,T,,8.0
-1989-06-14,0.8,-0.5,,,,1012.0,994.8,,28.0,,,8.0,60.0,,,SE,0.5,1,,10.0
-1989-06-15,4.4,1.0,,,,994.8,978.5,,45.0,,,16.0,30.0,,,NE,0.0,0,,9.0
-1989-06-16,1.6,0.6,,,,979.5,972.3,,34.0,,,10.0,40.0,,,NE,0.0,0,,9.0
-1989-06-17,1.7,-0.5,,,,972.2,966.5,,24.0,,,10.0,70.0,,,E,T,T,,10.0
-1989-06-18,1.1,-1.0,,,,976.3,967.1,,34.0,,,12.0,60.0,,,E,0.1,T,,9.0
-1989-06-19,-1.8,-3.9,,,,983.4,976.3,,34.0,,,8.0,30.0,,,SE,2.6,6,,9.0
-1989-06-20,1.7,-2.3,,,,980.8,957.9,,56.0,,,30.0,30.0,,,NE,1.1,T,,10.0
-1989-06-21,2.0,-1.2,,,,971.2,962.1,,42.0,,,18.0,40.0,,,NE,1.0,2,,10.0
-1989-06-22,-0.5,-3.3,,,,983.0,971.2,,27.0,,,8.0,30.0,,,NE,2.0,2,,10.0
-1989-06-23,5.0,-5.0,,,,982.5,975.8,,52.0,,,18.0,20.0,,,NW,7.2,8,,10.0
-1989-06-24,0.3,-0.5,,,,979.0,964.9,,44.0,,,24.0,350.0,,,N,36.8,36,,10.0
-1989-06-25,1.1,-6.3,,,,984.8,962.7,,50.0,,,20.0,240.0,,,NW,2.0,0,,10.0
-1989-06-26,-3.2,-7.2,,,,973.9,955.0,,46.0,,,20.0,140.0,,,SE,2.5,3,,8.0
-1989-06-27,-0.9,-6.1,,,,976.3,967.1,,34.0,,,18.0,20.0,,,N,0.0,0,,10.0
-1989-06-28,1.1,-2.8,,,,975.1,958.6,,42.0,,,14.0,30.0,,,E,0.0,0,,10.0
-1989-06-29,-2.1,-5.6,,,,963.5,958.0,,31.0,,,12.0,240.0,,,SW,0.6,1,,10.0
-1989-06-30,-1.0,-3.3,,,,989.1,963.5,,29.0,,,10.0,70.0,,,E,0.2,T,,9.0
-1989-07-01,0.6,-5.5,,,,989.5,964.9,,58.0,,,20.0,360.0,,,NE,2.0,2,,10.0
-1989-07-02,0.0,-1.7,,,,972.4,949.7,,60.0,,,30.0,40.0,,,N,T,T,,10.0
-1989-07-03,-1.6,-4.4,,,,989.0,972.4,,35.0,,,10.0,220.0,,,SW,0.0,0,,8.0
-1989-07-04,0.0,-3.9,,,,1001.1,989.0,,33.0,,,12.0,30.0,,,NW,0.3,T,,10.0
-1989-07-05,1.6,-1.1,,,,996.2,990.9,,36.0,,,12.0,20.0,,,NE,6.8,7,,10.0
-1989-07-06,2.2,-0.5,,,,991.0,984.7,,27.0,,,12.0,360.0,,,N,1.0,1,,10.0
-1989-07-07,1.6,0.0,,,,999.9,980.5,,47.0,,,18.0,30.0,,,N,0.3,T,,10.0
-1989-07-08,1.6,-1.6,,,,998.8,983.1,,30.0,,,18.0,300.0,,,NW,T,T,,10.0
-1989-07-09,0.6,-1.7,,,,1002.8,998.0,,24.0,,,14.0,10.0,,,N,1.2,1,,9.0
-1989-07-10,2.8,-1.6,,,,1002.1,976.0,,50.0,,,25.0,60.0,,,NE,0.5,1,,10.0
-1989-07-11,2.7,-0.5,,,,977.2,970.9,,64.0,,,32.0,350.0,,,N,0.3,0,,10.0
-1989-07-12,1.6,-0.6,,,,973.4,969.6,,62.0,,,30.0,330.0,,,N,0.2,T,,10.0
-1989-07-13,-0.5,-3.9,,,,984.8,972.8,,38.0,,,20.0,300.0,,,W,T,T,,10.0
-1989-07-14,-0.5,-5.2,,,,993.5,982.9,,43.0,,,23.0,10.0,,,N,0.0,0,,10.0
-1989-07-15,1.1,-1.6,,,,992.7,966.0,,54.0,,,30.0,60.0,,,NE,2.0,2,,10.0
-1989-07-16,0.5,-5.0,,,,983.0,966.1,,58.0,,,18.0,30.0,,,N,0.3,T,,10.0
-1989-07-17,1.1,-3.9,,,,991.4,976.6,,54.0,,,10.0,10.0,,,NE,T,T,,9.0
-1989-07-18,-0.4,-6.1,,,,1003.1,991.1,,33.0,,,12.0,30.0,,,E,0.0,0,,8.0
-1989-07-19,1.7,-1.1,,,,1002.5,998.2,,52.0,,,25.0,30.0,,,NE,T,T,,10.0
-1989-07-20,2.2,-5.6,,,,1002.5,987.8,,54.0,,,30.0,20.0,,,NW,1.0,1,,8.0
-1989-07-21,0.0,-4.4,,,,1002.3,996.5,,40.0,,,25.0,340.0,,,N,17.0,17,,10.0
-1989-07-22,-0.6,-3.3,,,,998.0,977.6,,53.0,,,22.0,20.0,,,N,3.5,4,,10.0
-1989-07-23,-0.5,-6.6,,,,1002.5,981.0,,52.0,,,20.0,230.0,,,SW,T,T,,10.0
-1989-07-24,-2.1,-4.4,,,,1014.2,1002.5,,24.0,,,6.0,210.0,,,SW,0.0,0,,10.0
-1989-07-25,-2.7,-6.7,,,,1015.5,1014.0,,12.0,,,5.0,210.0,,,W,0.1,T,,8.0
-1989-07-26,-3.4,-8.9,,,,1016.0,1013.8,,10.0,,,2.0,20.0,,,E,T,T,,7.0
-1989-07-27,0.0,-6.9,,,,1013.8,1006.2,,12.0,,,4.0,30.0,,,NE,0.0,0,,10.0
-1989-07-28,0.0,-1.1,,,,1006.1,1000.3,,13.0,,,4.0,360.0,,,N,2.5,3,,10.0
-1989-07-29,0.0,-3.3,,,,1003.5,996.9,,18.0,,,4.0,350.0,,,NW,1.8,2,,10.0
-1989-07-30,-1.9,-3.6,,,,1008.2,1002.8,,30.0,,,4.0,250.0,,,NW,T,T,,10.0
-1989-07-31,-1.2,-3.9,,,,1010.9,1008.2,,25.0,,,8.0,360.0,,,NW,0.0,0,,10.0
-1989-08-01,-1.0,-3.9,,,,1008.2,989.0,,77.0,,,20.0,20.0,,,NW,3.3,3,,10.0
-1989-08-02,-3.2,-7.8,,,,999.5,994.2,,28.0,,,10.0,270.0,,,SW,0.0,0,,9.0
-1989-08-03,1.6,-4.4,,,,998.0,992.1,,47.0,,,26.0,30.0,,,N,0.1,T,,10.0
-1989-08-04,2.2,0.0,,,,1000.5,993.2,,42.0,,,18.0,360.0,,,N,0.1,T,,9.0
-1989-08-05,2.8,0.0,,,,998.6,980.7,,42.0,,,10.0,60.0,,,E,2.0,2,,10.0
-1989-08-06,0.0,-3.8,,,,992.8,982.0,,33.0,,,10.0,20.0,,,NW,T,T,,10.0
-1989-08-07,0.5,-4.1,,,,1013.5,992.5,,25.0,,,6.0,30.0,,,NW,3.9,4,,10.0
-1989-08-08,1.6,-5.0,,,,1014.9,1000.5,,58.0,,,24.0,30.0,,,NE,T,T,,10.0
-1989-08-09,-0.2,-0.8,,,,1000.2,996.0,,44.0,,,20.0,20.0,,,NE,1.8,2,,10.0
-1989-08-10,1.7,-2.8,,,,1012.9,999.4,,10.0,,,2.0,140.0,,,E,2.1,2,,7.0
-1989-08-11,-1.6,-7.2,,,,1015.5,1012.9,,12.0,,,4.0,360.0,,,NE,0.0,0,,7.0
-1989-08-12,-3.3,-7.2,,,,1014.1,1001.1,,12.0,,,6.0,90.0,,,NE,0.0,0,,8.0
-1989-08-13,1.2,-5.0,,,,1001.1,991.2,,36.0,,,8.0,20.0,,,NW,0.5,1,,9.0
-1989-08-14,1.6,-1.1,,,,993.6,988.5,,40.0,,,8.0,40.0,,,SE,2.6,2,,10.0
-1989-08-15,-0.6,-1.6,,,,995.0,990.1,,18.0,,,4.0,150.0,,,N,1.8,2,,10.0
-1989-08-16,0.3,-2.2,,,,994.0,989.5,,19.0,,,4.0,90.0,,,N,3.3,3,,9.0
-1989-08-17,-2.0,-5.0,,,,989.9,987.0,,16.0,,,4.0,210.0,,,W,0.2,T,,10.0
-1989-08-18,-2.2,-11.1,,,,996.8,988.1,,38.0,,,15.0,40.0,,,W,T,T,,8.0
-1989-08-19,-3.3,-8.3,,,,998.0,987.1,,46.0,,,15.0,20.0,,,W,T,T,,10.0
-1989-08-20,-1.6,-6.6,,,,1001.8,993.9,,40.0,,,15.0,270.0,,,NW,T,T,,9.0
-1989-08-21,0.0,-4.4,,,,1000.5,996.9,,48.0,,,20.0,20.0,,,N,4.2,4,,10.0
-1989-08-22,1.4,-1.1,,,,1009.1,1000.5,,38.0,,,18.0,20.0,,,N,0.4,1,,6.0
-1989-08-23,3.3,-1.1,,,,1010.8,1006.2,,48.0,,,14.0,30.0,,,E,0.0,0,,6.0
-1989-08-24,0.0,-1.0,,,,1009.3,1001.5,,40.0,,,8.0,30.0,,,NE,T,T,,10.0
-1989-08-25,-1.1,-2.7,,,,1001.4,994.0,,16.0,,,2.0,30.0,,,N,8.7,6,,9.0
-1989-08-26,-0.5,-2.2,,,,1003.1,994.6,,25.0,,,6.0,30.0,,,E,T,T,,10.0
-1989-08-27,0.0,-2.0,,,,1007.0,1003.1,,40.0,,,4.0,30.0,,,SW,1.0,1,,10.0
-1989-08-28,-2.2,-7.2,,,,1004.2,994.5,,11.0,,,6.0,360.0,,,NE,T,T,,9.0
-1989-08-29,-4.1,-9.7,,,,994.9,993.0,,12.0,,,6.0,20.0,,,NE,0.0,0,,6.0
-1989-08-30,-2.7,-6.6,,,,997.9,993.3,,24.0,,,10.0,100.0,,,E,3.5,4,,9.0
-1989-08-31,-2.8,-8.3,,,,999.1,987.2,,40.0,,,14.0,70.0,,,E,0.0,0,,7.0
-1989-09-01,3.3,-4.4,,,,990.9,987.2,,40.0,,,20.0,80.0,,,E,T,T,,8.0
-1989-09-02,3.3,-2.8,,,,989.9,987.5,,26.0,,,10.0,70.0,,,W,0.0,0,,9.0
-1989-09-03,-2.7,-6.1,,,,987.5,984.8,,17.0,,,8.0,30.0,,,NE,T,T,,9.0
-1989-09-04,-3.5,-6.7,,,,985.1,983.3,,12.0,,,8.0,30.0,,,NE,T,T,,8.0
-1989-09-05,-1.6,-6.1,,,,983.5,981.7,,10.0,,,6.0,30.0,,,NE,1.5,2,,9.0
-1989-09-06,-3.0,-6.1,,,,984.8,979.0,,19.0,,,8.0,50.0,,,SE,1.1,1,,9.0
-1989-09-07,-4.8,-8.3,,,,992.0,983.9,,23.0,,,12.0,100.0,,,E,0.0,0,,8.0
-1989-09-08,-1.6,-10.0,,,,1002.0,992.1,,17.0,,,12.0,100.0,,,SE,0.0,0,,2.0
-1989-09-09,-4.1,-8.3,,,,1005.8,1002.0,,15.0,,,8.0,220.0,,,SW,T,T,,9.0
-1989-09-10,0.0,-5.6,,,,1005.9,996.2,,32.0,,,12.0,10.0,,,NW,0.8,1,,10.0
-1989-09-11,0.8,-0.5,,,,996.2,975.2,,49.0,,,30.0,30.0,,,N,5.3,5,,10.0
-1989-09-12,1.7,-3.9,,,,975.1,955.1,,61.0,,,35.0,10.0,,,N,1.0,T,,10.0
-1989-09-13,1.3,-8.3,,,,980.0,965.2,,42.0,,,10.0,250.0,,,SW,T,T,,9.0
-1989-09-14,1.7,-4.4,,,,988.9,979.9,,38.0,,,20.0,20.0,,,N,5.0,5,,10.0
-1989-09-15,1.7,-2.2,,,,996.5,980.0,,40.0,,,20.0,10.0,,,N,4.0,4,,9.0
-1989-09-16,1.9,-6.1,,,,998.5,989.6,,64.0,,,18.0,30.0,,,NE,T,T,,9.0
-1989-09-17,3.9,-0.5,,,,996.7,976.0,,52.0,,,24.0,30.0,,,NE,T,0,,10.0
-1989-09-18,3.3,-2.7,,,,977.8,972.9,,20.0,,,6.0,240.0,,,W,14.2,14,,10.0
-1989-09-19,-0.2,-3.3,,,,986.3,974.0,,22.0,,,8.0,240.0,,,W,T,T,,10.0
-1989-09-20,0.0,-6.1,,,,988.5,964.2,,60.0,,,20.0,40.0,,,N,0.5,1,,10.0
-1989-09-21,-0.5,-6.1,,,,979.7,965.2,,32.0,,,16.0,250.0,,,W,0.0,0,,5.0
-1989-09-22,-1.6,-3.8,,,,986.0,974.0,,40.0,,,16.0,270.0,,,W,0.2,T,,8.0
-1989-09-23,-1.6,-6.1,,,,1017.7,986.0,,39.0,,,12.0,220.0,,,SW,0.0,0,,7.0
-1989-09-24,0.6,-6.1,,,,1017.8,998.9,,41.0,,,8.0,10.0,,,N,0.5,1,,10.0
-1989-09-25,0.0,-10.0,,,,1020.0,992.1,,59.0,,,14.0,360.0,,,N,0.1,T,,9.0
-1989-09-26,1.7,-5.0,,,,1020.9,1006.4,,41.0,,,20.0,350.0,,,N,0.2,T,,10.0
-1989-09-27,1.6,0.5,,,,1006.2,990.6,,,,,27.0,,,,N,0.2,T,,10.0
-1989-09-28,1.6,-2.5,,,,1004.7,991.1,,,,,8.0,,,,SW,T,T,,7.0
-1989-09-29,1.1,-3.3,,,,1006.8,1004.2,,,,,3.0,,,,SE,0.0,0,,7.0
-1989-09-30,2.3,-5.5,,,,1004.1,989.9,,,,,23.0,,,,E,T,T,,7.0
-1989-10-01,1.6,0.0,,,,990.0,984.9,,,,,10.0,,,,SE,T,T,,8.0
-1989-10-02,1.7,0.3,,,,985.0,971.2,,,,,13.0,,,,NE,0.5,1,,6.0
-1989-10-03,0.5,-1.1,,,,980.9,971.0,,,,,10.0,,,,S,3.5,4,,10.0
-1989-10-04,2.7,-1.7,,,,973.0,959.8,,,,,28.0,,,,W,T,T,,10.0
-1989-10-05,1.7,-1.6,,,,965.7,958.2,,,,,22.0,,,,SE,0.5,1,,10.0
-1989-10-06,0.0,-1.4,,,,983.2,964.9,,,,,20.0,,,,W,9.0,9,,7.0
-1989-10-07,1.7,-1.6,,,,984.1,963.3,,,,,31.0,,,,SW,5.0,1,,10.0
-1989-10-08,2.2,-1.1,,,,982.6,963.7,,,,,13.0,,,,NW,0.0,0,,5.0
-1989-10-09,0.0,-2.2,,,,983.8,981.8,,,,,6.0,,,,S,3.0,3,,7.0
-1989-10-10,-1.1,-3.3,,,,1004.5,982.9,,,,,8.0,,,,W,T,T,,7.0
-1989-10-11,1.1,-3.3,,,,1007.0,984.7,,,,,11.0,,,,NE,T,T,,10.0
-1989-10-12,1.1,-1.8,,,,984.7,975.0,,,,,6.0,,,,SE,9.0,5,,10.0
-1989-10-13,2.1,-3.6,,,,994.0,975.6,,,,,5.0,,,,S,8.0,2,,5.0
-1989-10-14,1.8,-5.0,,,,994.4,979.4,,,,,12.0,,,,E,1.0,2,,10.0
-1989-10-15,2.0,-3.0,,,,981.6,964.8,,,,,8.0,,,,S,11.0,9,,7.0
-1989-10-16,-1.3,-4.2,,,,984.6,966.7,,,,,22.0,,,,S,T,T,,7.0
-1989-10-17,-0.4,-3.7,,,,989.0,975.0,,,,,9.0,,,,S,1.0,1,,9.0
-1989-10-18,1.7,-3.2,,,,982.2,973.8,,,,,13.0,,,,N,10.0,5,,9.0
-1989-10-19,-1.7,-3.9,,,,992.0,979.4,,,,,15.0,,,,W,T,T,,10.0
-1989-10-20,1.2,-4.3,,,,993.3,974.8,,34.0,,,12.0,270.0,,,W,T,T,,10.0
-1989-10-21,4.6,-3.6,,,,990.5,973.9,,24.0,,,8.0,90.0,,,E,2.5,3,,7.0
-1989-10-22,-1.1,-5.0,,,,1010.8,992.0,,36.0,,,27.0,250.0,,,SE,0.0,0,,10.0
-1989-10-23,1.6,-4.7,,,,1012.5,998.6,,61.0,,,30.0,40.0,,,N,0.0,0,,10.0
-1989-10-24,2.9,-3.3,,,,998.7,984.3,,65.0,,,42.0,40.0,,,NE,17.0,T,,10.0
-1989-10-25,3.2,-2.1,,,,985.9,983.2,,50.0,,,28.0,20.0,,,NE,3.0,T,,10.0
-1989-10-26,5.9,0.2,,,,989.4,984.2,,35.0,,,15.0,110.0,,,SE,0.0,0,,10.0
-1989-10-27,7.8,1.7,,,,985.8,979.8,,41.0,,,25.0,140.0,,,SE,0.0,0,,9.0
-1989-10-28,2.0,-3.1,,,,992.3,985.4,,21.0,,,17.0,290.0,,,W,0.0,0,,10.0
-1989-10-29,2.3,-2.8,,,,995.4,992.3,,20.0,,,12.0,270.0,,,W,0.5,T,,10.0
-1989-10-30,1.6,-0.5,,,,992.3,956.2,,52.0,,,30.0,10.0,,,N,5.3,3,,10.0
-1989-10-31,0.0,-1.4,,,,983.9,961.0,,41.0,,,28.0,270.0,,,W,4.0,4,,10.0
-1989-11-01,2.7,-2.6,,,,984.0,959.4,,47.0,,,15.0,40.0,,,W,T,T,,10.0
-1989-11-02,1.7,-2.8,,,,959.3,950.1,,27.0,,,11.0,330.0,,,W,8.0,8,,9.0
-1989-11-03,1.4,-3.7,,,,970.7,958.0,,38.0,,,13.0,50.0,,,N,T,T,,8.0
-1989-11-04,1.7,-1.7,,,,970.1,966.2,,30.0,,,24.0,150.0,,,SE,0.0,0,,3.0
-1989-11-05,2.9,-2.4,,,,1005.9,970.3,,26.0,,,8.0,40.0,,,NE,0.0,0,,7.0
-1989-11-06,4.4,-0.3,,,,1005.9,999.0,,30.0,,,11.0,40.0,,,E,0.0,0,,8.0
-1989-11-07,4.0,-2.5,,,,999.0,997.3,,10.0,,,5.0,170.0,,,W,T,T,,7.0
-1989-11-08,5.0,-0.9,,,,1007.0,999.0,,22.0,,,7.0,360.0,,,N,1.0,1,,8.0
-1989-11-09,3.7,-1.7,,,,1007.2,1003.7,,12.0,,,5.0,80.0,,,SE,T,0,,10.0
-1989-11-10,6.7,-0.8,,,,1003.8,995.2,,30.0,,,11.0,70.0,,,SW,0.0,0,,9.0
-1989-11-11,1.1,-0.8,,,,997.0,994.0,,13.0,,,6.0,270.0,,,W,T,0,,10.0
-1989-11-12,3.4,-3.7,,,,996.9,978.3,,25.0,,,9.0,120.0,,,E,T,1,,9.0
-1989-11-13,3.6,0.0,,,,978.5,974.1,,30.0,,,4.0,50.0,,,SE,5.6,5,,10.0
-1989-11-14,4.0,0.2,,,,978.0,974.1,,18.0,,,7.0,40.0,,,S,0.0,0,,7.0
-1989-11-15,1.1,-1.9,,,,981.6,977.9,,17.0,,,8.0,250.0,,,SW,T,1,,10.0
-1989-11-16,0.1,-2.5,,,,981.9,979.7,,10.0,,,3.0,330.0,,,NW,0.0,0,,10.0
-1989-11-17,2.8,-1.5,,,,979.7,972.2,,9.0,,,3.0,160.0,,,N,T,T,,8.0
-1989-11-18,5.8,-1.1,,,,976.9,971.6,,26.0,,,14.0,110.0,,,E,0.0,0,,3.0
-1989-11-19,4.6,-1.9,,,,976.9,968.0,,16.0,,,6.0,30.0,,,N,0.0,0,,5.0
-1989-11-20,3.3,-1.8,,,,970.8,967.1,,15.0,,,6.0,30.0,,,N,T,T,,6.0
-1989-11-21,3.8,-3.3,,,,976.0,970.8,,9.0,,,5.0,10.0,,,NE,0.0,0,,9.0
-1989-11-22,3.9,-2.5,,,,979.5,975.9,,32.0,,,9.0,40.0,,,E,0.0,0,,7.0
-1989-11-23,4.1,-0.6,,,,987.2,975.3,,26.0,,,7.0,100.0,,,NE,T,1,,2.0
-1989-11-24,4.4,-2.9,,,,987.2,984.7,,20.0,,,11.0,90.0,,,NE,T,T,,7.0
-1989-11-25,5.2,-0.9,,,,998.5,986.5,,12.0,,,7.0,50.0,,,E,0.0,0,,3.0
-1989-11-26,3.9,0.0,,,,1005.9,998.6,,10.0,,,7.0,20.0,,,N,0.0,0,,7.0
-1989-11-27,3.7,-0.9,,,,1004.8,993.8,,20.0,,,11.0,150.0,,,SE,2.0,2,,10.0
-1989-11-28,4.9,0.2,,,,1004.2,985.8,,28.0,,,11.0,120.0,,,W,T,T,,9.0
-1989-11-29,5.6,2.8,,,,989.0,981.9,,42.0,,,19.0,30.0,,,E,5.0,T,,9.0
-1989-11-30,3.9,1.0,,,,989.9,983.4,,24.0,,,11.0,100.0,,,NE,3.0,T,,10.0
-1989-12-01,4.6,0.6,,,,997.2,986.2,,17.0,,,5.0,30.0,,,NW,2.0,T,,10.0
-1989-12-02,6.7,1.3,,,,997.9,995.9,,11.0,,,5.0,340.0,,,NW,0.0,0,,5.0
-1989-12-03,3.6,-1.7,,,,996.3,994.9,,10.0,,,5.0,270.0,,,N,T,T,,10.0
-1989-12-04,3.9,-1.1,,,,994.9,990.1,,11.0,,,7.0,290.0,,,NW,T,T,,7.0
-1989-12-05,5.1,-1.7,,,,997.5,994.9,,10.0,,,6.0,330.0,,,N,0.0,0,,9.0
-1989-12-06,2.7,-0.3,,,,1003.5,997.5,,16.0,,,8.0,220.0,,,W,T,T,,5.0
-1989-12-07,5.0,-0.1,,,,1004.0,1002.4,,15.0,,,4.0,50.0,,,E,0.0,0,,9.0
-1989-12-08,6.1,1.3,,,,1002.5,995.1,,25.0,,,9.0,90.0,,,W,0.0,0,,9.0
-1989-12-09,3.6,0.8,,,,998.0,993.0,,28.0,,,6.0,70.0,,,NE,T,T,,10.0
-1989-12-10,5.6,0.6,,,,1000.0,995.8,,24.0,,,11.0,30.0,,,NE,0.0,0,,9.0
-1989-12-11,5.4,-0.8,,,,995.8,985.6,,29.0,,,13.0,150.0,,,SE,0.0,0,,9.0
-1989-12-12,5.0,1.7,,,,990.4,985.7,,31.0,,,11.0,150.0,,,N,T,T,,10.0
-1989-12-13,2.8,0.0,,,,995.1,990.4,,19.0,,,9.0,280.0,,,N,3.1,1,,10.0
-1989-12-14,3.9,-1.1,,,,1002.3,995.0,,25.0,,,13.0,250.0,,,W,T,T,,9.0
-1989-12-15,4.4,0.6,,,,1003.0,998.9,,20.0,,,11.0,230.0,,,SW,0.0,0,,8.0
-1989-12-16,3.3,0.3,,,,998.9,994.6,,18.0,,,7.0,230.0,,,W,T,T,,8.0
-1989-12-17,3.9,0.0,,,,994.6,991.9,,20.0,,,11.0,240.0,,,SW,0.0,0,,7.0
-1989-12-18,4.4,-0.7,,,,991.9,982.6,,27.0,,,13.0,40.0,,,SE,2.0,3,,10.0
-1989-12-19,3.3,1.2,,,,982.5,971.2,,37.0,,,11.0,50.0,,,E,3.0,T,,10.0
-1989-12-20,1.8,0.0,,,,977.0,970.4,,24.0,,,9.0,260.0,,,W,6.2,4,,10.0
-1989-12-21,3.3,-1.1,,,,986.4,977.0,,30.0,,,13.0,280.0,,,W,0.6,T,,7.0
-1989-12-22,6.0,-0.9,,,,990.2,986.5,,12.0,,,7.0,260.0,,,S,0.0,0,,4.0
-1989-12-23,5.6,0.8,,,,990.0,985.0,,33.0,,,5.0,90.0,,,NE,T,0,,10.0
-1989-12-24,6.7,3.3,,,,988.3,985.1,,32.0,,,15.0,50.0,,,SE,T,0,,10.0
-1989-12-25,5.2,2.7,,,,988.0,986.1,,16.0,,,3.0,170.0,,,S,T,0,,10.0
-1989-12-26,5.0,1.9,,,,998.0,987.4,,12.0,,,3.0,180.0,,,SE,5.3,0,,10.0
-1989-12-27,6.7,2.2,,,,1000.1,998.0,,12.0,,,2.0,360.0,,,W,0.0,0,,9.0
-1989-12-28,4.0,1.7,,,,999.9,996.2,,8.0,,,2.0,240.0,,,W,0.6,0,,10.0
-1989-12-29,4.4,2.1,,,,996.2,994.9,,19.0,,,2.0,50.0,,,N,2.0,T,,10.0
-1989-12-30,5.3,2.8,,,,995.1,991.5,,48.0,,,21.0,50.0,,,NE,0.8,0,,10.0
-1989-12-31,6.1,1.9,,,,995.1,991.0,,45.0,,,18.0,50.0,,,NE,2.0,T,,10.0
-1990-01-01,2.2,0.8,,,,996.8,993.9,,18.0,,,9.0,260.0,,,W,2.0,T,,10.0
-1990-01-02,5.0,-0.1,,,,993.9,980.9,,18.0,,,3.0,150.0,,,SE,18.0,2,,10.0
-1990-01-03,8.3,3.3,,,,985.3,979.5,,21.0,,,11.0,180.0,,,SE,0.8,0,,9.0
-1990-01-04,4.4,2.0,,,,995.8,985.5,,20.0,,,11.0,260.0,,,NW,0.0,0,,7.0
-1990-01-05,3.1,1.4,,,,996.0,995.0,,19.0,,,13.0,260.0,,,W,0.0,0,,10.0
-1990-01-06,2.9,1.1,,,,998.2,994.0,,11.0,,,7.0,260.0,,,SW,0.0,0,,10.0
-1990-01-07,4.4,0.8,,,,1001.8,998.2,,20.0,,,13.0,240.0,,,W,T,T,,10.0
-1990-01-08,4.4,0.6,,,,1001.6,995.9,,18.0,,,7.0,170.0,,,N,0.8,T,,10.0
-1990-01-09,6.7,3.9,,,,995.9,977.5,,46.0,,,17.0,50.0,,,NE,0.3,0,,10.0
-1990-01-10,5.0,1.0,,,,977.8,973.0,,12.0,,,3.0,260.0,,,N,9.3,T,,10.0
-1990-01-11,4.4,0.8,,,,988.9,977.1,,8.0,,,1.0,190.0,,,N,1.0,0,,10.0
-1990-01-12,7.3,2.2,,,,996.5,988.9,,8.0,,,3.0,230.0,,,W,0.0,0,,4.0
-1990-01-13,4.4,1.7,,,,1000.7,996.5,,20.0,,,7.0,50.0,,,E,0.3,T,,10.0
-1990-01-14,6.6,1.1,,,,1000.6,995.0,,14.0,,,5.0,30.0,,,N,0.0,0,,9.0
-1990-01-15,6.6,2.2,,,,994.9,991.8,,30.0,,,13.0,100.0,,,NE,0.0,0,,10.0
-1990-01-16,8.3,1.7,,,,992.0,989.2,,28.0,,,13.0,150.0,,,SE,0.0,0,,9.0
-1990-01-17,7.7,1.1,,,,996.8,991.3,,20.0,,,2.0,110.0,,,NE,0.0,0,,6.0
-1990-01-18,6.7,2.3,,,,997.8,996.8,,31.0,,,7.0,60.0,,,SE,1.5,T,,10.0
-1990-01-19,5.0,1.9,,,,1000.9,997.2,,10.0,,,1.0,110.0,,,NE,5.8,0,,10.0
-1990-01-20,8.7,1.7,,,,1001.0,998.9,,13.0,,,2.0,140.0,,,NE,0.0,0,,6.0
-1990-01-21,8.2,4.0,,,,999.0,992.9,,14.0,,,5.0,140.0,,,SE,T,0,,10.0
-1990-01-22,5.0,1.1,,,,992.8,988.3,,18.0,,,7.0,30.0,,,N,0.8,0,,10.0
-1990-01-23,6.5,2.1,,,,996.3,993.0,,15.0,,,5.0,240.0,,,NE,1.3,0,,10.0
-1990-01-24,6.1,1.7,,,,996.0,993.2,,7.0,,,3.0,20.0,,,NE,0.0,0,,7.0
-1990-01-25,8.6,1.5,,,,993.2,989.7,,10.0,,,5.0,160.0,,,NE,0.0,0,,5.0
-1990-01-26,6.7,1.9,,,,996.0,990.3,,9.0,,,2.0,10.0,,,N,0.0,0,,9.0
-1990-01-27,4.4,1.7,,,,997.9,996.0,,7.0,,,1.0,190.0,,,NE,1.5,0,,10.0
-1990-01-28,5.6,1.1,,,,997.6,990.9,,12.0,,,5.0,240.0,,,W,0.5,T,,9.0
-1990-01-29,3.9,2.3,,,,990.9,986.8,,20.0,,,8.0,220.0,,,SW,T,T,,10.0
-1990-01-30,3.3,1.1,,,,987.4,985.2,,19.0,,,6.0,220.0,,,SW,T,T,,10.0
-1990-01-31,4.3,1.1,,,,985.2,980.7,,5.0,,,1.0,120.0,,,N,1.1,0,,10.0
-1990-02-01,7.2,1.9,,,,985.9,982.8,,12.0,,,3.0,60.0,,,N,2.0,0,,9.0
-1990-02-02,4.3,1.7,,,,993.8,983.8,,26.0,,,7.0,270.0,,,W,T,T,,10.0
-1990-02-03,5.0,1.9,,,,997.6,993.5,,30.0,,,7.0,20.0,,,NE,T,T,,10.0
-1990-02-04,7.3,4.3,,,,1000.7,990.8,,47.0,,,13.0,10.0,,,N,0.8,0,,10.0
-1990-02-05,7.8,1.7,,,,994.8,987.5,,45.0,,,22.0,10.0,,,N,10.5,0,,10.0
-1990-02-06,5.0,2.6,,,,991.1,970.9,,27.0,,,13.0,10.0,,,NW,T,0,,10.0
-1990-02-07,5.7,2.7,,,,991.8,970.6,,26.0,,,13.0,70.0,,,SW,T,0,,8.0
-1990-02-08,4.4,2.2,,,,991.9,984.1,,45.0,,,17.0,10.0,,,NW,9.0,0,,10.0
-1990-02-09,4.0,1.6,,,,991.7,988.8,,30.0,,,17.0,350.0,,,NW,5.0,T,,10.0
-1990-02-10,3.9,2.2,,,,992.2,984.0,,36.0,,,15.0,360.0,,,N,7.0,T,,10.0
-1990-02-11,8.3,3.3,,,,995.4,986.2,,40.0,,,15.0,20.0,,,NW,T,0,,7.0
-1990-02-12,6.7,4.4,,,,990.7,986.0,,54.0,,,31.0,330.0,,,NW,T,0,,10.0
-1990-02-13,3.6,0.6,,,,1002.9,990.1,,28.0,,,17.0,320.0,,,W,6.3,1,,10.0
-1990-02-14,4.2,1.2,,,,1006.1,997.3,,34.0,,,17.0,10.0,,,NW,3.3,T,,10.0
-1990-02-15,2.8,1.1,,,,997.3,983.0,,31.0,,,13.0,330.0,,,NW,1.3,1,,9.0
-1990-02-16,3.0,0.6,,,,993.8,984.9,,32.0,,,15.0,210.0,,,SW,2.8,1,,8.0
-1990-02-17,3.3,0.1,,,,1000.9,993.8,,29.0,,,13.0,210.0,,,SW,2.0,2,,7.0
-1990-02-18,4.4,0.6,,,,1000.8,990.3,,24.0,,,8.0,10.0,,,E,3.3,1,,10.0
-1990-02-19,5.0,1.9,,,,990.4,982.0,,47.0,,,11.0,100.0,,,SW,0.3,0,,10.0
-1990-02-20,5.7,1.4,,,,992.9,990.8,,16.0,,,9.0,200.0,,,S,0.0,0,,8.0
-1990-02-21,4.4,0.7,,,,992.8,979.8,,45.0,,,13.0,50.0,,,E,0.5,T,,10.0
-1990-02-22,6.7,3.4,,,,983.5,979.2,,40.0,,,20.0,40.0,,,N,0.3,0,,8.0
-1990-02-23,7.8,2.3,,,,990.8,982.3,,25.0,,,5.0,60.0,,,W,0.0,0,,7.0
-1990-02-24,7.9,1.4,,,,1000.7,990.9,,21.0,,,7.0,70.0,,,E,T,0,,8.0
-1990-02-25,6.7,3.8,,,,999.4,992.2,,56.0,,,23.0,10.0,,,N,1.3,0,,9.0
-1990-02-26,4.0,2.2,,,,1000.1,997.0,,26.0,,,15.0,330.0,,,N,2.2,0,,8.0
-1990-02-27,5.7,2.2,,,,999.6,977.8,,26.0,,,11.0,90.0,,,E,T,0,,9.0
-1990-02-28,5.3,-1.1,,,,982.0,977.9,,37.0,,,15.0,60.0,,,N,T,0,,9.0
-1990-03-01,6.2,1.3,,,,994.9,980.5,,22.0,,,7.0,60.0,,,N,0.0,0,,8.0
-1990-03-02,4.1,0.7,,,,995.0,973.1,,57.0,,,21.0,30.0,,,N,0.4,T,,10.0
-1990-03-03,2.8,0.7,,,,990.1,974.3,,34.0,,,13.0,110.0,,,SE,3.4,2,,8.0
-1990-03-04,3.0,-0.6,,,,993.8,989.6,,30.0,,,13.0,10.0,,,NW,4.0,4,,10.0
-1990-03-05,2.8,1.7,,,,989.5,976.8,,35.0,,,17.0,360.0,,,N,5.5,0,,10.0
-1990-03-06,3.9,0.6,,,,976.7,962.9,,23.0,,,11.0,20.0,,,N,5.5,T,,10.0
-1990-03-07,6.2,0.6,,,,983.0,963.5,,35.0,,,17.0,100.0,,,E,T,T,,4.0
-1990-03-08,3.3,-0.6,,,,984.4,970.0,,49.0,,,19.0,10.0,,,N,0.5,T,,10.0
-1990-03-09,2.8,0.0,,,,1002.0,972.6,,26.0,,,14.0,210.0,,,SW,7.5,6,,9.0
-1990-03-10,5.6,-0.9,,,,1003.3,974.7,,55.0,,,20.0,360.0,,,N,5.8,T,,10.0
-1990-03-11,5.0,0.0,,,,974.7,955.9,,46.0,,,22.0,360.0,,,N,11.5,1,,10.0
-1990-03-12,5.0,-1.0,,,,1000.1,973.7,,32.0,,,12.0,210.0,,,SW,0.0,0,,6.0
-1990-03-13,0.6,-1.4,,,,1008.0,1000.1,,14.0,,,7.0,360.0,,,N,0.0,0,,10.0
-1990-03-14,4.6,-0.6,,,,1012.9,1008.0,,14.0,,,5.0,190.0,,,S,0.0,0,,8.0
-1990-03-15,6.1,0.2,,,,1013.0,1003.8,,37.0,,,9.0,20.0,,,NW,T,0,,8.0
-1990-03-16,5.0,1.7,,,,1003.8,993.6,,29.0,,,11.0,10.0,,,NW,6.0,0,,10.0
-1990-03-17,2.5,-0.6,,,,1000.6,992.2,,32.0,,,13.0,210.0,,,SW,1.8,2,2,10.0
-1990-03-18,2.7,0.3,,,,998.9,991.8,,26.0,,,9.0,30.0,,,NW,4.3,3,0,10.0
-1990-03-19,3.9,1.1,,,,991.8,970.7,,66.0,,,23.0,20.0,,,N,11.3,T,0,10.0
-1990-03-20,5.7,2.8,,,,974.3,971.0,,49.0,,,25.0,350.0,,,N,3.3,0,0,10.0
-1990-03-21,3.3,1.0,,,,975.2,974.2,,26.0,,,13.0,350.0,,,NW,0.5,T,0,10.0
-1990-03-22,2.2,-0.1,,,,977.8,975.0,,20.0,,,3.0,360.0,,,N,0.0,0,0,9.0
-1990-03-23,1.7,-0.6,,,,983.2,977.7,,24.0,,,7.0,200.0,,,W,T,T,0,10.0
-1990-03-24,-0.6,-2.1,,,,987.6,983.2,,21.0,,,7.0,210.0,,,SW,0.3,1,0,10.0
-1990-03-25,0.0,-2.2,,,,993.0,987.6,,13.0,,,7.0,200.0,,,SW,0.5,4,0,8.0
-1990-03-26,3.0,-3.3,,,,992.3,966.9,,45.0,,,19.0,120.0,,,NE,T,T,0,10.0
-1990-03-27,4.4,0.7,,,,966.9,963.2,,32.0,,,13.0,360.0,,,N,2.0,2,0,9.0
-1990-03-28,4.4,1.4,,,,980.6,965.8,,41.0,,,21.0,10.0,,,N,0.8,T,0,10.0
-1990-03-29,5.6,1.2,,,,983.0,967.9,,36.0,,,15.0,100.0,,,NE,T,0,0,8.0
-1990-03-30,5.5,1.1,,,,975.4,966.2,,27.0,,,5.0,100.0,,,E,0.0,0,0,4.0
-1990-03-31,1.9,-0.6,,,,991.6,975.4,,27.0,,,4.0,10.0,,,N,T,T,0,10.0
-1990-04-01,3.3,-1.7,,,,1009.7,991.6,,13.0,,,5.0,190.0,,,NE,0.0,0,0,6.0
-1990-04-02,0.6,-1.4,,,,1011.4,1003.6,,19.0,,,7.0,30.0,,,NE,T,T,0,7.0
-1990-04-03,2.8,-2.1,,,,1008.5,1003.9,,18.0,,,5.0,350.0,,,NE,0.0,0,0,2.0
-1990-04-04,1.7,-1.7,,,,1003.9,1002.3,,22.0,,,8.0,90.0,,,E,0.0,0,0,4.0
-1990-04-05,2.2,-1.1,,,,1004.2,1002.7,,22.0,,,9.0,20.0,,,NE,0.0,0,0,10.0
-1990-04-06,1.1,-1.4,,,,1004.2,1001.2,,19.0,,,7.0,20.0,,,N,0.0,0,0,9.0
-1990-04-07,-1.1,-3.3,,,,1001.2,992.5,,9.0,,,4.0,20.0,,,NE,T,T,0,8.0
-1990-04-08,-0.9,-3.9,,,,992.5,988.7,,11.0,,,3.0,100.0,,,NE,T,1,0,9.0
-1990-04-09,-0.2,-2.9,,,,995.6,989.4,,7.0,,,4.0,50.0,,,NE,0.0,0,0,7.0
-1990-04-10,0.0,-3.6,,,,1005.6,995.6,,12.0,,,6.0,10.0,,,NE,0.0,0,0,7.0
-1990-04-11,-0.1,-2.9,,,,1009.0,1005.6,,16.0,,,8.0,200.0,,,S,T,T,0,10.0
-1990-04-12,-1.0,-2.2,,,,1009.5,1006.0,,19.0,,,7.0,200.0,,,SW,0.0,0,0,10.0
-1990-04-13,1.3,-2.2,,,,1006.0,991.4,,39.0,,,9.0,360.0,,,W,4.0,4,1,10.0
-1990-04-14,-0.6,-1.9,,,,992.3,986.1,,22.0,,,9.0,230.0,,,SW,1.4,2,8,10.0
-1990-04-15,-1.9,-10.0,,,,993.4,981.3,,47.0,,,21.0,110.0,,,SE,1.3,1,4,5.0
-1990-04-16,-0.2,-10.6,,,,1005.0,988.5,,42.0,,,11.0,110.0,,,SE,T,T,7,6.0
-1990-04-17,0.6,-5.6,,,,1005.0,994.0,,18.0,,,6.0,190.0,,,N,0.0,0,6,8.0
-1990-04-18,0.2,-2.5,,,,995.2,976.3,,30.0,,,9.0,360.0,,,N,8.0,9,10,10.0
-1990-04-19,-0.8,-4.6,,,,990.0,978.2,,28.0,,,10.0,180.0,,,SW,T,T,12,7.0
-1990-04-20,1.4,-2.1,,,,988.0,966.2,,57.0,,,23.0,20.0,,,N,0.3,T,12,10.0
-1990-04-21,-0.6,-5.6,,,,977.0,966.2,,25.0,,,13.0,230.0,,,E,0.6,2,12,10.0
-1990-04-22,-2.8,-4.0,,,,986.3,977.0,,20.0,,,7.0,220.0,,,N,1.3,3,12,10.0
-1990-04-23,-3.3,-4.6,,,,988.3,985.6,,20.0,,,9.0,20.0,,,N,T,T,13,10.0
-1990-04-24,-2.7,-5.8,,,,985.6,972.6,,27.0,,,11.0,40.0,,,E,0.0,0,12,10.0
-1990-04-25,-3.3,-6.1,,,,981.0,972.0,,20.0,,,11.0,350.0,,,NE,T,T,12,8.0
-1990-04-26,-3.9,-8.9,,,,981.0,978.0,,29.0,,,15.0,20.0,,,N,T,T,11,7.0
-1990-04-27,-4.0,-9.1,,,,984.4,980.7,,27.0,,,13.0,180.0,,,E,T,T,11,6.0
-1990-04-28,-2.4,-9.8,,,,984.4,978.2,,26.0,,,11.0,210.0,,,S,0.0,0,10,9.0
-1990-04-29,-2.1,-4.9,,,,995.4,978.7,,24.0,,,7.0,240.0,,,SW,0.0,0,10,5.0
-1990-04-30,-0.6,-6.2,,,,1003.0,995.4,,25.0,,,11.0,90.0,,,E,0.0,0,10,2.0
-1990-05-01,-1.7,-6.7,,,,1009.0,1002.0,,28.0,,,11.0,60.0,,,NE,0.0,0,9,5.0
-1990-05-02,0.1,-5.3,,,,1019.5,1009.0,,28.0,,,14.0,80.0,,,E,0.0,0,9,0.0
-1990-05-03,-1.1,-6.4,,,,1026.4,1019.4,,25.0,,,7.0,20.0,,,NE,0.0,0,8,6.0
-1990-05-04,-2.2,-6.1,,,,1026.4,1023.3,,24.0,,,9.0,20.0,,,NE,0.0,0,7,7.0
-1990-05-05,-2.7,-4.9,,,,1023.3,1019.5,,16.0,,,7.0,20.0,,,N,0.0,0,7,10.0
-1990-05-06,-3.3,-5.6,,,,1022.2,1018.3,,15.0,,,7.0,120.0,,,SE,T,0,6,9.0
-1990-05-07,-2.8,-4.9,,,,1024.0,1022.2,,20.0,,,5.0,190.0,,,NE,T,T,6,10.0
-1990-05-08,-3.9,-6.7,,,,1024.7,1022.4,,22.0,,,9.0,10.0,,,S,0.0,0,6,7.0
-1990-05-09,-3.2,-4.6,,,,1028.6,1024.7,,12.0,,,5.0,160.0,,,N,0.0,0,5,10.0
-1990-05-10,-3.1,-4.4,,,,1030.6,1028.5,,18.0,,,7.0,180.0,,,S,T,0,5,10.0
-1990-05-11,-3.9,-5.0,,,,1030.7,1028.1,,14.0,,,6.0,160.0,,,SE,T,0,5,10.0
-1990-05-12,-2.7,-8.2,,,,1029.5,1028.0,,16.0,,,6.0,360.0,,,N,0.0,0,4,10.0
-1990-05-13,-1.5,-4.6,,,,1028.0,1022.8,,11.0,,,3.0,120.0,,,E,T,T,4,4.0
-1990-05-14,-2.2,-5.4,,,,1023.0,1019.1,,11.0,,,3.0,340.0,,,NE,0.0,0,4,10.0
-1990-05-15,-1.4,-6.1,,,,1019.1,1011.3,,9.0,,,2.0,60.0,,,E,0.0,0,4,6.0
-1990-05-16,-3.3,-5.6,,,,1011.3,1008.5,,8.0,,,1.0,120.0,,,E,0.0,0,3,7.0
-1990-05-17,-2.8,-7.2,,,,1009.3,991.6,,19.0,,,5.0,110.0,,,E,0.0,0,6,6.0
-1990-05-18,2.8,-3.6,,,,991.3,982.8,,25.0,,,6.0,20.0,,,N,1.0,2,4,7.0
-1990-05-19,5.7,-0.6,,,,987.3,980.7,,39.0,,,13.0,20.0,,,E,T,0,3,10.0
-1990-05-20,2.2,-1.0,,,,995.0,987.3,,42.0,,,7.0,20.0,,,N,0.5,1,3,10.0
-1990-05-21,0.0,-2.2,,,,994.0,966.1,,62.0,,,21.0,60.0,,,E,T,T,3,10.0
-1990-05-22,1.1,-4.6,,,,966.1,954.4,,60.0,,,25.0,70.0,,,E,0.5,1,1,10.0
-1990-05-23,-2.8,-5.6,,,,969.0,954.1,,46.0,,,19.0,100.0,,,E,0.0,0,1,7.0
-1990-05-24,-2.2,-5.3,,,,989.1,969.0,,16.0,,,8.0,340.0,,,N,2.5,5,3,6.0
-1990-05-25,-2.2,-5.8,,,,991.6,989.1,,24.0,,,7.0,20.0,,,E,T,1,2,10.0
-1990-05-26,-2.8,-5.3,,,,1002.1,991.6,,13.0,,,3.0,30.0,,,E,9.0,17,18,10.0
-1990-05-27,-3.3,-7.4,,,,1004.5,1002.1,,18.0,,,5.0,10.0,,,NE,T,T,16,4.0
-1990-05-28,-1.1,-6.1,,,,1002.9,991.3,,16.0,,,3.0,20.0,,,E,T,T,14,9.0
-1990-05-29,0.7,-2.8,,,,991.3,980.5,,34.0,,,9.0,50.0,,,E,T,T,11,9.0
-1990-05-30,4.4,-2.2,,,,980.6,964.1,,59.0,,,23.0,20.0,,,N,4.1,1,3,10.0
-1990-05-31,2.5,0.0,,,,973.0,966.0,,54.0,,,27.0,30.0,,,N,5.0,3,2,10.0
-1990-06-01,2.2,-1.7,,,,981.2,970.0,,40.0,,,21.0,10.0,,,N,0.0,0,2,6.0
-1990-06-02,-1.4,-3.9,,,,981.4,979.7,,12.0,,,4.0,330.0,,,N,0.0,0,2,10.0
-1990-06-03,-1.7,-4.3,,,,992.0,981.5,,17.0,,,5.0,20.0,,,NE,0.0,0,2,5.0
-1990-06-04,-1.1,-4.2,,,,995.4,991.7,,43.0,,,13.0,100.0,,,N,1.0,2,4,9.0
-1990-06-05,-1.7,-5.9,,,,998.7,992.3,,39.0,,,11.0,10.0,,,N,0.3,1,2,6.0
-1990-06-06,-3.9,-5.6,,,,1000.1,998.7,,19.0,,,6.0,190.0,,,N,1.5,6,6,6.0
-1990-06-07,-4.7,-8.9,,,,1009.2,1000.1,,12.0,,,8.0,180.0,,,NE,0.0,0,4,7.0
-1990-06-08,-5.0,-5.6,,,,1013.3,1009.2,,16.0,,,5.0,200.0,,,SW,0.0,0,3,9.0
-1990-06-09,-0.6,-7.2,,,,1013.5,1007.2,,24.0,,,6.0,10.0,,,SE,1.0,2,5,10.0
-1990-06-10,1.2,-3.9,,,,1007.3,983.4,,27.0,,,11.0,60.0,,,E,0.5,1,5,10.0
-1990-06-11,1.1,-3.3,,,,992.8,979.8,,33.0,,,7.0,70.0,,,SE,T,T,4,4.0
-1990-06-12,-1.1,-3.3,,,,999.8,992.9,,29.0,,,4.0,10.0,,,E,0.0,0,4,10.0
-1990-06-13,-1.7,-2.8,,,,998.6,996.3,,12.0,,,4.0,300.0,,,E,2.0,5,3,10.0
-1990-06-14,-0.1,-3.0,,,,997.3,990.7,,18.0,,,5.0,40.0,,,E,2.6,8,12,10.0
-1990-06-15,0.6,-3.6,,,,997.2,990.7,,20.0,,,6.0,360.0,,,N,0.3,1,13,7.0
-1990-06-16,1.7,-3.6,,,,997.1,960.4,,54.0,,,15.0,60.0,,,NE,T,T,12,10.0
-1990-06-17,1.7,-5.0,,,,979.7,958.8,,62.0,,,21.0,30.0,,,NW,0.3,T,8,8.0
-1990-06-18,-1.7,-5.6,,,,989.0,979.7,,32.0,,,17.0,20.0,,,SW,T,T,7,8.0
-1990-06-19,0.0,-6.0,,,,988.4,976.0,,56.0,,,21.0,360.0,,,N,5.0,3,8,7.0
-1990-06-20,0.0,-4.3,,,,983.0,964.2,,93.0,,,23.0,360.0,,,NW,0.5,1,8,9.0
-1990-06-21,-1.1,-4.4,,,,968.8,956.3,,52.0,,,19.0,360.0,,,SW,1.8,3,7,10.0
-1990-06-22,0.3,-4.4,,,,962.6,956.5,,44.0,,,16.0,10.0,,,N,9.0,18,25,10.0
-1990-06-23,-4.4,-7.8,,,,968.0,962.5,,41.0,,,22.0,250.0,,,W,1.0,2,21,10.0
-1990-06-24,-0.6,-9.1,,,,971.2,948.2,,51.0,,,17.0,360.0,,,W,3.3,6,21,10.0
-1990-06-25,-0.6,-6.1,,,,958.3,948.0,,43.0,,,21.0,350.0,,,N,2.5,4,19,9.0
-1990-06-26,-3.6,-9.4,,,,961.1,958.3,,50.0,,,20.0,110.0,,,E,0.3,1,17,8.0
-1990-06-27,-5.6,-11.1,,,,968.2,958.3,,52.0,,,23.0,110.0,,,E,0.5,1,18,7.0
-1990-06-28,-2.9,-8.3,,,,972.9,966.9,,68.0,,,16.0,330.0,,,W,T,T,17,10.0
-1990-06-29,-3.3,-8.9,,,,971.4,963.4,,42.0,,,15.0,10.0,,,W,T,T,16,8.0
-1990-06-30,3.3,-8.9,,,,984.2,962.0,,74.0,,,17.0,10.0,,,SW,1.0,2,16,10.0
-1990-07-01,1.1,-7.4,,,,983.9,975.3,,50.0,,,23.0,10.0,,,N,2.0,3,15,10.0
-1990-07-02,-1.3,-7.4,,,,1001.9,978.8,,28.0,,,9.0,340.0,,,SW,T,0,14,8.0
-1990-07-03,2.2,-6.9,,,,1002.8,987.0,,68.0,,,19.0,20.0,,,NE,1.0,T,14,7.0
-1990-07-04,1.7,-0.6,,,,988.1,982.3,,80.0,,,34.0,10.0,,,N,4.3,T,3,8.0
-1990-07-05,1.7,-0.6,,,,990.6,968.0,,46.0,,,21.0,360.0,,,N,0.2,T,3,10.0
-1990-07-06,1.4,-3.9,,,,986.8,965.7,,35.0,,,19.0,200.0,,,SW,0.3,T,3,10.0
-1990-07-07,0.2,-5.6,,,,991.1,985.1,,28.0,,,11.0,110.0,,,E,1.5,4,4,10.0
-1990-07-08,3.6,-1.0,,,,987.3,981.9,,34.0,,,9.0,90.0,,,E,1.3,2,4,10.0
-1990-07-09,3.9,-0.6,,,,981.9,972.5,,42.0,,,11.0,20.0,,,N,5.6,2,4,10.0
-1990-07-10,1.7,-2.6,,,,972.4,967.2,,23.0,,,3.0,70.0,,,NW,0.5,1,4,10.0
-1990-07-11,-2.5,-6.9,,,,972.0,967.8,,15.0,,,4.0,30.0,,,E,1.6,4,10,10.0
-1990-07-12,-2.2,-6.1,,,,989.2,971.8,,27.0,,,9.0,110.0,,,E,4.6,9,9,10.0
-1990-07-13,-3.1,-6.4,,,,994.2,987.4,,18.0,,,2.0,110.0,,,NE,1.1,1,14,7.0
-1990-07-14,-3.3,-7.2,,,,997.0,993.5,,28.0,,,5.0,360.0,,,NE,0.1,T,11,9.0
-1990-07-15,-0.8,-4.1,,,,997.6,990.2,,24.0,,,7.0,70.0,,,SE,0.0,0,10,10.0
-1990-07-16,-1.7,-5.0,,,,995.0,988.4,,19.0,,,5.0,280.0,,,NW,0.2,1,10,10.0
-1990-07-17,-3.9,-7.2,,,,1005.8,995.0,,14.0,,,5.0,200.0,,,N,0.8,5,15,8.0
-1990-07-18,-3.9,-8.1,,,,1010.5,1000.7,,18.0,,,6.0,230.0,,,NE,0.0,0,14,5.0
-1990-07-19,-4.4,-10.1,,,,1010.6,1007.4,,14.0,,,5.0,230.0,,,SW,0.0,0,13,8.0
-1990-07-20,-5.0,-7.4,,,,1009.2,1006.8,,9.0,,,3.0,110.0,,,NE,0.0,0,12,2.0
-1990-07-21,2.2,-5.7,,,,1006.7,979.4,,44.0,,,11.0,40.0,,,NE,0.8,1,3,10.0
-1990-07-22,-1.1,-5.9,,,,1000.0,980.0,,32.0,,,12.0,120.0,,,N,7.4,15,7,10.0
-1990-07-23,-2.2,-5.6,,,,1001.3,995.9,,54.0,,,25.0,10.0,,,N,T,T,3,10.0
-1990-07-24,-2.7,-5.0,,,,997.2,994.0,,49.0,,,13.0,10.0,,,E,T,T,3,10.0
-1990-07-25,0.0,-5.9,,,,994.2,990.0,,43.0,,,19.0,100.0,,,E,0.0,0,3,8.0
-1990-07-26,1.2,-2.2,,,,995.4,992.5,,38.0,,,7.0,50.0,,,E,T,T,3,9.0
-1990-07-27,-2.2,-5.0,,,,999.0,993.4,,13.0,,,3.0,310.0,,,N,T,T,3,9.0
-1990-07-28,1.7,-6.1,,,,999.6,988.9,,44.0,,,16.0,360.0,,,N,2.0,3,3,10.0
-1990-07-29,0.0,-2.2,,,,990.0,977.0,,42.0,,,15.0,10.0,,,NW,0.5,1,3,10.0
-1990-07-30,-1.1,-3.4,,,,979.5,977.0,,12.0,,,3.0,180.0,,,E,2.3,5,8,10.0
-1990-07-31,-2.9,-6.7,,,,981.2,973.1,,16.0,,,7.0,350.0,,,N,0.5,3,9,9.0
-1990-08-01,-1.4,-8.6,,,,984.0,979.8,,36.0,,,7.0,360.0,,,N,2.0,2,9,10.0
-1990-08-02,-1.7,-7.8,,,,992.0,979.2,,36.0,,,17.0,360.0,,,S,0.5,1,4,9.0
-1990-08-03,-5.5,-8.9,,,,1002.1,992.2,,19.0,,,6.0,180.0,,,SW,0.0,0,3,9.0
-1990-08-04,-0.6,-6.0,,,,1004.9,1001.9,,27.0,,,8.0,300.0,,,SW,1.3,6,7,10.0
-1990-08-05,-1.4,-6.7,,,,1004.9,1003.0,,17.0,,,5.0,270.0,,,N,0.3,7,11,4.0
-1990-08-06,-4.4,-9.1,,,,1003.0,1000.8,,9.0,,,3.0,60.0,,,NE,0.0,0,11,5.0
-1990-08-07,-2.8,-8.3,,,,1000.7,989.5,,40.0,,,5.0,20.0,,,NE,0.0,0,10,7.0
-1990-08-08,2.2,-3.3,,,,994.0,987.4,,56.0,,,28.0,360.0,,,N,1.8,1,8,10.0
-1990-08-09,3.3,0.6,,,,994.0,970.3,,54.0,,,33.0,20.0,,,N,15.3,2,3,10.0
-1990-08-10,2.2,-8.0,,,,970.2,961.1,,49.0,,,16.0,20.0,,,N,6.6,T,3,10.0
-1990-08-11,-3.3,-9.0,,,,970.9,955.2,,26.0,,,11.0,220.0,,,E,1.0,2,3,9.0
-1990-08-12,-2.2,-5.6,,,,973.2,956.5,,30.0,,,17.0,210.0,,,SW,1.3,4,3,10.0
-1990-08-13,0.2,-4.4,,,,973.7,960.3,,57.0,,,21.0,360.0,,,N,T,T,3,10.0
-1990-08-14,-1.7,-8.3,,,,982.1,969.8,,50.0,,,15.0,20.0,,,SW,0.5,1,3,10.0
-1990-08-15,0.0,-3.3,,,,969.3,956.9,,64.0,,,27.0,10.0,,,N,T,T,3,9.0
-1990-08-16,-1.1,-6.1,,,,959.7,950.1,,49.0,,,17.0,260.0,,,W,T,T,4,9.0
-1990-08-17,-6.1,-10.6,,,,971.3,959.7,,36.0,,,15.0,240.0,,,SW,0.8,1,3,8.0
-1990-08-18,0.0,-11.1,,,,970.0,944.1,,59.0,,,23.0,80.0,,,E,5.5,5,4,10.0
-1990-08-19,-1.7,-7.4,,,,951.6,946.0,,44.0,,,22.0,10.0,,,E,1.1,2,5,10.0
-1990-08-20,-5.0,-8.3,,,,975.5,951.6,,41.0,,,13.0,100.0,,,E,0.6,1,3,8.0
-1990-08-21,-5.7,-11.7,,,,1000.7,975.5,,37.0,,,11.0,100.0,,,E,T,T,3,7.0
-1990-08-22,1.1,-8.7,,,,1000.7,970.5,,44.0,,,14.0,130.0,,,N,0.2,1,3,9.0
-1990-08-23,0.6,-13.1,,,,994.9,970.5,,41.0,,,21.0,220.0,,,SW,0.3,1,3,10.0
-1990-08-24,-4.1,-12.4,,,,995.6,974.3,,20.0,,,5.0,110.0,,,E,0.4,1,3,10.0
-1990-08-25,1.1,-5.0,,,,974.3,962.0,,34.0,,,12.0,20.0,,,W,1.4,3,3,10.0
-1990-08-26,-4.4,-15.2,,,,974.6,965.3,,32.0,,,15.0,270.0,,,W,T,T,3,9.0
-1990-08-27,-14.4,-18.3,,,,983.1,974.6,,36.0,,,17.0,230.0,,,SW,T,T,3,9.0
-1990-08-28,-5.6,-17.5,,,,983.1,965.1,,42.0,,,14.0,340.0,,,W,0.3,2,4,10.0
-1990-08-29,-11.3,-16.7,,,,990.9,975.3,,30.0,,,13.0,90.0,,,E,T,T,4,4.0
-1990-08-30,-11.1,-15.6,,,,996.6,991.5,,36.0,,,8.0,110.0,,,W,T,T,4,7.0
-1990-08-31,-14.4,-17.8,,,,993.6,985.1,,15.0,,,5.0,250.0,,,SW,T,T,4,8.0
-1990-09-01,-3.6,-17.2,,,,1001.0,989.5,,38.0,,,9.0,200.0,,,S,0.0,0,4,4.0
-1990-09-02,-5.8,-11.1,,,,1009.5,1001.0,,14.0,,,4.0,330.0,,,NW,0.0,0,4,6.0
-1990-09-03,-2.5,-9.2,,,,1013.7,1009.5,,19.0,,,7.0,10.0,,,N,0.2,1,4,7.0
-1990-09-04,-0.3,-4.2,,,,1016.0,1010.5,,24.0,,,3.0,340.0,,,NW,0.3,T,4,9.0
-1990-09-05,2.2,-8.7,,,,1014.9,1000.4,,45.0,,,13.0,10.0,,,N,T,T,3,10.0
-1990-09-06,2.0,-4.4,,,,1005.8,984.1,,42.0,,,7.0,10.0,,,NW,1.0,3,3,10.0
-1990-09-07,3.3,0.0,,,,989.2,984.5,,40.0,,,20.0,360.0,,,N,2.0,2,3,10.0
-1990-09-08,1.3,-2.8,,,,989.2,980.7,,24.0,,,7.0,360.0,,,NW,T,T,3,10.0
-1990-09-09,-1.7,-3.9,,,,980.7,971.6,,22.0,,,5.0,220.0,,,NW,T,T,3,10.0
-1990-09-10,-1.7,-12.8,,,,981.0,970.3,,30.0,,,11.0,330.0,,,SW,3.5,5,3,10.0
-1990-09-11,-2.8,-14.4,,,,983.8,973.0,,30.0,,,11.0,300.0,,,W,1.0,2,5,9.0
-1990-09-12,-3.4,-14.4,,,,985.0,973.2,,32.0,,,10.0,190.0,,,SE,5.1,5,7,9.0
-1990-09-13,-14.4,-20.6,,,,996.8,985.0,,27.0,,,11.0,240.0,,,SW,0.0,0,7,9.0
-1990-09-14,-0.6,-18.3,,,,995.6,977.3,,48.0,,,17.0,20.0,,,E,T,T,6,10.0
-1990-09-15,-1.0,-9.4,,,,988.2,977.3,,39.0,,,13.0,70.0,,,W,0.3,T,6,9.0
-1990-09-16,-4.4,-11.1,,,,992.9,987.7,,26.0,,,9.0,240.0,,,W,T,T,6,8.0
-1990-09-17,-1.4,-11.2,,,,1003.7,982.7,,20.0,,,7.0,110.0,,,SE,7.5,7,17,8.0
-1990-09-18,-0.6,-15.6,,,,1017.7,1003.7,,10.0,,,3.0,90.0,,,E,0.0,0,16,4.0
-1990-09-19,1.7,-15.3,,,,1016.6,1003.4,,30.0,,,7.0,20.0,,,E,0.0,0,15,9.0
-1990-09-20,1.6,-5.6,,,,1003.4,1001.0,,52.0,,,19.0,360.0,,,SW,1.4,1,9,10.0
-1990-09-21,-0.6,-8.3,,,,1001.0,990.5,,46.0,,,17.0,240.0,,,N,1.1,1,7,10.0
-1990-09-22,-3.8,-13.9,,,,1008.5,982.5,,38.0,,,11.0,190.0,,,NW,2.4,2,7,7.0
-1990-09-23,-4.4,-12.2,,,,1013.4,1008.2,,13.0,,,2.0,70.0,,,W,T,T,7,8.0
-1990-09-24,5.1,-12.2,,,,1010.2,994.2,,34.0,,,11.0,30.0,,,SE,0.0,0,6,7.0
-1990-09-25,4.4,0.8,,,,995.6,990.9,,40.0,,,5.0,10.0,,,SE,2.2,T,5,10.0
-1990-09-26,3.4,-0.3,,,,990.9,981.8,,26.0,,,7.0,40.0,,,NW,2.0,T,5,10.0
-1990-09-27,2.8,-1.9,,,,988.4,978.7,,17.0,,,5.0,230.0,,,SW,6.3,9,11,10.0
-1990-09-28,2.9,-4.2,,,,994.0,989.5,,29.0,,,5.0,230.0,,,NW,T,T,10,10.0
-1990-09-29,4.1,-2.7,,,,989.5,967.5,,46.0,,,17.0,360.0,,,N,T,0,5,10.0
-1990-09-30,3.5,0.0,,,,989.5,957.0,,46.0,,,13.0,360.0,,,N,T,T,3,10.0
-1990-10-01,1.7,-0.8,,,,957.0,950.2,,26.0,,,3.0,10.0,,,E,1.1,1,2,10.0
-1990-10-02,0.2,-2.8,,,,960.7,950.6,,38.0,,,17.0,20.0,,,N,1.4,3,2,9.0
-1990-10-03,2.8,-3.8,,,,972.2,960.7,,31.0,,,7.0,10.0,,,NW,0.6,1,2,8.0
-1990-10-04,-2.3,-5.6,,,,982.4,972.2,,22.0,,,9.0,220.0,,,SW,0.3,T,2,10.0
-1990-10-05,-0.6,-10.6,,,,983.8,977.6,,22.0,,,5.0,240.0,,,SW,T,1,2,9.0
-1990-10-06,1.1,-6.6,,,,981.2,978.1,,33.0,,,7.0,20.0,,,E,T,T,2,10.0
-1990-10-07,2.8,-0.6,,,,978.9,963.3,,33.0,,,11.0,100.0,,,SE,0.7,T,2,9.0
-1990-10-08,1.1,-6.9,,,,971.9,962.9,,34.0,,,13.0,360.0,,,W,4.9,T,2,10.0
-1990-10-09,-2.8,-11.5,,,,973.4,952.3,,63.0,,,15.0,10.0,,,SW,1.8,3,2,10.0
-1990-10-10,-2.9,-8.3,,,,966.0,953.3,,54.0,,,17.0,10.0,,,W,0.8,1,2,9.0
-1990-10-11,0.8,-8.0,,,,965.4,948.2,,46.0,,,20.0,360.0,,,NE,1.5,1,2,10.0
-1990-10-12,-1.2,-4.4,,,,963.6,956.9,,47.0,,,18.0,360.0,,,N,0.5,1,2,8.0
-1990-10-13,-1.7,-6.3,,,,966.0,958.2,,44.0,,,19.0,90.0,,,E,0.5,T,2,10.0
-1990-10-14,-3.1,-8.5,,,,983.2,965.5,,20.0,,,5.0,140.0,,,SW,0.0,0,2,8.0
-1990-10-15,-0.6,-8.6,,,,982.1,961.8,,76.0,,,11.0,20.0,,,NW,6.6,1,2,10.0
-1990-10-16,-3.1,-7.2,,,,987.2,963.3,,36.0,,,18.0,220.0,,,SW,0.3,T,2,10.0
-1990-10-17,-2.2,-8.9,,,,991.0,979.0,,28.0,,,16.0,30.0,,,SW,0.0,0,2,10.0
-1990-10-18,4.4,-2.3,,,,980.5,967.0,,26.0,,,9.0,50.0,,,E,4.5,8,8,9.0
-1990-10-19,1.6,-0.6,,,,971.6,964.0,,50.0,,,20.0,10.0,,,N,1.5,T,8,10.0
-1990-10-20,2.8,-1.6,,,,976.2,971.1,,36.0,,,3.0,360.0,,,N,0.4,T,8,9.0
-1990-10-21,1.1,-2.1,,,,979.6,976.3,,26.0,,,6.0,10.0,,,N,2.5,4,7,9.0
-1990-10-22,1.4,-3.9,,,,983.9,978.7,,21.0,,,5.0,240.0,,,NW,0.1,T,7,7.0
-1990-10-23,-1.9,-4.8,,,,988.9,983.7,,19.0,,,10.0,230.0,,,SW,0.7,T,7,10.0
-1990-10-24,-2.8,-6.7,,,,996.3,988.0,,18.0,,,4.0,180.0,,,SW,0.0,0,6,10.0
-1990-10-25,1.1,-6.9,,,,998.4,989.5,,12.0,,,4.0,300.0,,,SE,0.0,0,6,9.0
-1990-10-26,4.7,-4.7,,,,989.5,966.4,,42.0,,,11.0,100.0,,,E,4.4,T,5,10.0
-1990-10-27,0.2,-4.2,,,,986.5,967.2,,22.0,,,9.0,300.0,,,W,4.8,3,9,10.0
-1990-10-28,5.0,-7.3,,,,992.9,986.7,,9.0,,,2.0,80.0,,,NE,0.0,0,6,7.0
-1990-10-29,6.1,-3.2,,,,994.8,983.0,,50.0,,,15.0,10.0,,,N,1.5,1,6,10.0
-1990-10-30,3.1,0.3,,,,987.5,981.0,,40.0,,,19.0,30.0,,,N,5.8,1,4,10.0
-1990-10-31,1.8,-0.1,,,,989.7,981.8,,56.0,,,21.0,10.0,,,N,18.0,8,2,10.0
-1990-11-01,3.9,-2.2,,,,988.3,981.7,,42.0,,,13.0,360.0,,,N,T,T,2,9.0
-1990-11-02,-2.1,-4.4,,,,992.6,981.7,,18.0,,,11.0,210.0,,,SW,0.4,0,2,10.0
-1990-11-03,-3.3,-5.8,,,,998.3,992.6,,18.0,,,9.0,220.0,,,SW,0.4,T,2,10.0
-1990-11-04,0.6,-7.3,,,,998.3,980.7,,48.0,,,18.0,20.0,,,N,T,T,2,9.0
-1990-11-05,3.9,0.2,,,,980.7,962.4,,50.0,,,15.0,20.0,,,N,4.3,3,1,10.0
-1990-11-06,1.2,-6.7,,,,975.6,962.2,,33.0,,,13.0,270.0,,,W,2.3,1,9,10.0
-1990-11-07,0.6,-5.6,,,,971.6,964.9,,22.0,,,11.0,200.0,,,S,0.2,8,6,9.0
-1990-11-08,-0.6,-6.7,,,,971.2,968.1,,20.0,,,7.0,240.0,,,SW,T,T,5,10.0
-1990-11-09,0.2,-5.9,,,,974.0,968.1,,30.0,,,13.0,110.0,,,N,2.5,1,5,10.0
-1990-11-10,3.9,-2.4,,,,971.9,957.8,,48.0,,,20.0,10.0,,,N,0.1,T,5,10.0
-1990-11-11,2.2,-2.8,,,,965.8,955.8,,49.0,,,18.0,360.0,,,NW,0.8,T,4,10.0
-1990-11-12,0.6,-6.4,,,,976.3,965.8,,28.0,,,12.0,330.0,,,W,1.1,T,4,10.0
-1990-11-13,2.5,-5.5,,,,975.3,954.8,,55.0,,,30.0,20.0,,,N,5.8,1,5,10.0
-1990-11-14,2.8,0.3,,,,955.8,952.2,,49.0,,,24.0,360.0,,,N,7.1,4,2,10.0
-1990-11-15,0.4,-2.5,,,,965.0,955.1,,42.0,,,19.0,360.0,,,NW,4.2,3,3,10.0
-1990-11-16,1.7,-4.4,,,,965.3,959.4,,21.0,,,5.0,270.0,,,W,1.8,9,5,10.0
-1990-11-17,-0.6,-7.1,,,,967.5,958.0,,29.0,,,7.0,240.0,,,SW,T,T,5,9.0
-1990-11-18,2.8,-6.6,,,,970.1,961.7,,27.0,,,8.0,250.0,,,E,0.4,1,5,5.0
-1990-11-19,3.3,-1.6,,,,960.4,949.0,,29.0,,,4.0,60.0,,,NE,2.0,T,2,10.0
-1990-11-20,3.3,-1.0,,,,958.0,951.9,,35.0,,,15.0,20.0,,,N,1.0,1,2,9.0
-1990-11-21,1.7,-2.2,,,,970.6,954.6,,15.0,,,5.0,270.0,,,NW,0.3,T,2,10.0
-1990-11-22,-1.7,-5.3,,,,971.0,959.8,,22.0,,,5.0,80.0,,,NW,0.0,0,1,7.0
-1990-11-23,0.6,-3.6,,,,980.3,960.7,,26.0,,,11.0,220.0,,,SW,T,T,1,10.0
-1990-11-24,-0.7,-2.8,,,,982.7,976.3,,27.0,,,12.0,220.0,,,SW,T,T,1,10.0
-1990-11-25,2.8,-3.9,,,,977.2,972.5,,18.0,,,8.0,200.0,,,SW,0.0,0,1,8.0
-1990-11-26,-0.6,-3.1,,,,977.9,973.8,,16.0,,,9.0,230.0,,,SW,0.0,0,1,10.0
-1990-11-27,-1.1,-4.1,,,,984.1,973.9,,14.0,,,9.0,210.0,,,SW,0.0,0,1,10.0
-1990-11-28,1.7,-4.2,,,,984.6,967.2,,46.0,,,13.0,70.0,,,E,0.2,T,1,10.0
-1990-11-29,3.9,-1.1,,,,977.7,965.9,,48.0,,,18.0,90.0,,,E,0.0,0,1,10.0
-1990-11-30,-0.9,-2.3,,,,982.1,977.7,,15.0,,,10.0,250.0,,,SW,0.3,T,1,10.0
-1990-12-01,5.5,-2.1,,,,985.1,982.1,,8.0,,,2.0,240.0,,,SW,T,T,1,8.0
-1990-12-02,4.3,-4.4,,,,986.3,984.7,,10.0,,,6.0,310.0,,,NE,0.0,0,1,4.0
-1990-12-03,6.1,-3.6,,,,986.5,980.0,,18.0,,,4.0,80.0,,,E,0.0,0,1,9.0
-1990-12-04,4.7,-2.5,,,,981.1,979.0,,14.0,,,4.0,220.0,,,SW,0.0,0,0,5.0
-1990-12-05,2.2,-2.2,,,,986.1,980.4,,14.0,,,5.0,240.0,,,SW,0.2,T,0,10.0
-1990-12-06,0.6,-2.8,,,,994.9,986.0,,22.0,,,16.0,210.0,,,SW,0.0,0,0,8.0
-1990-12-07,1.1,-1.7,,,,997.3,994.6,,20.0,,,7.0,210.0,,,SW,0.3,T,0,10.0
-1990-12-08,2.8,-0.8,,,,997.2,986.1,,39.0,,,20.0,10.0,,,N,4.3,1,0,10.0
-1990-12-09,0.6,-1.6,,,,987.0,975.9,,38.0,,,12.0,360.0,,,W,4.6,2,1,10.0
-1990-12-10,1.7,-1.1,,,,980.0,964.2,,36.0,,,14.0,20.0,,,NE,0.5,T,1,10.0
-1990-12-11,3.7,-0.8,,,,977.3,964.8,,30.0,,,7.0,120.0,,,E,0.3,T,0,9.0
-1990-12-12,5.0,-3.2,,,,995.4,977.3,,32.0,,,10.0,100.0,,,E,0.0,0,0,2.0
-1990-12-13,2.3,-3.9,,,,995.4,985.4,,11.0,,,2.0,10.0,,,N,0.8,T,0,9.0
-1990-12-14,2.2,-0.8,,,,985.7,982.1,,10.0,,,3.0,40.0,,,E,2.6,4,0,10.0
-1990-12-15,4.4,-3.9,,,,987.1,983.7,,10.0,,,2.0,300.0,,,S,0.0,0,0,6.0
-1990-12-16,5.6,-0.8,,,,991.9,986.8,,18.0,,,2.0,60.0,,,NW,0.0,0,0,8.0
-1990-12-17,6.7,0.1,,,,1003.0,991.9,,44.0,,,7.0,360.0,,,N,0.0,0,0,7.0
-1990-12-18,5.8,0.6,,,,1003.3,994.3,,12.0,,,2.0,350.0,,,NW,0.0,0,0,10.0
-1990-12-19,5.0,1.7,,,,994.3,992.1,,21.0,,,4.0,140.0,,,SE,3.0,0,0,10.0
-1990-12-20,5.0,0.9,,,,993.2,985.0,,18.0,,,5.0,310.0,,,NW,0.5,0,0,10.0
-1990-12-21,5.0,0.6,,,,991.5,985.8,,24.0,,,7.0,130.0,,,SE,5.0,1,0,10.0
-1990-12-22,7.2,0.1,,,,991.5,990.6,,8.0,,,3.0,260.0,,,SW,0.0,0,0,8.0
-1990-12-23,3.1,0.6,,,,993.9,991.2,,14.0,,,7.0,270.0,,,W,5.8,T,0,10.0
-1990-12-24,2.2,-0.7,,,,993.2,981.0,,18.0,,,7.0,180.0,,,E,5.5,1,0,10.0
-1990-12-25,2.8,-0.9,,,,986.8,981.4,,17.0,,,9.0,220.0,,,SW,T,T,0,8.0
-1990-12-26,5.0,-1.6,,,,987.0,982.6,,24.0,,,2.0,90.0,,,E,2.9,3,0,10.0
-1990-12-27,2.4,0.0,,,,991.0,982.6,,18.0,,,5.0,330.0,,,W,9.8,12,0,10.0
-1990-12-28,5.5,0.1,,,,990.9,973.1,,58.0,,,17.0,20.0,,,N,5.0,0,0,10.0
-1990-12-29,6.6,1.1,,,,982.2,973.9,,36.0,,,13.0,330.0,,,NW,5.4,T,0,10.0
-1990-12-30,7.4,2.3,,,,984.0,981.5,,36.0,,,13.0,10.0,,,N,0.2,0,0,10.0
-1990-12-31,6.7,0.8,,,,989.1,983.1,,20.0,,,3.0,70.0,,,E,0.0,0,0,9.0
-1991-01-01,7.4,1.4,,,,987.0,984.1,,25.0,,,5.0,30.0,,,SE,0.0,0,0,10.0
-1991-01-02,7.2,2.1,,,,986.5,984.0,,43.0,,,11.0,20.0,,,E,T,T,0,10.0
-1991-01-03,5.8,2.4,,,,986.1,978.8,,57.0,,,19.0,20.0,,,N,0.5,T,0,10.0
-1991-01-04,5.7,2.6,,,,983.7,979.4,,50.0,,,25.0,360.0,,,N,1.8,0,0,8.0
-1991-01-05,4.4,0.7,,,,990.2,979.0,,40.0,,,21.0,360.0,,,N,5.0,T,0,8.0
-1991-01-06,6.8,1.9,,,,990.2,978.5,,48.0,,,20.0,30.0,,,NE,1.6,0,0,10.0
-1991-01-07,8.0,1.8,,,,986.0,972.7,,54.0,,,14.0,360.0,,,N,10.9,0,0,9.0
-1991-01-08,4.4,-0.6,,,,984.8,977.8,,15.0,,,9.0,280.0,,,W,T,T,0,9.0
-1991-01-09,5.7,-2.3,,,,987.9,972.4,,60.0,,,13.0,360.0,,,NW,4.0,0,0,7.0
-1991-01-10,5.6,2.4,,,,975.3,970.9,,44.0,,,28.0,360.0,,,N,7.5,0,0,10.0
-1991-01-11,4.9,1.4,,,,992.5,975.3,,35.0,,,19.0,360.0,,,N,0.2,0,0,10.0
-1991-01-12,7.2,1.9,,,,991.4,976.8,,52.0,,,22.0,10.0,,,N,6.0,0,0,10.0
-1991-01-13,5.1,0.4,,,,990.8,978.7,,27.0,,,9.0,10.0,,,NW,2.0,T,0,10.0
-1991-01-14,4.4,0.1,,,,1000.0,990.2,,21.0,,,11.0,230.0,,,SW,0.0,0,0,8.0
-1991-01-15,2.4,0.0,,,,1002.2,1000.0,,10.0,,,3.0,200.0,,,S,0.0,0,0,10.0
-1991-01-16,4.5,-1.1,,,,1000.3,992.6,,18.0,,,7.0,120.0,,,SE,2.0,0,0,9.0
-1991-01-17,7.2,1.7,,,,993.2,982.1,,30.0,,,8.0,20.0,,,N,T,0,0,10.0
-1991-01-18,4.4,0.3,,,,986.8,980.6,,16.0,,,2.0,300.0,,,NW,11.6,1,0,10.0
-1991-01-19,5.6,0.0,,,,989.2,984.8,,18.0,,,7.0,360.0,,,NW,1.6,2,0,8.0
-1991-01-20,6.5,0.0,,,,984.8,977.7,,10.0,,,3.0,200.0,,,NW,0.0,0,0,7.0
-1991-01-21,4.4,0.6,,,,980.0,977.7,,12.0,,,5.0,340.0,,,S,0.0,0,0,10.0
-1991-01-22,2.7,0.6,,,,985.7,979.2,,20.0,,,7.0,210.0,,,S,0.0,0,0,10.0
-1991-01-23,3.7,0.2,,,,987.0,976.8,,22.0,,,9.0,20.0,,,W,2.6,T,0,10.0
-1991-01-24,6.2,0.8,,,,976.8,972.2,,33.0,,,13.0,70.0,,,NE,0.2,T,0,8.0
-1991-01-25,7.3,1.1,,,,995.6,974.3,,24.0,,,7.0,60.0,,,NW,0.0,0,0,5.0
-1991-01-26,5.9,0.2,,,,1000.6,995.6,,30.0,,,9.0,350.0,,,N,T,T,0,10.0
-1991-01-27,4.4,1.6,,,,998.3,986.8,,42.0,,,19.0,360.0,,,N,9.7,T,0,10.0
-1991-01-28,5.4,1.7,,,,986.8,973.9,,40.0,,,13.0,10.0,,,N,3.0,0,0,10.0
-1991-01-29,4.2,0.8,,,,979.7,972.2,,42.0,,,21.0,330.0,,,N,12.9,1,0,10.0
-1991-01-30,3.1,0.3,,,,979.7,970.6,,36.0,,,15.0,10.0,,,NW,14.4,T,0,10.0
-1991-01-31,4.7,1.1,,,,976.1,966.3,,50.0,,,15.0,360.0,,,N,1.7,T,0,10.0
-1991-02-01,3.1,1.4,,,,972.9,964.9,,35.0,,,19.0,360.0,,,N,9.7,T,0,10.0
-1991-02-02,2.2,1.0,,,,984.8,972.9,,28.0,,,19.0,350.0,,,N,4.0,T,0,10.0
-1991-02-03,5.2,-1.1,,,,992.5,985.0,,20.0,,,7.0,360.0,,,N,0.0,0,0,7.0
-1991-02-04,5.6,1.1,,,,988.0,982.3,,36.0,,,15.0,90.0,,,E,0.2,T,0,10.0
-1991-02-05,5.8,-0.6,,,,1001.0,988.0,,26.0,,,5.0,90.0,,,E,0.0,0,0,3.0
-1991-02-06,7.1,-0.6,,,,1009.1,1000.7,,9.0,,,2.0,180.0,,,NE,0.0,0,0,1.0
-1991-02-07,4.3,-1.1,,,,1022.0,1009.1,,28.0,,,9.0,20.0,,,NE,0.0,0,0,9.0
-1991-02-08,6.5,-0.3,,,,1011.5,1008.1,,24.0,,,5.0,30.0,,,E,0.0,0,0,3.0
-1991-02-09,6.7,0.8,,,,1008.1,1001.7,,8.0,,,3.0,120.0,,,N,1.3,T,0,8.0
-1991-02-10,7.3,2.2,,,,1001.7,995.0,,46.0,,,9.0,20.0,,,NW,4.8,0,0,10.0
-1991-02-11,9.8,3.3,,,,995.9,983.4,,43.0,,,13.0,10.0,,,NE,0.1,0,0,10.0
-1991-02-12,6.7,1.9,,,,998.0,982.3,,25.0,,,9.0,70.0,,,W,T,0,0,10.0
-1991-02-13,8.2,0.8,,,,998.0,983.7,,56.0,,,11.0,10.0,,,N,1.3,0,0,10.0
-1991-02-14,4.2,0.2,,,,990.2,984.8,,34.0,,,17.0,330.0,,,NW,6.2,1,0,10.0
-1991-02-15,3.3,1.1,,,,996.3,982.9,,16.0,,,9.0,180.0,,,W,3.9,2,0,10.0
-1991-02-16,6.3,1.3,,,,998.1,986.5,,30.0,,,13.0,70.0,,,E,T,T,0,10.0
-1991-02-17,6.3,1.7,,,,992.9,984.2,,29.0,,,11.0,360.0,,,E,0.2,0,0,10.0
-1991-02-18,4.7,-0.1,,,,993.6,988.2,,24.0,,,4.0,110.0,,,NE,9.9,2,0,10.0
-1991-02-19,4.8,1.1,,,,988.9,984.4,,29.0,,,11.0,110.0,,,E,0.7,1,0,10.0
-1991-02-20,3.6,0.0,,,,986.1,983.1,,26.0,,,8.0,30.0,,,E,0.2,T,0,10.0
-1991-02-21,4.7,0.0,,,,983.1,979.9,,36.0,,,10.0,40.0,,,E,0.0,0,0,10.0
-1991-02-22,1.7,-1.9,,,,985.4,977.9,,21.0,,,12.0,30.0,,,N,0.0,0,0,7.0
-1991-02-23,5.3,-1.4,,,,985.0,975.5,,24.0,,,4.0,150.0,,,NE,0.0,0,0,7.0
-1991-02-24,1.4,-1.1,,,,985.8,981.4,,28.0,,,4.0,10.0,,,N,1.3,1,0,10.0
-1991-02-25,1.4,-1.0,,,,985.1,980.1,,18.0,,,4.0,330.0,,,NW,0.9,T,0,8.0
-1991-02-26,5.7,-0.3,,,,985.2,982.1,,26.0,,,5.0,100.0,,,N,0.1,T,0,8.0
-1991-02-27,2.5,-2.5,,,,990.3,982.5,,20.0,,,8.0,40.0,,,N,0.0,0,0,9.0
-1991-02-28,5.8,-1.0,,,,990.9,987.0,,23.0,,,9.0,70.0,,,E,T,T,0,9.0
-1991-03-01,6.3,0.1,,,,988.9,985.0,,39.0,,,12.0,30.0,,,N,1.8,1,0,7.0
-1991-03-02,6.9,0.0,,,,985.0,971.1,,38.0,,,15.0,110.0,,,E,0.0,0,0,10.0
-1991-03-03,4.9,0.8,,,,978.1,973.2,,34.0,,,8.0,40.0,,,NW,T,0,0,9.0
-1991-03-04,3.9,0.6,,,,976.9,974.5,,19.0,,,4.0,220.0,,,S,0.0,0,0,8.0
-1991-03-05,3.9,-1.4,,,,979.6,975.6,,21.0,,,7.0,230.0,,,SW,1.3,3,0,10.0
-1991-03-06,2.4,-1.4,,,,980.4,977.3,,30.0,,,11.0,120.0,,,SW,1.2,1,0,10.0
-1991-03-07,4.9,-0.9,,,,977.3,971.0,,38.0,,,13.0,20.0,,,E,T,T,0,10.0
-1991-03-08,4.7,-1.6,,,,981.4,973.2,,28.0,,,7.0,210.0,,,SW,3.3,2,0,9.0
-1991-03-09,1.7,-1.7,,,,981.4,968.5,,24.0,,,11.0,170.0,,,E,8.6,11,4,7.0
-1991-03-10,1.7,-2.2,,,,987.8,973.9,,33.0,,,15.0,230.0,,,SW,1.8,2,20,8.0
-1991-03-11,2.5,-2.2,,,,988.8,983.3,,28.0,,,4.0,220.0,,,NE,1.3,3,19,10.0
-1991-03-12,0.8,-3.3,,,,984.8,984.0,,12.0,,,3.0,360.0,,,N,0.8,T,17,10.0
-1991-03-13,3.5,-4.4,,,,990.9,983.9,,12.0,,,5.0,10.0,,,N,T,T,17,7.0
-1991-03-14,3.6,-3.6,,,,990.9,961.7,,46.0,,,15.0,120.0,,,E,T,T,16,10.0
-1991-03-15,6.4,0.7,,,,971.5,958.9,,36.0,,,13.0,30.0,,,N,0.0,0,13,8.0
-1991-03-16,1.5,-1.1,,,,981.8,971.5,,33.0,,,15.0,40.0,,,SW,0.1,T,12,10.0
-1991-03-17,1.4,-1.8,,,,978.8,972.5,,40.0,,,15.0,30.0,,,W,3.6,3,18,10.0
-1991-03-18,1.7,-2.2,,,,985.2,978.8,,24.0,,,10.0,20.0,,,N,5.4,5,19,10.0
-1991-03-19,0.3,-2.2,,,,990.9,985.3,,32.0,,,10.0,30.0,,,N,1.2,1,24,10.0
-1991-03-20,1.9,-1.7,,,,990.0,975.4,,56.0,,,25.0,40.0,,,N,1.9,1,21,10.0
-1991-03-21,3.1,-0.6,,,,987.5,982.9,,38.0,,,20.0,40.0,,,N,3.3,2,24,8.0
-1991-03-22,2.2,-2.5,,,,991.9,987.5,,27.0,,,15.0,100.0,,,NE,1.6,2,25,9.0
-1991-03-23,3.7,-0.3,,,,996.5,989.1,,34.0,,,10.0,90.0,,,NE,0.0,0,24,9.0
-1991-03-24,1.9,-1.9,,,,1001.3,996.3,,60.0,,,33.0,30.0,,,N,0.0,0,24,10.0
-1991-03-25,2.8,0.6,,,,999.9,993.2,,42.0,,,20.0,20.0,,,N,5.0,1,25,10.0
-1991-03-26,1.4,-1.1,,,,1009.2,992.0,,36.0,,,18.0,250.0,,,W,4.6,10,33,10.0
-1991-03-27,1.4,0.3,,,,1010.8,1009.2,,18.0,,,8.0,270.0,,,W,4.9,3,40,10.0
-1991-03-28,2.4,-0.3,,,,1010.8,1008.7,,12.0,,,4.0,270.0,,,S,1.3,T,31,10.0
-1991-03-29,4.3,-1.1,,,,1015.0,1009.0,,20.0,,,9.0,220.0,,,S,T,T,29,6.0
-1991-03-30,5.2,-1.7,,,,1023.7,1015.1,,11.0,,,5.0,60.0,,,NE,0.0,0,29,4.0
-1991-03-31,0.8,-3.3,,,,1023.7,1019.2,,6.0,,,2.0,90.0,,,NE,T,T,29,8.0
-1991-04-01,-1.9,-5.3,,,,1019.2,1014.9,,7.0,,,4.0,30.0,,,N,0.2,T,29,10.0
-1991-04-02,-0.3,-3.9,,,,1014.9,1007.1,,22.0,,,6.0,10.0,,,N,0.1,T,29,10.0
-1991-04-03,5.0,-1.1,,,,1007.1,993.5,,54.0,,,20.0,30.0,,,N,4.3,0,23,10.0
-1991-04-04,4.7,0.6,,,,993.5,978.2,,48.0,,,18.0,40.0,,,N,23.9,2,0,10.0
-1991-04-05,3.1,-2.0,,,,993.8,988.0,,18.0,,,8.0,320.0,,,NW,1.2,T,0,7.0
-1991-04-06,3.9,-2.5,,,,993.3,983.7,,23.0,,,8.0,120.0,,,E,0.0,0,0,3.0
-1991-04-07,2.5,-2.0,,,,988.6,983.2,,24.0,,,6.0,90.0,,,E,0.0,0,0,3.0
-1991-04-08,0.0,-3.0,,,,995.9,988.7,,16.0,,,7.0,10.0,,,N,0.0,0,0,9.0
-1991-04-09,-0.5,-2.0,,,,1000.5,995.9,,12.0,,,4.0,30.0,,,NE,0.0,0,0,10.0
-1991-04-10,2.8,-2.5,,,,1000.5,991.6,,28.0,,,9.0,100.0,,,E,T,T,0,10.0
-1991-04-11,3.6,0.5,,,,990.5,986.5,,44.0,,,27.0,60.0,,,NE,1.7,0,0,10.0
-1991-04-12,5.0,2.1,,,,992.7,988.3,,46.0,,,20.0,10.0,,,N,0.2,0,0,10.0
-1991-04-13,5.0,-0.5,,,,993.9,985.5,,47.0,,,12.0,60.0,,,NE,0.4,0,0,9.0
-1991-04-14,1.5,-0.5,,,,991.2,987.1,,9.0,,,4.0,280.0,,,NW,1.9,2,0,10.0
-1991-04-15,1.9,-1.1,,,,1000.9,987.1,,22.0,,,5.0,100.0,,,NW,2.2,3,0,10.0
-1991-04-16,1.5,-2.7,,,,1005.7,1000.9,,18.0,,,5.0,220.0,,,NE,0.2,T,0,8.0
-1991-04-17,-1.0,-3.5,,,,1005.7,1003.0,,12.0,,,6.0,30.0,,,N,0.1,T,0,10.0
-1991-04-18,-2.0,-4.4,,,,1003.0,986.8,,11.0,,,4.0,60.0,,,NE,0.2,T,0,10.0
-1991-04-19,-3.0,-5.5,,,,986.8,974.5,,10.0,,,5.0,350.0,,,E,1.7,1,0,10.0
-1991-04-20,-1.0,-4.5,,,,981.7,976.8,,14.0,,,4.0,260.0,,,SW,0.3,1,0,10.0
-1991-04-21,0.7,-3.7,,,,979.0,973.8,,11.0,,,5.0,340.0,,,N,1.4,4,0,10.0
-1991-04-22,-1.9,-4.9,,,,981.3,975.7,,30.0,,,12.0,250.0,,,W,3.2,5,2,10.0
-1991-04-23,-1.4,-6.5,,,,986.9,980.0,,33.0,,,14.0,240.0,,,SW,0.2,0,23,8.0
-1991-04-24,-1.5,-7.0,,,,980.0,972.2,,21.0,,,12.0,120.0,,,E,0.0,0,17,5.0
-1991-04-25,0.5,-3.0,,,,981.1,973.9,,38.0,,,16.0,150.0,,,E,0.2,T,15,9.0
-1991-04-26,-1.0,-4.0,,,,991.9,981.1,,26.0,,,11.0,30.0,,,E,7.3,16,33,10.0
-1991-04-27,-2.5,-4.5,,,,997.9,991.9,,33.0,,,20.0,20.0,,,N,0.1,0,29,7.0
-1991-04-28,0.3,-4.5,,,,997.3,969.6,,46.0,,,25.0,140.0,,,NE,2.1,3,25,10.0
-1991-04-29,-0.5,-2.5,,,,979.9,974.0,,24.0,,,18.0,300.0,,,N,1.5,1,33,8.0
-1991-04-30,-0.5,-4.0,,,,990.5,978.7,,24.0,,,9.0,30.0,,,N,3.6,4,36,9.0
-1991-05-01,-1.7,-4.0,,,,996.9,990.5,,37.0,,,18.0,30.0,,,N,0.7,2,38,9.0
-1991-05-02,0.6,-2.5,,,,993.0,979.0,,42.0,,,28.0,30.0,,,N,3.4,3,36,10.0
-1991-05-03,-2.0,-6.3,,,,984.1,980.0,,39.0,,,17.0,240.0,,,SW,0.0,0,36,10.0
-1991-05-04,-4.0,-7.0,,,,980.2,974.9,,23.0,,,9.0,210.0,,,N,2.7,6,38,7.0
-1991-05-05,-4.5,-10.0,,,,986.9,980.5,,22.0,,,10.0,200.0,,,S,0.0,0,34,2.0
-1991-05-06,-5.0,-9.2,,,,986.8,981.2,,27.0,,,27.0,200.0,,,S,T,T,32,8.0
-1991-05-07,-3.9,-6.9,,,,981.9,971.6,,24.0,,,24.0,180.0,,,S,0.2,T,32,9.0
-1991-05-08,-3.1,-6.0,,,,992.0,971.6,,34.0,,,25.0,240.0,,,S,2.0,2,33,5.0
-1991-05-09,-4.0,-8.5,,,,1003.0,991.9,,16.0,,,9.0,20.0,,,N,0.0,0,32,1.0
-1991-05-10,-4.5,-8.2,,,,1004.1,1000.7,,24.0,,,11.0,30.0,,,NE,0.0,0,31,5.0
-1991-05-11,-3.5,-6.2,,,,1006.2,1004.2,,10.0,,,4.0,70.0,,,NE,0.0,0,31,7.0
-1991-05-12,3.5,-6.5,,,,1006.1,982.2,,47.0,,,27.0,20.0,,,SE,3.1,1,31,10.0
-1991-05-13,1.7,-1.5,,,,985.6,976.1,,48.0,,,24.0,10.0,,,NW,4.2,7,39,10.0
-1991-05-14,-0.5,-5.0,,,,1007.9,978.4,,25.0,,,11.0,200.0,,,N,0.3,T,39,10.0
-1991-05-15,0.0,-4.9,,,,1009.2,993.6,,26.0,,,8.0,150.0,,,N,0.4,1,37,8.0
-1991-05-16,0.5,-1.9,,,,993.7,979.2,,16.0,,,8.0,170.0,,,SE,3.1,2,37,10.0
-1991-05-17,2.5,-1.8,,,,979.5,974.7,,22.0,,,8.0,360.0,,,SE,2.9,2,37,10.0
-1991-05-18,-1.5,-3.0,,,,975.8,971.4,,12.0,,,2.0,100.0,,,NW,6.9,11,47,10.0
-1991-05-19,-4.0,-8.0,,,,998.9,975.9,,28.0,,,18.0,20.0,,,N,1.1,2,50,9.0
-1991-05-20,-4.1,-7.3,,,,1000.4,992.7,,21.0,,,7.0,30.0,,,N,0.6,T,48,10.0
-1991-05-21,-3.8,-7.3,,,,992.7,982.1,,18.0,,,8.0,50.0,,,N,0.4,1,47,10.0
-1991-05-22,-4.0,-5.5,,,,988.4,978.0,,30.0,,,15.0,10.0,,,N,0.3,T,46,8.0
-1991-05-23,-4.5,-10.4,,,,992.0,978.2,,40.0,,,22.0,130.0,,,E,1.2,T,42,7.0
-1991-05-24,-3.0,-8.5,,,,991.0,968.3,,41.0,,,20.0,30.0,,,NE,0.4,2,42,10.0
-1991-05-25,-5.5,-11.5,,,,984.5,969.6,,37.0,,,17.0,80.0,,,NE,2.5,5,45,10.0
-1991-05-26,-8.0,-10.6,,,,996.7,984.5,,18.0,,,8.0,80.0,,,NE,0.0,0,43,6.0
-1991-05-27,-7.4,-11.0,,,,997.0,991.8,,10.0,,,7.0,90.0,,,NE,0.0,0,42,10.0
-1991-05-28,-7.3,-8.0,,,,991.8,984.0,,19.0,,,8.0,220.0,,,SE,T,T,40,10.0
-1991-05-29,-7.1,-8.9,,,,984.1,979.0,,17.0,,,11.0,240.0,,,SW,0.1,T,41,10.0
-1991-05-30,-7.0,-8.0,,,,979.0,975.7,,21.0,,,12.0,250.0,,,SW,0.2,T,41,10.0
-1991-05-31,-6.9,-11.0,,,,990.9,978.1,,23.0,,,9.0,220.0,,,E,0.0,0,41,9.0
-1991-06-01,-6.5,-8.8,,,,993.0,991.0,,22.0,,,13.0,210.0,,,SW,T,T,40,9.0
-1991-06-02,-1.2,-6.8,,,,991.0,983.3,,32.0,,,19.0,320.0,,,NW,7.4,9,61,10.0
-1991-06-03,-1.5,-10.0,,,,985.0,982.8,,20.0,,,9.0,250.0,,,SW,1.4,2,65,10.0
-1991-06-04,-7.8,-9.3,,,,996.3,985.0,,24.0,,,9.0,200.0,,,SW,1.0,2,66,10.0
-1991-06-05,-7.8,-9.4,,,,996.5,981.3,,20.0,,,9.0,250.0,,,SW,0.8,1,64,10.0
-1991-06-06,-6.5,-10.0,,,,981.3,967.9,,37.0,,,21.0,30.0,,,N,3.7,2,65,10.0
-1991-06-07,-7.2,-10.8,,,,982.4,976.8,,44.0,,,27.0,40.0,,,N,1.1,1,55,10.0
-1991-06-08,-7.2,-11.8,,,,983.1,965.3,,32.0,,,15.0,260.0,,,E,1.4,1,55,10.0
-1991-06-09,-7.0,-13.0,,,,975.3,966.8,,26.0,,,16.0,260.0,,,SW,0.6,T,55,10.0
-1991-06-10,-10.5,-17.0,,,,980.2,960.9,,46.0,,,21.0,150.0,,,E,1.4,1,51,9.0
-1991-06-11,-7.9,-17.0,,,,1001.5,980.4,,42.0,,,26.0,140.0,,,E,0.1,T,51,2.0
-1991-06-12,-6.5,-8.3,,,,1001.3,990.0,,32.0,,,13.0,250.0,,,SW,0.1,T,50,7.0
-1991-06-13,-7.2,-11.9,,,,994.2,989.8,,20.0,,,7.0,100.0,,,NE,0.0,0,50,3.0
-1991-06-14,-7.8,-11.7,,,,995.8,994.2,,15.0,,,9.0,20.0,,,NE,0.0,0,49,4.0
-1991-06-15,-7.9,-12.5,,,,1000.9,995.7,,18.0,,,9.0,40.0,,,NE,0.9,1,49,8.0
-1991-06-16,-8.0,-10.0,,,,1008.5,1000.9,,15.0,,,8.0,260.0,,,S,0.5,2,51,8.0
-1991-06-17,-8.0,-11.6,,,,1015.0,1008.5,,20.0,,,8.0,170.0,,,NE,0.0,0,51,7.0
-1991-06-18,-6.9,-11.5,,,,1015.0,1011.2,,13.0,,,6.0,210.0,,,SW,0.2,T,51,9.0
-1991-06-19,-5.5,-7.5,,,,1014.1,1012.2,,14.0,,,8.0,180.0,,,SW,0.7,T,50,10.0
-1991-06-20,-3.3,-6.4,,,,1013.0,998.0,,22.0,,,8.0,360.0,,,NW,0.3,T,49,10.0
-1991-06-21,-3.3,-4.5,,,,998.0,974.0,,24.0,,,11.0,40.0,,,NE,1.6,2,50,10.0
-1991-06-22,-2.4,-6.5,,,,974.0,966.7,,26.0,,,12.0,160.0,,,E,0.1,T,49,10.0
-1991-06-23,-2.0,-5.4,,,,980.2,966.7,,36.0,,,17.0,150.0,,,E,0.0,0,49,10.0
-1991-06-24,-3.5,-9.3,,,,998.9,980.2,,16.0,,,8.0,10.0,,,N,0.2,T,47,9.0
-1991-06-25,-3.0,-8.0,,,,998.9,991.8,,55.0,,,20.0,30.0,,,N,0.6,1,47,10.0
-1991-06-26,0.0,-10.5,,,,1002.0,996.9,,52.0,,,24.0,20.0,,,N,0.0,0,45,7.0
-1991-06-27,1.2,-5.8,,,,996.8,979.1,,80.0,,,43.0,30.0,,,N,7.5,9,45,10.0
-1991-06-28,-4.0,-8.6,,,,992.1,975.5,,27.0,,,14.0,260.0,,,SW,7.9,6,75,9.0
-1991-06-29,-2.8,-8.3,,,,1000.2,986.9,,47.0,,,24.0,40.0,,,N,0.0,0,45,9.0
-1991-06-30,-0.8,-8.9,,,,998.1,973.7,,52.0,,,38.0,10.0,,,N,0.7,T,45,10.0
-1991-07-01,-8.4,-12.4,,,,982.4,977.2,,43.0,,,18.0,240.0,,,SW,0.0,0,44,10.0
-1991-07-02,-1.3,-13.8,,,,978.2,958.9,,53.0,,,23.0,170.0,,,W,2.2,1,45,10.0
-1991-07-03,-4.5,-9.3,,,,995.9,975.6,,32.0,,,13.0,250.0,,,SW,0.3,1,44,9.0
-1991-07-04,0.0,-7.0,,,,995.9,992.5,,40.0,,,16.0,20.0,,,N,3.4,1,48,10.0
-1991-07-05,0.2,-6.7,,,,998.6,992.6,,28.0,,,8.0,340.0,,,N,10.5,10,67,9.0
-1991-07-06,-6.7,-16.2,,,,1011.4,998.7,,20.0,,,8.0,210.0,,,NW,0.9,1,73,9.0
-1991-07-07,-3.0,-9.3,,,,1007.7,1003.7,,22.0,,,10.0,270.0,,,NW,0.8,1,75,9.0
-1991-07-08,-5.7,-10.8,,,,1012.9,1008.7,,13.0,,,8.0,340.0,,,NW,0.0,0,73,10.0
-1991-07-09,-6.3,-10.1,,,,1016.9,1012.7,,14.0,,,8.0,300.0,,,NW,0.0,0,72,9.0
-1991-07-10,-5.6,-12.0,,,,1017.7,1010.2,,10.0,,,8.0,340.0,,,NW,0.0,0,72,10.0
-1991-07-11,-3.0,-6.6,,,,1010.0,995.7,,38.0,,,15.0,240.0,,,NW,3.3,1,70,10.0
-1991-07-12,-3.0,-10.8,,,,1010.7,1004.7,,15.0,,,8.0,340.0,,,NW,0.0,0,70,10.0
-1991-07-13,-4.4,-8.7,,,,1009.6,999.1,,33.0,,,14.0,220.0,,,SW,0.0,0,69,9.0
-1991-07-14,-6.3,-10.9,,,,1004.1,996.5,,37.0,,,19.0,220.0,,,SW,T,T,68,8.0
-1991-07-15,-9.0,-11.9,,,,1011.1,1004.1,,9.0,,,6.0,60.0,,,NE,0.0,0,67,8.0
-1991-07-16,-6.7,-11.4,,,,1011.6,1007.3,,9.0,,,4.0,30.0,,,NE,0.0,0,66,9.0
-1991-07-17,0.5,-6.8,,,,1006.2,985.8,,23.0,,,10.0,120.0,,,SE,1.5,1,66,10.0
-1991-07-18,1.5,-1.7,,,,990.0,984.9,,24.0,,,7.0,40.0,,,SE,3.4,4,68,10.0
-1991-07-19,2.0,-3.4,,,,990.9,983.1,,32.0,,,13.0,80.0,,,NE,T,T,67,10.0
-1991-07-20,-0.5,-4.5,,,,985.2,981.8,,26.0,,,11.0,10.0,,,N,T,T,66,10.0
-1991-07-21,-4.0,-7.8,,,,989.1,985.2,,19.0,,,12.0,30.0,,,N,T,T,60,8.0
-1991-07-22,-4.0,-9.6,,,,989.1,976.7,,33.0,,,18.0,80.0,,,NE,0.9,1,60,8.0
-1991-07-23,-0.6,-6.0,,,,977.7,974.1,,44.0,,,31.0,40.0,,,NE,2.3,2,60,10.0
-1991-07-24,3.0,-3.4,,,,981.5,975.7,,53.0,,,27.0,40.0,,,NE,1.2,1,57,10.0
-1991-07-25,0.1,-4.1,,,,982.6,969.9,,42.0,,,14.0,60.0,,,NE,0.0,0,56,10.0
-1991-07-26,-1.0,-13.0,,,,986.6,968.8,,52.0,,,25.0,50.0,,,NE,0.1,T,57,10.0
-1991-07-27,-1.6,-11.5,,,,987.7,986.9,,22.0,,,4.0,30.0,,,NE,1.3,2,60,10.0
-1991-07-28,-1.5,-7.3,,,,986.9,972.6,,31.0,,,24.0,30.0,,,N,6.0,6,62,10.0
-1991-07-29,-5.6,-11.5,,,,971.4,966.5,,37.0,,,21.0,40.0,,,S,1.8,3,66,10.0
-1991-07-30,-5.9,-15.0,,,,999.8,971.6,,48.0,,,26.0,110.0,,,E,1.4,2,56,9.0
-1991-07-31,-5.5,-9.7,,,,1002.0,987.3,,18.0,,,5.0,230.0,,,E,2.0,6,58,10.0
-1991-08-01,-4.5,-7.7,,,,995.5,984.9,,23.0,,,8.0,230.0,,,SW,0.6,T,59,10.0
-1991-08-02,-2.4,-7.5,,,,994.9,966.9,,41.0,,,15.0,140.0,,,E,8.9,9,63,10.0
-1991-08-03,-4.9,-12.5,,,,984.8,968.8,,42.0,,,23.0,40.0,,,N,3.5,4,72,10.0
-1991-08-04,-11.5,-14.7,,,,1003.8,984.8,,40.0,,,25.0,30.0,,,N,T,T,54,8.0
-1991-08-05,-11.8,-14.3,,,,1009.2,1003.8,,29.0,,,16.0,350.0,,,SW,0.5,T,55,10.0
-1991-08-06,-12.8,-14.1,,,,1016.0,1008.8,,21.0,,,8.0,240.0,,,SW,0.6,1,58,10.0
-1991-08-07,0.5,-13.7,,,,1016.0,1000.1,,52.0,,,25.0,20.0,,,N,0.5,1,54,10.0
-1991-08-08,0.6,-3.0,,,,1000.0,994.1,,60.0,,,31.0,20.0,,,N,3.1,2,57,10.0
-1991-08-09,0.6,-4.0,,,,995.7,985.9,,49.0,,,24.0,360.0,,,NW,6.6,6,56,10.0
-1991-08-10,-0.5,-14.1,,,,992.5,981.3,,45.0,,,21.0,350.0,,,SW,1.1,1,58,9.0
-1991-08-11,-9.4,-16.0,,,,1000.1,990.5,,65.0,,,18.0,360.0,,,SW,0.0,0,58,9.0
-1991-08-12,0.0,-12.2,,,,1001.8,986.7,,74.0,,,28.0,40.0,,,N,0.9,1,57,10.0
-1991-08-13,0.3,-7.5,,,,985.8,972.0,,60.0,,,29.0,30.0,,,N,3.5,3,57,10.0
-1991-08-14,-0.3,-11.0,,,,981.1,975.7,,30.0,,,6.0,20.0,,,SE,3.3,4,62,10.0
-1991-08-15,1.7,-5.0,,,,975.7,955.0,,58.0,,,34.0,40.0,,,NE,2.8,2,56,10.0
-1991-08-16,-3.8,-15.9,,,,971.5,960.7,,42.0,,,18.0,300.0,,,SW,T,T,57,9.0
-1991-08-17,-1.5,-18.0,,,,972.0,943.8,,64.0,,,22.0,120.0,,,NE,1.6,2,56,10.0
-1991-08-18,-5.5,-8.6,,,,959.2,943.2,,71.0,,,31.0,50.0,,,N,8.2,4,56,10.0
-1991-08-19,-5.6,-9.2,,,,980.7,959.3,,34.0,,,14.0,40.0,,,NE,0.0,0,56,5.0
-1991-08-20,-6.1,-12.8,,,,990.0,980.7,,21.0,,,9.0,260.0,,,NW,T,T,56,10.0
-1991-08-21,3.0,-7.5,,,,986.5,971.7,,42.0,,,20.0,30.0,,,E,0.6,T,56,10.0
-1991-08-22,1.2,-1.3,,,,997.1,972.6,,28.0,,,8.0,20.0,,,NW,1.4,2,60,5.0
-1991-08-23,1.5,-5.6,,,,997.1,992.7,,52.0,,,21.0,30.0,,,N,6.1,2,57,10.0
-1991-08-24,1.0,-1.9,,,,992.7,981.1,,63.0,,,34.0,30.0,,,N,12.1,7,57,10.0
-1991-08-25,-1.5,-12.1,,,,984.0,967.2,,49.0,,,23.0,40.0,,,NE,0.4,T,60,9.0
-1991-08-26,-0.8,-5.4,,,,970.7,960.7,,71.0,,,28.0,50.0,,,N,10.2,5,60,10.0
-1991-08-27,-2.5,-9.0,,,,971.5,960.7,,18.0,,,8.0,100.0,,,NE,1.7,2,60,6.0
-1991-08-28,-7.0,-12.6,,,,990.0,971.5,,21.0,,,8.0,10.0,,,N,T,T,60,7.0
-1991-08-29,-11.7,-16.0,,,,1005.7,990.5,,18.0,,,9.0,250.0,,,SW,0.2,T,60,10.0
-1991-08-30,-1.6,-15.5,,,,1011.4,1003.2,,30.0,,,10.0,20.0,,,NW,0.6,T,60,10.0
-1991-08-31,2.0,-2.0,,,,1003.0,984.7,,40.0,,,28.0,320.0,,,NW,40.1,7,67,10.0
-1991-09-01,1.2,-3.2,,,,989.2,981.1,,42.0,,,23.0,350.0,,,NW,8.6,3,66,10.0
-1991-09-02,2.2,-4.6,,,,997.2,985.2,,44.0,,,15.0,40.0,,,NW,1.0,1,68,10.0
-1991-09-03,1.0,-3.8,,,,1009.3,996.9,,20.0,,,8.0,360.0,,,NW,0.4,T,67,10.0
-1991-09-04,3.0,-2.8,,,,1008.3,984.0,,38.0,,,13.0,50.0,,,NW,T,T,66,10.0
-1991-09-05,2.5,-2.0,,,,983.9,967.2,,72.0,,,32.0,30.0,,,N,2.2,1,65,10.0
-1991-09-06,-2.0,-6.8,,,,979.1,975.2,,32.0,,,8.0,350.0,,,SE,0.4,0,66,10.0
-1991-09-07,-3.2,-10.2,,,,986.8,979.1,,20.0,,,9.0,260.0,,,NW,0.0,0,65,6.0
-1991-09-08,-4.6,-9.5,,,,995.4,986.7,,20.0,,,6.0,260.0,,,SW,0.3,T,66,6.0
-1991-09-09,1.4,-9.5,,,,1003.9,995.5,,22.0,,,6.0,150.0,,,SE,1.7,1,66,7.0
-1991-09-10,3.2,-2.5,,,,1003.1,979.1,,72.0,,,36.0,40.0,,,N,11.2,5,65,10.0
-1991-09-11,4.3,-0.4,,,,979.2,952.0,,63.0,,,29.0,40.0,,,NE,3.4,T,64,10.0
-1991-09-12,0.5,-13.3,,,,984.3,952.1,,38.0,,,19.0,180.0,,,SW,1.5,1,62,9.0
-1991-09-13,0.2,-5.2,,,,984.8,972.9,,37.0,,,11.0,360.0,,,NW,2.4,3,69,10.0
-1991-09-14,0.3,-4.1,,,,972.9,958.5,,51.0,,,32.0,20.0,,,NW,1.5,1,66,9.0
-1991-09-15,-3.3,-13.0,,,,979.9,959.7,,39.0,,,14.0,230.0,,,SW,0.6,1,66,10.0
-1991-09-16,-6.5,-16.7,,,,1002.7,979.9,,19.0,,,10.0,240.0,,,SW,0.0,0,64,6.0
-1991-09-17,-6.0,-16.3,,,,1009.9,997.8,,12.0,,,4.0,340.0,,,NW,0.0,0,64,7.0
-1991-09-18,-2.5,-8.0,,,,1015.5,1009.9,,9.0,,,4.0,360.0,,,NW,0.0,0,64,10.0
-1991-09-19,0.0,-13.5,,,,1018.0,1015.1,,19.0,,,5.0,40.0,,,SE,0.0,0,64,2.0
-1991-09-20,-2.5,-6.3,,,,1018.0,1013.1,,12.0,,,2.0,50.0,,,SE,0.0,0,64,10.0
-1991-09-21,-4.5,-9.3,,,,1013.1,1011.9,,11.0,,,2.0,180.0,,,SW,0.0,0,64,9.0
-1991-09-22,-4.5,-12.6,,,,1012.0,1007.3,,9.0,,,4.0,250.0,,,SE,0.5,3,66,10.0
-1991-09-23,-10.5,-16.9,,,,1007.9,1006.9,,9.0,,,2.0,160.0,,,SE,0.3,1,66,6.0
-1991-09-24,2.8,-17.5,,,,1007.4,995.9,,26.0,,,11.0,150.0,,,E,0.1,T,65,10.0
-1991-09-25,2.5,-0.7,,,,999.2,992.6,,31.0,,,11.0,30.0,,,SE,2.8,5,69,10.0
-1991-09-26,3.0,-1.5,,,,1012.7,999.2,,20.0,,,8.0,40.0,,,SE,2.8,3,68,10.0
-1991-09-27,0.1,-3.7,,,,1024.9,1012.8,,11.0,,,2.0,240.0,,,SW,0.7,T,67,10.0
-1991-09-28,-1.1,-9.5,,,,1025.4,1014.2,,13.0,,,8.0,130.0,,,NE,0.0,0,67,9.0
-1991-09-29,1.5,-5.5,,,,1014.3,1003.9,,23.0,,,9.0,40.0,,,NE,0.0,0,67,9.0
-1991-09-30,0.5,-4.5,,,,1014.9,1004.7,,13.0,,,7.0,30.0,,,NE,0.0,0,67,10.0
-1991-10-01,-4.0,-9.4,,,,1015.4,1004.3,,10.0,,,6.0,270.0,,,NW,T,T,67,10.0
-1991-10-02,-3.7,-9.0,,,,1004.5,980.0,,32.0,,,14.0,10.0,,,SW,0.7,1,68,10.0
-1991-10-03,-4.0,-13.2,,,,991.9,976.9,,40.0,,,21.0,260.0,,,SW,0.7,3,68,10.0
-1991-10-04,-6.0,-13.0,,,,997.9,991.9,,12.0,,,8.0,180.0,,,NE,0.7,T,67,8.0
-1991-10-05,2.8,-12.5,,,,999.8,997.7,,12.0,,,3.0,170.0,,,NE,0.4,1,68,9.0
-1991-10-06,3.6,-2.8,,,,997.6,978.2,,47.0,,,16.0,40.0,,,N,1.7,2,67,10.0
-1991-10-07,4.5,-10.2,,,,989.4,974.2,,33.0,,,12.0,360.0,,,SW,2.2,7,75,10.0
-1991-10-08,1.0,-12.3,,,,989.5,984.2,,33.0,,,10.0,50.0,,,NE,0.0,0,66,8.0
-1991-10-09,-1.5,-6.0,,,,984.2,978.9,,38.0,,,15.0,140.0,,,E,0.0,0,65,9.0
-1991-10-10,1.4,-8.1,,,,989.2,980.9,,28.0,,,9.0,80.0,,,NE,0.0,0,65,3.0
-1991-10-11,-7.2,-11.5,,,,998.1,989.2,,12.0,,,8.0,270.0,,,SW,0.1,1,66,10.0
-1991-10-12,-8.5,-12.2,,,,1003.5,998.1,,14.0,,,7.0,240.0,,,SW,T,T,66,10.0
-1991-10-13,-6.7,-11.3,,,,1004.8,1003.2,,17.0,,,8.0,240.0,,,SW,T,T,65,10.0
-1991-10-14,1.1,-9.0,,,,1004.9,992.7,,23.0,,,7.0,360.0,,,SW,T,T,64,10.0
-1991-10-15,0.0,-8.6,,,,992.6,969.9,,43.0,,,22.0,40.0,,,NW,0.6,4,68,10.0
-1991-10-16,-4.4,-10.6,,,,972.6,971.1,,25.0,,,12.0,290.0,,,SW,0.4,2,68,10.0
-1991-10-17,-3.4,-10.7,,,,976.7,966.7,,28.0,,,10.0,180.0,,,SW,0.2,T,67,7.0
-1991-10-18,-1.9,-13.8,,,,988.9,976.5,,16.0,,,8.0,190.0,,,SW,T,T,67,5.0
-1991-10-19,-1.1,-9.7,,,,988.4,982.6,,19.0,,,11.0,320.0,,,NW,2.2,6,67,10.0
-1991-10-20,3.0,-4.1,,,,985.5,980.0,,15.0,,,8.0,270.0,,,NW,1.1,1,74,10.0
-1991-10-21,-1.4,-5.4,,,,979.9,951.0,,44.0,,,20.0,50.0,,,NE,2.6,6,71,10.0
-1991-10-22,0.2,-7.3,,,,969.3,949.8,,53.0,,,24.0,40.0,,,SW,0.2,T,68,10.0
-1991-10-23,-3.5,-11.1,,,,974.8,963.8,,30.0,,,15.0,250.0,,,SE,2.1,1,67,10.0
-1991-10-24,-1.7,-5.1,,,,966.9,962.9,,20.0,,,6.0,290.0,,,SW,10.9,16,82,10.0
-1991-10-25,-4.5,-9.7,,,,976.8,966.9,,20.0,,,10.0,250.0,,,SW,2.4,11,90,10.0
-1991-10-26,-6.4,-10.2,,,,989.7,975.7,,21.0,,,12.0,240.0,,,SW,0.0,0,84,9.0
-1991-10-27,-1.0,-9.8,,,,1002.9,989.6,,21.0,,,9.0,240.0,,,SW,0.8,1,79,10.0
-1991-10-28,2.6,-4.1,,,,999.5,978.9,,59.0,,,31.0,40.0,,,N,2.9,T,67,10.0
-1991-10-29,2.0,-5.8,,,,1003.5,993.8,,46.0,,,22.0,250.0,,,SW,0.4,T,64,8.0
-1991-10-30,1.0,-8.8,,,,1003.5,978.5,,23.0,,,9.0,150.0,,,SE,6.6,3,65,10.0
-1991-10-31,1.2,-2.1,,,,991.3,977.7,,40.0,,,10.0,350.0,,,NW,7.0,7,76,10.0
-1991-11-01,2.5,-2.9,,-1.8,42291,991.9,973.8,,49.0,,,21.0,40.0,,,NW,2.2,3,79,10.0
-1991-11-02,4.4,-3.3,,-1.8,32291,988.9,968.2,,51.0,,,33.0,30.0,,,N,0.4,1,80,10.0
-1991-11-03,2.6,-0.1,,-1.8,32291,968.3,960.5,,54.0,,,36.0,40.0,,,NW,3.5,0,74,10.0
-1991-11-04,1.8,-3.2,,-1.0,32/91,966.9,955.9,,53.0,,,28.0,40.0,,,NW,1.2,T,76,10.0
-1991-11-05,2.2,-5.0,,-1.5,32391,987.0,961.7,,41.0,,,12.0,360.0,,,NW,1.7,5,85,8.0
-1991-11-06,1.7,-5.0,,-1.8,32/62,992.5,987.0,,42.0,,,21.0,30.0,,,N,12.8,4,88,10.0
-1991-11-07,6.2,0.4,,-0.7,32361,991.5,979.7,,51.0,,,27.0,30.0,,,N,1.4,1,98,10.0
-1991-11-08,2.5,0.2,,-1.2,32//1,986.9,980.5,,48.0,,,28.0,360.0,,,N,24.3,T,90,10.0
-1991-11-09,1.6,-0.6,,-1.5,32361,989.9,976.9,,52.0,,,21.0,360.0,,,N,1.4,T,90,10.0
-1991-11-10,1.7,-2.3,,-1.5,32361,994.9,982.5,,62.0,,,23.0,10.0,,,N,19.0,1,90,10.0
-1991-11-11,2.8,-0.8,,-1.0,22261,987.9,983.4,,50.0,,,24.0,350.0,,,NW,0.9,T,91,8.0
-1991-11-12,6.8,-1.5,,-1.0,22361,995.1,983.7,,43.0,,,16.0,100.0,,,NW,0.7,1,91,6.0
-1991-11-13,1.6,-2.4,,-1.5,23/72,983.5,961.3,,50.0,,,30.0,10.0,,,NW,5.5,3,97,10.0
-1991-11-14,-0.7,-3.2,,-1.7,33273,992.6,978.0,,28.0,,,12.0,10.0,,,NW,3.3,2,100,10.0
-1991-11-15,5.4,-4.1,,-1.2,42363,996.3,990.5,,29.0,,,12.0,70.0,,,E,T,T,98,8.0
-1991-11-16,3.2,-1.3,,-1.0,22861,990.7,984.2,,39.0,,,18.0,80.0,,,NE,2.7,1,98,10.0
-1991-11-17,3.0,-2.0,,-1.0,62863,998.5,987.9,,10.0,,,4.0,60.0,,,SW,0.2,0,95,10.0
-1991-11-18,6.5,-2.1,,0.7,94873,1002.8,998.4,,16.0,,,2.0,360.0,,,N,0.0,0,93,9.0
-1991-11-19,-0.1,-4.1,,-1.0,99873,1002.9,999.0,,13.0,,,3.0,230.0,,,SW,0.0,0,93,10.0
-1991-11-20,-0.4,-6.3,,-1.2,99873,999.0,978.3,,17.0,,,6.0,220.0,,,SW,0.0,0,92,10.0
-1991-11-21,3.5,-5.0,,-1.0,99882,978.8,972.2,,12.0,,,3.0,180.0,,,W,0.7,1,92,6.0
-1991-11-22,-0.1,-5.0,,-1.1,99/82,982.5,978.7,,12.0,,,4.0,240.0,,,SW,0.5,T,92,10.0
-1991-11-23,1.0,-5.1,,-1.0,99772,990.4,982.5,,12.0,,,4.0,130.0,,,SE,T,T,92,10.0
-1991-11-24,2.5,-7.0,,-1.0,99882,995.5,990.7,,12.0,,,5.0,270.0,,,SW,0.0,0,91,7.0
-1991-11-25,-1.4,-4.6,,-1.0,99882,994.7,988.2,,12.0,,,4.0,250.0,,,SW,0.0,0,91,9.0
-1991-11-26,1.3,-7.4,,-1.0,99872,988.2,985.4,,12.0,,,6.0,40.0,,,SE,0.0,0,91,10.0
-1991-11-27,0.7,-4.8,,-1.0,99872,987.0,984.9,,7.0,,,3.0,220.0,,,W,0.0,0,92,10.0
-1991-11-28,-1.2,-4.5,,-1.0,99872,986.9,981.0,,27.0,,,9.0,20.0,,,NW,1.1,1,90,10.0
-1991-11-29,4.5,-2.5,,-1.0,99871,990.8,982.0,,20.0,,,8.0,360.0,,,NE,0.5,1,90,10.0
-1991-11-30,3.4,-1.5,,-1.0,99771,995.1,990.8,,19.0,,,4.0,20.0,,,NE,1.9,2,91,10.0
-1991-12-01,2.4,-3.8,,-1.0,99872,997.7,994.2,,18.0,,,3.0,180.0,,,NW,0.0,0,93,9.0
-1991-12-02,3.1,-1.6,,-1.0,99872,997.2,984.3,,40.0,,,15.0,120.0,,,NE,0.1,0,89,10.0
-1991-12-03,4.4,-1.1,,-1.0,99871,1000.3,988.9,,22.0,,,2.0,20.0,,,SW,0.0,0,89,10.0
-1991-12-04,5.7,-3.6,,-0.2,59873,1002.3,1000.2,,8.0,,,1.0,290.0,,,NW,0.0,0,87,6.0
-1991-12-05,7.2,-1.0,,-1.0,79871,1000.5,997.5,,13.0,,,2.0,260.0,,,NW,0.0,0,83,10.0
-1991-12-06,8.1,-1.0,,-1.0,79872,1001.2,998.9,,15.0,,,2.0,180.0,,,S,0.0,0,82,8.0
-1991-12-07,5.5,-1.8,,-0.8,79871,1005.2,999.2,,8.0,,,2.0,290.0,,,W,0.0,0,80,0.0
-1991-12-08,5.0,-2.1,,-1.5,49843,1006.2,1005.2,,9.0,,,2.0,230.0,,,SW,0.0,0,79,10.0
-1991-12-09,1.2,-1.8,,-0.6,49891,1006.1,1003.8,,7.0,,,1.0,290.0,,,SW,0.0,0,78,10.0
-1991-12-10,4.0,-1.7,,-0.3,49892,1004.0,997.0,,17.0,,,4.0,110.0,,,SE,0.1,T,78,10.0
-1991-12-11,4.3,-0.4,,-0.1,49891,997.0,989.5,,16.0,,,6.0,100.0,,,SE,0.7,T,78,10.0
-1991-12-12,5.6,-0.3,,-0.2,29790,989.8,974.0,,44.0,,,14.0,60.0,,,NE,0.3,T,74,10.0
-1991-12-13,4.0,0.1,,-0.2,29290,984.1,970.8,,64.0,,,28.0,20.0,,,NE,0.0,0,66,8.0
-1991-12-14,5.2,0.6,,-0.2,29790,989.2,983.8,,42.0,,,22.0,20.0,,,E,0.0,0,60,10.0
-1991-12-15,4.0,0.0,,-0.3,29790,996.0,989.5,,24.0,,,5.0,60.0,,,NW,T,T,55,10.0
-1991-12-16,5.9,0.7,,0.0,29790,1001.3,995.4,,12.0,,,5.0,320.0,,,NW,0.0,0,49,9.0
-1991-12-17,5.6,0.1,,0.2,29790,1001.2,994.9,,16.0,,,4.0,100.0,,,SE,0.0,0,44,10.0
-1991-12-18,8.0,-1.1,,1.2,29890,998.0,994.9,,19.0,,,3.0,70.0,,,NE,0.0,0,39,5.0
-1991-12-19,0.4,-2.5,,1.1,29890,1000.2,998.7,,12.0,,,5.0,300.0,,,W,0.0,0,34,10.0
-1991-12-20,0.5,-0.8,,1.0,29890,1001.2,1000.2,,11.0,,,8.0,180.0,,,SW,0.0,0,34,10.0
-1991-12-21,0.5,-1.6,,1.0,29890,1000.9,998.5,,16.0,,,7.0,210.0,,,SW,0.0,0,33,10.0
-1991-12-22,2.7,-1.2,,1.0,29790,999.4,998.7,,6.0,,,2.0,280.0,,,SW,0.4,T,32,10.0
-1991-12-23,3.6,-0.9,,1.3,29790,999.0,995.3,,18.0,,,1.0,50.0,,,E,0.0,0,30,10.0
-1991-12-24,4.4,-0.9,,0.0,29890,996.0,994.6,,21.0,,,10.0,60.0,,,NE,0.0,0,28,10.0
-1991-12-25,4.5,-1.3,,0.4,29890,995.9,994.4,,14.0,,,3.0,70.0,,,W,0.2,T,26,9.0
-1991-12-26,5.1,0.4,,1.0,29890,995.2,993.4,,14.0,,,4.0,10.0,,,W,0.0,0,15,10.0
-1991-12-27,4.5,-1.4,,1.1,29890,1002.4,995.2,,13.0,,,8.0,340.0,,,NW,0.0,0,0,8.0
-1991-12-28,4.0,-0.6,,1.6,29890,1006.6,1003.7,,8.0,,,3.0,180.0,,,S,0.0,0,0,5.0
-1991-12-29,2.4,-1.5,,2.0,29890,1009.3,1006.6,,9.0,,,3.0,230.0,,,SW,0.0,0,0,9.0
-1991-12-30,1.8,-2.0,,1.6,29890,1009.3,1005.9,,12.0,,,5.0,150.0,,,S,0.0,0,0,10.0
-1991-12-31,0.8,-1.1,,0.5,29890,1008.0,1006.2,,13.0,,,6.0,220.0,,,SW,T,T,0,10.0
-1992-01-01,2.5,-1.5,,2.0,29890,1008.0,998.0,,10.0,,,3.0,220.0,,,SW,0.0,0,0,10.0
-1992-01-02,7.6,-0.6,,1.6,29890,998.0,980.1,,24.0,,,5.0,110.0,,,E,5.4,2,0,10.0
-1992-01-03,5.8,1.7,,0.5,29890,990.6,983.1,,36.0,,,8.0,20.0,,,SE,0.5,0,0,10.0
-1992-01-04,7.4,2.7,,0.8,29890,996.6,991.1,,39.0,,,12.0,10.0,,,N,T,0,0,10.0
-1992-01-05,4.5,1.7,,0.9,29890,991.8,982.8,,6.0,,,2.0,330.0,,,NW,3.1,0,0,10.0
-1992-01-06,4.0,1.4,,1.8,29890,982.8,978.7,,23.0,,,5.0,10.0,,,NW,4.1,T,0,10.0
-1992-01-07,5.5,1.3,,1.0,29890,981.0,978.9,,24.0,,,7.0,10.0,,,E,6.2,T,0,10.0
-1992-01-08,3.5,0.8,,1.2,29890,990.4,980.3,,14.0,,,5.0,330.0,,,NW,0.3,T,0,10.0
-1992-01-09,7.5,1.2,,0.9,29890,990.0,977.0,,38.0,,,11.0,10.0,,,E,0.0,0,0,10.0
-1992-01-10,6.5,1.2,,1.0,79890,979.8,976.7,,16.0,,,3.0,110.0,,,N,0.0,0,0,10.0
-1992-01-11,4.0,0.1,,1.4,29890,990.2,979.8,,14.0,,,7.0,290.0,,,W,T,T,0,10.0
-1992-01-12,3.9,0.1,,1.1,29890,992.0,990.2,,10.0,,,3.0,220.0,,,NW,1.2,1,0,10.0
-1992-01-13,0.6,-1.6,,0.1,29890,1002.0,992.8,,17.0,,,7.0,220.0,,,SW,0.2,T,0,10.0
-1992-01-14,2.4,-0.6,,0.8,29890,1003.0,994.0,,14.0,,,7.0,120.0,,,SE,3.8,T,0,9.0
-1992-01-15,3.4,0.3,,1.0,29890,997.5,995.0,,20.0,,,8.0,230.0,,,SW,0.0,0,0,10.0
-1992-01-16,5.6,-0.7,,1.2,29890,995.3,986.0,,8.0,,,3.0,300.0,,,SE,1.3,T,0,10.0
-1992-01-17,3.9,0.3,,1.0,29890,986.4,980.0,,16.0,,,2.0,120.0,,,S,22.5,5,0,10.0
-1992-01-18,6.5,0.6,,1.2,29890,990.6,980.2,,17.0,,,5.0,100.0,,,N,T,0,0,9.0
-1992-01-19,3.0,0.9,,1.0,29890,996.2,991.1,,18.0,,,3.0,360.0,,,S,0.7,T,0,10.0
-1992-01-20,3.0,-0.6,,0.7,29890,997.0,986.3,,26.0,,,3.0,60.0,,,E,3.1,10,0,10.0
-1992-01-21,3.5,0.4,,0.1,29890,986.8,981.2,,36.0,,,17.0,100.0,,,E,1.8,2,0,10.0
-1992-01-22,5.9,-0.4,,0.1,29890,993.0,986.0,,51.0,,,17.0,10.0,,,N,7.4,7,0,10.0
-1992-01-23,7.1,2.5,,0.2,29890,991.9,978.0,,62.0,,,23.0,360.0,,,N,14.4,0,0,10.0
-1992-01-24,4.4,1.2,,0.0,29890,993.3,986.2,,41.0,,,23.0,10.0,,,N,5.5,0,0,10.0
-1992-01-25,4.0,2.4,,0.2,29890,990.0,988.5,,28.0,,,18.0,350.0,,,N,16.0,0,0,10.0
-1992-01-26,4.7,1.1,,,/////,989.1,982.2,,20.0,,,7.0,350.0,,,SE,2.9,0,0,10.0
-1992-01-27,3.8,0.4,,0.1,29890,986.2,982.3,,6.0,,,2.0,110.0,,,SW,3.2,0,0,10.0
-1992-01-28,3.6,-0.4,,0.8,29790,994.8,986.3,,20.0,,,6.0,230.0,,,W,5.8,2,0,10.0
-1992-01-29,4.7,-1.1,,0.5,29890,994.8,987.2,,43.0,,,12.0,340.0,,,N,5.5,0,0,10.0
-1992-01-30,5.3,1.0,,0.7,29890,991.3,982.1,,36.0,,,12.0,10.0,,,SE,0.6,0,0,10.0
-1992-01-31,5.3,0.9,,0.1,29890,986.9,984.8,,33.0,,,7.0,20.0,,,N,0.9,0,0,10.0
-1992-02-01,5.3,1.5,,0.6,29890,987.9,981.0,,39.0,,,17.0,360.0,,,N,0.2,0,0,10.0
-1992-02-02,5.6,0.8,,0.8,29890,984.7,967.2,,40.0,,,12.0,90.0,,,E,2.4,T,0,10.0
-1992-02-03,4.5,0.0,,1.0,29890,992.1,967.5,,23.0,,,10.0,270.0,,,W,4.2,T,0,9.0
-1992-02-04,5.2,2.0,,1.0,29890,992.8,983.2,,52.0,,,21.0,20.0,,,N,11.0,0,0,10.0
-1992-02-05,6.1,0.4,,1.0,29890,989.9,980.4,,43.0,,,15.0,30.0,,,N,4.2,1,0,9.0
-1992-02-06,5.4,1.8,,0.8,29890,980.8,966.9,,41.0,,,20.0,80.0,,,NE,5.1,0,0,9.0
-1992-02-07,4.3,0.3,,1.1,29890,976.1,967.2,,28.0,,,9.0,120.0,,,E,0.5,0,0,8.0
-1992-02-08,1.4,-0.9,,1.0,29890,992.0,977.0,,16.0,,,9.0,330.0,,,NW,1.9,4,0,10.0
-1992-02-09,3.0,-0.4,,0.4,29890,993.1,989.2,,11.0,,,6.0,240.0,,,S,0.0,0,0,9.0
-1992-02-10,0.9,-1.4,,0.8,29890,989.2,982.1,,17.0,,,8.0,200.0,,,S,0.0,0,0,10.0
-1992-02-11,0.1,-1.2,,0.6,29890,985.0,982.6,,21.0,,,8.0,220.0,,,SW,T,T,0,10.0
-1992-02-12,2.1,-2.2,,0.6,29890,986.1,969.2,,32.0,,,11.0,70.0,,,E,0.2,T,0,8.0
-1992-02-13,2.0,-1.9,,0.6,29890,973.8,965.6,,37.0,,,16.0,90.0,,,E,0.0,0,0,10.0
-1992-02-14,1.6,-0.5,,0.5,29890,986.2,973.4,,12.0,,,4.0,110.0,,,W,0.0,0,0,9.0
-1992-02-15,4.8,-1.4,,1.0,29890,996.6,985.2,,20.0,,,6.0,130.0,,,E,0.0,0,0,8.0
-1992-02-16,6.4,-2.1,,1.0,29890,1005.4,995.5,,24.0,,,10.0,90.0,,,E,0.0,0,0,3.0
-1992-02-17,2.6,-1.2,,0.4,29890,1007.2,1003.4,,21.0,,,9.0,210.0,,,S,0.0,0,0,7.0
-1992-02-18,1.5,-1.0,,0.2,29890,1003.4,985.7,,29.0,,,11.0,360.0,,,N,2.1,0,0,10.0
-1992-02-19,1.7,0.2,,0.2,29890,986.9,978.9,,17.0,,,3.0,120.0,,,SE,6.7,3,0,10.0
-1992-02-20,2.4,-1.0,,0.0,29890,983.9,976.9,,26.0,,,6.0,360.0,,,W,6.8,T,0,10.0
-1992-02-21,3.2,-1.3,,0.2,29890,985.5,981.3,,18.0,,,4.0,230.0,,,N,0.4,T,0,8.0
-1992-02-22,3.4,-0.6,,0.6,29890,981.3,966.8,,38.0,,,11.0,120.0,,,E,36.3,13,0,10.0
-1992-02-23,1.3,-1.1,,0.7,29890,987.8,971.5,,21.0,,,9.0,200.0,,,S,2.4,T,0,4.0
-1992-02-24,3.7,-2.7,,0.5,29890,990.5,982.1,,15.0,,,4.0,200.0,,,NE,0.0,0,0,4.0
-1992-02-25,5.1,-0.5,,0.8,29890,982.1,975.9,,38.0,,,10.0,60.0,,,E,1.4,2,0,10.0
-1992-02-26,2.4,-0.2,,0.5,29890,999.9,982.5,,17.0,,,4.0,120.0,,,NW,T,T,0,8.0
-1992-02-27,3.2,-1.6,,0.2,29790,1001.1,998.2,,16.0,,,6.0,20.0,,,NW,0.0,0,0,6.0
-1992-02-28,5.4,-2.7,,0.8,29790,998.8,993.9,,27.0,,,4.0,20.0,,,NE,0.0,0,0,1.0
-1992-02-29,0.9,-2.2,,0.8,29790,995.1,991.9,,31.0,,,7.0,50.0,,,E,3.6,7,5,10.0
-1992-03-01,4.2,-0.4,,0.8,29790,998.2,996.2,,27.0,,,6.0,90.0,,,E,0.3,0,0,10.0
-1992-03-02,6.0,1.3,,1.0,29790,1004.6,996.8,,36.0,,,20.0,10.0,,,N,0.3,0,0,10.0
-1992-03-03,8.0,2.3,,1.1,29790,1002.9,989.5,,58.0,,,30.0,20.0,,,N,5.7,0,0,10.0
-1992-03-04,8.4,3.5,,1.1,29790,991.9,983.6,,50.0,,,20.0,10.0,,,NE,3.8,0,0,10.0
-1992-03-05,8.5,2.7,,0.9,29790,989.6,983.4,,39.0,,,17.0,10.0,,,N,0.2,0,0,8.0
-1992-03-06,3.5,1.3,,1.0,29790,998.7,988.9,,37.0,,,23.0,20.0,,,N,0.1,T,0,10.0
-1992-03-07,3.1,0.6,,1.0,29790,998.6,991.2,,30.0,,,10.0,10.0,,,N,1.2,0,0,10.0
-1992-03-08,1.2,-0.7,,1.0,29790,992.6,990.1,,16.0,,,9.0,220.0,,,W,T,T,0,10.0
-1992-03-09,0.9,-0.6,,0.8,29790,1000.8,992.9,,20.0,,,12.0,240.0,,,SW,1.1,1,0,7.0
-1992-03-10,1.6,-1.6,,0.5,29790,1001.2,996.1,,14.0,,,5.0,210.0,,,S,T,T,0,6.0
-1992-03-11,1.5,-1.4,,1.0,29790,998.7,995.2,,17.0,,,7.0,200.0,,,S,0.1,T,0,10.0
-1992-03-12,0.3,-0.4,,0.5,29790,1001.3,998.5,,24.0,,,12.0,240.0,,,W,3.1,6,5,10.0
-1992-03-13,0.5,-0.6,,0.4,29/90,1002.1,989.1,,24.0,,,12.0,240.0,,,NW,4.2,4,8,10.0
-1992-03-14,0.3,-0.8,,0.2,29790,989.3,982.0,,23.0,,,14.0,340.0,,,SW,10.5,6,28,10.0
-1992-03-15,0.0,-1.7,,,29790,985.2,965.8,,26.0,,,11.0,230.0,,,SW,5.3,2,36,10.0
-1992-03-16,-1.0,-3.2,,-1.0,29790,965.6,963.3,,21.0,,,7.0,10.0,,,N,1.6,3,38,10.0
-1992-03-17,-1.5,-3.7,,0.0,29790,972.5,962.8,,39.0,,,13.0,10.0,,,N,4.8,9,36,10.0
-1992-03-18,-2.5,-5.2,,0.7,29790,988.7,973.1,,20.0,,,11.0,10.0,,,N,0.4,1,33,7.0
-1992-03-19,-2.8,-5.9,,0.5,29790,993.6,988.7,,28.0,,,14.0,50.0,,,NE,0.0,0,31,8.0
-1992-03-20,0.5,-7.9,,0.0,29790,1003.2,993.6,,20.0,,,6.0,50.0,,,NE,0.0,0,31,7.0
-1992-03-21,-2.4,-5.0,,-0.4,29790,1006.4,1000.5,,22.0,,,11.0,220.0,,,SW,T,T,31,10.0
-1992-03-22,0.5,-4.3,,-0.3,29/90,1000.5,980.7,,16.0,,,5.0,110.0,,,NW,5.0,3,32,10.0
-1992-03-23,-0.5,-1.8,,0.0,29790,983.2,979.0,,18.0,,,6.0,210.0,,,SW,3.2,3,37,10.0
-1992-03-24,0.5,-3.0,,-0.6,29790,985.0,971.2,,39.0,,,13.0,10.0,,,N,T,T,36,10.0
-1992-03-25,1.0,-2.9,,-0.2,29690,979.9,971.3,,26.0,,,8.0,10.0,,,N,0.9,1,37,10.0
-1992-03-26,-2.2,-3.9,,-0.2,29690,987.2,978.7,,34.0,,,15.0,350.0,,,N,1.7,4,37,10.0
-1992-03-27,-2.4,-4.7,,-0.6,29690,994.6,987.2,,28.0,,,14.0,240.0,,,SW,1.8,4,35,10.0
-1992-03-28,0.5,-5.2,,-0.5,29690,994.3,989.2,,26.0,,,8.0,350.0,,,N,3.5,3,40,10.0
-1992-03-29,0.5,-3.1,,-0.5,29690,992.7,985.4,,17.0,,,4.0,110.0,,,SE,2.4,4,40,10.0
-1992-03-30,0.5,-2.5,,-0.2,29690,992.3,985.0,,9.0,,,3.0,120.0,,,E,7.3,7,41,10.0
-1992-03-31,2.0,-0.8,,-0.2,29690,992.8,986.2,,19.0,,,6.0,110.0,,,E,11.1,9,46,9.0
-1992-04-01,4.7,-2.0,,-0.5,29690,990.2,985.7,,38.0,,,7.0,60.0,,,E,0.6,T,43,10.0
-1992-04-02,2.1,-1.3,,-0.2,29690,988.0,985.5,,35.0,,,12.0,90.0,,,NW,46.0,27,65,10.0
-1992-04-03,2.2,-2.9,,-0.2,29690,985.5,978.0,,40.0,,,20.0,110.0,,,N,4.0,2,63,10.0
-1992-04-04,4.0,-0.9,,-0.8,29690,987.0,982.7,,32.0,,,8.0,10.0,,,N,0.4,T,61,10.0
-1992-04-05,4.5,-0.5,,0.2,29690,992.6,984.1,,56.0,,,28.0,10.0,,,N,9.0,0,36,8.0
-1992-04-06,2.1,-1.6,,0.2,29690,992.7,981.7,,18.0,,,2.0,90.0,,,E,0.1,0,36,6.0
-1992-04-07,4.0,-2.9,,0.3,29690,983.5,966.8,,68.0,,,19.0,20.0,,,N,11.3,0,29,9.0
-1992-04-08,1.5,-1.7,,0.0,29690,995.0,981.3,,31.0,,,14.0,330.0,,,N,0.4,T,28,10.0
-1992-04-09,1.1,-1.2,,0.0,29690,994.4,990.6,,21.0,,,7.0,10.0,,,S,T,T,28,7.0
-1992-04-10,-1.0,-3.8,,-0.6,29690,999.3,992.2,,14.0,,,5.0,210.0,,,NE,0.0,0,28,9.0
-1992-04-11,-1.4,-4.9,,0.0,29690,1001.1,997.8,,22.0,,,5.0,10.0,,,N,0.0,0,28,8.0
-1992-04-12,0.8,-7.5,,-0.3,29690,1001.1,991.3,,39.0,,,13.0,50.0,,,NE,0.0,0,28,6.0
-1992-04-13,5.7,-0.1,,-0.2,29790,992.9,991.0,,39.0,,,19.0,60.0,,,NE,1.8,T,28,9.0
-1992-04-14,1.3,-0.5,,0.1,29690,996.7,991.1,,32.0,,,15.0,360.0,,,N,4.1,3,32,10.0
-1992-04-15,0.6,-1.8,,-0.2,29690,999.9,990.7,,16.0,,,7.0,230.0,,,SW,0.0,0,31,10.0
-1992-04-16,-1.7,-3.7,,-0.2,29690,1004.3,999.0,,18.0,,,9.0,180.0,,,S,0.0,0,31,10.0
-1992-04-17,-3.3,-5.1,,0.0,29690,1018.2,1004.1,,16.0,,,5.0,50.0,,,SE,0.0,0,31,10.0
-1992-04-18,-1.6,-4.6,,-0.6,29690,1025.3,1018.2,,20.0,,,5.0,200.0,,,S,0.0,0,30,10.0
-1992-04-19,-1.4,-3.4,,-0.2,29690,1025.0,1022.9,,16.0,,,3.0,190.0,,,S,0.0,0,29,10.0
-1992-04-20,-3.1,-4.8,,-0.2,29690,1022.9,1010.8,,12.0,,,3.0,220.0,,,SW,T,T,29,10.0
-1992-04-21,-1.4,-7.3,,-0.2,29690,1010.8,1004.6,,12.0,,,3.0,120.0,,,E,0.0,0,29,9.0
-1992-04-22,2.3,-2.2,,-0.1,29790,1004.6,1000.1,,27.0,,,7.0,20.0,,,E,0.1,T,28,10.0
-1992-04-23,0.5,-0.7,,-0.3,29690,1000.1,988.5,,11.0,,,1.0,290.0,,,NW,10.1,15,39,10.0
-1992-04-24,0.2,-2.0,,-1.2,30893,988.5,981.0,,24.0,,,5.0,210.0,,,NW,8.8,7,43,10.0
-1992-04-25,1.0,-3.4,,-1.0,20693,986.8,980.0,,46.0,,,17.0,10.0,,,SW,0.6,1,44,8.0
-1992-04-26,2.9,0.8,,-0.2,29690,980.7,967.1,,60.0,,,21.0,10.0,,,N,25.1,0,39,10.0
-1992-04-27,5.2,-0.1,,-0.1,29790,967.1,961.0,,26.0,,,5.0,110.0,,,E,4.6,2,31,10.0
-1992-04-28,1.3,-1.6,,-0.4,29790,978.8,966.0,,16.0,,,5.0,200.0,,,S,3.4,2,36,10.0
-1992-04-29,-1.4,-3.4,,-0.6,29690,985.0,978.8,,12.0,,,3.0,340.0,,,SW,2.2,3,38,10.0
-1992-04-30,-2.8,-5.7,,-0.1,20690,992.7,984.9,,24.0,,,9.0,50.0,,,NE,0.4,1,38,9.0
-1992-05-01,-2.5,-5.7,,-0.2,29690,1003.2,992.7,,16.0,,,4.0,70.0,,,NE,T,T,38,9.0
-1992-05-02,-2.3,-4.6,,-0.1,29790,1006.9,1003.2,,22.0,,,3.0,230.0,,,N,5.2,7,46,10.0
-1992-05-03,-3.2,-7.4,,-0.8,29790,1014.6,1006.9,,20.0,,,7.0,220.0,,,N,0.2,T,45,7.0
-1992-05-04,-3.5,-6.2,,-0.5,29790,1014.6,1004.6,,14.0,,,5.0,200.0,,,S,2.0,3,46,8.0
-1992-05-05,-3.6,-7.7,,-0.9,29790,1009.3,1006.4,,24.0,,,7.0,20.0,,,NE,T,T,45,8.0
-1992-05-06,-3.3,-7.0,,-1.1,29790,1007.3,1001.1,,12.0,,,3.0,20.0,,,NE,T,T,43,6.0
-1992-05-07,-1.3,-6.5,,-1.4,29790,1002.1,998.8,,19.0,,,7.0,200.0,,,NW,3.8,6,48,8.0
-1992-05-08,-3.5,-6.2,,-1.2,29690,1008.3,1000.7,,16.0,,,5.0,230.0,,,SW,2.1,T,48,8.0
-1992-05-09,-0.2,-5.8,,-1.3,21690,1008.7,1004.0,,18.0,,,9.0,320.0,,,NW,3.4,3,51,10.0
-1992-05-10,0.2,-0.7,,-1.6,21690,1015.1,1005.5,,14.0,,,9.0,320.0,,,NW,10.4,6,57,10.0
-1992-05-11,-0.5,-1.3,,-1.6,21690,1017.2,1015.2,,8.0,,,4.0,330.0,,,NW,1.6,T,56,10.0
-1992-05-12,-1.5,-6.5,,-1.5,21690,1015.1,1006.5,,9.0,,,3.0,340.0,,,NE,0.6,0,55,7.0
-1992-05-13,0.0,-7.2,,-1.5,20690,1006.5,990.9,,12.0,,,4.0,340.0,,,SE,1.6,1,56,10.0
-1992-05-14,3.5,-4.7,,-0.7,29690,998.5,989.9,,42.0,,,12.0,360.0,,,N,1.3,0,55,8.0
-1992-05-15,-2.7,-6.8,,-0.5,29690,999.5,995.8,,8.0,,,3.0,70.0,,,NE,0.0,0,53,7.0
-1992-05-16,1.0,-4.8,,-0.8,29690,995.8,986.2,,29.0,,,7.0,130.0,,,SE,0.1,T,53,9.0
-1992-05-17,-1.3,-3.5,,-1.3,23690,997.2,987.0,,10.0,,,5.0,240.0,,,SW,2.4,2,54,10.0
-1992-05-18,-2.3,-6.3,,-0.9,29690,1000.9,992.6,,40.0,,,13.0,40.0,,,NE,1.1,T,54,8.0
-1992-05-19,-3.0,-7.5,,-0.8,29690,993.5,987.5,,40.0,,,7.0,30.0,,,E,1.4,4,57,7.0
-1992-05-20,-5.0,-8.4,,-1.1,29690,990.0,986.1,,18.0,,,9.0,40.0,,,N,T,T,54,6.0
-1992-05-21,-6.2,-10.5,,-1.5,29690,990.4,989.0,,21.0,,,9.0,70.0,,,N,0.0,0,54,3.0
-1992-05-22,-8.8,-11.4,,-1.5,29690,991.5,989.0,,17.0,,,6.0,60.0,,,E,0.0,0,54,0.0
-1992-05-23,-6.9,-10.7,,-1.6,29690,991.5,984.6,,17.0,,,7.0,20.0,,,NE,T,T,53,5.0
-1992-05-24,-7.5,-11.0,,-1.2,29690,984.6,981.5,,20.0,,,9.0,10.0,,,N,T,T,53,10.0
-1992-05-25,-5.3,-9.6,,-1.4,29690,989.2,983.7,,34.0,,,9.0,10.0,,,N,T,T,53,8.0
-1992-05-26,-6.9,-8.8,,-1.2,29690,990.5,989.1,,17.0,,,7.0,200.0,,,NE,0.1,T,53,10.0
-1992-05-27,-8.4,-14.0,,-1.5,29690,994.6,990.5,,18.0,,,7.0,60.0,,,NE,0.0,0,53,4.0
-1992-05-28,-9.5,-13.4,,-1.3,29690,997.9,994.6,,20.0,,,9.0,30.0,,,NE,0.0,0,53,2.0
-1992-05-29,-8.5,-11.5,,-1.5,29690,997.6,994.4,,17.0,,,5.0,20.0,,,E,0.3,1,53,8.0
-1992-05-30,-7.8,-13.1,,-1.5,20890,997.2,994.7,,17.0,,,7.0,10.0,,,E,0.0,0,53,4.0
-1992-05-31,-7.9,-12.3,,-1.5,20890,999.1,997.2,,18.0,,,6.0,10.0,,,NE,0.0,0,53,4.0
-1992-06-01,-5.3,-9.0,,-1.5,20890,1008.1,999.1,,20.0,,,9.0,10.0,,,N,0.0,0,53,4.0
-1992-06-02,-5.3,-7.3,,-1.4,29690,1014.7,1008.1,,16.0,,,7.0,10.0,,,N,T,T,53,7.0
-1992-06-03,-7.0,-9.9,,,/////,1016.0,1014.3,,11.0,,,3.0,180.0,,,SE,T,T,53,10.0
-1992-06-04,-7.7,-9.5,,-1.3,20890,1016.0,1015.1,,8.0,,,4.0,120.0,,,NE,T,T,53,9.0
-1992-06-05,-7.5,-10.5,,-1.5,20893,1015.1,1009.6,,11.0,,,3.0,190.0,,,SW,0.1,T,53,10.0
-1992-06-06,-0.4,-10.3,,-1.5,20893,1009.6,995.0,,54.0,,,11.0,360.0,,,N,0.1,T,53,10.0
-1992-06-07,-0.1,-5.5,,-1.3,29690,1001.8,989.7,,50.0,,,13.0,340.0,,,NW,4.3,5,57,8.0
-1992-06-08,-1.3,-6.1,,-1.6,20690,1011.9,1001.8,,24.0,,,7.0,30.0,,,NE,2.4,2,58,7.0
-1992-06-09,-4.2,-6.8,,-1.3,40793,1017.2,1011.9,,7.0,,,3.0,50.0,,,NE,0.0,0,58,2.0
-1992-06-10,-3.5,-7.1,,-1.5,39791,1017.1,1013.7,,10.0,,,3.0,120.0,,,NE,0.0,0,58,4.0
-1992-06-11,-1.4,-5.0,,-1.8,29690,1013.7,1005.8,,12.0,,,3.0,110.0,,,SE,T,T,58,7.0
-1992-06-12,-2.0,-5.1,,-1.4,20790,1006.1,996.0,,13.0,,,5.0,30.0,,,NE,0.0,0,57,6.0
-1992-06-13,-2.2,-5.1,,-1.6,50793,996.0,994.5,,14.0,,,2.0,20.0,,,NE,0.0,0,57,10.0
-1992-06-14,-2.1,-3.8,,-1.7,50262,1000.0,995.9,,10.0,,,1.0,300.0,,,NE,3.1,8,58,10.0
-1992-06-15,-1.5,-4.8,,-1.6,40291,1003.7,1000.0,,23.0,,,2.0,360.0,,,N,2.0,3,67,10.0
-1992-06-16,-1.5,-9.8,,-1.7,30791,1008.1,1002.4,,20.0,,,7.0,280.0,,,N,0.0,0,64,6.0
-1992-06-17,-5.5,-9.6,,-1.7,30792,1007.4,1002.4,,12.0,,,5.0,360.0,,,NE,0.0,0,64,5.0
-1992-06-18,-3.7,-10.0,,-1.5,50763,1002.4,978.6,,41.0,,,18.0,10.0,,,N,3.7,4,63,10.0
-1992-06-19,-1.8,-18.9,,-1.6,51763,982.4,974.3,,38.0,,,19.0,230.0,,,SW,T,T,60,10.0
-1992-06-20,-9.6,-13.3,,-1.8,92793,990.3,982.1,,26.0,,,10.0,210.0,,,SW,0.0,0,59,7.0
-1992-06-21,-7.5,-11.9,,-1.9,92793,998.4,990.3,,24.0,,,9.0,20.0,,,NE,T,T,59,6.0
-1992-06-22,-6.8,-12.0,,-1.9,/2796,1006.6,998.1,,25.0,,,9.0,40.0,,,NE,0.0,0,59,7.0
-1992-06-23,-8.0,-12.1,,,/2796,1006.6,990.7,,28.0,,,8.0,250.0,,,SW,0.6,2,59,10.0
-1992-06-24,-7.2,-13.7,,,/2796,992.6,982.7,,29.0,,,11.0,220.0,,,SW,2.1,4,57,10.0
-1992-06-25,-5.6,-14.2,,,/2796,983.1,975.7,,26.0,,,5.0,110.0,,,NW,2.6,11,65,6.0
-1992-06-26,-10.8,-15.0,,,/2796,993.0,978.6,,29.0,,,13.0,110.0,,,SW,0.0,0,70,5.0
-1992-06-27,-13.7,-19.9,,,/2796,998.7,993.4,,16.0,,,6.0,250.0,,,NW,0.2,T,67,9.0
-1992-06-28,-9.0,-19.3,,-2.0,/2796,1015.2,997.5,,34.0,,,11.0,110.0,,,E,1.1,T,64,5.0
-1992-06-29,-11.6,-15.0,,,/2796,1016.6,1015.2,,10.0,,,4.0,340.0,,,N,T,T,64,6.0
-1992-06-30,-12.6,-18.0,,-2.0,/2796,1016.0,1013.4,,17.0,,,5.0,230.0,,,NW,T,T,64,7.0
-1992-07-01,-13.3,-18.0,,-2.0,/2796,1014.9,1006.6,,16.0,,,5.0,210.0,,,N,0.1,1,63,5.0
-1992-07-02,-10.2,-16.9,,,/2796,1006.6,1004.5,,19.0,,,5.0,40.0,,,N,0.1,1,63,9.0
-1992-07-03,-9.5,-12.6,,-2.0,/2796,1004.5,997.2,,15.0,,,6.0,360.0,,,NE,0.1,T,61,9.0
-1992-07-04,-8.0,-13.5,,,/2796,998.2,991.8,,12.0,,,2.0,300.0,,,NE,0.5,1,61,9.0
-1992-07-05,-5.2,-9.3,,,/2796,1000.5,986.5,,24.0,,,7.0,340.0,,,NW,6.8,7,70,10.0
-1992-07-06,-8.6,-18.0,,,/2796,1003.3,1000.1,,20.0,,,9.0,340.0,,,NW,1.1,1,64,10.0
-1992-07-07,-9.4,-19.0,,-1.8,/2796,1001.1,990.6,,18.0,,,8.0,20.0,,,NE,0.0,0,64,3.0
-1992-07-08,-10.8,-17.5,,,/2796,993.6,990.4,,20.0,,,7.0,80.0,,,NE,0.0,0,64,2.0
-1992-07-09,-10.7,-16.7,,,/2796,1005.4,993.6,,21.0,,,9.0,30.0,,,N,0.0,0,62,5.0
-1992-07-10,-9.9,-19.7,,,/2796,1005.7,993.7,,10.0,,,6.0,350.0,,,NW,2.1,6,67,8.0
-1992-07-11,-6.9,-10.7,,,/2796,995.9,991.4,,6.0,,,0.0,70.0,,,N,3.2,14,81,10.0
-1992-07-12,-8.7,-22.0,,-2.0,/4796,1010.3,995.9,,8.0,,,5.0,300.0,,,NW,0.0,0,81,6.0
-1992-07-13,-13.5,-21.6,,,/4796,1024.1,1010.3,,8.0,,,2.0,310.0,,,NE,0.0,0,76,4.0
-1992-07-14,-1.6,-16.7,,,/4796,1023.3,995.1,,54.0,,,10.0,10.0,,,N,1.0,1,73,10.0
-1992-07-15,-0.4,-3.5,,,84754,996.2,990.0,,51.0,,,16.0,20.0,,,NW,4.8,4,54,10.0
-1992-07-16,0.5,-2.9,,,84754,998.0,985.5,,46.0,,,15.0,360.0,,,N,7.8,4,60,10.0
-1992-07-17,0.9,-1.1,,-1.5,84754,985.5,970.6,,28.0,,,10.0,360.0,,,SE,4.0,3,60,10.0
-1992-07-18,0.4,-2.0,,,74761,982.3,972.7,,23.0,,,17.0,350.0,,,NW,4.0,4,64,10.0
-1992-07-19,-1.5,-8.3,,-1.6,74795,1003.0,982.3,,16.0,,,16.0,230.0,,,NW,1.5,1,67,10.0
-1992-07-20,-3.4,-12.7,,-1.5,/4796,1014.3,1003.0,,14.0,,,4.0,240.0,,,N,0.0,0,65,6.0
-1992-07-21,-2.1,-5.0,,-1.4,/4796,1014.8,1011.0,,14.0,,,5.0,320.0,,,NW,0.5,0,65,10.0
-1992-07-22,2.7,-3.2,,-1.3,84764,1011.0,984.9,,52.0,,,29.0,20.0,,,N,2.7,T,63,10.0
-1992-07-23,1.6,-2.2,,-1.1,74762,993.9,983.3,,55.0,,,28.0,350.0,,,NW,8.5,4,62,10.0
-1992-07-24,1.3,0.3,,-1.0,74761,986.9,969.9,,49.0,,,33.0,350.0,,,NW,16.3,7,68,10.0
-1992-07-25,1.0,-6.5,,-1.2,946/2,975.0,962.4,,24.0,,,8.0,190.0,,,SW,4.6,3,68,10.0
-1992-07-26,-1.3,-7.2,,-1.7,94763,982.2,963.2,,52.0,,,16.0,20.0,,,NW,1.0,T,69,6.0
-1992-07-27,-6.6,-10.8,,-1.7,94762,988.0,979.5,,24.0,,,7.0,20.0,,,E,0.1,T,67,10.0
-1992-07-28,-6.0,-17.3,,,947/3,1002.0,988.0,,19.0,,,8.0,100.0,,,W,0.1,T,67,10.0
-1992-07-29,-10.2,-17.9,,-1.7,/4793,1002.0,992.6,,14.0,,,5.0,330.0,,,NW,0.2,T,67,8.0
-1992-07-30,-8.6,-13.7,,,/4793,994.9,990.7,,16.0,,,9.0,300.0,,,W,0.2,1,67,9.0
-1992-07-31,-1.0,-13.1,,,/4793,990.7,981.2,,25.0,,,15.0,270.0,,,W,3.0,2,70,8.0
-1992-08-01,-12.3,-19.4,,-1.7,94763,1001.4,985.2,,22.0,,,9.0,300.0,,,NW,T,T,67,8.0
-1992-08-02,-10.2,-15.3,,-1.2,/4796,1012.3,1001.4,,16.0,,,3.0,320.0,,,SE,0.0,0,67,7.0
-1992-08-03,-6.7,-10.6,,-1.0,/4796,1013.5,1012.3,,9.0,,,3.0,130.0,,,NW,0.4,T,67,10.0
-1992-08-04,-2.6,-16.7,,,/4795,1012.3,1000.8,,14.0,,,3.0,120.0,,,SE,0.2,T,67,8.0
-1992-08-05,1.7,-2.6,,-1.7,/4795,1000.8,993.3,,23.0,,,9.0,360.0,,,SE,7.4,7,73,10.0
-1992-08-06,1.5,-2.5,,-1.4,/4795,993.3,986.1,,46.0,,,18.0,10.0,,,N,5.9,4,67,10.0
-1992-08-07,0.0,-4.0,,-1.5,/4795,987.4,984.0,,18.0,,,13.0,340.0,,,NW,3.6,6,74,10.0
-1992-08-08,-4.0,-24.3,,,/4795,984.0,981.1,,13.0,,,7.0,250.0,,,NW,1.6,1,76,5.0
-1992-08-09,-14.2,-24.7,,,/4795,990.3,980.7,,11.0,,,7.0,310.0,,,NW,0.0,0,76,7.0
-1992-08-10,-7.0,-23.4,,,/4795,991.2,985.0,,18.0,,,9.0,60.0,,,NE,T,T,75,8.0
-1992-08-11,-5.9,-19.1,,-1.7,/4795,989.7,984.8,,9.0,,,3.0,120.0,,,SE,0.3,T,73,8.0
-1992-08-12,0.2,-14.7,,-1.7,/4795,989.3,983.8,,42.0,,,11.0,10.0,,,NE,0.1,T,73,9.0
-1992-08-13,3.1,-5.5,,-1.6,/4795,992.8,986.0,,34.0,,,12.0,20.0,,,E,0.0,0,72,8.0
-1992-08-14,3.8,0.2,,-1.4,74761,991.8,970.5,,63.0,,,32.0,20.0,,,NE,5.4,2,66,10.0
-1992-08-15,1.8,-1.1,,-1.7,64761,980.6,976.0,,38.0,,,23.0,360.0,,,N,1.3,1,70,7.0
-1992-08-16,0.0,-4.7,,-1.6,64761,990.8,980.6,,19.0,,,9.0,340.0,,,NW,0.5,1,71,9.0
-1992-08-17,0.0,-5.5,,-1.4,24730,991.9,984.0,,42.0,,,17.0,20.0,,,N,2.6,2,69,10.0
-1992-08-18,1.0,-3.7,,-1.3,29730,987.9,975.2,,65.0,,,19.0,10.0,,,NE,1.0,1,69,9.0
-1992-08-19,1.5,-1.3,,-1.3,29730,975.3,971.2,,55.0,,,19.0,20.0,,,N,1.7,3,69,10.0
-1992-08-20,1.5,-2.0,,-1.3,29730,982.5,973.1,,40.0,,,23.0,360.0,,,N,2.3,3,72,10.0
-1992-08-21,-1.9,-6.3,,-1.4,23730,990.5,976.3,,22.0,,,8.0,300.0,,,NW,0.3,0,71,7.0
-1992-08-22,1.3,-3.2,,-1.6,29730,980.6,972.4,,49.0,,,20.0,10.0,,,N,T,T,71,10.0
-1992-08-23,-0.9,-7.4,,-1.6,29730,988.4,980.6,,34.0,,,9.0,10.0,,,N,0.5,T,71,9.0
-1992-08-24,-1.4,-9.1,,-1.7,0/2/0,983.7,969.7,,49.0,,,18.0,60.0,,,NE,T,T,71,10.0
-1992-08-25,-5.2,-7.1,,-1.8,20790,991.1,975.7,,26.0,,,17.0,10.0,,,N,T,T,70,10.0
-1992-08-26,-5.3,-10.8,,-1.9,30766,998.6,991.1,,25.0,,,11.0,230.0,,,SW,0.2,T,70,9.0
-1992-08-27,-2.0,-9.4,,-1.9,507/6,998.6,994.5,,26.0,,,17.0,250.0,,,W,4.7,7,72,10.0
-1992-08-28,-1.0,-2.9,,,41//6,994.5,981.0,,40.0,,,21.0,340.0,,,NW,7.0,8,80,10.0
-1992-08-29,-1.0,-17.6,,-1.5,/2796,989.4,965.0,,55.0,,,23.0,330.0,,,SW,0.6,T,67,9.0
-1992-08-30,-13.8,-20.0,,-1.6,/2796,1008.3,989.5,,20.0,,,9.0,320.0,,,W,T,T,68,4.0
-1992-08-31,-3.0,-14.0,,-1.8,/2796,1011.3,1006.0,,16.0,,,7.0,110.0,,,NW,0.0,0,68,8.0
-1992-09-01,1.0,-8.0,,-1.6,/2796,1006.0,978.4,,50.0,,,29.0,10.0,,,N,7.3,3,70,10.0
-1992-09-02,1.2,-3.5,,-1.8,/2796,981.1,976.6,,23.0,,,9.0,340.0,,,NW,7.6,6,81,10.0
-1992-09-03,3.5,-3.2,,-1.6,/2791,981.0,966.4,,24.0,,,12.0,30.0,,,SE,0.5,1,79,10.0
-1992-09-04,2.5,-7.5,,-1.6,/2791,966.4,956.5,,35.0,,,19.0,10.0,,,SW,2.4,1,79,10.0
-1992-09-05,-2.5,-11.1,,-1.6,82761,966.9,952.0,,56.0,,,23.0,40.0,,,NE,7.4,9,79,8.0
-1992-09-06,-8.3,-12.7,,-1.6,/2793,990.4,962.2,,20.0,,,11.0,210.0,,,N,0.0,0,76,2.0
-1992-09-07,-2.0,-20.1,,-1.6,/2793,1001.8,990.4,,27.0,,,9.0,110.0,,,NW,0.0,0,76,4.0
-1992-09-08,2.0,-3.9,,-1.4,82761,1000.8,989.6,,57.0,,,26.0,50.0,,,N,0.7,T,78,10.0
-1992-09-09,1.9,-0.3,,,62661,999.4,979.0,,59.0,,,37.0,10.0,,,N,12.4,6,79,10.0
-1992-09-10,0.3,-4.7,,-1.4,426/0,991.0,975.0,,55.0,,,23.0,350.0,,,N,1.5,T,79,9.0
-1992-09-11,1.5,-2.6,,-1.7,22690,995.5,990.9,,58.0,,,31.0,350.0,,,N,5.9,T,79,10.0
-1992-09-12,2.1,-0.4,,-1.6,29690,990.9,978.3,,74.0,,,39.0,360.0,,,N,8.9,4,81,8.0
-1992-09-13,0.9,-1.7,,-1.4,29690,981.7,968.2,,55.0,,,26.0,330.0,,,N,1.9,5,104,10.0
-1992-09-14,-1.5,-12.5,,-1.6,21190,984.9,968.2,,35.0,,,11.0,190.0,,,SW,2.8,5,116,10.0
-1992-09-15,-4.0,-15.5,,-1.3,/1793,988.9,984.9,,31.0,,,9.0,20.0,,,SE,0.0,0,114,9.0
-1992-09-16,-1.0,-3.9,,-1.3,116/1,984.9,967.4,,58.0,,,31.0,30.0,,,N,2.2,2,73,10.0
-1992-09-17,-1.2,-10.6,,-1.3,61791,986.2,966.9,,42.0,,,7.0,240.0,,,W,0.4,T,81,10.0
-1992-09-18,-0.5,-5.0,,-1.2,61791,995.1,985.8,,34.0,,,20.0,340.0,,,NW,1.9,1,88,10.0
-1992-09-19,2.4,-1.0,,-1.1,61791,995.0,976.2,,58.0,,,29.0,20.0,,,N,4.7,4,105,10.0
-1992-09-20,2.0,-1.5,,-1.2,21790,979.5,969.5,,48.0,,,10.0,360.0,,,N,2.7,3,89,10.0
-1992-09-21,-0.6,-1.6,,-1.1,20890,969.5,961.0,,14.0,,,4.0,280.0,,,N,3.2,3,95,10.0
-1992-09-22,0.2,-4.2,,-1.0,21890,976.1,962.8,,22.0,,,5.0,60.0,,,E,T,T,93,10.0
-1992-09-23,-2.3,-7.5,,-1.1,21792,991.8,976.1,,26.0,,,8.0,110.0,,,E,0.0,0,91,8.0
-1992-09-24,-2.8,-8.8,,-1.0,21792,1002.2,991.8,,30.0,,,8.0,120.0,,,N,0.0,0,89,5.0
-1992-09-25,-7.9,-11.5,,-1.1,21792,1001.5,996.8,,18.0,,,6.0,250.0,,,S,0.3,T,89,10.0
-1992-09-26,-7.3,-15.0,,,21792,1001.0,996.8,,12.0,,,6.0,180.0,,,N,0.2,T,89,5.0
-1992-09-27,-6.3,-13.9,,,22792,1000.5,995.8,,14.0,,,5.0,360.0,,,N,0.3,T,89,10.0
-1992-09-28,-5.0,-11.6,,,22792,995.8,994.6,,12.0,,,4.0,10.0,,,SE,0.1,T,89,10.0
-1992-09-29,-4.5,-9.2,,,22792,1000.9,995.5,,18.0,,,10.0,360.0,,,N,0.0,0,88,10.0
-1992-09-30,0.6,-7.6,,-1.1,22792,1002.4,1000.3,,12.0,,,5.0,130.0,,,SE,0.0,0,88,10.0
-1992-10-01,1.3,-9.0,,,22792,1000.0,983.2,,44.0,,,25.0,90.0,,,E,0.0,0,88,6.0
-1992-10-02,0.8,-9.0,,,22792,983.2,974.0,,50.0,,,24.0,90.0,,,E,0.3,T,88,9.0
-1992-10-03,-0.6,-5.8,,,22792,988.6,978.6,,22.0,,,6.0,90.0,,,E,0.6,1,87,10.0
-1992-10-04,2.0,-4.5,,-0.9,29790,988.6,985.5,,39.0,,,23.0,20.0,,,N,T,T,86,10.0
-1992-10-05,-0.3,-5.8,,-0.6,29790,991.0,978.9,,38.0,,,15.0,60.0,,,E,0.0,0,84,6.0
-1992-10-06,-0.2,-6.6,,-1.0,29790,1008.5,991.0,,16.0,,,4.0,280.0,,,S,T,T,84,7.0
-1992-10-07,-1.8,-9.2,,-0.8,29893,1020.0,1008.5,,11.0,,,4.0,230.0,,,NE,0.0,0,84,9.0
-1992-10-08,-2.2,-9.3,,-0.8,29890,1021.3,1017.0,,13.0,,,6.0,360.0,,,N,0.0,0,83,9.0
-1992-10-09,2.4,-9.5,,-1.0,29890,1017.0,999.0,,36.0,,,12.0,90.0,,,E,0.0,0,83,10.0
-1992-10-10,3.8,-2.2,,-0.8,29790,999.0,984.0,,55.0,,,24.0,50.0,,,N,1.2,T,81,10.0
-1992-10-11,3.1,-0.4,,-0.8,29790,984.0,974.0,,48.0,,,22.0,360.0,,,N,1.6,T,79,10.0
-1992-10-12,2.7,-1.2,,-0.7,29790,981.3,978.0,,40.0,,,23.0,360.0,,,N,2.0,T,79,10.0
-1992-10-13,4.4,-3.2,,-0.7,29790,980.3,976.8,,31.0,,,10.0,10.0,,,N,T,T,78,6.0
-1992-10-14,5.5,-5.4,,-0.4,29890,976.8,970.8,,22.0,,,8.0,150.0,,,N,0.0,0,77,1.0
-1992-10-15,3.6,-2.6,,-0.2,29890,973.1,966.0,,31.0,,,10.0,10.0,,,N,0.0,0,76,6.0
-1992-10-16,0.4,-2.7,,-1.1,29890,989.0,967.0,,39.0,,,24.0,10.0,,,N,1.5,2,79,10.0
-1992-10-17,0.6,-2.2,,-1.0,29790,985.4,975.4,,51.0,,,26.0,20.0,,,N,4.0,T,78,8.0
-1992-10-18,3.9,-2.6,,-0.8,29790,1001.2,977.0,,42.0,,,20.0,10.0,,,N,0.4,T,76,9.0
-1992-10-19,4.2,-0.7,,-0.9,20790,991.7,982.0,,40.0,,,10.0,10.0,,,NW,9.7,5,81,10.0
-1992-10-20,1.2,0.8,,-0.6,29790,982.0,966.9,,58.0,,,11.0,70.0,,,NE,0.5,T,78,10.0
-1992-10-21,0.0,-3.5,,-0.4,29790,967.2,961.2,,56.0,,,24.0,70.0,,,NE,1.1,1,76,8.0
-1992-10-22,0.9,-2.6,,-0.6,29790,983.2,966.8,,24.0,,,14.0,360.0,,,N,0.0,0,75,5.0
-1992-10-23,1.2,-3.4,,-0.7,29790,984.0,976.3,,40.0,,,17.0,120.0,,,E,0.0,0,75,10.0
-1992-10-24,1.8,-1.5,,-0.3,29790,976.8,971.5,,40.0,,,17.0,60.0,,,NE,0.3,T,75,10.0
-1992-10-25,4.8,-2.5,,-0.2,29740,971.5,966.3,,27.0,,,7.0,180.0,,,E,0.0,0,75,9.0
-1992-10-26,2.8,-1.9,,-0.2,29790,972.7,966.3,,14.0,,,3.0,310.0,,,SE,0.2,T,75,10.0
-1992-10-27,1.2,-3.6,,-0.3,29790,994.9,972.7,,16.0,,,4.0,220.0,,,SE,1.1,2,75,10.0
-1992-10-28,-3.2,-4.5,,-0.8,29790,974.4,970.7,,14.0,,,7.0,220.0,,,SW,1.4,4,79,10.0
-1992-10-29,-3.5,-4.7,,-0.6,29790,988.6,972.7,,18.0,,,7.0,230.0,,,SW,T,T,78,10.0
-1992-10-30,0.3,-6.6,,-0.6,29790,990.5,983.6,,23.0,,,5.0,220.0,,,E,T,T,74,10.0
-1992-10-31,-1.5,-6.5,,-0.1,29790,983.6,979.8,,20.0,,,7.0,50.0,,,NE,0.0,0,74,8.0
-1992-11-01,1.0,-3.4,,-0.1,29790,980.3,979.5,,23.0,,,5.0,60.0,,,NW,0.5,1,74,10.0
-1992-11-02,4.1,-3.5,,0.0,29790,992.1,980.3,,18.0,,,9.0,360.0,,,N,T,T,73,8.0
-1992-11-03,0.1,-5.5,,-1.0,29790,997.5,990.2,,36.0,,,13.0,140.0,,,SW,0.1,T,73,10.0
-1992-11-04,1.1,-1.5,,-0.1,29790,990.2,980.6,,58.0,,,19.0,20.0,,,SW,1.1,T,73,8.0
-1992-11-05,1.5,-3.4,,-0.1,29790,985.0,962.2,,41.0,,,13.0,360.0,,,N,0.9,1,73,10.0
-1992-11-06,0.4,-7.2,,-1.1,29790,983.6,961.7,,35.0,,,21.0,230.0,,,SW,0.3,1,73,10.0
-1992-11-07,-5.0,-7.4,,-1.0,29790,988.4,983.6,,22.0,,,11.0,220.0,,,SW,T,T,73,9.0
-1992-11-08,-3.7,-7.3,,-0.9,29790,991.1,988.4,,25.0,,,13.0,190.0,,,S,0.0,0,73,9.0
-1992-11-09,-0.5,-6.7,,-0.6,29790,996.3,989.8,,22.0,,,11.0,220.0,,,SW,0.0,0,73,6.0
-1992-11-10,0.9,-3.2,,-1.0,29790,1009.3,996.3,,20.0,,,7.0,22.0,,,NW,0.1,T,72,10.0
-1992-11-11,3.9,-2.6,,-1.1,29790,1013.3,1009.3,,19.0,,,11.0,230.0,,,SW,0.0,0,71,8.0
-1992-11-12,4.0,-2.5,,-1.0,29790,1013.0,1005.4,,14.0,,,7.0,310.0,,,NW,T,T,70,10.0
-1992-11-13,4.5,-0.4,,-0.3,29790,1005.4,988.4,,55.0,,,27.0,20.0,,,N,1.1,T,61,10.0
-1992-11-14,3.6,0.8,,-0.2,29790,988.4,982.0,,49.0,,,25.0,340.0,,,N,7.7,T,50,9.0
-1992-11-15,2.2,0.3,,-0.2,29690,998.1,986.4,,53.0,,,23.0,350.0,,,NW,1.0,T,47,10.0
-1992-11-16,3.9,-0.3,,-0.4,29690,1003.0,995.4,,40.0,,,13.0,10.0,,,NW,4.8,T,46,10.0
-1992-11-17,5.8,-0.6,,-0.2,29690,995.4,993.5,,32.0,,,11.0,220.0,,,NW,4.6,0,45,10.0
-1992-11-18,5.4,-0.8,,-0.1,29790,993.9,987.8,,26.0,,,9.0,10.0,,,NW,T,T,43,10.0
-1992-11-19,2.6,0.0,,-0.2,29690,988.2,982.1,,45.0,,,21.0,10.0,,,NW,2.0,T,38,10.0
-1992-11-20,3.4,-0.8,,-0.9,29790,998.9,987.6,,29.0,,,13.0,310.0,,,NW,0.5,T,35,10.0
-1992-11-21,3.7,-1.5,,-1.0,29790,1006.5,998.9,,19.0,,,5.0,240.0,,,SE,0.2,T,35,10.0
-1992-11-22,3.6,-0.3,,-0.2,29790,1006.0,995.8,,43.0,,,16.0,360.0,,,NW,10.4,T,20,10.0
-1992-11-23,1.8,-1.2,,-0.5,29790,1001.8,993.4,,39.0,,,15.0,360.0,,,N,3.0,T,20,10.0
-1992-11-24,1.3,-1.5,,-0.6,29790,996.2,977.1,,44.0,,,15.0,360.0,,,NW,5.5,3,20,10.0
-1992-11-25,1.5,-1.6,,-0.6,29790,995.2,980.2,,26.0,,,11.0,340.0,,,SW,2.4,1,22,10.0
-1992-11-26,4.7,0.2,,-1.0,29790,992.7,982.5,,48.0,,,17.0,20.0,,,N,9.9,2,23,10.0
-1992-11-27,3.5,0.2,,-1.2,29790,985.6,980.3,,29.0,,,17.0,350.0,,,NW,1.3,0,18,10.0
-1992-11-28,3.4,-1.2,,-0.3,29790,989.5,985.2,,30.0,,,15.0,30.0,,,NW,0.3,1,16,10.0
-1992-11-29,3.0,-0.2,,-0.9,29790,996.8,982.3,,40.0,,,13.0,20.0,,,NW,5.3,5,19,9.0
-1992-11-30,4.9,-0.4,,-0.2,29790,1003.2,996.8,,16.0,,,4.0,140.0,,,SE,9.2,9,19,10.0
-1992-12-01,5.4,1.2,,-0.9,29790,1003.2,994.1,,55.0,,,22.0,10.0,,,NE,7.1,0,1,9.0
-1992-12-02,6.2,2.0,,-0.2,29790,1000.3,987.5,,54.0,,,20.0,20.0,,,NE,6.7,0,0,10.0
-1992-12-03,4.5,2.2,,-0.2,29790,998.1,991.9,,56.0,,,33.0,360.0,,,N,3.6,0,0,9.0
-1992-12-04,4.4,1.9,,0.0,29790,999.5,996.3,,45.0,,,25.0,350.0,,,N,4.0,0,0,10.0
-1992-12-05,6.5,0.4,,0.1,29790,1009.1,999.5,,28.0,,,7.0,360.0,,,SE,0.8,0,0,10.0
-1992-12-06,10.3,1.4,,0.0,0/7/0,1010.0,1005.0,,35.0,,,9.0,20.0,,,N,0.1,0,0,9.0
-1992-12-07,7.8,1.4,,0.5,0/7/0,1005.7,1002.0,,33.0,,,11.0,30.0,,,SE,0.0,0,0,10.0
-1992-12-08,6.4,1.0,,0.0,0/7/0,1002.0,992.5,,58.0,,,26.0,20.0,,,N,9.6,0,0,10.0
-1992-12-09,3.0,-0.5,,0.0,0/7/0,997.2,992.5,,29.0,,,17.0,330.0,,,NW,1.8,T,0,10.0
-1992-12-10,2.9,-0.5,,-0.1,0/6/0,995.5,989.8,,30.0,,,17.0,340.0,,,NW,5.6,T,0,10.0
-1992-12-11,2.3,-0.7,,-1.0,0/6/0,1000.8,988.1,,27.0,,,17.0,250.0,,,SW,3.2,5,0,9.0
-1992-12-12,7.0,-0.5,,0.4,0/6/0,1000.5,985.0,,39.0,,,9.0,10.0,,,N,T,T,0,10.0
-1992-12-13,2.7,0.0,,0.0,0/2/0,985.0,972.8,,16.0,,,3.0,180.0,,,NW,8.7,T,0,10.0
-1992-12-14,4.9,0.4,,0.4,0/2/0,976.8,973.2,,12.0,,,6.0,120.0,,,SE,0.8,T,0,10.0
-1992-12-15,3.8,0.4,,0.9,0/2/0,985.3,976.8,,11.0,,,9.0,250.0,,,NW,1.7,T,0,10.0
-1992-12-16,4.9,0.0,,0.7,0/2/0,991.7,985.3,,13.0,,,8.0,120.0,,,NW,3.3,1,0,10.0
-1992-12-17,6.0,1.7,,0.5,0/2/0,991.7,983.3,,39.0,,,15.0,30.0,,,SE,0.9,0,0,10.0
-1992-12-18,6.4,2.5,,1.0,0/2/0,987.3,983.9,,41.0,,,9.0,20.0,,,SE,0.0,0,0,10.0
-1992-12-19,3.9,0.7,,1.0,0/2/0,987.5,983.7,,23.0,,,9.0,90.0,,,NW,0.1,T,0,10.0
-1992-12-20,5.4,0.0,,1.0,0/2/0,987.3,986.1,,14.0,,,7.0,120.0,,,NW,0.0,0,0,10.0
-1992-12-21,5.7,1.3,,0.3,0/6/0,995.0,985.8,,27.0,,,9.0,20.0,,,N,0.0,0,0,8.0
-1992-12-22,7.7,3.2,,0.2,0/6/0,995.0,988.2,,44.0,,,23.0,50.0,,,NE,0.3,0,0,10.0
-1992-12-23,5.8,2.3,,0.6,0/6/0,996.0,988.0,,39.0,,,8.0,110.0,,,NW,15.5,0,0,10.0
-1992-12-24,7.9,1.6,,0.9,0/6/0,1001.0,994.5,,34.0,,,10.0,120.0,,,SE,0.4,0,0,10.0
-1992-12-25,7.5,1.9,,1.1,0/6/0,1003.8,994.2,,47.0,,,18.0,10.0,,,N,0.5,0,0,9.0
-1992-12-26,9.6,1.5,,1.2,0/7/0,1004.0,988.5,,26.0,,,7.0,20.0,,,SE,0.0,0,0,8.0
-1992-12-27,9.7,1.6,,1.0,0/6/0,988.5,978.7,,20.0,,,5.0,320.0,,,NW,0.0,0,0,7.0
-1992-12-28,5.3,1.5,,0.8,0/6/0,986.5,985.0,,10.0,,,3.0,290.0,,,NW,1.8,0,0,10.0
-1992-12-29,4.0,-0.4,,0.8,0/7/0,994.8,985.0,,24.0,,,11.0,220.0,,,SW,3.2,T,0,7.0
-1992-12-30,4.0,0.4,,0.9,0/6/0,1000.1,994.8,,18.0,,,10.0,220.0,,,SW,0.2,0,0,10.0
-1992-12-31,4.9,-0.2,,1.1,0/6/0,1002.3,999.9,,8.0,,,3.0,120.0,,,NW,4.4,3,0,10.0
-1993-01-01,6.8,-0.4,,1.0,0/6/0,1007.1,1002.6,,8.0,,,2.0,300.0,,,NW,T,0,0,10.0
-1993-01-02,2.9,0.4,,0.8,0/6/0,1007.8,1002.3,,9.0,,,5.0,310.0,,,NW,5.6,20,0,10.0
-1993-01-03,7.9,1.3,,1.2,0/6/0,1005.2,998.6,,11.0,,,3.0,120.0,,,SE,T,0,0,9.0
-1993-01-04,5.9,1.5,,0.8,0/6/0,998.6,986.9,,32.0,,,9.0,70.0,,,NE,2.2,0,0,8.0
-1993-01-05,9.5,3.3,,1.8,0/7/0,986.9,983.7,,33.0,,,15.0,30.0,,,NE,1.0,0,0,8.0
-1993-01-06,10.1,3.0,,1.0,0/6/0,992.9,984.9,,38.0,,,13.0,20.0,,,NE,2.3,0,0,9.0
-1993-01-07,8.7,2.7,,1.1,0/2/0,1000.7,992.9,,14.0,,,3.0,340.0,,,SE,0.3,0,0,9.0
-1993-01-08,5.5,1.1,,1.8,0/6/0,1007.6,1000.7,,7.0,,,2.0,210.0,,,SW,T,0,0,10.0
-1993-01-09,2.6,-0.5,,1.8,0/7/0,1007.9,1004.1,,8.0,,,3.0,220.0,,,SW,1.1,0,0,10.0
-1993-01-10,1.9,-1.5,,1.9,0/7/0,1004.1,1000.3,,10.0,,,3.0,100.0,,,NW,0.0,0,0,10.0
-1993-01-11,1.3,-0.5,,0.2,0/7/0,1000.3,986.2,,12.0,,,7.0,60.0,,,NW,0.5,T,0,10.0
-1993-01-12,2.5,-1.0,,0.8,0/7/0,986.2,978.9,,26.0,,,8.0,80.0,,,E,T,T,0,9.0
-1993-01-13,6.8,-2.6,,1.2,0/7/0,987.2,980.9,,32.0,,,9.0,110.0,,,E,0.0,0,0,2.0
-1993-01-14,8.6,-1.2,,1.0,0/2/0,994.6,987.6,,39.0,,,17.0,110.0,,,SE,0.0,0,0,4.0
-1993-01-15,9.8,-0.2,,1.1,0/2/0,1002.2,994.6,,22.0,,,9.0,100.0,,,E,0.0,0,0,1.0
-1993-01-16,5.3,-0.6,,2.1,0/2/0,1006.2,1002.2,,9.0,,,3.0,270.0,,,NE,0.0,0,0,8.0
-1993-01-17,6.1,-0.6,,2.1,0/2/0,1006.1,1001.2,,23.0,,,5.0,30.0,,,NE,0.0,0,0,5.0
-1993-01-18,4.0,1.0,,1.6,0/6/0,1001.2,991.4,,26.0,,,5.0,20.0,,,SE,4.2,T,0,9.0
-1993-01-19,3.0,0.3,,0.9,0/7/0,994.3,990.8,,13.0,,,2.0,80.0,,,W,7.0,3,0,10.0
-1993-01-20,6.9,-0.2,,2.2,0/7/0,996.5,991.1,,28.0,,,9.0,20.0,,,NE,1.0,T,0,9.0
-1993-01-21,6.5,1.5,,1.0,0/2/0,996.1,989.4,,38.0,,,9.0,70.0,,,NE,3.5,T,0,10.0
-1993-01-22,5.9,0.6,,0.9,0/7/0,997.4,996.1,,8.0,,,2.0,140.0,,,SE,T,0,0,10.0
-1993-01-23,8.3,1.6,,2.0,0/7/0,999.3,997.4,,8.0,,,3.0,120.0,,,NW,0.0,0,0,7.0
-1993-01-24,4.9,1.0,,2.0,0/7/0,1000.9,998.5,,13.0,,,5.0,10.0,,,NW,0.0,0,0,9.0
-1993-01-25,5.8,0.6,,1.9,0/7/0,998.5,992.3,,19.0,,,3.0,100.0,,,NW,0.0,0,0,10.0
-1993-01-26,4.5,1.1,,1.9,0/7/0,992.3,991.9,,19.0,,,5.0,110.0,,,NW,0.0,0,0,10.0
-1993-01-27,5.4,1.0,,1.8,0/7/0,991.9,988.2,,25.0,,,3.0,30.0,,,NW,T,T,0,10.0
-1993-01-28,8.3,0.3,,1.9,0/7/0,990.1,988.7,,29.0,,,11.0,10.0,,,E,20.2,3,0,8.0
-1993-01-29,6.0,1.3,,1.7,0/7/0,989.4,987.7,,30.0,,,15.0,360.0,,,N,T,T,0,9.0
-1993-01-30,5.3,0.8,,2.7,0/7/0,988.7,986.5,,6.0,,,1.0,210.0,,,SW,0.0,0,0,8.0
-1993-01-31,4.1,1.2,,1.8,0/7/0,992.3,988.7,,6.0,,,1.0,190.0,,,S,0.0,0,0,10.0
-1993-02-01,4.4,1.4,,1.8,0/7/0,995.4,992.3,,8.0,,,1.0,310.0,,,N,0.0,0,0,9.0
-1993-02-02,4.6,0.6,,1.9,0/7/0,995.6,993.2,,30.0,,,9.0,30.0,,,SE,4.7,2,0,10.0
-1993-02-03,5.9,1.2,,1.8,0/7/0,994.7,987.1,,34.0,,,9.0,60.0,,,NE,0.5,T,0,10.0
-1993-02-04,6.8,1.8,,2.0,0/6/0,987.1,982.5,,44.0,,,17.0,70.0,,,NE,5.8,0,0,10.0
-1993-02-05,6.7,1.2,,1.7,0/2/0,996.7,983.3,,14.0,,,5.0,250.0,,,N,0.0,0,0,10.0
-1993-02-06,2.5,1.0,,1.8,0/7/0,1003.1,996.7,,34.0,,,11.0,360.0,,,N,0.1,T,0,10.0
-1993-02-07,5.3,2.0,,1.7,0/6/0,999.8,986.6,,49.0,,,23.0,20.0,,,N,1.8,0,0,10.0
-1993-02-08,7.4,2.0,,2.0,0/7/0,986.6,969.9,,42.0,,,5.0,120.0,,,SE,3.6,0,0,9.0
-1993-02-09,4.3,0.6,,1.7,0/1/0,979.9,971.7,,22.0,,,7.0,290.0,,,NW,2.7,T,0,10.0
-1993-02-10,5.9,-0.9,,2.0,0/6/0,986.2,979.9,,10.0,,,3.0,150.0,,,SE,0.0,0,0,9.0
-1993-02-11,6.3,2.7,,1.9,0/2/0,984.0,967.9,,58.0,,,21.0,30.0,,,N,4.7,0,0,9.0
-1993-02-12,5.4,1.9,,1.9,0/7/0,977.1,975.3,,30.0,,,13.0,20.0,,,N,4.7,0,0,10.0
-1993-02-13,8.5,2.6,,1.9,0/7/0,983.8,976.9,,26.0,,,5.0,20.0,,,SE,0.7,0,0,10.0
-1993-02-14,4.9,1.5,,1.8,0/6/0,991.5,983.8,,8.0,,,2.0,330.0,,,NW,1.2,0,0,10.0
-1993-02-15,3.4,0.3,,1.5,0/7/0,992.0,986.3,,10.0,,,2.0,200.0,,,SE,3.2,2,0,10.0
-1993-02-16,3.3,-1.9,,1.0,0/7/0,994.7,986.4,,13.0,,,5.0,310.0,,,NW,T,0,0,10.0
-1993-02-17,3.3,-0.2,,0.0,0/7/0,996.9,991.2,,21.0,,,7.0,190.0,,,S,T,T,0,10.0
-1993-02-18,4.5,-0.3,,1.5,0/2/0,993.6,989.2,,16.0,,,6.0,200.0,,,S,0.0,0,0,5.0
-1993-02-19,0.8,-1.2,,0.8,0/2/0,999.7,993.6,,22.0,,,9.0,250.0,,,SW,0.0,0,0,8.0
-1993-02-20,2.5,-0.8,,-0.9,0/7/0,998.8,993.5,,16.0,,,8.0,270.0,,,NW,2.8,6,0,9.0
-1993-02-21,2.0,-0.2,,0.0,0/7/0,997.1,992.3,,29.0,,,11.0,220.0,,,W,1.9,T,0,9.0
-1993-02-22,3.5,-0.2,,0.8,0/2/0,1015.7,997.1,,24.0,,,10.0,220.0,,,SW,0.1,T,0,4.0
-1993-02-23,2.5,0.9,,-0.1,0/6/0,1018.7,1015.7,,20.0,,,9.0,230.0,,,SW,0.0,0,0,10.0
-1993-02-24,3.5,0.8,,0.0,0/6/0,1018.5,1014.5,,24.0,,,8.0,230.0,,,SW,0.0,0,0,10.0
-1993-02-25,5.4,0.6,,0.1,0/7/0,1014.9,1009.7,,12.0,,,6.0,200.0,,,SE,0.0,0,0,7.0
-1993-02-26,2.2,-0.4,,0.2,0/7/0,1009.7,1001.4,,6.0,,,2.0,300.0,,,SE,6.3,T,0,10.0
-1993-02-27,3.0,-0.2,,0.8,0/7/0,1002.9,999.6,,9.0,,,2.0,210.0,,,SW,T,0,0,10.0
-1993-02-28,3.0,-1.5,,0.9,0/2/0,1010.6,1002.9,,12.0,,,4.0,360.0,,,NW,0.1,0,0,10.0
-1993-03-01,6.5,1.5,,0.9,0/2/0,1010.6,1004.1,,32.0,,,12.0,40.0,,,SE,10.9,0,0,10.0
-1993-03-02,5.0,3.2,,1.0,0/7/0,1004.1,989.0,,39.0,,,23.0,20.0,,,N,6.9,0,0,10.0
-1993-03-03,4.6,1.4,,0.5,0/7/0,991.9,988.5,,30.0,,,12.0,330.0,,,NW,2.7,0,0,10.0
-1993-03-04,4.5,1.6,,-0.1,0/7/0,989.1,969.7,,45.0,,,22.0,310.0,,,NW,28.9,0,0,10.0
-1993-03-05,2.5,0.0,,-0.2,0/7/0,986.1,983.1,,24.0,,,8.0,310.0,,,W,0.1,T,0,9.0
-1993-03-06,2.7,-1.8,,0.0,0/7/0,986.1,970.2,,46.0,,,10.0,110.0,,,SE,1.0,T,0,7.0
-1993-03-07,4.0,1.5,,0.9,0/7/0,981.0,970.8,,48.0,,,14.0,100.0,,,E,0.0,0,0,10.0
-1993-03-08,3.0,0.3,,-0.5,0/7/0,981.7,977.0,,39.0,,,9.0,70.0,,,NE,0.0,0,0,9.0
-1993-03-09,8.0,1.5,,1.0,0/7/0,977.3,969.5,,40.0,,,17.0,100.0,,,E,0.2,0,0,8.0
-1993-03-10,6.2,3.2,,1.2,0/6/0,977.1,969.5,,41.0,,,17.0,20.0,,,N,1.1,0,0,9.0
-1993-03-11,5.5,2.3,,0.7,0/7/0,983.2,977.1,,29.0,,,12.0,10.0,,,N,1.8,T,0,9.0
-1993-03-12,4.4,0.0,,1.0,0/6/0,985.4,981.9,,28.0,,,6.0,360.0,,,N,1.6,T,0,10.0
-1993-03-13,3.5,-1.8,,0.7,0/7/0,988.0,985.4,,16.0,,,4.0,200.0,,,NE,T,T,0,2.0
-1993-03-14,1.5,-2.4,,0.8,0/7/0,988.1,982.6,,28.0,,,11.0,350.0,,,NE,1.3,T,0,8.0
-1993-03-15,0.5,-2.1,,0.0,0/7/0,986.4,982.6,,24.0,,,7.0,220.0,,,SW,1.7,3,0,9.0
-1993-03-16,1.0,-1.6,,0.1,0/7/0,987.9,983.9,,25.0,,,9.0,270.0,,,SW,7.2,T,0,10.0
-1993-03-17,1.4,-1.2,,0.0,0/7/0,986.9,978.1,,42.0,,,14.0,10.0,,,NW,55.4,T,0,10.0
-1993-03-18,1.5,-5.7,,-0.8,0/7/0,986.7,972.7,,31.0,,,20.0,200.0,,,SW,16.0,2,0,9.0
-1993-03-19,0.0,-6.8,,-0.5,0/7/0,1003.9,986.7,,25.0,,,12.0,190.0,,,S,0.0,0,0,2.0
-1993-03-20,0.5,-3.7,,0.0,0/7/0,1003.9,998.6,,20.0,,,6.0,220.0,,,SW,0.0,0,0,5.0
-1993-03-21,2.0,-4.4,,0.1,0/7/0,998.6,993.5,,26.0,,,7.0,60.0,,,NE,0.0,0,0,3.0
-1993-03-22,-0.4,-3.3,,-0.2,0/7/0,1002.2,993.5,,19.0,,,6.0,60.0,,,NE,T,T,0,6.0
-1993-03-23,-0.5,-3.0,,-0.3,0/7/0,1004.3,1001.2,,16.0,,,7.0,30.0,,,NE,0.2,T,0,9.0
-1993-03-24,-0.4,-2.5,,0.1,0/7/0,1001.2,988.7,,24.0,,,8.0,20.0,,,NE,0.0,0,0,10.0
-1993-03-25,-0.5,-3.6,,0.0,0/7/0,988.7,975.9,,38.0,,,18.0,210.0,,,SW,0.6,T,0,10.0
-1993-03-26,2.5,-3.6,,-0.5,0/7/0,986.1,975.8,,46.0,,,24.0,340.0,,,N,4.5,1,0,10.0
-1993-03-27,-0.5,-4.7,,-0.1,0/7/0,975.8,972.4,,26.0,,,7.0,20.0,,,NE,11.7,11,29,8.0
-1993-03-28,-2.2,-8.5,,-0.6,0/7/0,977.6,971.6,,28.0,,,11.0,330.0,,,NW,1.7,T,24,9.0
-1993-03-29,-2.5,-5.4,,-1.0,0/7/0,985.6,977.6,,29.0,,,7.0,200.0,,,SW,1.0,1,24,10.0
-1993-03-30,-2.3,-6.3,,-0.2,0/7/0,985.4,983.4,,34.0,,,15.0,100.0,,,NE,0.8,0,25,7.0
-1993-03-31,-3.4,-5.6,,0.2,0/7/0,988.4,984.4,,39.0,,,14.0,100.0,,,E,1.6,T,23,5.0
-1993-04-01,-1.2,-6.3,,-0.2,0/7/0,992.8,984.4,,22.0,,,4.0,100.0,,,NE,0.0,0,23,1.0
-1993-04-02,0.5,-4.4,,-0.3,0/7/0,996.2,990.5,,16.0,,,5.0,200.0,,,SW,T,T,23,8.0
-1993-04-03,2.6,-0.5,,0.0,0/6/0,995.9,994.2,,28.0,,,6.0,10.0,,,NW,2.0,3,24,10.0
-1993-04-04,4.3,2.5,,0.3,0/6/0,994.2,969.4,,60.0,,,26.0,30.0,,,NE,20.1,T,9,10.0
-1993-04-05,3.5,0.5,,0.0,0/6/0,992.5,969.4,,36.0,,,17.0,10.0,,,NW,10.8,0,0,10.0
-1993-04-06,3.7,0.5,,0.2,0/6/0,990.4,980.2,,30.0,,,6.0,20.0,,,SE,T,0,0,10.0
-1993-04-07,1.5,-1.1,,0.0,0/5/0,990.8,982.9,,10.0,,,3.0,240.0,,,NW,2.4,T,0,10.0
-1993-04-08,1.5,-1.8,,-0.2,0/6/0,990.5,977.9,,22.0,,,2.0,60.0,,,NE,0.8,T,0,9.0
-1993-04-09,2.0,-1.2,,0.2,0/5/0,976.9,973.0,,40.0,,,14.0,70.0,,,SE,0.0,0,0,8.0
-1993-04-10,3.0,-0.9,,0.5,0/6/0,980.5,976.9,,33.0,,,7.0,70.0,,,NE,0.0,0,0,9.0
-1993-04-11,2.6,-1.2,,0.8,0/6/0,978.9,971.2,,63.0,,,23.0,40.0,,,N,0.5,T,0,10.0
-1993-04-12,3.5,-0.7,,0.2,0/5/0,982.3,970.0,,32.0,,,8.0,20.0,,,NE,1.1,2,0,10.0
-1993-04-13,1.0,-1.6,,0.0,0/6/0,985.9,976.7,,22.0,,,4.0,60.0,,,NE,T,T,0,7.0
-1993-04-14,0.0,-1.5,,-0.9,0/6/0,1002.2,985.9,,22.0,,,7.0,200.0,,,SW,0.5,T,0,10.0
-1993-04-15,-1.3,-2.1,,-0.8,0/6/0,1006.8,1002.2,,22.0,,,6.0,220.0,,,SW,1.6,2,0,10.0
-1993-04-16,0.8,-1.6,,-0.5,0/6/0,1011.8,1002.2,,14.0,,,6.0,330.0,,,NW,8.9,2,5,7.0
-1993-04-17,-0.5,-1.3,,1.0,0/6/0,1008.8,1005.5,,22.0,,,12.0,220.0,,,SW,9.0,4,15,8.0
-1993-04-18,-0.9,-2.0,,-0.9,0/6/0,1005.5,988.2,,19.0,,,7.0,220.0,,,SW,0.1,T,13,6.0
-1993-04-19,-0.9,-2.7,,-1.0,0/6/0,988.2,972.9,,28.0,,,8.0,230.0,,,SW,7.2,3,26,8.0
-1993-04-20,-2.2,-4.1,,-0.9,0/5/0,993.8,977.2,,29.0,,,13.0,200.0,,,SW,0.2,T,24,10.0
-1993-04-21,0.0,-3.7,,-1.2,0/5/0,997.5,988.5,,30.0,,,9.0,340.0,,,SW,4.1,4,24,10.0
-1993-04-22,0.0,-2.5,,-1.4,0/6/0,988.5,972.8,,28.0,,,10.0,270.0,,,NW,15.7,17,48,10.0
-1993-04-23,1.0,-5.5,,-1.2,0/3/0,987.0,976.3,,40.0,,,13.0,20.0,,,NE,5.2,T,45,10.0
-1993-04-24,0.9,-2.1,,-1.2,0/3/0,976.3,971.4,,30.0,,,12.0,360.0,,,NW,7.4,10,55,9.0
-1993-04-25,-1.0,-4.4,,-1.2,0/3/0,971.4,968.3,,29.0,,,7.0,210.0,,,NW,3.6,3,55,10.0
-1993-04-26,-2.9,-6.0,,-1.2,0/4/0,970.3,968.3,,22.0,,,6.0,220.0,,,NE,0.0,0,55,8.0
-1993-04-27,-3.6,-6.7,,-1.2,0/4/0,979.8,970.3,,28.0,,,7.0,250.0,,,NE,0.3,T,52,9.0
-1993-04-28,-3.4,-8.5,,-1.2,0/4/0,983.9,970.5,,51.0,,,10.0,200.0,,,NE,0.9,T,49,7.0
-1993-04-29,1.0,-3.5,,-0.8,0/3/0,982.8,972.8,,40.0,,,17.0,20.0,,,NE,5.6,1,46,10.0
-1993-04-30,0.6,-1.0,,-1.2,0/3/0,992.2,968.3,,53.0,,,24.0,240.0,,,NW,3.5,1,45,8.0
-1993-05-01,3.3,-0.6,,-1.2,0/3/0,993.3,979.6,,51.0,,,26.0,20.0,,,N,9.5,T,44,10.0
-1993-05-02,3.5,-2.0,,-0.4,0/2/0,981.3,966.7,,36.0,,,8.0,360.0,,,N,37.0,7,35,10.0
-1993-05-03,0.5,-4.5,,-1.1,0/5/0,986.4,966.3,,24.0,,,3.0,140.0,,,SW,10.7,3,40,10.0
-1993-05-04,-3.6,-6.3,,-0.8,0/6/0,990.4,986.2,,19.0,,,6.0,30.0,,,NE,0.0,0,38,7.0
-1993-05-05,-4.2,-7.2,,-1.2,0/6/0,989.1,977.5,,34.0,,,9.0,70.0,,,NE,2.3,6,43,9.0
-1993-05-06,-2.9,-6.7,,-1.2,20190,988.3,977.5,,31.0,,,6.0,60.0,,,NE,6.8,11,48,10.0
-1993-05-07,4.5,-2.9,,-0.2,0/6/0,988.2,983.9,,37.0,,,8.0,70.0,,,NE,0.2,T,46,9.0
-1993-05-08,3.9,-0.6,,-0.3,0/6/0,988.1,984.5,,29.0,,,4.0,60.0,,,NE,9.4,9,46,9.0
-1993-05-09,-0.1,-2.9,,-1.2,0/6/0,986.8,976.4,,45.0,,,14.0,240.0,,,SW,3.2,2,55,10.0
-1993-05-10,-2.2,-10.0,,-1.2,0/6/0,990.1,977.8,,49.0,,,22.0,230.0,,,SW,0.5,T,42,9.0
-1993-05-11,-6.2,-9.0,,-1.2,0/6/0,994.6,990.1,,28.0,,,6.0,200.0,,,SW,0.0,0,40,8.0
-1993-05-12,-4.9,-11.0,,-1.2,0/6/0,1011.7,994.6,,14.0,,,5.0,80.0,,,NE,0.0,0,40,1.0
-1993-05-13,-3.3,-6.8,,-1.2,0/6/0,1016.1,1011.7,,28.0,,,7.0,50.0,,,NE,0.0,0,40,9.0
-1993-05-14,-2.5,-7.5,,-1.0,0/6/0,1015.4,998.9,,25.0,,,5.0,120.0,,,NE,0.0,0,40,8.0
-1993-05-15,4.1,-2.5,,-0.4,0/6/0,998.9,989.4,,42.0,,,12.0,20.0,,,SE,0.3,T,39,10.0
-1993-05-16,4.1,0.7,,-0.4,0/6/0,992.0,986.6,,41.0,,,11.0,20.0,,,NE,2.9,0,39,8.0
-1993-05-17,3.5,0.0,,-0.4,0/6/0,987.0,970.2,,72.0,,,37.0,20.0,,,NE,12.3,T,31,8.0
-1993-05-18,1.9,0.3,,-0.4,0/6/0,979.5,964.9,,57.0,,,26.0,360.0,,,N,15.0,4,31,10.0
-1993-05-19,1.6,0.5,,-0.8,0/0/0,978.1,968.4,,61.0,,,36.0,10.0,,,N,16.7,T,29,10.0
-1993-05-20,2.2,0.6,,-0.4,0/0/0,972.1,962.0,,49.0,,,26.0,10.0,,,N,4.8,1,29,10.0
-1993-05-21,1.4,-2.4,,-0.4,0/1/0,979.2,961.9,,34.0,,,11.0,270.0,,,W,4.1,T,33,7.0
-1993-05-22,-2.0,-4.9,,-0.2,0/1/0,982.2,979.3,,16.0,,,6.0,100.0,,,NE,0.0,0,33,5.0
-1993-05-23,-2.2,-4.2,,-0.3,0/1/0,992.0,979.5,,23.0,,,7.0,230.0,,,SW,0.0,0,33,4.0
-1993-05-24,-1.2,-3.6,,-1.0,0/1/0,1003.4,992.0,,18.0,,,8.0,230.0,,,SW,0.3,T,33,10.0
-1993-05-25,0.4,-2.8,,-0.8,0/1/0,1003.8,984.5,,24.0,,,9.0,350.0,,,N,3.6,2,34,10.0
-1993-05-26,-1.1,-5.4,,-0.8,0/1/0,986.4,981.3,,39.0,,,11.0,250.0,,,SW,0.9,T,37,10.0
-1993-05-27,1.0,-5.4,,-0.8,0/1/0,982.3,969.7,,38.0,,,9.0,190.0,,,SE,8.6,8,42,10.0
-1993-05-28,-3.2,-4.1,,-1.0,0/1/0,979.8,970.8,,44.0,,,14.0,20.0,,,NE,1.0,1,44,10.0
-1993-05-29,-3.2,-6.4,,-1.0,0/1/0,977.1,972.5,,36.0,,,16.0,300.0,,,NW,0.9,T,49,8.0
-1993-05-30,-4.0,-10.4,,-1.6,0/1/0,991.2,977.2,,30.0,,,10.0,240.0,,,NE,1.0,1,47,7.0
-1993-05-31,-2.0,-7.5,,-1.0,0/1/0,991.4,979.1,,70.0,,,19.0,360.0,,,NW,6.8,1,44,7.0
-1993-06-01,-3.0,-10.7,,-1.6,0/1/0,988.3,978.8,,36.0,,,11.0,230.0,,,SW,T,T,44,7.0
-1993-06-02,-5.5,-10.6,,-1.0,0/1/0,987.1,977.0,,45.0,,,22.0,30.0,,,NE,0.0,0,44,10.0
-1993-06-03,-8.5,-12.7,,-1.2,0/1/0,983.5,980.3,,41.0,,,18.0,100.0,,,E,0.0,0,44,1.0
-1993-06-04,-7.6,-12.8,,-1.0,0/1/0,984.4,980.4,,22.0,,,7.0,100.0,,,NE,0.2,T,43,4.0
-1993-06-05,-6.0,-10.4,,-0.8,0/1/0,989.5,980.4,,15.0,,,12.0,190.0,,,SW,1.3,T,44,10.0
-1993-06-06,-7.8,-9.5,,-1.5,0/1/0,1004.1,989.5,,25.0,,,10.0,220.0,,,SW,0.0,0,43,8.0
-1993-06-07,-0.9,-8.4,,-2.0,0/1/0,1008.0,1004.0,,32.0,,,8.0,350.0,,,NW,4.4,2,43,10.0
-1993-06-08,-1.5,-5.0,,-1.2,20190,1020.4,1005.0,,16.0,,,4.0,270.0,,,SW,2.8,3,48,10.0
-1993-06-09,0.0,-4.7,,-1.2,20190,1021.0,1016.4,,15.0,,,9.0,20.0,,,N,0.5,T,48,9.0
-1993-06-10,-0.9,-5.0,,-1.2,0/1/0,1016.4,1009.8,,18.0,,,4.0,120.0,,,NE,3.0,2,48,10.0
-1993-06-11,1.0,-3.1,,-1.4,0/1/1,1010.9,1005.0,,14.0,,,2.0,360.0,,,NE,0.4,T,49,8.0
-1993-06-12,-1.3,-3.4,,-1.2,0/1/0,1005.0,995.4,,8.0,,,2.0,60.0,,,SE,0.1,T,49,8.0
-1993-06-13,1.8,-2.4,,-1.0,0/1/0,995.4,986.6,,39.0,,,7.0,360.0,,,NE,4.7,3,50,9.0
-1993-06-14,0.8,-1.7,,-1.0,0/1/0,991.4,978.4,,46.0,,,23.0,30.0,,,NE,1.5,1,50,10.0
-1993-06-15,1.8,-2.9,,-1.0,0/1/0,978.4,963.0,,55.0,,,24.0,40.0,,,NE,3.5,3,65,8.0
-1993-06-16,-1.5,-4.5,,-1.2,0/1/0,995.7,971.4,,33.0,,,14.0,230.0,,,SW,1.7,1,62,10.0
-1993-06-17,-3.1,-5.3,,-1.0,0/1/0,995.9,990.1,,24.0,,,8.0,220.0,,,SW,0.5,1,60,7.0
-1993-06-18,-1.8,-5.3,,-1.4,0/1/0,994.5,987.7,,18.0,,,7.0,270.0,,,SW,2.2,4,59,10.0
-1993-06-19,-1.8,-5.6,,-1.0,0/1/0,993.8,987.8,,13.0,,,4.0,200.0,,,NW,1.2,1,64,10.0
-1993-06-20,-1.6,-3.6,,-1.2,32692,991.9,987.5,,18.0,,,8.0,220.0,,,NW,2.1,1,64,10.0
-1993-06-21,-0.6,-2.9,,-1.2,306/3,987.5,974.9,,25.0,,,11.0,340.0,,,NW,23.7,27,96,10.0
-1993-06-22,-2.9,-7.2,,-1.3,30692,986.5,973.5,,22.0,,,8.0,220.0,,,SW,2.9,2,85,10.0
-1993-06-23,-1.4,-4.1,,-1.4,30692,975.4,969.8,,45.0,,,12.0,300.0,,,NW,7.0,5,89,10.0
-1993-06-24,-2.5,-15.3,,-1.5,30692,987.7,972.9,,37.0,,,10.0,220.0,,,SW,T,T,85,4.0
-1993-06-25,-4.5,-12.2,,-1.2,0/6/0,988.1,979.2,,22.0,,,6.0,120.0,,,NE,18.3,10,85,5.0
-1993-06-26,0.0,-4.5,,-1.4,0/6/0,982.3,976.5,,40.0,,,21.0,10.0,,,SE,43.3,29,114,10.0
-1993-06-27,-0.1,-7.1,,-1.2,0/6/0,994.5,982.4,,41.0,,,10.0,360.0,,,SW,3.7,3,87,10.0
-1993-06-28,-6.0,-11.0,,-6.0,207/0,994.5,978.8,,35.0,,,7.0,260.0,,,W,2.5,1,90,10.0
-1993-06-29,-8.3,-12.5,,-1.4,30693,999.1,979.4,,32.0,,,12.0,120.0,,,SW,0.4,T,87,6.0
-1993-06-30,-8.3,-12.0,,-1.4,30692,1002.8,991.1,,8.0,,,2.0,50.0,,,NE,0.2,T,87,10.0
-1993-07-01,-8.4,-10.2,,-1.2,0/6/0,1004.7,999.9,,9.0,,,3.0,170.0,,,SW,T,T,86,10.0
-1993-07-02,-8.3,-10.5,,-6.0,207/0,1019.0,999.1,,11.0,,,4.0,170.0,,,NE,0.1,T,86,5.0
-1993-07-03,-8.5,-12.5,,-1.4,30693,1018.9,1015.4,,8.0,,,3.0,80.0,,,NE,0.9,1,86,9.0
-1993-07-04,-9.0,-13.4,,-1.3,40893,1015.5,1012.3,,5.0,,,1.0,70.0,,,NE,0.8,3,86,3.0
-1993-07-05,-9.5,-12.9,,-1.3,40893,1012.3,1006.1,,5.0,,,1.0,70.0,,,NE,0.7,1,86,6.0
-1993-07-06,-10.1,-12.3,,-1.3,40793,1006.1,995.8,,9.0,,,2.0,130.0,,,NE,0.6,T,86,7.0
-1993-07-07,0.4,-12.0,,-1.2,40792,995.8,989.0,,47.0,,,21.0,60.0,,,NE,1.5,T,87,10.0
-1993-07-08,1.2,-1.0,,-1.2,20890,990.4,988.9,,41.0,,,26.0,70.0,,,NE,0.4,T,74,10.0
-1993-07-09,2.9,-4.0,,-1.2,0/6/0,990.9,989.4,,31.0,,,6.0,70.0,,,NE,0.0,0,74,6.0
-1993-07-10,1.3,-1.2,,-1.0,0/1/0,994.2,989.7,,46.0,,,13.0,350.0,,,NE,T,T,73,9.0
-1993-07-11,3.4,-1.2,,-1.0,0/1/0,994.2,985.5,,40.0,,,14.0,20.0,,,NE,T,T,72,9.0
-1993-07-12,1.0,-1.2,,-1.1,0/1/0,985.5,948.8,,70.0,,,23.0,30.0,,,NE,2.9,T,71,10.0
-1993-07-13,-0.8,-2.0,,-1.2,0/1/0,981.4,949.2,,60.0,,,23.0,280.0,,,W,3.2,T,69,10.0
-1993-07-14,0.1,-3.0,,-1.0,0/1/0,982.7,967.4,,39.0,,,22.0,10.0,,,N,1.3,1,70,10.0
-1993-07-15,-2.1,-4.3,,-1.0,0/1/0,976.0,966.0,,30.0,,,13.0,230.0,,,SW,2.7,3,72,10.0
-1993-07-16,-2.5,-4.1,,-1.2,10691,982.0,975.1,,37.0,,,11.0,20.0,,,NE,0.9,1,72,9.0
-1993-07-17,-0.7,-7.6,,-1.2,10691,989.8,982.0,,20.0,,,9.0,360.0,,,N,0.0,0,72,5.0
-1993-07-18,-5.2,-9.3,,-1.3,10691,994.9,985.8,,12.0,,,5.0,50.0,,,NW,0.4,1,71,9.0
-1993-07-19,-7.9,-11.6,,-1.2,30693,1001.9,994.9,,13.0,,,4.0,230.0,,,NE,0.6,T,71,6.0
-1993-07-20,-8.1,-13.0,,-1.2,40693,1001.6,1000.5,,12.0,,,4.0,210.0,,,NE,0.3,T,72,3.0
-1993-07-21,-3.4,-12.5,,-1.2,40692,1001.8,986.5,,24.0,,,5.0,60.0,,,NE,0.0,0,70,4.0
-1993-07-22,1.4,-3.0,,-1.2,40692,986.0,974.0,,40.0,,,15.0,50.0,,,NE,1.0,1,70,8.0
-1993-07-23,-2.1,-6.4,,-1.2,40692,997.7,986.0,,16.0,,,7.0,230.0,,,NW,3.0,4,79,8.0
-1993-07-24,1.8,-2.5,,-1.1,20601,997.5,979.5,,72.0,,,36.0,10.0,,,N,20.0,,62,10.0
-1993-07-25,1.5,-0.1,,-1.1,0/1/0,981.2,974.1,,51.0,,,22.0,360.0,,,N,3.6,T,58,8.0
-1993-07-26,1.0,-5.0,,-1.0,0/1/0,975.0,964.9,,51.0,,,19.0,10.0,,,NW,1.1,T,59,10.0
-1993-07-27,-2.2,-5.2,,-1.0,0/1/0,978.9,973.3,,35.0,,,13.0,350.0,,,N,2.0,T,59,10.0
-1993-07-28,-1.6,-4.4,,-1.2,20693,995.9,975.5,,55.0,,,18.0,240.0,,,W,0.2,T,58,10.0
-1993-07-29,0.8,-4.5,,-1.0,0/1/0,996.5,973.2,,43.0,,,14.0,360.0,,,N,2.8,1,58,10.0
-1993-07-30,1.8,-1.9,,-1.0,0/1/0,989.8,973.5,,61.0,,,20.0,280.0,,,N,1.2,T,58,8.0
-1993-07-31,2.5,-3.1,,-1.0,0/1/0,997.4,978.1,,70.0,,,31.0,20.0,,,N,13.5,,58,10.0
-1993-08-01,2.4,-2.0,,-1.0,0/1/0,984.5,976.6,,35.0,,,13.0,360.0,,,NW,20.4,2,54,10.0
-1993-08-02,1.1,-1.0,,-1.0,0/1/0,993.9,978.3,,63.0,,,26.0,340.0,,,N,2.9,T,54,10.0
-1993-08-03,1.1,-0.5,,-1.0,0/1/0,994.0,989.6,,36.0,,,18.0,350.0,,,N,1.4,T,53,9.0
-1993-08-04,1.7,-2.5,,-1.0,0/1/0,989.6,980.7,,38.0,,,10.0,20.0,,,N,T,T,53,9.0
-1993-08-05,2.0,-1.2,,-1.0,0/1/0,981.2,975.8,,41.0,,,21.0,20.0,,,NE,T,T,53,8.0
-1993-08-06,-0.9,-4.7,,-1.1,0/1/0,983.6,970.9,,54.0,,,17.0,40.0,,,NE,2.5,3,61,8.0
-1993-08-07,-1.8,-3.5,,-1.1,0/1/0,974.7,968.2,,56.0,,,18.0,40.0,,,N,0.9,T,53,9.0
-1993-08-08,-2.6,-5.4,,-1.0,0/1/0,996.4,974.7,,36.0,,,13.0,20.0,,,N,1.2,2,60,9.0
-1993-08-09,-5.6,-9.5,,-1.2,30693,1006.5,996.4,,27.0,,,7.0,190.0,,,SW,0.0,0,60,10.0
-1993-08-10,-6.3,-10.0,,-1.1,30692,1006.7,1004.1,,8.0,,,3.0,90.0,,,NE,0.0,0,60,0.0
-1993-08-11,-4.2,-9.1,,-1.1,30692,1007.5,1006.8,,14.0,,,5.0,70.0,,,NE,0.0,0,59,0.0
-1993-08-12,0.6,-7.1,,-1.2,20690,1006.8,989.8,,48.0,,,9.0,20.0,,,NE,T,T,59,3.0
-1993-08-13,2.0,-1.7,,-1.0,0/1/0,989.8,982.9,,43.0,,,23.0,20.0,,,N,2.5,T,53,10.0
-1993-08-14,1.6,-1.1,,-1.0,0/1/0,987.9,971.5,,45.0,,,24.0,30.0,,,NE,1.4,T,54,10.0
-1993-08-15,-0.4,-5.3,,-1.1,0/1/0,982.8,969.9,,40.0,,,8.0,20.0,,,N,0.9,2,55,9.0
-1993-08-16,-1.3,-4.0,,-1.1,0/1/1,989.3,979.9,,38.0,,,6.0,140.0,,,NW,2.4,3,58,10.0
-1993-08-17,1.5,-5.0,,-1.1,0/1/0,980.0,961.8,,39.0,,,7.0,120.0,,,SE,10.6,15,63,10.0
-1993-08-18,-3.0,-6.5,,-1.2,0/1/0,989.5,964.9,,35.0,,,15.0,220.0,,,SW,0.8,T,94,8.0
-1993-08-19,-3.2,-8.0,,-1.1,20695,994.5,989.5,,23.0,,,8.0,200.0,,,SW,2.0,4,92,10.0
-1993-08-20,2.0,-3.5,,-1.1,20691,990.0,971.8,,46.0,,,16.0,170.0,,,SE,1.2,1,85,10.0
-1993-08-21,-0.3,-2.4,,-1.1,20691,987.8,971.8,,12.0,,,3.0,360.0,,,NW,0.1,T,82,10.0
-1993-08-22,-2.2,-9.1,,-2.0,30793,996.2,987.8,,25.0,,,8.0,250.0,,,SW,2.0,1,82,10.0
-1993-08-23,-2.3,-8.4,,,31692,995.6,986.6,,25.0,,,8.0,340.0,,,SW,0.2,T,82,10.0
-1993-08-24,-6.3,-12.3,,-1.4,42693,992.1,986.7,,16.0,,,4.0,210.0,,,NE,0.0,0,81,5.0
-1993-08-25,-1.4,-8.8,,-1.4,51693,986.7,962.3,,46.0,,,21.0,10.0,,,N,0.3,1,80,10.0
-1993-08-26,-1.9,-11.0,,-1.4,21691,962.8,957.7,,50.0,,,12.0,10.0,,,NW,2.5,4,72,7.0
-1993-08-27,-9.5,-12.2,,-1.8,21692,979.2,961.9,,42.0,,,12.0,110.0,,,SW,0.7,T,72,6.0
-1993-08-28,-9.5,-15.9,,-1.8,51693,992.7,979.2,,18.0,,,3.0,180.0,,,NE,0.0,0,70,4.0
-1993-08-29,-10.2,-15.6,,-1.2,51693,995.9,992.7,,12.0,,,3.0,230.0,,,SW,0.1,T,70,7.0
-1993-08-30,-11.0,-17.6,,,81795,1002.1,995.2,,8.0,,,3.0,110.0,,,NE,0.3,T,70,3.0
-1993-08-31,-0.7,-15.3,,-1.4,81794,1000.0,980.2,,44.0,,,6.0,10.0,,,NE,0.1,T,69,10.0
-1993-09-01,-1.0,-2.9,,-1.2,51693,984.7,980.0,,43.0,,,17.0,10.0,,,NW,2.1,5,79,10.0
-1993-09-02,-1.5,-6.7,,,81795,1009.7,982.9,,34.0,,,12.0,200.0,,,SW,1.9,21,76,10.0
-1993-09-03,-1.1,-7.3,,-1.4,81794,1015.2,1009.9,,11.0,,,2.0,270.0,,,NW,T,T,75,10.0
-1993-09-04,-0.4,-9.0,,-1.8,41691,1015.8,1005.2,,14.0,,,2.0,90.0,,,NE,0.5,1,74,3.0
-1993-09-05,2.0,-6.0,,-1.0,19/11,1005.2,978.8,,57.0,,,22.0,20.0,,,NE,1.6,T,72,10.0
-1993-09-06,2.0,-1.2,,-2.0,21690,979.2,964.3,,69.0,,,30.0,360.0,,,N,1.2,T,71,10.0
-1993-09-07,-1.3,-4.5,,-1.4,11691,986.8,969.6,,38.0,,,17.0,320.0,,,SW,0.8,T,74,9.0
-1993-09-08,-2.0,-7.4,,-1.4,20690,989.3,972.7,,34.0,,,9.0,90.0,,,NE,T,T,74,9.0
-1993-09-09,0.8,-3.2,,-1.4,0/6/0,977.0,965.0,,38.0,,,7.0,150.0,,,E,3.4,4,77,8.0
-1993-09-10,0.2,-5.1,,-1.4,20690,987.9,967.8,,56.0,,,12.0,40.0,,,NE,0.1,T,76,9.0
-1993-09-11,0.5,-2.6,,-1.4,20690,978.7,959.4,,55.0,,,18.0,50.0,,,NW,1.6,1,76,10.0
-1993-09-12,2.3,-1.1,,-1.0,10290,978.7,960.9,,36.0,,,16.0,360.0,,,N,0.2,T,74,10.0
-1993-09-13,-0.2,-2.8,,-1.2,0/6/0,960.9,955.7,,8.0,,,2.0,320.0,,,NW,5.3,6,80,10.0
-1993-09-14,-1.2,-4.5,,-1.0,0/6/0,978.6,958.9,,30.0,,,6.0,100.0,,,E,1.0,T,80,10.0
-1993-09-15,-3.2,-8.7,,-1.8,0/6/0,1000.6,978.6,,28.0,,,11.0,200.0,,,SW,T,T,79,10.0
-1993-09-16,-6.1,-11.5,,-1.2,20693,1005.2,996.4,,31.0,,,9.0,230.0,,,E,3.6,2,73,10.0
-1993-09-17,-3.0,-8.4,,-1.2,0/6/0,998.6,992.0,,22.0,,,9.0,100.0,,,NE,2.7,1,75,10.0
-1993-09-18,-1.2,-7.0,,-1.0,0/6/0,992.0,986.0,,26.0,,,9.0,210.0,,,SE,20.1,18,92,10.0
-1993-09-19,-5.6,-9.7,,-1.4,20893,1001.9,990.1,,23.0,,,6.0,230.0,,,SW,0.1,T,91,9.0
-1993-09-20,-0.5,-9.2,,-1.6,40693,999.7,977.5,,34.0,,,7.0,240.0,,,SE,3.2,1,92,10.0
-1993-09-21,-1.0,-2.8,,-1.6,40692,984.9,979.9,,31.0,,,12.0,250.0,,,W,0.1,T,85,10.0
-1993-09-22,2.1,-3.7,,-1.2,20690,985.3,965.5,,55.0,,,22.0,10.0,,,N,0.8,T,75,10.0
-1993-09-23,-1.8,-9.9,,-1.4,20690,984.7,965.4,,43.0,,,23.0,330.0,,,SW,0.1,T,76,8.0
-1993-09-24,-6.0,-11.5,,-1.4,30693,996.3,984.7,,31.0,,,8.0,220.0,,,SW,0.2,T,75,10.0
-1993-09-25,-0.5,-7.2,,-1.4,30692,987.5,975.6,,15.0,,,4.0,150.0,,,NE,0.3,1,75,10.0
-1993-09-26,0.0,-11.0,,-1.4,20///,981.1,962.3,,52.0,,,17.0,10.0,,,N,0.5,1,75,10.0
-1993-09-27,-9.0,-16.9,,-1.6,50693,975.2,956.9,,63.0,,,17.0,250.0,,,SW,0.5,T,75,10.0
-1993-09-28,-10.3,-16.9,,,50693,981.1,962.8,,29.0,,,12.0,210.0,,,SW,0.0,0,74,8.0
-1993-09-29,-4.8,-14.0,,,50693,981.5,976.1,,10.0,,,2.0,70.0,,,N,T,T,75,8.0
-1993-09-30,-2.7,-11.3,,,85799,980.2,970.9,,27.0,,,6.0,290.0,,,W,2.9,6,79,10.0
-1993-10-01,-7.0,-15.4,,-1.4,20///,993.5,973.0,,33.0,,,17.0,210.0,,,SW,0.1,T,78,10.0
-1993-10-02,-5.9,-13.8,,-1.6,50693,1001.9,993.5,,23.0,,,5.0,220.0,,,SW,T,T,77,10.0
-1993-10-03,0.0,-8.6,,-1.2,85799,997.5,987.8,,38.0,,,12.0,360.0,,,NW,2.2,3,78,10.0
-1993-10-04,0.5,-8.0,,-1.4,85799,993.0,979.4,,24.0,,,7.0,170.0,,,SE,2.2,1,81,10.0
-1993-10-05,3.0,-0.5,,-1.2,85799,987.6,978.5,,38.0,,,11.0,360.0,,,N,4.6,3,81,10.0
-1993-10-06,5.0,-0.5,,-1.2,85799,987.6,973.5,,21.0,,,3.0,140.0,,,SE,8.9,T,80,10.0
-1993-10-07,2.4,-0.7,,-1.2,55794,973.5,956.0,,24.0,,,5.0,150.0,,,SE,6.3,2,81,10.0
-1993-10-08,-0.5,-4.0,,-1.6,55794,968.5,956.0,,23.0,,,10.0,270.0,,,NW,10.0,12,104,10.0
-1993-10-09,-1.5,-8.5,,-1.4,52794,968.2,961.9,,9.0,,,2.0,190.0,,,SW,0.5,1,100,10.0
-1993-10-10,0.8,-13.8,,-1.0,52794,963.0,955.6,,28.0,,,5.0,10.0,,,NE,1.8,1,101,8.0
-1993-10-11,1.5,-2.8,,-1.0,42791,963.0,956.5,,44.0,,,17.0,20.0,,,N,0.2,T,94,10.0
-1993-10-12,0.0,-2.5,,-1.2,31791,964.8,955.1,,32.0,,,16.0,10.0,,,N,2.1,2,95,10.0
-1993-10-13,-0.3,-4.7,,-1.2,31791,982.9,964.8,,22.0,,,7.0,10.0,,,NW,0.8,1,94,10.0
-1993-10-14,3.7,-7.2,,-1.0,23791,989.1,982.9,,17.0,,,3.0,260.0,,,NE,0.0,0,94,0.0
-1993-10-15,0.4,-7.3,,-1.2,23791,995.3,989.1,,8.0,,,3.0,70.0,,,NW,0.0,0,91,0.0
-1993-10-16,-4.5,-11.5,,-1.1,33693,996.9,995.1,,19.0,,,8.0,220.0,,,SW,0.0,0,91,10.0
-1993-10-17,-7.2,-11.1,,-1.5,53293,999.8,994.9,,21.0,,,8.0,220.0,,,SW,T,T,91,10.0
-1993-10-18,-2.0,-9.6,,-1.4,53793,999.8,991.9,,46.0,,,13.0,220.0,,,SW,0.3,T,91,10.0
-1993-10-19,-0.4,-5.5,,-1.4,53793,1008.5,998.9,,24.0,,,5.0,220.0,,,NW,0.1,T,90,8.0
-1993-10-20,0.7,-1.7,,-1.2,53793,1006.5,995.1,,33.0,,,12.0,300.0,,,NW,15.7,18,113,10.0
-1993-10-21,0.0,-2.6,,-1.4,53791,1008.0,999.9,,17.0,,,3.0,250.0,,,SW,1.0,1,110,10.0
-1993-10-22,0.8,-3.7,,-1.2,53791,1004.5,987.9,,50.0,,,16.0,350.0,,,NW,12.2,10,116,9.0
-1993-10-23,0.7,-5.1,,-1.0,53791,1005.0,997.2,,22.0,,,7.0,240.0,,,NW,T,T,115,10.0
-1993-10-24,-0.5,-2.4,,-1.0,53791,1001.3,995.5,,29.0,,,11.0,210.0,,,SW,4.2,6,120,10.0
-1993-10-25,0.5,-3.5,,-1.0,53791,1000.8,996.7,,24.0,,,9.0,230.0,,,SW,1.9,T,118,10.0
-1993-10-26,4.2,-3.4,,-1.0,53791,1000.2,997.6,,21.0,,,5.0,260.0,,,W,0.4,0,118,8.0
-1993-10-27,1.6,-1.5,,-1.0,43791,998.8,983.2,,53.0,,,17.0,350.0,,,NW,2.0,T,115,10.0
-1993-10-28,0.5,-2.5,,-1.0,43791,989.8,962.1,,47.0,,,20.0,350.0,,,N,6.0,3,114,10.0
-1993-10-29,-2.2,-8.5,,-1.0,43793,974.9,962.9,,45.0,,,15.0,240.0,,,SW,0.1,T,111,9.0
-1993-10-30,-5.7,-11.0,,-1.6,43793,979.9,962.5,,36.0,,,16.0,240.0,,,SW,1.1,2,114,10.0
-1993-10-31,-0.7,-11.7,,-1.0,43793,979.6,968.8,,20.0,,,4.0,250.0,,,SE,T,T,111,10.0
-1993-11-01,2.2,-7.2,,-1.0,43793,977.7,970.4,,24.0,,,6.0,90.0,,,E,0.0,0,107,8.0
-1993-11-02,0.0,-5.1,,-1.4,43791,990.1,977.7,,33.0,,,11.0,100.0,,,E,0.0,0,105,10.0
-1993-11-03,3.7,-7.5,,-1.2,43791,997.3,990.2,,14.0,,,6.0,10.0,,,N,0.0,0,105,2.0
-1993-11-04,3.0,-6.4,,-1.0,43791,998.9,996.9,,38.0,,,6.0,10.0,,,NE,0.0,0,105,6.0
-1993-11-05,4.0,-2.0,,-1.0,43791,998.0,991.8,,50.0,,,14.0,20.0,,,NE,2.6,0,102,10.0
-1993-11-06,4.0,1.0,,-0.8,11690,992.2,977.7,,50.0,,,23.0,20.0,,,N,1.2,0,93,10.0
-1993-11-07,3.9,0.5,,-0.9,0/690,978.8,968.5,,56.0,,,28.0,30.0,,,NE,52.3,T,86,10.0
-1993-11-08,3.6,0.0,,-0.8,0/6/0,977.3,969.0,,40.0,,,21.0,20.0,,,N,0.0,0,75,6.0
-1993-11-09,2.6,-0.9,,-0.8,0/6/0,973.9,956.5,,47.0,,,20.0,20.0,,,N,2.3,4,80,10.0
-1993-11-10,1.9,-0.9,,-1.0,0/6/0,980.1,967.1,,58.0,,,23.0,20.0,,,N,1.5,T,79,10.0
-1993-11-11,3.5,-1.1,,-1.0,0/6/0,981.7,971.7,,78.0,,,33.0,360.0,,,N,6.4,0,76,9.0
-1993-11-12,1.8,-1.4,,-1.0,0/6/0,975.5,968.9,,64.0,,,34.0,360.0,,,N,2.6,1,71,10.0
-1993-11-13,6.1,-1.8,,0.0,0/6/0,977.1,972.1,,26.0,,,7.0,10.0,,,NE,0.0,0,71,7.0
-1993-11-14,-0.4,-2.0,,-1.5,0/6/0,979.9,972.2,,33.0,,,15.0,40.0,,,NW,0.4,T,70,10.0
-1993-11-15,4.0,-2.0,,-0.5,0/6/0,981.9,969.9,,31.0,,,6.0,90.0,,,E,0.3,T,70,8.0
-1993-11-16,2.8,-2.2,,-0.5,0/6/0,987.1,969.9,,22.0,,,5.0,100.0,,,NW,0.0,0,69,4.0
-1993-11-17,3.5,-3.5,,-1.0,6/6/0,987.4,965.8,,59.0,,,17.0,10.0,,,NE,0.2,T,66,10.0
-1993-11-18,4.0,1.5,,0.6,0/6/0,976.1,971.0,,41.0,,,26.0,10.0,,,NE,9.0,0,59,10.0
-1993-11-19,5.5,1.5,,-0.5,0/6/0,974.1,969.2,,46.0,,,21.0,20.0,,,NE,4.7,0,46,8.0
-1993-11-20,4.5,0.5,,-0.5,0/6/0,977.0,968.0,,38.0,,,5.0,20.0,,,SE,0.3,T,41,9.0
-1993-11-21,3.0,-1.0,,0.0,0/6/0,986.1,977.0,,8.0,,,2.0,320.0,,,NW,1.1,0,41,9.0
-1993-11-22,2.5,-2.5,,0.2,0/6/0,987.0,986.0,,10.0,,,3.0,110.0,,,SW,0.0,0,41,9.0
-1993-11-23,3.8,-2.0,,0.0,0/6/0,989.2,984.0,,34.0,,,9.0,20.0,,,NE,0.0,0,40,9.0
-1993-11-24,4.5,0.7,,0.0,0/6/0,984.2,976.5,,52.0,,,23.0,20.0,,,NE,0.3,0,38,10.0
-1993-11-25,4.0,0.0,,-0.5,0/6/0,979.6,961.2,,64.0,,,36.0,10.0,,,N,11.3,T,22,10.0
-1993-11-26,2.5,-0.5,,0.5,0/6/0,985.1,971.5,,46.0,,,24.0,350.0,,,NW,1.8,1,23,10.0
-1993-11-27,2.6,0.2,,0.0,0/6/0,990.2,984.5,,40.0,,,23.0,350.0,,,NW,4.0,T,18,10.0
-1993-11-28,2.5,0.0,,0.0,0/6/0,992.1,987.1,,52.0,,,26.0,360.0,,,,7.5,0,0,10.0
-1993-11-29,3.2,-1.5,,0.5,0/6/0,996.3,992.1,,24.0,,,15.0,,,,,0.2,T,0,6.0
-1993-11-30,2.6,-2.5,,0.0,0/6/0,993.5,977.2,,28.0,,,9.0,,,,,0.1,T,0,10.0
-1993-12-01,2.5,-1.3,,0.0,0/6/0,977.1,968.0,,42.0,,,22.0,70.0,,,NE,0.3,1,0,10.0
-1993-12-02,1.9,-2.7,,0.5,0/6/0,974.1,966.2,,22.0,,,11.0,360.0,,,NW,2.9,T,0,9.0
-1993-12-03,0.5,-1.7,,0.0,0/6/0,982.1,974.1,,28.0,,,11.0,10.0,,,SW,0.4,T,0,9.0
-1993-12-04,0.0,-2.8,,0.0,0/6/0,982.0,979.3,,10.0,,,5.0,250.0,,,SW,T,T,0,10.0
-1993-12-05,3.5,-3.5,,0.5,0/6/0,979.2,970.0,,14.0,,,5.0,360.0,,,NE,0.6,2,0,7.0
-1993-12-06,3.4,-3.5,,0.1,0/6/0,971.1,968.0,,14.0,,,3.0,150.0,,,SW,0.0,0,0,4.0
-1993-12-07,1.9,-2.0,,1.5,0/6/0,976.9,971.3,,18.0,,,7.0,250.0,,,N,T,T,0,8.0
-1993-12-08,1.5,-2.5,,1.3,0/6/0,981.5,976.7,,14.0,,,8.0,240.0,,,SW,T,T,0,7.0
-1993-12-09,2.2,-1.8,,2.0,0/6/0,991.7,981.3,,11.0,,,5.0,210.0,,,SW,0.0,0,0,8.0
-1993-12-10,1.5,-2.0,,1.5,0/6/0,997.3,991.9,,12.0,,,3.0,220.0,,,SW,0.0,0,0,7.0
-1993-12-11,4.4,-4.5,,2.0,0/6/0,997.0,995.0,,9.0,,,3.0,110.0,,,SE,0.0,0,0,3.0
-1993-12-12,3.3,0.0,,0.0,0/6/0,997.9,995.3,,8.0,,,4.0,240.0,,,SW,0.0,0,0,9.0
-1993-12-13,2.0,-0.7,,1.0,0/6/0,997.5,990.5,,10.0,,,4.0,230.0,,,SW,0.6,T,0,9.0
-1993-12-14,4.7,-0.4,,2.0,0/6/0,990.3,980.3,,18.0,,,2.0,140.0,,,SE,0.1,T,0,10.0
-1993-12-15,3.8,0.0,,2.0,0/6/0,982.0,979.6,,21.0,,,4.0,100.0,,,NW,T,T,0,10.0
-1993-12-16,3.3,0.1,,2.0,0/6/0,982.2,978.0,,7.0,,,2.0,130.0,,,SE,0.7,0,0,10.0
-1993-12-17,3.9,-0.4,,1.5,0/6/0,978.1,975.9,,6.0,,,1.0,110.0,,,SE,0.9,1,0,10.0
-1993-12-18,2.4,-0.3,,1.5,0/6/0,986.1,978.7,,20.0,,,8.0,210.0,,,SW,1.7,1,0,9.0
-1993-12-19,3.4,-1.0,,3.0,0/6/0,999.3,986.0,,20.0,,,11.0,220.0,,,SW,0.0,0,0,6.0
-1993-12-20,2.4,-2.0,,1.0,0/6/0,999.9,980.7,,41.0,,,7.0,80.0,,,NE,0.0,0,0,10.0
-1993-12-21,5.5,0.0,,0.1,0/6/0,988.0,981.1,,56.0,,,14.0,20.0,,,NE,2.4,1,0,8.0
-1993-12-22,5.5,0.6,,1.0,0/6/0,989.2,982.1,,39.0,,,12.0,20.0,,,NW,3.7,0,0,10.0
-1993-12-23,4.7,0.8,,0.0,0/6/0,990.3,983.7,,31.0,,,9.0,40.0,,,NW,0.3,0,0,10.0
-1993-12-24,5.0,1.9,,1.0,0/6/0,990.8,984.1,,40.0,,,21.0,20.0,,,NE,1.0,0,0,9.0
-1993-12-25,4.7,1.4,,1.0,0/6/0,988.8,981.5,,26.0,,,12.0,20.0,,,N,0.1,0,0,8.0
-1993-12-26,1.8,-0.7,,2.0,0/6/0,992.0,981.8,,21.0,,,8.0,230.0,,,SW,0.1,0,0,10.0
-1993-12-27,1.7,-0.8,,1.0,0/6/0,993.5,990.2,,19.0,,,9.0,240.0,,,SW,0.0,0,0,9.0
-1993-12-28,3.5,0.2,,1.0,0/6/0,991.1,979.3,,34.0,,,9.0,20.0,,,NE,0.3,T,0,10.0
-1993-12-29,5.2,-0.4,,1.0,0/6/0,979.2,970.3,,29.0,,,7.0,70.0,,,SE,0.0,0,0,10.0
-1993-12-30,6.6,1.0,,1.0,0/6/0,988.0,972.0,,29.0,,,11.0,100.0,,,E,T,T,0,9.0
-1993-12-31,3.4,-0.8,,1.0,0/6/0,996.4,988.0,,14.0,,,5.0,,,,,0.0,0,0,8.0
-1994-01-01,1.6,-0.4,,1.3,0/6/0,998.7,989.2,,23.0,,,9.0,360.0,,,NW,3.8,T,0,10.0
-1994-01-02,2.2,0.0,,1.0,0/6/0,998.0,989.0,,21.0,,,9.0,240.0,,,SW,6.1,5,0,10.0
-1994-01-03,1.8,-0.4,,1.5,0/6/0,999.5,997.2,,20.0,,,8.0,230.0,,,SW,0.0,0,0,10.0
-1994-01-04,2.5,-2.7,,1.5,0/6/0,997.2,987.2,,9.0,,,2.0,280.0,,,NE,5.5,T,0,8.0
-1994-01-05,3.2,-0.1,,0.1,0/6/0,987.3,980.3,,33.0,,,13.0,10.0,,,NW,8.4,T,0,10.0
-1994-01-06,4.5,1.2,,1.0,0/6/0,981.2,979.2,,30.0,,,11.0,10.0,,,NE,9.7,T,0,10.0
-1994-01-07,3.8,0.5,,0.5,0/6/0,990.0,978.7,,23.0,,,8.0,20.0,,,NW,1.7,T,0,9.0
-1994-01-08,3.4,-0.7,,1.5,0/6/0,995.2,989.8,,19.0,,,8.0,230.0,,,SW,0.0,0,0,8.0
-1994-01-09,6.6,0.0,,1.5,0/6/0,989.9,979.2,,8.0,,,2.0,330.0,,,NE,T,T,0,7.0
-1994-01-10,7.4,0.4,,1.0,0/6/0,979.1,970.3,,40.0,,,15.0,20.0,,,NE,0.1,0,0,9.0
-1994-01-11,5.8,0.4,,1.0,0/6/0,979.1,971.5,,32.0,,,9.0,30.0,,,NW,5.1,T,0,10.0
-1994-01-12,5.7,0.3,,2.0,0/6/0,986.8,979.0,,13.0,,,4.0,230.0,,,SW,0.2,0,0,6.0
-1994-01-13,5.5,-0.3,,1.5,0/6/0,986.5,983.0,,8.0,,,2.0,330.0,,,NW,0.9,0,0,9.0
-1994-01-14,3.6,-0.1,,1.5,0/6/0,1000.0,983.2,,10.0,,,2.0,270.0,,,NW,11.9,2,0,10.0
-1994-01-15,3.8,0.2,,1.3,0/6/0,1001.3,996.0,,17.0,,,9.0,220.0,,,SW,0.6,T,0,9.0
-1994-01-16,2.5,0.4,,1.0,0/6/0,996.0,992.4,,21.0,,,13.0,240.0,,,SW,0.4,T,0,10.0
-1994-01-17,3.8,0.4,,1.2,0/6/0,996.0,987.2,,14.0,,,3.0,120.0,,,NW,1.1,0,0,10.0
-1994-01-18,6.4,1.6,,1.2,0/6/0,987.2,976.2,,49.0,,,26.0,20.0,,,NE,1.0,0,0,10.0
-1994-01-19,6.5,1.7,,1.5,0/6/0,976.2,973.1,,15.0,,,2.0,330.0,,,SE,5.9,0,0,9.0
-1994-01-20,5.7,0.4,,1.2,0/6/0,980.6,975.9,,22.0,,,7.0,220.0,,,SW,1.8,0,0,9.0
-1994-01-21,3.5,-0.6,,2.0,0/6/0,980.4,971.2,,20.0,,,3.0,220.0,,,SW,2.3,0,0,9.0
-1994-01-22,6.4,0.4,,1.8,0/6/0,978.1,970.3,,13.0,,,4.0,180.0,,,NW,2.4,T,0,10.0
-1994-01-23,2.6,-0.4,,1.0,0/6/0,984.1,978.0,,20.0,,,11.0,240.0,,,SW,2.2,2,0,9.0
-1994-01-24,4.2,-2.0,,1.0,0/6/0,987.0,984.0,,10.0,,,4.0,210.0,,,SW,0.0,0,0,1.0
-1994-01-25,3.4,-0.4,,1.9,0/6/0,989.5,986.2,,11.0,,,5.0,230.0,,,SW,0.0,0,0,8.0
-1994-01-26,2.6,-1.2,,1.0,0/6/0,986.2,979.8,,13.0,,,1.0,110.0,,,SE,8.2,9,0,10.0
-1994-01-27,5.2,0.1,,1.2,0/6/0,984.9,979.3,,17.0,,,2.0,120.0,,,SE,0.7,0,0,10.0
-1994-01-28,4.5,1.7,,1.8,0/6/0,979.2,975.5,,25.0,,,9.0,90.0,,,E,4.1,0,0,10.0
-1994-01-29,4.8,0.1,,1.9,0/6/0,985.6,975.5,,53.0,,,16.0,80.0,,,NE,3.2,T,0,9.0
-1994-01-30,4.4,-1.1,,1.8,0/6/0,974.9,960.3,,66.0,,,30.0,110.0,,,NE,T,T,0,10.0
-1994-01-31,4.4,1.7,,1.2,0/6/0,969.4,960.2,,50.0,,,25.0,70.0,,,NE,0.0,0,0,10.0
-1994-02-01,6.0,2.0,,1.8,0/6/0,979.2,969.3,,30.0,,,17.0,70.0,,,SE,T,T,0,10.0
-1994-02-02,4.2,0.4,,1.2,0/6/0,984.7,979.1,,20.0,,,4.0,200.0,,,SW,T,T,0,5.0
-1994-02-03,3.9,-0.4,,1.8,0/6/0,994.5,984.8,,17.0,,,11.0,220.0,,,SW,0.0,0,0,4.0
-1994-02-04,2.7,-0.5,,1.8,0/6/0,1003.7,994.8,,22.0,,,9.0,230.0,,,SW,0.0,0,0,9.0
-1994-02-05,2.8,-1.1,,1.8,0/6/0,1003.4,982.1,,40.0,,,17.0,50.0,,,SE,0.9,T,0,10.0
-1994-02-06,5.4,-1.1,,1.7,0/6/0,992.4,984.6,,16.0,,,2.0,290.0,,,SW,0.9,T,0,8.0
-1994-02-07,5.1,0.5,,1.8,0/6/0,992.0,984.0,,32.0,,,5.0,100.0,,,NW,19.9,T,0,10.0
-1994-02-08,3.3,0.4,,1.0,0/6/0,987.8,984.1,,20.0,,,8.0,200.0,,,SW,0.7,0,0,10.0
-1994-02-09,4.2,-0.8,,1.3,0/6/0,988.3,985.7,,8.0,,,1.0,80.0,,,SW,T,T,0,9.0
-1994-02-10,4.4,-0.6,,1.3,0/6/0,989.4,981.8,,22.0,,,6.0,100.0,,,SW,0.5,T,0,7.0
-1994-02-11,5.0,0.0,,1.4,0/6/0,981.8,970.0,,32.0,,,11.0,110.0,,,NW,10.2,T,0,9.0
-1994-02-12,4.7,-0.1,,1.0,0/6/0,983.2,977.7,,39.0,,,16.0,360.0,,,NW,6.7,T,0,10.0
-1994-02-13,4.4,1.8,,1.0,0/6/0,985.4,980.2,,38.0,,,9.0,20.0,,,NE,8.7,0,0,10.0
-1994-02-14,5.2,1.1,,0.1,2/6/1,981.0,971.3,,37.0,,,7.0,320.0,,,NW,1.9,T,0,10.0
-1994-02-15,3.1,0.0,,1.0,0/6/0,990.2,981.0,,24.0,,,7.0,250.0,,,E,10.2,T,0,10.0
-1994-02-16,3.6,-1.4,,0.8,0/6/0,987.0,985.7,,19.0,,,4.0,10.0,,,SW,1.0,0,0,9.0
-1994-02-17,2.7,0.0,,0.9,0/6/0,987.0,984.8,,18.0,,,5.0,40.0,,,SW,0.0,0,0,9.0
-1994-02-18,2.6,-0.4,,1.2,0/6/0,986.9,981.5,,11.0,,,2.0,10.0,,,SE,0.9,T,0,10.0
-1994-02-19,2.4,-0.5,,1.0,0/6/0,982.3,965.1,,39.0,,,15.0,10.0,,,NE,T,T,0,8.0
-1994-02-20,5.9,-0.4,,0.8,0/6/0,969.6,959.1,,45.0,,,19.0,70.0,,,NE,0.0,0,0,9.0
-1994-02-21,5.4,0.0,,1.0,0/6/0,985.7,969.7,,17.0,,,5.0,10.0,,,N,0.0,0,0,7.0
-1994-02-22,6.2,2.0,,1.6,0/6/0,994.2,985.6,,9.0,,,2.0,10.0,,,SE,T,T,0,9.0
-1994-02-23,4.7,-0.2,,3.0,0/6/0,996.0,982.5,,52.0,,,9.0,70.0,,,NE,T,T,0,9.0
-1994-02-24,3.8,0.4,,1.3,0/6/0,988.3,979.9,,50.0,,,19.0,70.0,,,NE,2.6,T,0,10.0
-1994-02-25,5.0,0.7,,1.5,0/6/0,990.7,970.2,,70.0,,,17.0,40.0,,,NE,6.1,0,0,10.0
-1994-02-26,2.9,0.7,,1.0,0/6/0,979.7,977.1,,36.0,,,20.0,330.0,,,NW,1.7,0,0,10.0
-1994-02-27,2.0,-0.7,,1.0,0/6/0,988.5,979.2,,27.0,,,13.0,330.0,,,SW,0.6,T,0,10.0
-1994-02-28,3.9,-3.2,,0.1,2/6/1,997.6,988.2,,14.0,,,3.0,240.0,,,SW,0.4,T,0,6.0
-1994-03-01,2.8,-2.1,,1.0,0/6/0,1007.7,997.7,,21.0,,,5.0,250.0,,,NE,0.0,0,0,6.0
-1994-03-02,3.8,-1.9,,1.0,0/6/0,1010.2,1006.8,,17.0,,,4.0,20.0,,,SE,0.0,0,0,5.0
-1994-03-03,2.4,-2.7,,0.6,0/6/0,1011.0,1007.8,,17.0,,,7.0,250.0,,,NE,0.0,0,0,9.0
-1994-03-04,6.3,-0.5,,1.0,0/6/0,1007.6,989.8,,37.0,,,7.0,30.0,,,SE,3.0,0,0,10.0
-1994-03-05,6.3,3.5,,1.8,0/6/0,990.0,978.2,,58.0,,,22.0,10.0,,,NE,5.2,0,0,10.0
-1994-03-06,4.4,1.8,,0.9,0/6/0,986.6,978.0,,35.0,,,22.0,360.0,,,N,10.3,0,0,10.0
-1994-03-07,4.5,2.1,,1.2,0/6/0,985.1,977.8,,34.0,,,21.0,10.0,,,NE,4.4,0,0,10.0
-1994-03-08,5.4,1.9,,1.3,0/6/0,979.5,973.9,,32.0,,,10.0,10.0,,,NE,0.0,0,0,9.0
-1994-03-09,2.4,-0.5,,0.0,0/6/0,975.1,972.8,,15.0,,,7.0,250.0,,,NW,1.1,0,0,10.0
-1994-03-10,1.4,-0.9,,0.9,0/6/0,974.7,969.1,,25.0,,,11.0,20.0,,,NW,4.0,1,0,10.0
-1994-03-11,0.8,-0.5,,0.9,0/6/0,986.3,972.1,,25.0,,,18.0,210.0,,,SW,0.6,1,0,9.0
-1994-03-12,1.6,-0.4,,0.0,0/6/0,991.5,983.1,,24.0,,,14.0,270.0,,,NW,2.2,3,2,9.0
-1994-03-13,2.8,-1.1,,0.8,0/6/0,992.3,974.5,,52.0,,,12.0,20.0,,,N,4.0,7,9,8.0
-1994-03-14,4.4,-2.6,,0.9,0/6/0,995.0,968.7,,48.0,,,17.0,50.0,,,NE,3.4,0,5,9.0
-1994-03-15,3.8,-1.6,,0.8,0/6/0,988.4,968.9,,47.0,,,21.0,10.0,,,SW,4.9,1,2,8.0
-1994-03-16,1.1,-1.2,,0.3,0/6/0,1002.1,988.4,,31.0,,,19.0,200.0,,,SW,1.3,T,0,10.0
-1994-03-17,1.6,-0.4,,0.9,0/6/0,1009.7,1002.1,,20.0,,,8.0,210.0,,,SW,T,T,0,9.0
-1994-03-18,0.8,-2.4,,0.2,0/6/0,1010.1,1007.8,,13.0,,,4.0,200.0,,,N,0.0,0,0,10.0
-1994-03-19,1.9,0.2,,1.6,0/6/0,1007.9,1005.2,,18.0,,,10.0,240.0,,,SW,T,T,0,8.0
-1994-03-20,3.0,-1.6,,-0.2,2/6/0,1005.5,1002.7,,9.0,,,3.0,340.0,,,NW,0.0,0,0,8.0
-1994-03-21,3.9,-2.2,,0.8,0/6/0,1002.9,991.5,,32.0,,,2.0,300.0,,,NW,5.7,0,0,10.0
-1994-03-22,4.2,0.6,,0.4,0/6/0,991.1,983.8,,19.0,,,4.0,140.0,,,SE,5.1,0,0,10.0
-1994-03-23,3.0,0.0,,0.5,0/6/0,986.6,982.0,,8.0,,,1.0,130.0,,,SE,0.5,0,0,10.0
-1994-03-24,3.0,-0.5,,0.5,0/6/0,992.1,985.1,,16.0,,,4.0,220.0,,,SW,5.6,3,0,6.0
-1994-03-25,1.6,-1.7,,0.5,0/6/0,991.9,985.1,,34.0,,,10.0,20.0,,,N,0.7,0,0,10.0
-1994-03-26,1.0,-2.5,,0.9,0/6/0,989.1,975.1,,24.0,,,11.0,120.0,,,SE,6.6,12,4,10.0
-1994-03-27,1.9,-3.1,,0.9,0/6/0,996.1,976.5,,28.0,,,9.0,120.0,,,E,17.9,19,28,5.0
-1994-03-28,1.0,-4.5,,0.4,0/6/0,1001.5,996.1,,10.0,,,5.0,200.0,,,NE,0.0,0,24,3.0
-1994-03-29,0.0,-3.0,,-0.9,0/6/0,1004.0,1001.2,,9.0,,,2.0,230.0,,,SE,1.1,2,22,10.0
-1994-03-30,1.0,-2.4,,0.1,0/6/0,1004.8,1002.9,,5.0,,,2.0,150.0,,,SE,1.4,1,24,10.0
-1994-03-31,1.0,-1.5,,-0.8,0/6/0,1007.2,1004.8,,11.0,,,1.0,180.0,,,S,1.2,T,22,10.0
-1994-04-01,-0.4,-2.1,,-0.2,0/6/0,1008.9,1007.6,,14.0,,,3.0,210.0,,,SW,0.3,T,21,10.0
-1994-04-02,1.7,-1.9,,0.1,0/6/0,1009.0,1007.8,,11.0,,,4.0,180.0,,,SE,0.2,0,21,10.0
-1994-04-03,1.2,-0.4,,0.8,0/6/0,1007.8,1003.0,,8.0,,,1.0,120.0,,,SE,0.0,0,20,10.0
-1994-04-04,5.1,0.0,,0.5,0/6/0,1003.2,998.5,,23.0,,,6.0,20.0,,,SE,7.8,0,17,10.0
-1994-04-05,3.1,-0.1,,0.0,0/6/0,1006.5,998.9,,21.0,,,5.0,30.0,,,NW,3.1,T,13,10.0
-1994-04-06,0.9,-0.6,,0.0,0/6/0,1015.1,1005.9,,11.0,,,3.0,330.0,,,NW,2.6,0,10,10.0
-1994-04-07,3.4,-0.4,,0.1,0/6/0,1015.1,1002.2,,12.0,,,4.0,160.0,,,N,1.7,0,8,10.0
-1994-04-08,4.8,0.5,,-0.2,0/6/0,1002.2,991.9,,14.0,,,3.0,140.0,,,SE,0.5,0,7,10.0
-1994-04-09,5.0,0.5,,0.5,0/6/0,992.0,990.4,,36.0,,,8.0,350.0,,,N,0.7,0,0,10.0
-1994-04-10,1.2,-1.4,,-0.5,0/6/0,995.5,992.0,,16.0,,,4.0,220.0,,,W,0.6,T,0,8.0
-1994-04-11,1.5,-0.2,,0.0,0/6/0,996.1,987.0,,59.0,,,21.0,30.0,,,N,0.8,1,1,10.0
-1994-04-12,2.5,0.2,,0.5,0/6/0,987.0,975.5,,62.0,,,28.0,30.0,,,N,6.6,0,0,10.0
-1994-04-13,2.0,-0.4,,0.0,0/6/0,991.3,984.4,,27.0,,,9.0,340.0,,,NW,0.9,T,0,9.0
-1994-04-14,1.4,-2.3,,0.3,3/6/0,1002.3,991.3,,27.0,,,1.0,330.0,,,NW,0.0,0,0,1.0
-1994-04-15,2.6,-4.5,,0.0,0/6/0,1009.8,1002.3,,10.0,,,2.0,90.0,,,NE,0.0,0,0,3.0
-1994-04-16,1.0,-3.5,,0.0,0/6/0,1017.7,1009.1,,8.0,,,2.0,50.0,,,NE,0.0,0,0,3.0
-1994-04-17,-0.5,-3.4,,-0.3,0/6/0,1017.7,1012.0,,10.0,,,2.0,250.0,,,SW,0.0,0,0,10.0
-1994-04-18,0.0,-4.5,,-0.2,0/6/0,1012.0,992.4,,12.0,,,2.0,120.0,,,E,T,0,0,10.0
-1994-04-19,1.2,-3.5,,0.3,0/6/0,993.0,985.8,,26.0,,,4.0,90.0,,,E,0.0,0,0,10.0
-1994-04-20,0.0,-3.8,,-0.8,0/6/0,994.0,989.4,,12.0,,,5.0,20.0,,,N,0.6,T,0,10.0
-1994-04-21,-2.0,-3.5,,-0.8,0/6/0,994.8,993.0,,32.0,,,10.0,30.0,,,N,0.6,T,0,9.0
-1994-04-22,-2.2,-4.0,,0.0,0/6/0,993.2,986.0,,40.0,,,21.0,10.0,,,N,T,T,0,10.0
-1994-04-23,-2.9,-4.5,,-0.2,0/6/0,986.9,979.0,,57.0,,,27.0,30.0,,,NE,1.7,T,0,10.0
-1994-04-24,0.0,-5.0,,0.4,0/6/0,979.0,967.2,,53.0,,,24.0,20.0,,,NE,1.2,0,5,10.0
-1994-04-25,-1.1,-5.7,,0.5,0/6/0,979.5,967.8,,24.0,,,9.0,120.0,,,E,12.4,18,30,7.0
-1994-04-26,-3.0,-7.9,,0.1,0/6/0,982.9,970.3,,33.0,,,8.0,120.0,,,E,1.0,T,25,10.0
-1994-04-27,0.5,-4.0,,0.4,0/6/0,971.6,961.0,,51.0,,,21.0,50.0,,,NE,1.9,T,24,10.0
-1994-04-28,-0.4,-5.2,,0.2,0/6/0,974.9,962.0,,30.0,,,8.0,360.0,,,NE,5.4,8,36,10.0
-1994-04-29,2.5,-6.3,,0.9,0/6/0,976.0,959.2,,58.0,,,21.0,30.0,,,NE,2.7,T,34,10.0
-1994-04-30,2.0,-1.0,,0.4,0/6/0,975.3,959.5,,50.0,,,25.0,30.0,,,NW,5.2,T,29,10.0
-1994-05-01,-0.4,-4.0,,0.1,0/6/0,986.4,975.0,,30.0,,,12.0,220.0,,,S,T,T,27,10.0
-1994-05-02,-1.7,-8.0,,0.2,0/6/0,995.0,986.1,,25.0,,,10.0,200.0,,,S,T,T,26,5.0
-1994-05-03,-4.0,-8.0,,0.3,0/6/0,1001.3,995.0,,10.0,,,6.0,10.0,,,NE,0.0,0,26,1.0
-1994-05-04,-4.5,-9.3,,-0.3,0/6/0,1002.5,1001.3,,15.0,,,6.0,20.0,,,NE,0.0,0,26,1.0
-1994-05-05,-4.5,-7.4,,-0.2,0/6/0,1005.2,1002.0,,18.0,,,10.0,70.0,,,NE,0.0,0,26,8.0
-1994-05-06,-4.0,-8.4,,-0.1,0/6/0,1008.0,1005.2,,14.0,,,6.0,60.0,,,NE,0.0,0,25,4.0
-1994-05-07,0.2,-7.2,,-0.6,0/6/0,1007.5,1003.9,,35.0,,,7.0,30.0,,,NE,0.4,T,26,10.0
-1994-05-08,-1.9,-6.0,,-0.2,0/5/0,1003.9,996.0,,16.0,,,4.0,60.0,,,NE,0.0,0,25,4.0
-1994-05-09,-2.0,-7.5,,-0.5,0/5/0,996.0,993.2,,6.0,,,3.0,10.0,,,NE,0.0,0,25,9.0
-1994-05-10,0.6,-3.1,,-0.2,0/5/0,994.8,976.3,,62.0,,,20.0,30.0,,,N,0.3,T,25,10.0
-1994-05-11,0.6,-1.5,,-0.4,0/6/0,987.0,976.2,,42.0,,,19.0,240.0,,,W,2.0,2,29,10.0
-1994-05-12,-0.8,-6.2,,-0.4,0/5/0,997.6,986.8,,32.0,,,12.0,230.0,,,SW,0.0,0,29,8.0
-1994-05-13,-2.5,-6.6,,0.0,0/5/0,1000.9,996.6,,31.0,,,7.0,10.0,,,NE,0.0,0,28,3.0
-1994-05-14,-1.5,-5.1,,-2.0,30691,1001.9,996.2,,24.0,,,7.0,100.0,,,SW,0.0,0,27,9.0
-1994-05-15,0.4,-3.5,,-0.2,0/6/0,996.1,990.7,,34.0,,,7.0,60.0,,,NE,0.0,0,26,10.0
-1994-05-16,-1.0,-5.0,,-0.8,0/6/0,990.9,978.0,,30.0,,,10.0,70.0,,,NE,0.0,0,26,4.0
-1994-05-17,3.2,-1.9,,0.1,0/6/0,978.0,969.9,,47.0,,,17.0,70.0,,,NE,0.0,0,25,10.0
-1994-05-18,1.3,-1.3,,0.0,0/6/0,975.1,969.2,,31.0,,,9.0,70.0,,,NE,0.1,T,25,10.0
-1994-05-19,0.0,-4.4,,-1.0,0/6/0,990.0,976.1,,12.0,,,3.0,30.0,,,NE,0.0,0,25,7.0
-1994-05-20,1.2,-5.0,,-0.9,20691,988.9,979.8,,14.0,,,4.0,200.0,,,NE,0.0,0,26,7.0
-1994-05-21,-2.4,-6.6,,-0.9,0/6/0,984.2,979.8,,23.0,,,5.0,30.0,,,NE,0.0,0,25,4.0
-1994-05-22,-1.9,-5.8,,-0.9,0/6/0,995.0,984.0,,12.0,,,4.0,240.0,,,NE,0.0,0,26,6.0
-1994-05-23,-2.0,-3.7,,-1.3,206/0,1006.2,995.0,,16.0,,,6.0,240.0,,,SW,0.0,0,25,10.0
-1994-05-24,-0.8,-2.5,,-1.4,20690,1010.7,1006.2,,22.0,,,9.0,220.0,,,SW,0.0,0,25,9.0
-1994-05-25,-0.9,-2.0,,-1.0,0/6/0,1016.0,1010.4,,26.0,,,12.0,220.0,,,SW,T,T,25,10.0
-1994-05-26,-0.8,-2.8,,-0.6,0/6/0,1013.1,1007.8,,24.0,,,6.0,220.0,,,SW,T,T,26,10.0
-1994-05-27,-0.9,-6.5,,-0.8,0/6/0,1020.3,1009.1,,39.0,,,9.0,110.0,,,NE,0.0,0,26,4.0
-1994-05-28,-2.4,-6.4,,-0.8,0/6/0,1012.8,1008.0,,10.0,,,5.0,330.0,,,NE,0.0,0,26,5.0
-1994-05-29,-1.9,-5.3,,-0.9,0/6/0,1008.3,1003.8,,12.0,,,5.0,360.0,,,N,0.0,0,25,5.0
-1994-05-30,-0.6,-3.8,,-1.1,0/6/0,1004.2,982.0,,41.0,,,20.0,340.0,,,N,1.0,1,25,10.0
-1994-05-31,-0.9,-6.3,,-1.3,0/6/0,982.9,970.4,,38.0,,,19.0,360.0,,,NW,1.7,1,30,10.0
-1994-06-01,-2.2,-9.3,,-0.9,0/6/0,970.8,962.9,,54.0,,,19.0,10.0,,,NW,1.2,T,30,5.0
-1994-06-02,-1.5,-7.2,,-1.1,0/6/0,970.3,960.1,,34.0,,,15.0,360.0,,,W,2.7,2,34,10.0
-1994-06-03,-4.7,-7.3,,-1.3,0/6/0,973.1,968.5,,26.0,,,11.0,10.0,,,W,1.2,1,36,10.0
-1994-06-04,-4.5,-8.0,,-1.1,20690,982.1,973.0,,29.0,,,10.0,200.0,,,SW,0.8,T,36,9.0
-1994-06-05,-7.0,-9.5,-8.3,,,986.2,982.1,985.2,28.0,,,11.0,,,,,T,T,33,10.0
-1994-06-06,-2.4,-9.4,-7.3,-1.3,09690,999.9,986.2,994.3,29.0,,,16.0,,,,,T,T,,10.0
-1994-06-07,-3.0,-10.8,-7.3,,,1001.2,990.7,996.2,44.0,,,14.0,240.0,,,,2.3,4,30,10.0
-1994-06-08,-6.5,-8.5,-7.2,-1.0,09690,1012.1,1001.2,1010.4,13.0,,,4.0,,,,,0.0,0,29,8.0
-1994-06-09,-5.6,-9.0,-6.4,-1.2,20690,1011.2,1007.8,1008.6,18.0,,,6.0,,,,,0.0,0,29,8.0
-1994-06-10,-5.2,-9.6,-7.2,-1.2,20790,1016.1,1008.3,1014.0,11.0,,,4.0,,,,,0.0,0,29,2.0
-1994-06-11,-5.5,-8.2,-6.7,-1.3,20790,1017.3,1013.2,1015.0,12.0,,,3.0,,,,,0.0,0,29,2.0
-1994-06-12,-2.0,-7.0,,-1.2,21790,1018.0,1013.2,,20.0,,,6.0,20.0,,,NE,0.0,0,29,2.0
-1994-06-13,-6.0,-9.8,,-1.1,21890,1018.0,1013.1,,12.0,,,4.0,30.0,,,NE,0.0,0,29,4.0
-1994-06-14,-7.7,-11.0,,-1.3,20890,1013.1,1004.8,,7.0,,,3.0,70.0,,,NE,0.0,0,29,4.0
-1994-06-15,-5.6,-9.4,,-1.0,21/90,1004.8,998.0,,6.0,,,2.0,360.0,,,NE,0.0,0,29,8.0
-1994-06-16,-2.9,-9.8,,-1.1,20790,1002.3,997.5,,10.0,,,2.0,130.0,,,E,1.6,3,32,10.0
-1994-06-17,-0.9,-5.5,,-1.1,20890,1003.9,994.0,,35.0,,,9.0,130.0,,,SE,22.2,12,55,10.0
-1994-06-18,1.0,-1.8,,-0.9,20690,994.0,983.6,,46.0,,,14.0,30.0,,,N,1.6,T,43,10.0
-1994-06-19,0.8,-2.2,,-0.3,20/90,992.0,979.8,,53.0,,,24.0,20.0,,,NE,1.2,T,39,10.0
-1994-06-20,-0.9,-7.2,,-1.0,20690,994.2,979.0,,37.0,,,10.0,360.0,,,NW,1.2,1,38,9.0
-1994-06-21,2.5,-5.2,,-0.4,2/690,993.9,980.1,,49.0,,,19.0,50.0,,,NE,1.1,T,36,10.0
-1994-06-22,2.6,-0.2,,-0.1,20690,988.9,978.3,,55.0,,,23.0,20.0,,,N,4.6,T,29,10.0
-1994-06-23,1.0,-1.1,,0.0,20790,993.2,987.8,,20.0,,,3.0,90.0,,,E,1.7,2,29,10.0
-1994-06-24,-0.5,-3.1,,-0.9,20790,999.2,992.8,,14.0,,,1.0,10.0,,,N,2.3,4,34,9.0
-1994-06-25,-2.4,-6.9,,-0.4,20690,1000.1,999.2,,20.0,,,7.0,20.0,,,NE,0.0,0,32,5.0
-1994-06-26,-2.2,-7.0,,-0.8,20690,1000.9,995.2,,22.0,,,6.0,160.0,,,NE,T,T,32,8.0
-1994-06-27,-0.4,-6.6,,-0.7,20690,1001.1,995.0,,22.0,,,6.0,30.0,,,N,T,T,32,4.0
-1994-06-28,0.7,-6.2,,-0.6,20690,1000.8,987.1,,60.0,,,23.0,30.0,,,NE,0.1,T,31,10.0
-1994-06-29,1.1,-1.2,,-0.7,00690,988.0,979.0,,44.0,,,20.0,70.0,,,NE,0.0,0,31,10.0
-1994-06-30,1.5,-7.8,,-1.1,20690,990.5,974.1,,45.0,,,12.0,30.0,,,NW,1.6,T,31,7.0
-1994-07-01,-4.1,-8.6,,-0.8,20690,995.0,991.1,,16.0,,,3.0,40.0,,,NE,0.0,0,33,7.0
-1994-07-02,-3.0,-5.9,,-0.7,20690,1006.2,995.0,,21.0,,,10.0,20.0,,,N,0.0,0,33,7.0
-1994-07-03,-1.8,-6.5,,-1.2,21690,1006.3,989.2,,31.0,,,16.0,120.0,,,E,6.6,3,33,10.0
-1994-07-04,-0.6,-2.7,,-1.1,20690,989.2,982.1,,22.0,,,3.0,320.0,,,SE,9.9,9,42,10.0
-1994-07-05,-2.0,-5.5,,-1.0,20690,999.6,979.0,,21.0,,,4.0,190.0,,,E,T,T,45,3.0
-1994-07-06,-0.2,-5.5,,-1.2,31691,1009.9,998.4,,42.0,,,11.0,10.0,,,N,T,T,45,10.0
-1994-07-07,0.5,-1.9,,-1.9,20690,1000.4,982.2,,44.0,,,20.0,260.0,,,W,15.0,6,49,10.0
-1994-07-08,-0.9,-1.9,,-1.2,20690,998.8,992.0,,26.0,,,14.0,330.0,,,NW,6.5,1,50,10.0
-1994-07-09,-1.2,-9.8,,-1.5,20690,992.0,984.0,,,,,14.0,,,,SW,3.1,0,51,10.0
-1994-07-10,-5.1,-17.5,,-1.3,20690,992.0,978.5,,40.0,,,17.0,220.0,,,SW,0.3,0,50,10.0
-1994-07-11,-11.7,-14.5,,-1.5,21690,1001.0,992.0,,25.0,,,7.0,200.0,,,SW,T,T,50,10.0
-1994-07-12,-7.8,-13.6,,-1.3,21690,998.2,982.2,,8.0,,,2.0,80.0,,,E,1.9,2,50,10.0
-1994-07-13,-7.7,-15.5,,-1.5,82696,987.2,982.2,,27.0,,,9.0,60.0,,,E,1.0,T,49,10.0
-1994-07-14,-9.0,-16.8,,-1.4,81691,994.4,987.2,,20.0,,,7.0,220.0,,,SW,0.5,T,49,10.0
-1994-07-15,-13.2,-17.4,,-1.8,81791,1000.1,991.8,,14.0,,,7.0,270.0,,,SW,0.6,1,49,8.0
-1994-07-16,-13.8,-17.3,,-2.0,81791,1005.4,1001.1,,21.0,,,7.0,20.0,,,NE,0.0,0,49,6.0
-1994-07-17,-9.0,-15.6,,-1.9,82791,1014.8,1005.4,,18.0,,,3.0,90.0,,,E,0.1,T,49,10.0
-1994-07-18,-10.5,-13.2,,-1.5,82791,1014.0,1001.0,,17.0,,,7.0,230.0,,,SW,T,T,48,10.0
-1994-07-19,-9.2,-14.3,,-2.0,82792,1001.0,992.0,,6.0,,,2.0,70.0,,,NE,0.4,2,48,8.0
-1994-07-20,-7.2,-16.6,,-1.7,82792,992.0,984.2,,29.0,,,8.0,10.0,,,NW,0.5,0,50,8.0
-1994-07-21,-12.0,-18.3,,-1.9,82792,989.5,987.1,,26.0,,,8.0,30.0,,,N,0.8,1,49,10.0
-1994-07-22,-14.5,-20.0,,-2.0,92792,989.5,988.5,,22.0,,,12.0,230.0,,,SW,0.3,T,48,10.0
-1994-07-23,-20.8,-22.8,,-1.9,/2292,994.3,989.5,,20.0,,,7.0,230.0,,,SW,T,T,48,6.0
-1994-07-24,-18.2,-23.0,,-2.0,/2292,1005.2,994.3,,10.0,,,5.0,30.0,,,NE,0.0,0,48,1.0
-1994-07-25,-18.0,-25.3,,-2.0,95297,1007.2,1005.2,,11.0,,,3.0,230.0,,,SW,0.0,0,48,6.0
-1994-07-26,-21.0,-25.6,,-1.9,/5397,1007.8,1005.8,,10.0,,,4.0,190.0,,,NE,0.0,0,48,4.0
-1994-07-27,-13.8,-24.7,,-2.0,/2/97,1011.4,1007.8,,10.0,,,2.0,120.0,,,SE,0.8,5,51,9.0
-1994-07-28,-2.5,-16.6,,-2.3,82391,1010.8,985.0,,48.0,,,25.0,10.0,,,N,T,T,48,9.0
-1994-07-29,-2.0,-12.8,,-2.2,92297,994.0,980.7,,48.0,,,15.0,10.0,,,SW,0.6,1,48,8.0
-1994-07-30,-0.5,-13.1,,-2.2,82391,993.0,961.0,,67.0,,,23.0,30.0,,,N,1.7,T,48,10.0
-1994-07-31,-1.0,-16.8,,-2.2,92397,979.0,961.6,,41.0,,,18.0,250.0,,,SW,0.1,T,48,7.0
-1994-08-01,-1.2,-20.1,,-2.3,92393,983.1,970.9,,54.0,,,9.0,350.0,,,NE,3.0,0,47,7.0
-1994-08-02,-1.6,-14.8,,-2.2,92397,976.0,971.4,,32.0,,,13.0,330.0,,,NW,4.0,3,57,6.0
-1994-08-03,-14.0,-23.5,,-2.3,92397,990.9,976.0,,16.0,,,3.0,230.0,,,NW,0.0,0,57,4.0
-1994-08-04,-4.9,-21.0,,-2.0,92397,990.9,982.2,,30.0,,,13.0,90.0,,,SE,0.3,T,55,10.0
-1994-08-05,-1.0,-4.3,,-2.2,92397,988.9,978.2,,48.0,,,10.0,10.0,,,N,2.8,2,48,10.0
-1994-08-06,0.4,-1.9,,-2.1,92397,988.0,982.0,,50.0,,,29.0,10.0,,,N,1.9,T,48,10.0
-1994-08-07,0.5,-14.7,,-2.0,92397,992.9,977.5,,45.0,,,15.0,360.0,,,N,3.0,T,55,5.0
-1994-08-08,-2.0,-12.2,,-2.2,82391,995.1,989.8,,42.0,,,28.0,350.0,,,N,0.1,0,54,10.0
-1994-08-09,-0.9,-15.0,,-2.0,/////,990.2,961.0,,64.0,,,30.0,20.0,,,N,0.7,0,56,10.0
-1994-08-10,-5.1,-19.0,,-2.5,82397,985.9,973.2,,32.0,,,10.0,240.0,,,SW,6.0,6,57,10.0
-1994-08-11,0.0,-14.4,,-2.1,82397,977.0,966.1,,51.0,,,26.0,320.0,,,NW,9.5,3,67,10.0
-1994-08-12,-14.0,-24.6,,-2.2,92398,1010.0,977.0,,27.0,,,5.0,230.0,,,SW,0.0,0,73,3.0
-1994-08-13,0.0,-22.6,,-2.2,/2398,1010.4,1001.8,,31.0,,,9.0,340.0,,,N,0.9,T,72,10.0
-1994-08-14,1.0,-1.4,,-2.1,/2397,1005.0,996.0,,54.0,,,17.0,10.0,,,NW,4.7,1,78,10.0
-1994-08-15,1.3,-0.5,,-2.1,92397,1002.5,986.9,,45.0,,,25.0,350.0,,,N,9.2,T,72,10.0
-1994-08-16,2.0,0.5,,-1.0,82391,986.5,968.2,,56.0,,,34.0,10.0,,,N,9.0,0,68,10.0
-1994-08-17,2.2,-0.1,,-1.2,82296,968.2,962.0,,45.0,,,18.0,350.0,,,N,2.5,T,66,9.0
-1994-08-18,-0.2,-3.5,,-1.2,82297,971.9,961.2,,29.0,,,11.0,70.0,,,NE,4.6,3,70,10.0
-1994-08-19,-2.6,-11.7,,-1.5,82297,982.6,971.9,,15.0,,,5.0,360.0,,,NW,1.7,3,76,10.0
-1994-08-20,-11.0,-22.5,,-2.0,82297,995.7,982.6,,6.0,,,2.0,270.0,,,W,T,T,75,10.0
-1994-08-21,-8.0,-24.6,,-2.0,/5298,997.2,984.2,,17.0,,,2.0,90.0,,,SE,T,T,75,8.0
-1994-08-22,-3.9,-14.5,,-2.1,85297,983.6,981.4,,17.0,,,5.0,330.0,,,N,3.0,7,77,10.0
-1994-08-23,-1.0,-6.0,,-2.1,85297,985.1,965.6,,44.0,,,13.0,30.0,,,NE,1.8,1,78,10.0
-1994-08-24,-1.8,-9.0,,-2.1,95197,988.5,966.2,,30.0,,,7.0,350.0,,,NE,7.3,8,68,10.0
-1994-08-25,-2.5,-8.7,,-2.0,85297,1003.2,988.5,,31.0,,,11.0,50.0,,,NE,0.0,0,68,9.0
-1994-08-26,-5.0,-10.0,,-2.1,95198,1004.1,991.0,,44.0,,,11.0,50.0,,,E,0.7,T,66,8.0
-1994-08-27,2.6,-5.0,,-1.8,25790,991.0,974.0,,51.0,,,28.0,20.0,,,NE,2.8,1,65,10.0
-1994-08-28,2.0,-1.6,,-1.8,25790,987.0,975.0,,49.0,,,27.0,20.0,,,N,2.7,T,65,10.0
-1994-08-29,1.3,-7.0,,-2.2,20791,990.0,982.1,,48.0,,,8.0,20.0,,,N,2.0,T,62,8.0
-1994-08-30,-0.9,-5.9,,-2.0,81791,989.6,982.2,,33.0,,,15.0,70.0,,,N,5.6,5,61,8.0
-1994-08-31,1.0,-3.2,,-2.0,00090,988.5,981.2,,44.0,,,27.0,10.0,,,N,1.8,T,62,10.0
-1994-09-01,1.0,-2.2,,-2.0,22690,988.2,958.1,,72.0,,,43.0,350.0,,,N,3.8,1,61,10.0
-1994-09-02,0.3,-1.5,,-1.9,20690,976.0,955.0,,58.0,,,30.0,360.0,,,N,1.3,T,62,10.0
-1994-09-03,-0.3,-6.8,,-2.2,53692,966.8,951.5,,62.0,,,10.0,10.0,,,NW,1.4,2,80,9.0
-1994-09-04,-6.5,-12.5,,-2.2,92193,973.3,966.8,,10.0,,,3.0,180.0,,,SW,0.1,T,82,9.0
-1994-09-05,-10.9,-15.2,,-2.2,52193,984.0,976.6,,9.0,,,3.0,360.0,,,N,0.1,T,82,4.0
-1994-09-06,-8.7,-16.4,,-2.0,52193,1003.8,988.8,,12.0,,,3.0,230.0,,,N,T,T,82,6.0
-1994-09-07,-0.9,-14.8,,-2.0,52195,1003.9,991.2,,22.0,,,7.0,250.0,,,NW,4.9,9,89,10.0
-1994-09-08,0.5,-3.3,,-1.2,52192,998.8,996.6,,23.0,,,12.0,310.0,,,NW,4.0,6,104,10.0
-1994-09-09,1.5,-1.8,,-1.0,52191,998.3,996.2,,30.0,,,14.0,350.0,,,N,5.8,4,106,10.0
-1994-09-10,4.0,-2.0,,-1.0,52192,995.4,978.2,,48.0,,,14.0,40.0,,,N,T,T,106,10.0
-1994-09-11,4.0,-2.5,,,52391,974.2,971.6,,56.0,,,30.0,360.0,,,N,0.0,0,85,10.0
-1994-09-12,3.0,-2.6,,-1.0,62191,979.8,965.1,,56.0,,,13.0,360.0,,,N,3.6,3,87,9.0
-1994-09-13,-0.1,-5.0,,-0.5,62191,971.7,964.7,,26.0,,,12.0,350.0,,,N,2.5,6,96,10.0
-1994-09-14,-2.7,-8.5,,-1.5,52192,994.3,971.3,,10.0,,,3.0,290.0,,,W,1.8,3,95,9.0
-1994-09-15,-8.5,-20.0,,-2.0,52193,988.6,986.5,,12.0,,,6.0,300.0,,,W,T,T,96,5.0
-1994-09-16,-0.1,-15.2,,-2.0,52192,986.8,982.0,,22.0,,,7.0,200.0,,,NW,2.3,9,96,10.0
-1994-09-17,-6.0,-13.0,,,52192,980.0,964.5,,38.0,,,9.0,190.0,,,S,3.3,4,107,10.0
-1994-09-18,-3.2,-18.5,,-1.0,/21/1,981.2,960.2,,62.0,,,22.0,20.0,,,NE,T,T,88,10.0
-1994-09-19,-2.6,-11.0,,-0.5,82191,967.8,943.2,,44.0,,,16.0,280.0,,,W,1.1,T,105,10.0
-1994-09-20,-6.0,-14.6,,0.0,82101,971.8,969.2,,30.0,,,9.0,70.0,,,E,T,T,102,10.0
-1994-09-21,-0.5,-8.0,,0.0,00090,970.8,965.1,,52.0,,,26.0,70.0,,,N,0.1,0,90,9.0
-1994-09-22,-1.0,-5.5,,1.0,00190,969.8,965.0,,32.0,,,18.0,350.0,,,N,1.9,1,86,9.0
-1994-09-23,-3.5,-12.5,,-2.5,006/9,980.5,969.8,,18.0,,,11.0,270.0,,,W,0.1,T,86,10.0
-1994-09-24,-1.0,-9.0,,-1.0,006/0,982.5,978.2,,14.0,,,8.0,180.0,,,E,0.0,0,85,5.0
-1994-09-25,-3.0,-11.2,,-1.0,006/0,981.6,977.9,,12.0,,,2.0,180.0,,,E,0.0,0,85,6.0
-1994-09-26,-1.0,-10.3,,-1.0,00690,977.8,970.6,,50.0,,,17.0,20.0,,,NW,0.4,0,87,9.0
-1994-09-27,-3.0,-7.8,,-1.0,00690,977.8,970.2,,48.0,,,15.0,10.0,,,N,0.9,0,88,9.0
-1994-09-28,-3.0,-9.0,,-2.0,00690,978.3,975.6,,14.0,,,4.0,280.0,,,NE,0.5,1,87,9.0
-1994-09-29,-8.0,-15.2,,-1.7,10693,988.2,978.3,,29.0,,,15.0,210.0,,,W,0.6,T,88,10.0
-1994-09-30,-11.0,-15.8,,-1.8,51693,986.2,985.8,,28.0,,,15.0,260.0,,,W,0.1,T,87,8.0
-1994-10-01,-5.0,-14.5,,,52693,995.3,985.3,,32.0,,,7.0,100.0,,,N,0.1,T,86,5.0
-1994-10-02,-7.8,-13.9,,,52693,995.3,990.0,,18.0,,,9.0,340.0,,,W,0.0,T,85,10.0
-1994-10-03,-5.5,-10.6,,,52693,989.9,983.0,,23.0,,,4.0,230.0,,,S,1.4,3,92,10.0
-1994-10-04,-3.0,-13.0,,,52692,994.7,985.9,,16.0,,,4.0,180.0,,,SW,0.0,0,89,7.0
-1994-10-05,-4.0,-14.6,,-1.0,52692,997.0,991.1,,14.0,,,4.0,120.0,,,NE,2.2,T,88,9.0
-1994-10-06,-1.0,-7.2,,-1.2,52692,994.8,986.9,,14.0,,,5.0,140.0,,,N,0.5,T,90,10.0
-1994-10-07,-1.6,-3.8,,-1.2,52693,987.0,984.0,,20.0,,,8.0,330.0,,,NW,6.7,3,97,10.0
-1994-10-08,-0.3,-4.1,,-1.0,52692,986.0,963.2,,62.0,,,19.0,340.0,,,N,0.7,1,96,10.0
-1994-10-09,0.0,-12.0,,-1.2,52693,986.8,957.0,,42.0,,,18.0,220.0,,,SW,4.0,3,105,10.0
-1994-10-10,-6.0,-12.0,,-1.2,52693,989.2,986.2,,18.0,,,6.0,240.0,,,S,0.8,1,107,10.0
-1994-10-11,-3.0,-12.3,,-0.2,52692,998.8,988.0,,14.0,,,5.0,200.0,,,SW,0.0,0,108,8.0
-1994-10-12,0.0,-13.5,,-1.0,52692,997.0,980.3,,12.0,,,3.0,120.0,,,SE,0.0,0,107,7.0
-1994-10-13,-3.5,-10.7,,-1.0,52692,983.1,978.0,,62.0,,,20.0,10.0,,,N,0.0,0,105,10.0
-1994-10-14,0.7,-6.4,,0.2,82691,977.0,965.2,,75.0,,,27.0,360.0,,,N,1.0,T,102,10.0
-1994-10-15,-0.3,-7.2,,-1.2,82691,982.5,958.5,,52.0,,,16.0,10.0,,,W,3.0,T,103,10.0
-1994-10-16,-2.3,-9.5,,-1.2,82691,992.8,982.6,,12.0,,,4.0,230.0,,,S,0.9,2,109,10.0
-1994-10-17,-8.1,-14.1,,-1.0,52793,995.2,993.2,,20.0,,,6.0,190.0,,,W,0.0,0,105,10.0
-1994-10-18,-6.8,-11.4,,,52793,994.4,986.1,,18.0,,,4.0,250.0,,,W,0.3,T,105,10.0
-1994-10-19,-2.2,-9.3,,,62691,990.8,985.1,,12.0,,,2.0,120.0,,,SE,5.3,1,107,10.0
-1994-10-20,-0.8,-8.8,,-1.2,52692,998.2,990.0,,14.0,,,6.0,270.0,,,W,4.4,12,120,10.0
-1994-10-21,-2.8,-11.6,,-1.2,52692,995.0,967.2,,22.0,,,7.0,110.0,,,SE,1.3,T,118,10.0
-1994-10-22,-4.3,-12.0,,-1.2,52693,978.8,971.6,,32.0,,,11.0,220.0,,,SW,2.6,4,127,10.0
-1994-10-23,-3.0,-10.5,,-1.2,52693,988.6,977.8,,14.0,,,6.0,220.0,,,SW,0.0,0,113,10.0
-1994-10-24,-10.0,-10.6,,-1.2,52692,987.8,977.9,,20.0,,,7.0,110.0,,,E,2.0,4,120,10.0
-1994-10-25,-3.3,-9.0,,-1.0,52692,982.2,979.2,,24.0,,,10.0,210.0,,,SW,0.0,0,117,8.0
-1994-10-26,-4.0,-11.5,,-1.0,52692,993.2,978.4,,20.0,,,6.0,240.0,,,SW,0.0,0,117,10.0
-1994-10-27,-3.0,-10.2,,-1.2,52792,1009.8,994.2,,22.0,,,5.0,210.0,,,SW,0.0,0,115,10.0
-1994-10-28,-4.0,-8.2,,-1.0,52792,1010.8,999.4,,10.0,,,4.0,120.0,,,SE,T,0,114,10.0
-1994-10-29,-2.5,-6.2,,0.0,52793,998.0,996.3,,24.0,,,8.0,220.0,,,SW,T,T,113,10.0
-1994-10-30,4.0,-10.5,,-1.0,52791,1009.5,997.3,,7.0,,,3.0,60.0,,,NE,0.0,0,113,1.0
-1994-10-31,0.5,-10.1,,-0.5,52791,1009.5,1006.5,,8.0,,,3.0,40.0,,,NE,0.0,0,112,5.0
-1994-11-01,2.8,-6.0,,-1.2,52792,1002.7,1000.5,,28.0,,,2.0,20.0,,,SE,0.0,0,111,10.0
-1994-11-02,6.0,-0.6,,-0.5,52792,1003.0,999.2,,10.0,,,2.0,310.0,,,NW,7.1,6,109,10.0
-1994-11-03,4.0,-6.2,,-1.0,52792,1002.0,997.2,,22.0,,,6.0,30.0,,,SE,2.1,T,108,10.0
-1994-11-04,4.5,0.7,,-1.0,52791,997.1,992.4,,37.0,,,4.0,20.0,,,SE,0.2,0,104,10.0
-1994-11-05,4.4,2.2,,-1.0,62791,991.5,979.8,,33.0,,,15.0,50.0,,,NE,8.0,0,99,10.0
-1994-11-06,5.5,-1.2,,-1.0,62891,974.4,966.6,,38.0,,,17.0,70.0,,,NE,0.0,0,97,8.0
-1994-11-07,1.9,-0.5,,-1.0,62791,978.0,964.9,,33.0,,,13.0,50.0,,,N,0.0,0,94,8.0
-1994-11-08,5.0,-1.5,,-0.8,62791,992.0,982.1,,12.0,,,4.0,340.0,,,NW,0.1,T,92,8.0
-1994-11-09,3.0,-0.5,,-0.8,10790,991.1,971.8,,56.0,,,21.0,90.0,,,E,1.8,T,92,8.0
-1994-11-10,8.0,-1.7,,-0.8,10690,978.1,975.1,,32.0,,,18.0,30.0,,,NE,2.0,2,91,8.0
-1994-11-11,4.0,0.3,,,00790,980.0,973.8,,50.0,,,29.0,30.0,,,NE,3.5,0,86,10.0
-1994-11-12,5.0,1.5,,0.0,00790,980.2,972.0,,52.0,,,32.0,20.0,,,N,8.3,0,66,10.0
-1994-11-13,4.5,0.3,,-0.5,62790,984.1,982.1,,24.0,,,10.0,10.0,,,N,0.0,0,59,10.0
-1994-11-14,6.0,-0.5,,1.0,00790,990.0,982.0,,6.0,,,1.0,90.0,,,SE,0.0,0,59,9.0
-1994-11-15,4.5,-0.5,,0.5,00790,991.4,990.0,,10.0,,,1.0,350.0,,,SE,T,0,59,9.0
-1994-11-16,4.0,-0.5,,0.0,00790,989.0,986.4,,16.0,,,2.0,130.0,,,E,9.3,2,59,10.0
-1994-11-17,3.0,0.0,,0.0,00790,992.3,989.9,,24.0,,,3.0,30.0,,,SE,T,0,57,10.0
-1994-11-18,4.0,0.2,,0.0,00790,994.0,988.4,,53.0,,,15.0,20.0,,,SE,6.0,T,56,10.0
-1994-11-19,5.2,1.6,,-1.0,00790,989.5,981.2,,60.0,,,26.0,20.0,,,N,14.5,0,54,10.0
-1994-11-20,3.1,0.8,,0.0,00790,995.0,980.5,,42.0,,,20.0,360.0,,,N,1.8,T,30,10.0
-1994-11-21,4.5,1.2,,0.0,00790,997.0,993.5,,48.0,,,27.0,20.0,,,N,2.1,0,26,10.0
-1994-11-22,4.5,0.5,,-0.8,00890,1002.0,994.2,,43.0,,,11.0,20.0,,,S,7.8,0,18,10.0
-1994-11-23,4.0,-2.0,,-0.8,00790,995.0,992.8,,28.0,,,10.0,20.0,,,SW,8.6,4,19,10.0
-1994-11-24,6.0,-5.9,,0.0,72793,1000.8,994.1,,28.0,,,7.0,110.0,,,E,0.0,0,15,3.0
-1994-11-25,4.5,3.2,,0.4,72792,1002.0,1000.2,,30.0,,,2.0,110.0,,,S,0.0,0,0,2.0
-1994-11-26,2.0,-4.2,,0.0,62792,1002.8,999.0,,10.0,,,3.0,310.0,,,W,0.0,0,0,8.0
-1994-11-27,6.5,0.2,,-0.2,72792,1000.2,998.5,,8.0,,,1.0,170.0,,,S,0.0,0,0,10.0
-1994-11-28,3.0,-1.8,,0.0,72792,999.8,994.2,,6.0,,,1.0,180.0,,,S,T,0,0,10.0
-1994-11-29,4.0,-0.2,,0.0,72792,996.0,994.0,,18.0,,,3.0,360.0,,,W,0.3,T,0,10.0
-1994-11-30,1.0,-4.0,,,72792,999.0,995.2,,10.0,,,3.0,190.0,,,W,0.0,0,0,10.0
-1994-12-01,6.5,0.2,,-0.2,72792,1000.2,998.5,,8.0,,,1.0,170.0,,,S,0.0,0,0,10.0
-1994-12-02,3.0,-1.8,,0.0,72792,999.8,994.2,,6.0,,,1.0,180.0,,,S,T,0,0,10.0
-1994-12-03,4.0,-0.2,,0.0,72792,996.0,994.0,,18.0,,,3.0,360.0,,,W,0.3,T,0,10.0
-1994-12-04,5.3,0.2,,0.0,62792,995.0,991.0,,22.0,,,8.0,360.0,,,SE,0.6,T,0,10.0
-1994-12-05,9.0,1.0,,0.0,62792,989.8,985.3,,34.0,,,10.0,20.0,,,E,0.0,0,0,10.0
-1994-12-06,6.8,2.7,,0.0,52792,989.0,984.1,,44.0,,,17.0,20.0,,,N,1.5,0,0,9.0
-1994-12-07,4.5,0.5,,0.0,/2792,992.6,989.5,,29.0,,,16.0,10.0,,,N,0.0,0,0,10.0
-1994-12-08,4.0,-0.4,,0.0,32793,993.5,990.9,,15.0,,,9.0,280.0,,,NW,1.2,0,0,10.0
-1994-12-09,5.3,-1.0,,0.0,62791,993.2,988.2,,12.0,,,4.0,150.0,,,SE,0.1,0,0,10.0
-1994-12-10,3.4,-0.4,,-0.5,02792,985.0,978.9,,25.0,,,6.0,280.0,,,NW,0.0,0,0,10.0
-1994-12-11,5.5,-1.0,,0.1,62791,979.0,978.2,,12.0,,,3.0,340.0,,,SE,0.0,0,0,10.0
-1994-12-12,3.0,1.0,,0.0,12792,984.9,978.2,,18.0,,,4.0,10.0,,,N,6.4,7,0,10.0
-1994-12-13,5.0,-1.0,,0.0,00790,983.0,972.0,,45.0,,,19.0,20.0,,,N,1.4,1,0,10.0
-1994-12-14,5.0,1.0,,0.0,02490,983.0,969.9,,45.0,,,21.0,10.0,,,N,0.0,0,0,10.0
-1994-12-15,5.5,-1.5,,0.0,02490,984.0,977.2,,53.0,,,14.0,10.0,,,N,0.0,0,0,10.0
-1994-12-16,6.0,-4.3,,1.0,0/8/0,999.0,979.0,,34.0,,,4.0,10.0,,,W,3.2,2,0,8.0
-1994-12-17,6.5,3.2,,0.0,0/8/0,998.8,980.7,,60.0,,,36.0,10.0,,,N,12.2,0,0,10.0
-1994-12-18,6.7,2.4,,,007/0,983.2,977.8,,52.0,,,18.0,30.0,,,NE,1.0,0,0,10.0
-1994-12-19,6.5,2.2,,0.5,0/690,988.0,979.1,,32.0,,,12.0,20.0,,,N,T,0,0,10.0
-1994-12-20,2.3,-0.9,,0.0,006/0,986.8,980.1,,28.0,,,8.0,250.0,,,W,0.0,0,0,10.0
-1994-12-21,1.1,-0.7,,0.0,0/890,986.5,985.0,,28.0,,,4.0,250.0,,,SW,0.0,0,0,8.0
-1994-12-22,3.0,-1.2,,0.3,0/790,984.9,984.0,,22.0,,,3.0,250.0,,,SW,0.0,0,0,9.0
-1994-12-23,2.7,-1.6,,0.4,0/790,987.0,983.5,,10.0,,,0.0,250.0,,,N,0.0,0,0,9.0
-1994-12-24,1.1,-2.2,,,00790,991.8,990.6,,11.0,,,0.0,250.0,,,N,0.0,0,0,10.0
-1994-12-25,1.3,-1.3,,,00790,992.1,989.0,,16.0,,,5.0,250.0,,,W,0.0,0,0,10.0
-1994-12-26,1.7,-0.2,,0.5,00890,986.7,984.2,,27.0,,,10.0,260.0,,,W,0.9,T,0,10.0
-1994-12-27,3.0,-1.4,,0.6,00890,987.1,985.2,,18.0,,,4.0,250.0,,,W,0.0,0,0,10.0
-1994-12-28,0.2,-1.3,,-0.3,00990,983.8,983.1,,31.0,,,18.0,270.0,,,W,1.1,T,0,10.0
-1994-12-29,1.5,-1.4,,0.5,00990,980.5,969.9,,17.0,,,4.0,330.0,,,NW,1.5,2,0,10.0
-1994-12-30,0.5,-0.5,,-0.3,60993,983.0,980.3,,12.0,,,7.0,250.0,,,W,0.0,0,0,10.0
-1994-12-31,5.5,-3.2,,,60993,986.5,984.8,,29.0,,,7.0,50.0,,,NE,0.0,0,0,10.0
-1995-01-01,3.5,-0.5,,0.0,00791,987.3,982.2,,42.0,,,12.0,50.0,,,SE,5.1,1,0,10.0
-1995-01-02,3.3,0.8,,0.3,00890,992.2,987.8,,18.0,,,4.0,130.0,,,SE,2.7,0,0,10.0
-1995-01-03,9.0,1.0,,,00890,992.6,986.9,,10.0,,,2.0,120.0,,,SE,0.0,0,0,8.0
-1995-01-04,7.0,2.5,,0.1,00790,986.0,980.9,,29.0,,,9.0,130.0,,,SE,0.0,0,0,10.0
-1995-01-05,5.1,0.6,,1.2,00790,992.9,985.1,,11.0,,,4.0,180.0,,,NW,0.0,0,0,10.0
-1995-01-06,7.0,0.8,,1.3,00790,997.1,992.0,,24.0,,,4.0,50.0,,,NE,0.0,0,0,9.0
-1995-01-07,7.5,1.7,,1.3,00790,996.3,995.1,,22.0,,,2.0,90.0,,,SE,0.0,0,0,8.0
-1995-01-08,5.3,1.2,,,00790,1004.0,995.4,,23.0,,,4.0,130.0,,,SE,0.0,0,0,10.0
-1995-01-09,5.5,0.5,,1.3,00790,1005.9,1002.3,,20.0,,,8.0,20.0,,,SE,0.0,0,0,10.0
-1995-01-10,5.5,3.0,,1.3,00790,1001.9,989.1,,38.0,,,20.0,50.0,,,NE,2.6,0,0,10.0
-1995-01-11,5.6,0.7,,1.3,00790,986.8,979.1,,48.0,,,17.0,20.0,,,N,4.7,0,0,10.0
-1995-01-12,5.2,2.0,,1.2,00790,979.0,977.0,,29.0,,,9.0,50.0,,,NE,1.8,0,0,9.0
-1995-01-13,6.0,-1.0,,2.2,00790,975.9,972.8,,16.0,,,1.0,10.0,,,NW,1.0,0,0,8.0
-1995-01-14,5.5,0.0,,1.2,00690,979.8,974.1,,16.0,,,3.0,320.0,,,SE,1.5,T,0,10.0
-1995-01-15,5.0,0.1,,0.5,00790,984.1,978.8,,21.0,,,7.0,50.0,,,N,2.5,2,0,10.0
-1995-01-16,5.5,-0.7,,,00790,985.0,983.0,,12.0,,,4.0,210.0,,,SE,0.0,0,0,3.0
-1995-01-17,5.5,-0.6,,2.2,00790,987.0,982.5,,16.0,,,4.0,200.0,,,W,0.0,0,0,8.0
-1995-01-18,5.0,-0.4,,1.8,00790,990.3,987.2,,34.0,,,8.0,50.0,,,N,T,T,0,8.0
-1995-01-19,5.5,3.1,,1.2,00790,979.7,973.7,,42.0,,,26.0,30.0,,,N,1.2,0,0,10.0
-1995-01-20,4.5,1.4,,1.4,00790,990.0,974.1,,28.0,,,14.0,360.0,,,N,2.2,T,0,10.0
-1995-01-21,6.0,1.7,,1.2,00790,991.9,988.0,,32.0,,,10.0,50.0,,,N,12.1,0,0,10.0
-1995-01-22,5.5,1.6,,,00790,994.0,986.3,,27.0,,,9.0,20.0,,,W,3.0,0,0,10.0
-1995-01-23,5.4,2.8,,,00790,993.8,988.6,,46.0,,,36.0,30.0,,,N,8.7,0,0,10.0
-1995-01-24,5.5,2.3,,1.2,00790,999.0,991.8,,52.0,,,25.0,10.0,,,N,10.0,0,0,10.0
-1995-01-25,5.0,3.5,,1.2,00790,1000.0,994.2,,50.0,,,20.0,360.0,,,N,1.9,0,0,10.0
-1995-01-26,4.3,1.3,,2.0,00790,1001.0,994.3,,16.0,,,6.0,130.0,,,SE,7.9,0,0,10.0
-1995-01-27,5.2,1.7,,2.0,00790,1000.4,994.5,,40.0,,,19.0,50.0,,,N,1.3,0,0,10.0
-1995-01-28,5.5,2.5,,1.8,00790,994.0,987.0,,38.0,,,18.0,30.0,,,NE,3.4,0,0,10.0
-1995-01-29,7.5,1.5,,1.8,00790,991.2,988.3,,18.0,,,5.0,330.0,,,SE,2.6,0,0,10.0
-1995-01-30,5.9,3.5,,1.5,00790,995.2,980.5,,38.0,,,9.0,30.0,,,N,3.0,0,0,10.0
-1995-01-31,7.5,1.5,,1.8,00790,991.2,988.3,,18.0,,,5.0,330.0,,,SE,2.6,0,0,10.0
-1995-02-01,4.5,0.3,,1.8,00790,982.0,980.4,,22.0,,,5.0,250.0,,,W,4.5,T,0,10.0
-1995-02-02,5.2,0.3,,1.5,00790,980.9,975.4,,24.0,,,10.0,230.0,,,SW,0.5,0,0,7.0
-1995-02-03,4.5,0.6,,1.8,00790,989.2,975.3,,14.0,,,5.0,240.0,,,SW,0.0,0,0,10.0
-1995-02-04,4.5,1.6,,1.8,00790,989.0,977.2,,16.0,,,5.0,260.0,,,W,0.0,0,0,10.0
-1995-02-05,5.8,0.5,,1.8,00790,988.0,976.2,,32.0,,,9.0,90.0,,,SE,0.0,T,0,10.0
-1995-02-06,6.0,1.4,,1.8,00790,988.3,978.0,,29.0,,,9.0,110.0,,,E,0.0,0,0,10.0
-1995-02-07,6.5,1.8,,1.8,00790,979.3,960.4,,42.0,,,14.0,50.0,,,E,4.6,T,0,10.0
-1995-02-08,5.8,1.4,,1.8,00790,982.0,979.0,,52.0,,,17.0,40.0,,,N,1.0,0,0,10.0
-1995-02-09,5.0,2.5,,1.8,00790,985.0,976.2,,46.0,,,24.0,10.0,,,N,5.0,T,0,10.0
-1995-02-10,4.0,2.3,,1.0,00790,989.0,979.2,,37.0,,,18.0,10.0,,,N,2.8,0,0,10.0
-1995-02-11,6.5,1.8,,1.8,00790,988.2,972.3,,42.0,,,16.0,60.0,,,N,1.5,0,0,10.0
-1995-02-12,5.0,1.7,,1.8,00790,981.0,971.8,,58.0,,,27.0,30.0,,,N,4.2,0,0,10.0
-1995-02-13,2.5,-1.5,,1.8,00790,991.0,980.2,,22.0,,,16.0,290.0,,,NW,0.4,0,0,10.0
-1995-02-14,5.5,4.0,,1.8,00790,1001.1,990.8,,22.0,,,6.0,260.0,,,W,1.3,T,0,10.0
-1995-02-15,4.5,0.8,,1.0,00790,1001.0,999.5,,22.0,,,8.0,20.0,,,SE,3.1,T,0,10.0
-1995-02-16,6.0,0.6,,2.0,00790,1008.0,999.2,,8.0,,,1.0,220.0,,,S,0.5,0,0,10.0
-1995-02-17,1.4,-0.6,,1.8,00790,1017.2,1008.0,,10.0,,,3.0,220.0,,,SW,0.0,T,0,10.0
-1995-02-18,3.0,-0.8,,1.8,00790,1018.8,1016.2,,10.0,,,2.0,200.0,,,SW,0.0,0,0,10.0
-1995-02-19,3.0,0.0,,1.8,00790,1016.0,1009.2,,6.0,,,2.0,20.0,,,NW,0.0,0,0,10.0
-1995-02-20,5.0,-2.6,,1.8,00790,1015.9,1009.2,,12.0,,,3.0,210.0,,,NW,0.0,0,0,10.0
-1995-02-21,1.5,-0.6,,0.0,00790,1014.1,1006.8,,13.0,,,5.0,350.0,,,W,0.2,0,0,10.0
-1995-02-22,1.5,0.0,,0.5,00790,1001.1,989.8,,19.0,,,8.0,210.0,,,SW,1.7,0,0,10.0
-1995-02-23,0.8,-0.5,,0.5,00790,983.7,982.0,,15.0,,,6.0,180.0,,,S,0.0,0,0,10.0
-1995-02-24,5.0,1.0,,1.0,00790,979.3,964.3,,38.0,,,6.0,30.0,,,NE,8.4,1,0,10.0
-1995-02-25,2.5,1.4,,1.0,00890,972.2,963.2,,25.0,,,14.0,10.0,,,N,10.2,0,0,10.0
-1995-02-26,2.5,-0.1,,,00790,984.9,974.0,,21.0,,,9.0,240.0,,,W,6.9,2,0,10.0
-1995-02-27,2.7,-0.5,,,00790,997.5,987.2,,28.0,,,13.0,20.0,,,NW,0.0,0,0,10.0
-1995-02-28,4.0,2.5,,,00790,984.8,966.1,,60.0,,,16.0,40.0,,,N,7.4,T,0,10.0
-1995-03-01,3.5,2.0,2.4,,00790,986.8,976.0,981.4,29.0,,,15.0,270.0,,,NW,5.5,0,0,10.0
-1995-03-02,5.0,0.0,1.9,,00790,988.4,985.0,986.7,30.0,,,11.0,360.0,,,NW,0.3,0,0,10.0
-1995-03-03,3.0,-1.6,0.0,,00790,998.5,988.5,993.5,,,,5.0,,,,,0.0,0,,8.0
-1995-03-04,5.5,-1.0,3.0,,00790,997.5,980.2,989.2,60.0,,,29.0,50.0,,,,9.0,,,10.0
-1995-03-05,5.0,-0.1,2.4,,00790,979.3,975.5,976.4,42.0,,,19.0,300.0,,,,22.0,3,4,10.0
-1995-03-06,3.1,-0.1,0.8,,00390,982.1,978.1,980.4,,,,19.0,,,,,2.6,,,9.0
-1995-03-07,3.5,-0.8,0.4,,00790,981.2,980.0,980.6,,,,5.0,,,,,0.0,0,,6.0
-1995-03-08,1.5,-3.0,-0.3,,00790,980.1,979.2,979.8,,,,8.0,,,,,0.2,,,10.0
-1995-03-09,1.5,-0.5,-0.1,,00790,980.0,973.5,976.4,,,,6.0,,,,,0.4,,,10.0
-1995-03-10,2.0,-2.0,-0.4,,00790,984.0,975.8,980.9,,,,8.0,,,,,0.0,0,,9.0
-1995-03-11,2.0,-1.0,0.0,,00790,999.8,983.1,990.7,,,,3.0,,,,,0.0,0,,8.0
-1995-03-12,4.5,0.0,1.7,,00790,1000.1,989.6,994.8,,,,10.0,,,,,4.5,,,10.0
-1995-03-13,6.5,0.5,2.5,,00790,989.2,972.0,979.4,54.0,,,29.0,20.0,,,,0.4,,,10.0
-1995-03-14,3.5,1.0,1.9,,00790,979.5,978.8,979.1,,,,14.0,,,,,1.4,,,9.0
-1995-03-15,1.0,-0.7,0.1,,00790,979.9,977.2,978.5,,,,7.0,,,,,0.8,,,10.0
-1995-03-16,1.5,-2.0,-0.5,,/////,978.1,964.2,970.1,,,,10.0,,,,,2.2,3,2,10.0
-1995-03-17,2.7,-2.5,-0.3,,00790,968.2,963.8,965.8,,,,5.0,,,,,0.3,,,5.0
-1995-03-18,2.5,-2.5,-0.6,,00790,972.0,964.2,969.4,,,,11.0,,,,,T,,,5.0
-1995-03-19,4.5,-1.5,-0.4,,00790,955.6,951.3,954.2,,,,8.0,,,,,0.4,,,5.0
-1995-03-20,1.0,-3.5,-1.7,,00790,962.5,959.2,961.5,,,,7.0,,,,,0.0,0,,7.0
-1995-03-21,2.5,-4.0,-2.6,,00790,975.5,965.0,970.1,,,,4.0,,,,,0.0,0,,5.0
-1995-03-22,1.0,-3.0,-1.4,,00790,985.0,979.5,982.2,,,,6.0,,,,,0.0,0,,8.0
-1995-03-23,1.0,-2.3,-1.4,,/////,986.0,984.9,985.7,,,,13.0,,,,,1.0,,,10.0
-1995-03-24,3.5,-2.5,1.0,,00790,981.4,977.8,979.6,,,,7.0,,,,,0.0,0,,10.0
-1995-03-25,3.0,0.4,0.7,,00790,990.3,981.0,984.3,,,,11.0,,,,,0.0,0,,10.0
-1995-03-26,1.0,-1.0,-0.3,,00790,995.1,993.1,994.2,62.0,,,27.0,110.0,,,,0.0,0,,9.0
-1995-03-27,3.5,-1.0,1.0,,00790,998.1,993.5,995.2,,,,18.0,,,,,0.0,0,,10.0
-1995-03-28,0.5,-1.0,-0.7,,00790,999.3,998.0,998.9,,,,9.0,,,,,0.0,0,,10.0
-1995-03-29,1.0,-1.5,-0.8,,00790,1001.0,998.0,999.8,,,,6.0,,,,,T,,,8.0
-1995-03-30,0.5,-4.3,-2.6,,00790,999.5,997.5,998.3,,,,11.0,,,,,T,,,10.0
-1995-03-31,-0.5,-4.8,-3.8,,00790,999.0,992.7,996.1,,,,6.0,,,,,0.0,0,,4.0
-1995-04-01,0.0,-6.5,,-0.5,00790,999.5,991.5,,17.0,,,10.0,50.0,,,NE,0.0,0,0,6.0
-1995-04-02,0.5,-2.0,,0.0,00790,1001.8,998.8,,23.0,,,6.0,50.0,,,E,0.0,T,0,10.0
-1995-04-03,4.5,-1.0,,,00790,993.5,990.8,,37.0,,,3.0,140.0,,,NE,T,2,0,8.0
-1995-04-04,5.0,-0.5,,0.5,00790,988.0,985.0,,48.0,,,22.0,30.0,,,N,0.9,0,0,10.0
-1995-04-05,4.0,-1.0,,,00790,987.9,984.8,,41.0,,,10.0,70.0,,,NE,0.0,T,0,10.0
-1995-04-06,1.0,-1.5,,0.0,00790,991.5,990.0,,14.0,,,7.0,360.0,,,N,0.7,T,0,10.0
-1995-04-07,3.0,-1.0,,0.0,00790,990.5,984.0,,36.0,,,2.0,100.0,,,N,0.8,1,0,10.0
-1995-04-08,2.0,-1.0,,0.0,00790,992.0,989.8,,28.0,,,5.0,40.0,,,N,2.8,2,2,10.0
-1995-04-09,1.5,0.5,,0.0,00790,990.0,986.5,,28.0,,,3.0,20.0,,,N,3.4,4,2,10.0
-1995-04-10,1.0,-1.5,,0.0,00790,998.0,994.2,,23.0,,,6.0,100.0,,,SE,0.4,T,2,10.0
-1995-04-11,2.0,-1.5,,0.0,00790,990.8,985.0,,43.0,,,10.0,20.0,,,E,18.2,12,17,10.0
-1995-04-12,3.0,-1.0,,-0.5,00790,993.5,985.8,,18.0,,,4.0,90.0,,,E,0.0,0,15,10.0
-1995-04-13,2.0,-1.5,,0.5,00790,976.2,973.5,,36.0,,,12.0,110.0,,,E,0.0,0,17,9.0
-1995-04-14,1.5,-1.5,,0.0,00790,985.6,981.0,,38.0,,,15.0,30.0,,,N,1.0,T,15,10.0
-1995-04-15,4.5,-5.0,,0.0,00790,977.5,965.0,,52.0,,,25.0,20.0,,,N,3.9,12,10,10.0
-1995-04-16,3.5,-3.0,,0.0,00790,958.0,943.5,,48.0,,,18.0,30.0,,,N,10.4,1,10,9.0
-1995-04-17,1.5,-1.0,,-0.5,00790,961.2,957.5,,38.0,,,12.0,20.0,,,NE,1.8,3,12,9.0
-1995-04-18,-3.0,-4.0,,-1.0,00790,986.8,964.0,,40.0,,,12.0,20.0,,,N,3.9,8,16,10.0
-1995-04-19,2.0,-1.5,,0.0,00790,989.3,971.7,,83.0,,,21.0,20.0,,,N,8.9,2,16,10.0
-1995-04-20,2.0,-1.5,,0.0,00790,978.9,976.1,,75.0,,,14.0,30.0,,,NW,0.7,0,16,10.0
-1995-04-21,2.0,-0.5,,0.0,00790,996.9,985.1,,33.0,,,14.0,310.0,,,N,0.6,0,16,10.0
-1995-04-22,3.0,-1.5,,0.0,00790,987.1,981.5,,59.0,,,35.0,20.0,,,N,12.3,T,5,10.0
-1995-04-23,3.0,2.0,,0.0,00790,988.2,985.2,,44.0,,,28.0,20.0,,,N,3.0,0,3,8.0
-1995-04-24,2.5,0.5,,0.0,00790,989.0,977.2,,70.0,,,34.0,20.0,,,N,10.7,0,0,10.0
-1995-04-25,0.5,-1.5,,0.0,00790,991.2,985.2,,36.0,,,10.0,320.0,,,SW,2.9,3,1,10.0
-1995-04-26,-1.5,-2.0,,0.0,00790,1005.0,997.4,,26.0,,,13.0,220.0,,,SW,0.0,0,6,10.0
-1995-04-27,-1.0,-4.0,,0.0,00790,1010.9,1006.1,,14.0,,,7.0,50.0,,,S,0.0,0,5,8.0
-1995-04-28,-1.5,-6.0,,-0.5,00790,1013.5,1012.1,,22.0,,,5.0,70.0,,,NE,0.0,0,5,5.0
-1995-04-29,0.0,-5.5,,0.5,00790,1011.5,1008.9,,29.0,,,5.0,80.0,,,NE,0.0,0,2,5.0
-1995-04-30,2.5,-4.0,,0.0,00790,1008.8,1008.1,,17.0,,,6.0,80.0,,,E,0.0,0,0,6.0
-1995-05-01,2.0,-2.5,,,00790,1012.0,1003.2,,18.0,,,6.0,20.0,,,W,0.0,0,3,8.0
-1995-05-02,3.0,-1.5,,,00790,1000.0,990.8,,27.0,,,6.0,110.0,,,E,1.6,1,6,8.0
-1995-05-03,4.5,0.0,,,00790,986.5,981.5,,48.0,,,23.0,50.0,,,N,0.3,0,2,10.0
-1995-05-04,4.5,3.0,,,00790,988.5,987.2,,45.0,,,22.0,60.0,,,NE,2.7,0,3,9.0
-1995-05-05,4.0,0.0,,,00790,993.1,990.0,,34.0,,,7.0,100.0,,,E,0.0,0,0,8.0
-1995-05-06,0.0,-1.5,,,00790,994.1,992.3,,18.0,,,8.0,50.0,,,N,0.0,0,0,8.0
-1995-05-07,-2.0,-4.5,,,00790,993.1,991.2,,8.0,,,4.0,20.0,,,N,6.9,5,3,9.0
-1995-05-08,-4.0,-6.0,,,00790,994.1,993.6,,17.0,,,4.0,30.0,,,N,0.2,0,4,8.0
-1995-05-09,-3.0,-6.0,,,00790,999.5,997.7,,5.0,,,3.0,10.0,,,E,0.1,0,4,10.0
-1995-05-10,-3.0,-6.1,,,00790,1001.9,1000.0,,22.0,,,4.0,80.0,,,E,0.0,0,3,6.0
-1995-05-11,-1.5,-2.5,,,00790,1003.1,1002.3,,13.0,,,4.0,90.0,,,E,0.5,0,3,10.0
-1995-05-12,0.5,-4.0,,,00790,1003.3,998.1,,27.0,,,4.0,50.0,,,NE,0.0,0,3,6.0
-1995-05-13,-1.8,-5.0,,,00790,998.9,995.9,,22.0,,,5.0,50.0,,,NE,0.0,0,3,6.0
-1995-05-14,-2.0,-5.0,,,00790,1005.4,1002.0,,15.0,,,4.0,70.0,,,NE,0.0,0,3,10.0
-1995-05-15,-2.0,-5.5,,,00790,1000.0,987.7,,19.0,,,4.0,110.0,,,SE,2.0,3,3,10.0
-1995-05-16,-2.0,-4.5,,,00790,989.5,987.2,,9.0,,,4.0,70.0,,,NE,0.0,0,6,2.0
-1995-05-17,1.0,-5.0,,,00790,995.6,984.3,,56.0,,,24.0,20.0,,,N,0.7,0,3,10.0
-1995-05-18,3.0,1.0,,,00790,984.9,970.6,,71.0,,,37.0,20.0,,,N,3.1,0,0,10.0
-1995-05-19,2.0,-2.0,,,00790,974.2,971.2,,59.0,,,18.0,20.0,,,NW,5.0,4,1,10.0
-1995-05-20,-1.9,-4.0,,,00790,977.2,975.1,,40.0,,,19.0,300.0,,,NW,0.8,4,17,10.0
-1995-05-21,-1.8,-4.0,,,00790,974.3,972.1,,32.0,,,11.0,290.0,,,S,0.1,1,16,10.0
-1995-05-22,-9.0,-10.5,,,00790,975.2,972.1,,43.0,,,16.0,220.0,,,S,0.7,1,18,10.0
-1995-05-23,6.5,-9.0,,,00790,989.1,971.5,,37.0,,,19.0,200.0,,,S,2.1,3,23,9.0
-1995-05-24,0.0,-7.5,,,00790,993.7,979.1,,23.0,,,19.0,90.0,,,SE,7.9,7,23,10.0
-1995-05-25,-4.0,-8.0,,,00790,985.9,973.9,,44.0,,,18.0,230.0,,,SW,6.0,5,33,10.0
-1995-05-26,-4.6,-6.0,,,00790,986.2,977.3,,23.0,,,5.0,20.0,,,NE,1.0,1,32,10.0
-1995-05-27,-2.6,-5.5,,,00790,979.9,971.0,,25.0,,,11.0,230.0,,,NW,3.6,4,31,10.0
-1995-05-28,-1.0,-7.0,,,22691,1003.1,1000.5,,38.0,,,11.0,230.0,,,W,4.8,6,27,10.0
-1995-05-29,-1.9,-3.0,,,22691,1001.0,998.8,,25.0,,,15.0,290.0,,,SW,3.3,4,41,9.0
-1995-05-30,-1.0,-4.0,,,33652,999.5,998.2,,16.0,,,5.0,290.0,,,W,1.7,1,40,10.0
-1995-05-31,-3.0,-6.0,,,33652,997.8,997.0,,11.0,,,2.0,90.0,,,NE,0.6,0,41,10.0
-1995-06-01,3.0,1.0,,,00790,995.3,992.0,,39.0,,,15.0,20.0,,,N,0.7,0,36,10.0
-1995-06-02,2.0,-2.0,,,00790,994.8,992.0,,29.0,,,7.0,20.0,,,W,0.1,0,23,10.0
-1995-06-03,0.0,-2.0,,,00790,990.2,988.5,,21.0,,,2.0,210.0,,,W,0.3,0,23,10.0
-1995-06-04,4.0,-2.0,,,00790,980.2,979.2,,46.0,,,21.0,20.0,,,N,0.0,0,25,5.0
-1995-06-05,1.0,0.0,,,00790,987.1,982.0,,15.0,,,8.0,20.0,,,E,1.0,0,21,5.0
-1995-06-06,0.0,-4.0,,,00790,991.0,988.6,,31.0,,,4.0,70.0,,,E,0.1,0,21,5.0
-1995-06-07,-2.0,-3.5,,,00790,991.5,986.5,,6.0,,,2.0,180.0,,,SW,0.3,0,21,5.0
-1995-06-08,-4.0,-7.2,,,00790,979.2,970.6,,15.0,,,6.0,260.0,,,S,3.8,7,23,6.0
-1995-06-09,-5.9,-9.0,,,00790,984.0,971.9,,19.0,,,8.0,20.0,,,NE,0.1,2,28,10.0
-1995-06-10,-7.6,-10.5,,,00790,991.7,981.0,,14.0,,,6.0,180.0,,,E,0.0,0,27,5.0
-1995-06-11,-4.5,-10.0,,,00790,989.5,982.0,,12.0,,,4.0,200.0,,,S,0.0,0,26,10.0
-1995-06-12,-7.0,-9.5,,,00790,983.9,979.2,,29.0,,,8.0,90.0,,,S,0.4,1,29,10.0
-1995-06-13,-4.3,-13.5,,,00790,995.8,992.5,,38.0,,,16.0,110.0,,,SE,0.4,1,30,6.0
-1995-06-14,-5.0,-9.0,,,00790,999.1,997.8,,37.0,,,12.0,90.0,,,E,0.0,0,28,5.0
-1995-06-15,-6.1,-8.0,,,00790,999.1,995.0,,10.0,,,4.0,20.0,,,NE,0.0,0,27,4.0
-1995-06-16,-3.4,-8.0,,,00790,1003.1,1001.1,,17.0,,,6.0,200.0,,,SW,0.0,0,30,9.0
-1995-06-17,-1.9,-4.5,,,00790,1004.5,1003.3,,27.0,,,7.0,200.0,,,SW,1.6,1,30,10.0
-1995-06-18,-1.9,-4.0,,,29763,1003.2,995.0,,16.0,,,6.0,270.0,,,NW,3.4,6,31,10.0
-1995-06-19,1.0,-4.0,,,00790,989.9,982.3,,21.0,,,5.0,270.0,,,S,9.1,4,37,10.0
-1995-06-20,0.5,-2.0,,,29790,973.1,970.1,,16.0,,,9.0,90.0,,,N,11.9,17,40,10.0
-1995-06-21,-1.5,-9.0,,,39862,976.1,972.1,,24.0,,,10.0,20.0,,,SW,4.9,6,62,10.0
-1995-06-22,-7.1,-9.5,,,39761,982.2,977.1,,33.0,,,10.0,20.0,,,W,0.8,1,58,10.0
-1995-06-23,-8.5,-10.0,,,29891,981.5,980.1,,50.0,,,11.0,20.0,,,N,0.0,0,39,10.0
-1995-06-24,-9.5,-11.5,,,00790,986.0,979.9,,24.0,,,7.0,100.0,,,E,0.5,2,39,10.0
-1995-06-25,-10.6,-14.0,,,00790,990.7,986.2,,18.0,,,5.0,90.0,,,E,1.0,1,39,9.0
-1995-06-26,-10.0,-14.0,,,32863,991.5,989.8,,18.0,,,9.0,200.0,,,S,0.0,0,39,9.0
-1995-06-27,-10.0,-13.0,,,32762,998.3,988.5,,12.0,,,5.0,140.0,,,SW,0.0,0,39,8.0
-1995-06-28,-12.0,-14.8,,,32762,1003.1,1000.0,,45.0,,,21.0,110.0,,,SE,0.8,1,39,9.0
-1995-06-29,-8.5,-13.0,,,00790,1001.0,995.5,,55.0,,,11.0,90.0,,,S,0.0,0,39,0.0
-1995-06-30,-7.0,-11.5,,,00790,997.3,993.1,,14.0,,,6.0,200.0,,,N,0.0,0,38,0.0
-1995-07-01,-10.0,-11.4,,-1.6,00790,999.8,998.0,,12.0,,,6.0,20.0,,,NE,T,T,39,9.0
-1995-07-02,-10.5,-13.0,,-1.6,80790,1001.8,999.0,,17.0,,,7.0,200.0,,,N,0.0,0,39,4.0
-1995-07-03,-7.6,-11.5,,-1.0,80790,1002.8,994.9,,27.0,,,14.0,90.0,,,E,0.0,0,38,8.0
-1995-07-04,-2.0,-4.0,,-1.7,80790,991.2,986.8,,53.0,,,11.0,40.0,,,E,4.4,7,38,10.0
-1995-07-05,-1.5,-4.0,,-1.0,80790,995.2,990.0,,45.0,,,16.0,20.0,,,N,0.2,0,38,6.0
-1995-07-06,-4.0,-6.0,,-1.6,80790,993.4,984.1,,23.0,,,7.0,180.0,,,S,0.0,0,38,8.0
-1995-07-07,-5.5,-8.0,,-1.6,80790,981.7,981.0,,18.0,,,6.0,20.0,,,N,0.0,0,38,9.0
-1995-07-08,-7.0,-10.0,,-1.8,80790,985.8,981.0,,13.0,,,6.0,30.0,,,N,0.0,0,38,8.0
-1995-07-09,-7.5,-9.5,,-1.8,80790,989.0,986.7,,16.0,,,5.0,180.0,,,S,0.0,0,38,9.0
-1995-07-10,-8.5,-10.0,,-1.1,80790,996.5,990.2,,11.0,,,4.0,80.0,,,NE,0.0,0,38,10.0
-1995-07-11,-6.5,-10.5,,-1.8,80790,1007.2,1001.5,,15.0,,,8.0,20.0,,,N,0.0,0,38,8.0
-1995-07-12,-9.0,-11.4,,-1.8,80790,1005.5,1004.5,,12.0,,,5.0,360.0,,,SW,0.1,1,38,10.0
-1995-07-13,-8.5,-14.0,,-1.8,80790,1004.1,991.2,,12.0,,,6.0,180.0,,,N,0.5,1,39,10.0
-1995-07-14,-2.8,-6.0,,-1.8,80790,983.1,977.2,,39.0,,,10.0,90.0,,,NE,1.6,3,36,10.0
-1995-07-15,-6.0,-11.0,,-1.9,80790,982.9,978.9,,16.0,,,4.0,300.0,,,NW,7.2,12,46,10.0
-1995-07-16,-10.6,-14.0,,-1.8,80790,981.4,965.0,,44.0,,,7.0,90.0,,,E,2.8,5,38,10.0
-1995-07-17,-16.0,-19.0,,-1.9,80790,977.2,970.5,,35.0,,,15.0,90.0,,,E,1.4,T,38,10.0
-1995-07-18,-11.0,-16.1,,-2.0,80790,973.8,962.1,,44.0,,,13.0,90.0,,,E,T,T,37,9.0
-1995-07-19,-8.0,-11.5,,-2.0,80790,973.6,964.2,,45.0,,,18.0,100.0,,,E,2.7,1,37,10.0
-1995-07-20,-5.0,-7.0,,-2.0,80790,989.1,981.1,,48.0,,,11.0,20.0,,,NE,0.0,0,37,8.0
-1995-07-21,-7.0,-9.0,,-1.9,80790,991.2,990.6,,29.0,,,7.0,20.0,,,NE,0.0,0,36,2.0
-1995-07-22,-5.5,-8.0,,-1.9,80790,988.9,978.9,,41.0,,,17.0,90.0,,,E,T,T,36,10.0
-1995-07-23,-7.0,-9.5,,-2.0,80790,981.8,976.9,,43.0,,,9.0,20.0,,,NE,0.0,0,36,9.0
-1995-07-24,-5.0,-6.5,,-2.0,80790,981.0,975.5,,55.0,,,24.0,80.0,,,E,4.7,4,39,10.0
-1995-07-25,-5.0,-6.0,,-2.0,80790,988.5,982.0,,27.0,,,8.0,90.0,,,W,6.4,19,60,10.0
-1995-07-26,-4.0,-8.0,,-2.0,80790,1003.3,991.0,,27.0,,,11.0,90.0,,,E,0.0,0,53,8.0
-1995-07-27,-6.0,-8.4,,-1.8,80790,1010.1,1006.3,,31.0,,,14.0,20.0,,,N,0.0,0,56,10.0
-1995-07-28,-9.0,-10.7,,-1.8,80790,1009.6,1003.9,,21.0,,,11.0,200.0,,,SW,1.6,1,51,10.0
-1995-07-29,-9.4,-11.0,,-2.0,80790,1001.7,994.8,,13.0,,,4.0,200.0,,,S,0.7,1,51,10.0
-1995-07-30,-1.4,-10.5,,-2.0,80790,987.2,972.0,,19.0,,,6.0,360.0,,,SE,6.8,8,53,10.0
-1995-07-31,-10.2,-13.0,,-2.0,80790,974.0,973.1,,27.0,,,7.0,10.0,,,W,0.6,1,60,10.0
-1995-08-01,-12.0,-15.0,,-1.9,80790,972.1,968.7,,39.0,,,11.0,90.0,,,E,0.4,T,60,10.0
-1995-08-02,-11.0,-16.0,,-1.9,42693,980.1,975.8,,29.0,,,13.0,210.0,,,S,0.0,0,59,6.0
-1995-08-03,-9.5,-16.0,,-1.7,49059,992.9,986.1,,16.0,,,3.0,180.0,,,NE,0.0,0,58,7.0
-1995-08-04,-11.0,-14.0,,-1.9,42662,999.0,991.0,,9.0,,,4.0,270.0,,,NE,0.0,0,57,2.0
-1995-08-05,-10.2,-14.0,,-1.9,42662,1003.1,1001.0,,5.0,,,1.0,100.0,,,NE,0.0,0,57,2.0
-1995-08-06,-7.4,-12.0,,-2.0,42662,1004.5,1003.6,,5.0,,,1.0,50.0,,,NE,0.4,2,56,10.0
-1995-08-07,-9.5,-13.0,,-2.0,42662,1005.2,1004.2,,10.0,,,2.0,180.0,,,S,0.1,0,58,10.0
-1995-08-08,-13.0,-16.0,,-2.0,42662,1007.5,1006.7,,7.0,,,2.0,60.0,,,E,0.4,T,58,10.0
-1995-08-09,-12.5,-21.0,,-2.0,92792,1016.6,1007.8,,15.0,,,2.0,90.0,,,E,0.7,T,57,0.0
-1995-08-10,-17.0,-23.0,,-2.0,92792,1018.5,1016.0,,6.0,,,2.0,50.0,,,W,0.0,0,57,0.0
-1995-08-11,-19.0,-24.2,,-2.0,92792,1014.5,1011.9,,5.0,,,1.0,200.0,,,NW,0.0,0,57,8.0
-1995-08-12,-14.0,-24.5,,-2.0,92792,1012.9,1009.2,,10.0,,,3.0,180.0,,,NW,0.0,0,57,2.0
-1995-08-13,-8.0,-21.5,,-2.0,92792,1016.1,1013.0,,11.0,,,4.0,300.0,,,N,0.0,0,57,10.0
-1995-08-14,-3.5,-8.0,,-2.0,92792,1017.2,1014.0,,14.0,,,7.0,340.0,,,NW,3.8,1,57,10.0
-1995-08-15,-1.0,-5.5,,-2.0,92792,1009.0,991.9,,47.0,,,22.0,360.0,,,N,1.3,2,58,10.0
-1995-08-16,-0.6,-12.0,,-2.0,92792,1007.2,994.2,,61.0,,,19.0,360.0,,,N,5.4,7,57,10.0
-1995-08-17,-1.3,-4.5,,-2.0,92792,1002.0,999.1,,34.0,,,20.0,20.0,,,NW,1.2,4,57,10.0
-1995-08-18,0.0,-2.3,,-1.9,92792,994.3,978.2,,36.0,,,23.0,360.0,,,N,2.9,5,57,10.0
-1995-08-19,-3.0,-14.0,,-2.0,92792,984.0,966.0,,55.0,,,10.0,360.0,,,N,0.0,0,60,10.0
-1995-08-20,-2.1,-23.0,,-2.0,92792,980.2,957.2,,50.0,,,16.0,20.0,,,NW,1.7,1,56,5.0
-1995-08-21,-20.5,-22.0,,-2.0,92792,986.0,981.9,,14.0,,,6.0,250.0,,,SW,T,0,56,10.0
-1995-08-22,-18.1,-25.0,,-2.0,92793,996.2,989.8,,7.0,,,3.0,250.0,,,N,0.0,0,56,5.0
-1995-08-23,-19.9,-25.0,,-2.0,92793,996.1,995.7,,8.0,,,4.0,270.0,,,NW,0.0,0,56,2.0
-1995-08-24,-19.5,-26.0,,-2.0,92793,999.0,995.0,,11.0,,,5.0,290.0,,,NW,T,T,56,10.0
-1995-08-25,-15.0,-25.0,,-2.0,92793,994.2,988.2,,14.0,,,4.0,360.0,,,N,0.5,1,56,9.0
-1995-08-26,-11.5,-23.5,,-2.0,92793,990.8,982.1,,21.0,,,10.0,200.0,,,SW,0.5,1,56,9.0
-1995-08-27,-2.2,-20.0,,-2.0,92793,985.5,983.8,,24.0,,,11.0,270.0,,,W,6.8,7,64,10.0
-1995-08-28,-0.8,-5.0,,-2.0,92793,980.2,971.1,,38.0,,,21.0,290.0,,,NW,3.9,3,84,10.0
-1995-08-29,-1.2,-8.5,,-2.0,92793,977.8,968.0,,61.0,,,17.0,10.0,,,N,2.6,2,64,10.0
-1995-08-30,-2.0,-10.0,,-2.0,92793,974.9,963.0,,44.0,,,24.0,20.0,,,N,4.8,4,65,10.0
-1995-08-31,0.2,-5.0,,-2.0,92793,965.4,962.9,,59.0,,,29.0,10.0,,,N,11.0,7,97,10.0
-1995-09-01,-3.0,-9.0,,-2.0,92793,976.2,967.2,,74.0,,,35.0,20.0,,,N,2.7,2,97,6.0
-1995-09-02,-8.3,-16.0,,-2.0,92793,986.5,971.9,,69.0,,,18.0,20.0,,,NW,0.7,1,98,10.0
-1995-09-03,-9.0,-18.0,,-2.0,92793,973.9,958.1,,64.0,,,21.0,20.0,,,N,1.2,1,98,10.0
-1995-09-04,-2.7,-9.8,,-2.0,92793,961.7,947.1,,55.0,,,26.0,110.0,,,E,5.1,3,98,10.0
-1995-09-05,-13.2,-19.0,,-1.9,92792,984.8,964.3,,44.0,,,14.0,90.0,,,NW,1.3,1,98,10.0
-1995-09-06,-18.0,-22.0,,-1.9,82792,991.8,988.9,,13.0,,,5.0,360.0,,,NW,0.0,0,98,5.0
-1995-09-07,-10.5,-18.0,,-1.9,82792,983.6,979.2,,5.0,,,2.0,50.0,,,NW,0.0,0,97,3.0
-1995-09-08,-10.0,-18.0,,-1.9,82792,981.0,979.1,,16.0,,,5.0,80.0,,,E,0.6,T,98,9.0
-1995-09-09,-11.8,-21.0,,-1.9,82792,978.0,973.5,,9.0,,,4.0,10.0,,,NE,0.0,0,98,5.0
-1995-09-10,-7.5,-13.5,,-1.9,82792,998.0,977.9,,22.0,,,8.0,20.0,,,N,0.0,0,98,3.0
-1995-09-11,-13.0,-15.9,,-1.9,82792,1003.2,1000.1,,14.0,,,6.0,110.0,,,NE,T,T,98,10.0
-1995-09-12,-3.5,-4.7,,-1.9,82792,980.2,977.2,,44.0,,,16.0,90.0,,,E,10.8,12,101,10.0
-1995-09-13,-6.0,-8.3,,-1.9,82792,982.6,980.1,,21.0,,,11.0,20.0,,,SE,14.4,34,124,10.0
-1995-09-14,-7.1,-10.8,,-1.9,82792,993.8,985.4,,14.0,,,2.0,180.0,,,S,0.8,19,135,6.0
-1995-09-15,-7.0,-14.0,,-1.9,82792,997.6,992.0,,15.0,,,4.0,360.0,,,NE,0.0,0,135,10.0
-1995-09-16,-3.2,-13.0,,-1.9,82792,982.2,979.9,,40.0,,,2.0,80.0,,,NW,1.9,6,135,10.0
-1995-09-17,-1.0,-8.0,,-1.9,82792,985.5,981.0,,12.0,,,3.0,200.0,,,SW,1.0,1,133,10.0
-1995-09-18,-8.5,-15.0,,-1.9,82792,998.1,987.2,,11.0,,,5.0,290.0,,,NW,0.0,0,113,10.0
-1995-09-19,-2.0,-16.0,,-1.9,82792,998.5,996.8,,12.0,,,2.0,200.0,,,W,3.1,1,113,10.0
-1995-09-20,-3.5,-14.0,,-1.9,82792,1002.2,999.8,,11.0,,,4.0,250.0,,,SW,0.0,0,112,4.0
-1995-09-21,-4.0,-14.5,,-1.9,82792,1008.3,1002.6,,8.0,,,2.0,280.0,,,NW,0.0,0,112,10.0
-1995-09-22,0.0,-12.5,,-1.9,82792,1008.0,997.1,,42.0,,,13.0,360.0,,,N,1.8,T,110,10.0
-1995-09-23,1.5,0.0,,-1.9,82792,999.0,991.3,,55.0,,,35.0,360.0,,,N,2.8,2,102,10.0
-1995-09-24,1.0,-6.0,,-1.9,82792,995.2,979.5,,67.0,,,30.0,20.0,,,N,8.2,2,96,10.0
-1995-09-25,0.4,-1.5,,-1.9,82792,986.0,978.5,,48.0,,,28.0,20.0,,,N,2.1,1,90,10.0
-1995-09-26,1.0,-9.0,,-1.9,82792,972.1,964.5,,67.0,,,33.0,360.0,,,N,2.6,2,90,10.0
-1995-09-27,0.0,-6.5,,-1.9,82792,985.8,966.5,,36.0,,,9.0,200.0,,,W,2.7,2,104,10.0
-1995-09-28,0.0,-9.5,,-1.9,82792,997.5,983.8,,37.0,,,9.0,30.0,,,NE,0.0,0,96,10.0
-1995-09-29,2.0,-5.0,,-1.8,82741,987.8,979.2,,43.0,,,18.0,360.0,,,N,6.3,1,94,10.0
-1995-09-30,2.0,-1.0,,-1.8,82741,988.0,982.4,,45.0,,,25.0,350.0,,,N,3.8,0,96,10.0
-1995-10-01,-0.5,-4.0,,-1.8,82741,987.8,981.5,,50.0,,,24.0,360.0,,,N,3.6,4,103,10.0
-1995-10-02,2.0,-3.0,,-1.8,82741,976.1,969.1,,67.0,,,36.0,360.0,,,N,4.4,5,115,10.0
-1995-10-03,1.0,-3.0,,-1.8,82741,985.5,970.3,,53.0,,,23.0,360.0,,,N,1.2,1,120,10.0
-1995-10-04,1.5,0.0,,-1.8,82741,995.5,987.1,,58.0,,,35.0,20.0,,,N,7.7,1,120,10.0
-1995-10-05,0.7,-6.2,,-1.8,82741,994.3,980.2,,59.0,,,15.0,20.0,,,NW,0.0,0,118,10.0
-1995-10-06,1.8,-0.1,,-1.8,82741,999.0,980.7,,39.0,,,21.0,20.0,,,N,0.0,0,115,10.0
-1995-10-07,1.7,0.0,,-1.8,82741,1007.0,1000.2,,40.0,,,24.0,360.0,,,N,6.8,2,121,10.0
-1995-10-08,2.5,0.0,,-1.8,82741,1008.2,1006.5,,46.0,,,23.0,20.0,,,N,3.4,0,110,10.0
-1995-10-09,3.0,0.5,,-1.8,82741,1004.0,995.3,,56.0,,,31.0,20.0,,,N,14.0,0,100,10.0
-1995-10-10,5.0,2.0,,-1.8,82741,999.7,990.8,,51.0,,,19.0,20.0,,,N,4.0,0,90,10.0
-1995-10-11,2.0,0.0,,-1.8,80790,988.0,980.9,,35.0,,,13.0,360.0,,,NW,2.8,0,86,10.0
-1995-10-12,2.0,-4.5,,-1.8,80790,990.0,980.8,,25.0,,,10.0,50.0,,,NE,5.0,0,85,2.0
-1995-10-13,-3.0,-12.0,,-1.8,80790,985.7,980.2,,8.0,,,2.0,180.0,,,NW,0.0,0,85,2.0
-1995-10-14,-1.5,-10.0,,-0.5,80790,1002.5,990.1,,8.0,,,3.0,80.0,,,NE,0.0,0,85,2.0
-1995-10-15,2.5,-10.0,,-1.8,80790,1009.8,1004.2,,7.0,,,1.0,180.0,,,SE,0.0,0,84,2.0
-1995-10-16,0.2,-5.5,,-1.0,80790,1008.0,999.2,,21.0,,,4.0,30.0,,,N,0.0,0,85,10.0
-1995-10-17,0.0,-6.6,,-1.0,80790,990.2,983.0,,49.0,,,17.0,20.0,,,N,0.7,0,82,10.0
-1995-10-18,-1.5,-7.0,,-1.8,80790,986.1,965.1,,38.0,,,9.0,70.0,,,W,T,0,86,10.0
-1995-10-19,1.5,-6.5,,-0.5,80790,964.0,963.0,,37.0,,,8.0,20.0,,,N,0.0,0,84,6.0
-1995-10-20,-3.5,-11.0,,-0.5,80790,975.0,967.1,,12.0,,,5.0,340.0,,,NW,0.7,1,90,6.0
-1995-10-21,1.5,-12.0,,-0.5,80790,984.9,977.1,,8.0,,,2.0,290.0,,,E,0.0,0,85,3.0
-1995-10-22,0.0,-14.0,,-0.5,80790,998.5,986.9,,10.0,,,2.0,50.0,,,E,0.0,0,84,8.0
-1995-10-23,-3.0,-10.5,,-1.0,80790,996.4,995.0,,6.0,,,1.0,200.0,,,W,0.0,0,85,10.0
-1995-10-24,-4.0,-13.5,,-1.0,80790,997.2,992.3,,6.0,,,3.0,90.0,,,S,0.0,0,84,2.0
-1995-10-25,-1.5,-12.2,,-1.0,80790,988.1,983.9,,12.0,,,4.0,100.0,,,SE,0.0,0,85,2.0
-1995-10-26,-1.5,-12.0,,-1.0,80790,1004.9,994.1,,17.0,,,2.0,180.0,,,S,0.0,0,85,2.0
-1995-10-27,-1.0,-14.2,,-1.0,80790,1010.1,1008.1,,10.0,,,4.0,340.0,,,NW,0.0,0,85,8.0
-1995-10-28,3.5,-5.0,,-0.5,80790,1006.1,998.7,,11.0,,,4.0,150.0,,,SE,5.9,0,85,10.0
-1995-10-29,1.5,-3.0,,-0.5,80790,996.2,985.1,,11.0,,,3.0,260.0,,,W,0.4,0,85,9.0
-1995-10-30,3.0,-1.5,,-0.5,80790,985.1,980.0,,9.0,,,3.0,270.0,,,W,T,0,82,7.0
-1995-10-31,2.0,-1.9,,-0.5,80790,974.1,967.2,,36.0,,,5.0,40.0,,,NE,0.8,T,82,10.0
-1995-11-01,0.5,-5.0,,-0.5,80790,971.2,965.2,,21.0,,,5.0,360.0,,,NW,1.4,T,82,9.0
-1995-11-02,-4.5,-9.0,,-0.5,80790,979.5,973.2,,25.0,,,6.0,210.0,,,SW,0.5,2,82,9.0
-1995-11-03,-1.5,-9.4,,-0.5,80790,983.1,977.8,,14.0,,,3.0,200.0,,,SE,0.0,0,82,9.0
-1995-11-04,0.0,-5.6,,-0.5,80790,974.2,969.5,,36.0,,,6.0,20.0,,,N,0.0,0,82,10.0
-1995-11-05,0.5,-3.2,,-0.5,80790,976.2,970.1,,40.0,,,14.0,260.0,,,NW,0.5,0,80,10.0
-1995-11-06,1.0,-2.5,,-0.5,80790,966.1,960.9,,35.0,,,20.0,50.0,,,E,2.4,T,92,8.0
-1995-11-07,-1.0,-5.0,,-0.5,80790,976.1,967.8,,38.0,,,19.0,100.0,,,E,0.0,0,85,7.0
-1995-11-08,-2.5,-7.0,,-0.5,80790,989.5,980.1,,31.0,,,15.0,100.0,,,SW,0.0,0,82,2.0
-1995-11-09,0.0,-8.0,,-0.5,80790,1003.3,994.1,,26.0,,,7.0,90.0,,,S,0.0,0,82,0.0
-1995-11-10,-1.0,-8.2,,-0.0,80790,1006.1,1000.2,,8.0,,,2.0,100.0,,,NE,0.0,0,80,2.0
-1995-11-11,0.5,-2.5,,-0.5,80790,997.6,989.5,,28.0,,,10.0,20.0,,,W,2.0,1,80,8.0
-1995-11-12,-0.5,-4.0,,-0.0,80790,995.6,976.2,,70.0,,,17.0,50.0,,,NE,2.0,T,79,10.0
-1995-11-13,0.6,-1.1,,-0.5,80790,978.2,973.2,,30.0,,,9.0,10.0,,,NW,9.4,8,90,10.0
-1995-11-14,0.4,-2.5,,-0.5,80790,973.1,969.0,,47.0,,,20.0,20.0,,,NW,3.9,4,95,10.0
-1995-11-15,-1.0,-2.5,,-0.5,80790,974.2,956.5,,31.0,,,15.0,200.0,,,SW,4.9,4,105,10.0
-1995-11-16,-1.0,-5.2,,-0.5,80790,990.8,977.2,,27.0,,,8.0,200.0,,,SW,0.1,T,96,7.0
-1995-11-17,2.0,-7.5,,-0.5,80790,994.8,993.1,,23.0,,,1.0,200.0,,,N,0.8,T,95,10.0
-1995-11-18,1.5,-4.0,,-0.5,80790,1002.0,995.2,,9.0,,,5.0,350.0,,,NW,2.0,2,90,10.0
-1995-11-19,4.5,-0.8,,-0.5,80790,1002.3,995.0,,53.0,,,17.0,20.0,,,N,1.8,0,85,10.0
-1995-11-20,4.6,1.0,,-0.5,80790,993.1,991.2,,52.0,,,15.0,20.0,,,N,0.3,0,65,10.0
-1995-11-21,3.5,-0.4,,-0.5,80790,993.2,985.6,,24.0,,,10.0,50.0,,,NE,0.0,0,63,10.0
-1995-11-22,4.8,-1.0,,-0.0,80790,981.8,969.8,,24.0,,,2.0,20.0,,,SW,T,0,61,7.0
-1995-11-23,2.5,-1.9,,-0.0,80790,969.2,964.2,,10.0,,,4.0,100.0,,,S,0.4,0,64,8.0
-1995-11-24,0.0,-1.5,,-0.5,80790,980.0,965.9,,20.0,,,6.0,200.0,,,SW,0.2,0,62,10.0
-1995-11-25,1.5,-2.8,,0.0,80790,983.0,982.1,,17.0,,,4.0,270.0,,,W,0.1,0,61,7.0
-1995-11-26,2.0,-5.5,,0.0,80790,987.2,980.8,,6.0,,,2.0,10.0,,,N,0.0,0,58,2.0
-1995-11-27,3.0,-3.0,,0.0,80790,987.3,972.1,,28.0,,,9.0,90.0,,,S,0.0,0,58,10.0
-1995-11-28,2.0,-2.0,,0.0,80790,965.5,960.0,,28.0,,,11.0,90.0,,,E,2.6,T,60,10.0
-1995-11-29,2.0,0.0,,-0.0,80790,978.5,960.4,,34.0,,,15.0,90.0,,,E,0.4,0,55,10.0
-1995-11-30,3.5,0.0,,-0.0,80790,979.5,970.2,,30.0,,,9.0,80.0,,,E,0.0,0,55,7.0
-1995-12-01,-1.0,-3.0,,0.0,80790,985.8,980.2,,12.0,,,3.0,350.0,,,SW,0.0,0,53,9.0
-1995-12-02,2.0,-3.4,,0.0,80790,980.3,977.5,,30.0,,,6.0,110.0,,,SE,0.0,0,53,10.0
-1995-12-03,2.0,-0.7,,0.0,80790,986.5,982.2,,23.0,,,2.0,110.0,,,SE,3.8,5,54,8.0
-1995-12-04,6.5,0.0,,0.1,80790,980.3,978.1,,15.0,,,4.0,90.0,,,NE,0.0,0,50,10.0
-1995-12-05,1.5,0.0,,1.0,80790,986.1,970.9,,37.0,,,6.0,20.0,,,N,T,0,48,10.0
-1995-12-06,2.0,0.0,,1.0,80790,996.1,988.2,,22.0,,,3.0,20.0,,,SE,0.0,0,52,10.0
-1995-12-07,0.0,-1.4,,0.0,80790,1010.1,1001.9,,11.0,,,8.0,220.0,,,SW,0.0,0,47,10.0
-1995-12-08,3.2,0.0,,1.0,80790,1009.4,1001.8,,19.0,,,10.0,20.0,,,NE,4.0,0,45,10.0
-1995-12-09,5.0,0.0,,1.0,80790,1001.8,995.2,,8.0,,,2.0,100.0,,,SE,4.0,0,42,9.0
-1995-12-10,4.0,1.0,,1.0,80790,991.3,985.1,,30.0,,,10.0,20.0,,,SE,0.5,T,38,10.0
-1995-12-11,3.1,0.2,,1.0,80790,987.5,973.8,,40.0,,,19.0,50.0,,,NE,6.6,0,31,10.0
-1995-12-12,3.0,0.0,,1.0,80790,974.1,961.5,,59.0,,,20.0,50.0,,,NW,2.7,0,21,8.0
-1995-12-13,3.0,-1.0,,1.0,80790,966.1,957.0,,43.0,,,7.0,350.0,,,NW,4.4,1,20,10.0
-1995-12-14,3.0,-1.0,,-0.5,80790,972.4,967.2,,24.0,,,8.0,180.0,,,SW,1.4,2,18,10.0
-1995-12-15,1.8,-1.6,,0.0,80790,964.5,963.1,,14.0,,,4.0,180.0,,,S,0.0,0,11,3.0
-1995-12-16,0.6,-3.5,,0.0,80790,964.9,964.4,,10.0,,,3.0,200.0,,,W,0.0,0,10,10.0
-1995-12-17,3.5,-1.7,,0.5,80790,972.8,965.9,,10.0,,,4.0,290.0,,,W,0.0,0,5,10.0
-1995-12-18,-1.0,-1.5,,0.0,80790,980.9,975.5,,21.0,,,6.0,250.0,,,SW,0.0,0,2,10.0
-1995-12-19,0.0,-2.0,,0.0,80790,981.7,979.8,,15.0,,,7.0,200.0,,,SW,0.0,0,2,10.0
-1995-12-20,1.0,-2.0,,0.5,80790,988.1,978.5,,15.0,,,6.0,200.0,,,SW,0.0,0,3,8.0
-1995-12-21,1.0,-3.0,,0.0,80790,993.8,989.8,,13.0,,,4.0,120.0,,,SE,1.2,0,0,10.0
-1995-12-22,2.0,-1.0,,0.0,80790,997.2,995.8,,14.0,,,5.0,250.0,,,W,0.0,0,0,3.0
-1995-12-23,5.0,-1.0,,0.5,80790,992.9,983.1,,22.0,,,4.0,90.0,,,W,0.0,0,0,7.0
-1995-12-24,7.0,-0.5,,0.0,80790,989.9,983.3,,33.0,,,4.0,90.0,,,E,0.0,0,0,6.0
-1995-12-25,5.0,2.0,,0.5,80790,990.1,977.8,,49.0,,,22.0,50.0,,,N,2.3,0,0,10.0
-1995-12-26,3.0,1.5,,1.0,80790,991.8,978.8,,26.0,,,18.0,350.0,,,NW,8.0,0,0,10.0
-1995-12-27,4.5,3.0,,0.5,80790,990.7,974.7,,37.0,,,22.0,10.0,,,N,4.8,0,0,10.0
-1995-12-28,2.0,-1.0,,0.5,80790,984.2,974.5,,38.0,,,18.0,20.0,,,N,9.0,2,0,10.0
-1995-12-29,5.5,-0.5,,0.5,80790,995.1,987.8,,16.0,,,4.0,290.0,,,NW,2.2,2,1,8.0
-1995-12-30,5.0,-1.5,,0.5,80790,996.8,993.0,,38.0,,,12.0,20.0,,,NW,1.8,0,0,9.0
-1995-12-31,6.5,0.0,,0.5,80790,998.1,990.9,,20.0,,,5.0,350.0,,,E,1.4,0,0,8.0
-1996-01-01,5.0,1.0,,1.0,80790,986.0,982.9,,46.0,,,21.0,20.0,,,N,1.0,0,0,10.0
-1996-01-02,2.0,0.0,,1.0,80790,987.1,980.9,,14.0,,,5.0,280.0,,,NW,4.9,0,0,10.0
-1996-01-03,4.0,0.5,,1.0,80790,990.5,989.0,,14.0,,,5.0,100.0,,,E,1.1,0,0,9.0
-1996-01-04,5.0,1.0,,1.0,80790,991.7,988.9,,23.0,,,10.0,130.0,,,SE,T,0,0,10.0
-1996-01-05,5.0,0.0,,1.0,80790,986.1,982.5,,12.0,,,1.0,290.0,,,E,7.2,0,0,10.0
-1996-01-06,5.1,1.5,,1.0,80790,986.2,982.8,,8.0,,,2.0,130.0,,,SE,1.0,0,0,8.0
-1996-01-07,4.8,0.5,,1.0,80790,993.5,988.4,,7.0,,,2.0,100.0,,,E,2.0,0,0,8.0
-1996-01-08,5.9,1.3,,1.0,80790,994.7,987.2,,14.0,,,2.0,10.0,,,SE,T,0,0,8.0
-1996-01-09,5.5,1.0,,1.0,80790,986.1,983.5,,31.0,,,6.0,90.0,,,E,0.0,0,0,5.0
-1996-01-10,6.7,0.9,,1.0,80790,993.5,988.1,,18.0,,,6.0,80.0,,,E,0.0,0,0,2.0
-1996-01-11,4.8,-1.0,,1.8,80790,999.5,994.9,,15.0,,,3.0,170.0,,,W,0.0,0,0,5.0
-1996-01-12,4.9,0.0,,1.8,80790,1002.0,998.5,,12.0,,,1.0,150.0,,,SE,0.0,0,0,7.0
-1996-01-13,3.0,0.5,,1.8,80790,1000.2,998.1,,13.0,,,9.0,180.0,,,S,0.0,0,0,9.0
-1996-01-14,3.5,0.5,,1.8,80790,1002.3,1000.2,,17.0,,,6.0,200.0,,,SW,0.0,0,0,9.0
-1996-01-15,4.0,0.0,,1.8,80790,998.2,977.6,,43.0,,,19.0,50.0,,,NE,3.2,0,0,10.0
-1996-01-16,3.0,1.0,,1.8,80790,992.1,975.8,,25.0,,,9.0,200.0,,,SW,6.4,T,0,9.0
-1996-01-17,3.5,0.0,,1.8,80790,993.2,983.2,,33.0,,,11.0,10.0,,,N,1.1,0,0,10.0
-1996-01-18,2.5,0.5,,1.8,80790,986.8,976.2,,23.0,,,7.0,260.0,,,W,12.9,5,2,10.0
-1996-01-19,4.8,0.5,,1.8,80790,991.2,977.8,,32.0,,,8.0,100.0,,,E,4.2,0,0,10.0
-1996-01-20,4.1,0.5,,1.8,80790,977.5,972.6,,45.0,,,20.0,20.0,,,NW,11.0,0,0,10.0
-1996-01-21,2.5,0.3,,1.8,80790,985.8,981.8,,36.0,,,18.0,360.0,,,N,4.9,1,0,10.0
-1996-01-22,3.8,2.5,,1.8,80790,987.2,979.1,,33.0,,,20.0,70.0,,,N,1.3,1,0,10.0
-1996-01-23,3.0,0.6,,1.8,80790,971.4,963.9,,41.0,,,15.0,50.0,,,N,6.1,T,0,10.0
-1996-01-24,4.8,0.3,,1.8,80790,971.2,969.1,,39.0,,,16.0,20.0,,,N,1.5,0,0,9.0
-1996-01-25,4.8,0.8,,1.8,80790,976.5,972.1,,21.0,,,4.0,20.0,,,N,4.4,T,0,10.0
-1996-01-26,3.9,0.5,,1.8,80790,981.9,971.2,,17.0,,,11.0,300.0,,,N,4.3,2,0,5.0
-1996-01-27,4.2,-0.5,,1.5,80790,992.5,984.8,,14.0,,,1.0,20.0,,,S,0.0,0,0,8.0
-1996-01-28,5.5,0.0,,1.8,80790,1001.3,993.7,,6.0,,,2.0,250.0,,,SE,0.0,0,0,3.0
-1996-01-29,6.0,0.5,,1.8,80790,1012.3,1004.1,,6.0,,,2.0,20.0,,,NW,0.0,0,0,10.0
-1996-01-30,3.0,0.0,,1.8,80790,1019.1,1014.9,,16.0,,,5.0,220.0,,,SW,0.0,0,0,8.0
-1996-01-31,4.8,0.0,,1.5,80790,1018.7,1014.0,,13.0,,,4.0,210.0,,,W,0.0,0,0,10.0
-1996-02-01,3.1,0.1,,1.8,80790,1012.3,1007.2,,16.0,,,5.0,300.0,,,NW,0.9,0,0,10.0
-1996-02-02,4.8,1.2,,1.8,80790,1004.3,997.1,,34.0,,,17.0,20.0,,,N,0.1,0,0,10.0
-1996-02-03,7.9,2.5,,1.8,80790,994.9,987.1,,45.0,,,14.0,50.0,,,E,0.2,0,0,10.0
-1996-02-04,4.0,0.0,,1.8,80790,1012.8,995.3,,51.0,,,5.0,30.0,,,NW,6.6,2,0,8.0
-1996-02-05,6.8,1.0,,1.8,80790,1015.6,1009.9,,18.0,,,5.0,50.0,,,NE,0.0,0,0,6.0
-1996-02-06,5.8,1.5,,1.8,80790,1015.0,1013.0,,19.0,,,8.0,350.0,,,NW,1.8,0,0,10.0
-1996-02-07,5.5,1.5,,1.8,80790,1016.0,1009.3,,48.0,,,4.0,20.0,,,N,0.9,0,0,8.0
-1996-02-08,5.0,1.0,,1.8,80790,1004.1,1001.8,,45.0,,,10.0,30.0,,,N,1.0,0,0,10.0
-1996-02-09,3.0,-2.5,,1.8,80790,1000.1,997.0,,37.0,,,12.0,10.0,,,N,8.9,T,0,8.0
-1996-02-10,1.8,0.5,,1.8,80790,999.0,994.5,,27.0,,,10.0,10.0,,,SW,2.6,1,0,10.0
-1996-02-11,2.8,0.1,,1.8,80790,998.4,989.7,,10.0,,,5.0,170.0,,,W,0.0,0,0,7.0
-1996-02-12,3.5,-1.0,,1.8,80790,985.9,976.7,,7.0,,,1.0,320.0,,,NW,0.9,T,0,10.0
-1996-02-13,4.5,0.0,,1.8,80790,977.1,976.1,,11.0,,,2.0,100.0,,,E,7.2,0,0,9.0
-1996-02-14,4.5,0.5,,1.8,80790,980.0,977.4,,9.0,,,2.0,150.0,,,SE,0.3,0,0,9.0
-1996-02-15,3.5,0.0,,1.8,80790,988.2,985.2,,34.0,,,15.0,20.0,,,N,2.5,1,0,10.0
-1996-02-16,5.7,1.0,,1.8,80790,990.2,984.9,,49.0,,,14.0,360.0,,,N,1.0,0,0,9.0
-1996-02-17,5.1,3.0,,1.8,80790,980.5,978.8,,35.0,,,7.0,20.0,,,N,0.3,0,0,8.0
-1996-02-18,9.0,2.5,,1.8,80790,988.9,984.2,,31.0,,,10.0,20.0,,,N,4.0,0,0,6.0
-1996-02-19,5.5,1.5,,1.8,80790,976.8,965.2,,33.0,,,6.0,10.0,,,N,22.9,0,0,10.0
-1996-02-20,3.5,0.5,,1.8,80790,974.1,963.8,,44.0,,,15.0,30.0,,,N,7.2,T,0,9.0
-1996-02-21,1.5,-0.5,,1.8,80790,973.2,971.5,,11.0,,,4.0,220.0,,,SW,2.1,T,0,8.0
-1996-02-22,3.3,-1.0,,1.8,80790,976.2,972.5,,29.0,,,7.0,350.0,,,N,T,0,0,10.0
-1996-02-23,3.8,-0.3,,1.8,80790,976.8,971.2,,19.0,,,9.0,20.0,,,N,1.5,1,0,8.0
-1996-02-24,2.5,-1.0,,1.8,80790,967.3,961.2,,36.0,,,8.0,200.0,,,SW,0.0,0,0,8.0
-1996-02-25,1.0,-2.0,,1.8,80790,967.8,962.2,,25.0,,,8.0,200.0,,,SW,0.0,0,0,6.0
-1996-02-26,-0.7,-2.9,,1.8,80790,977.1,969.7,,12.0,,,3.0,210.0,,,SW,0.6,1,0,6.0
-1996-02-27,1.0,-2.2,,1.2,80790,983.0,980.8,,23.0,,,7.0,20.0,,,SW,T,T,0,10.0
-1996-02-28,2.8,1.0,,0.0,80790,982.6,974.3,,39.0,,,14.0,360.0,,,NW,5.1,0,0,10.0
-1996-02-29,4.2,2.4,,0.5,80790,977.1,967.0,,49.0,,,14.0,20.0,,,NW,2.2,0,0,10.0
-1996-03-01,4.2,-0.5,,1.8,80790,984.3,974.0,,30.0,,,11.0,290.0,,,W,2.9,0,0,9.0
-1996-03-02,3.5,1.6,,0.0,80790,999.0,985.2,,21.0,,,7.0,250.0,,,SW,0.1,0,0,4.0
-1996-03-03,7.4,-1.2,,0.0,80790,999.2,982.0,,57.0,,,20.0,30.0,,,NE,6.4,0,0,10.0
-1996-03-04,5.0,2.3,,0.0,80790,981.2,979.5,,32.0,,,19.0,330.0,,,NW,4.1,0,0,10.0
-1996-03-05,5.3,0.8,,1.0,80790,988.2,981.7,,30.0,,,14.0,20.0,,,N,0.4,0,0,8.0
-1996-03-06,6.5,1.3,,2.0,00890,986.2,983.4,,43.0,,,10.0,30.0,,,NE,7.6,0,0,10.0
-1996-03-07,8.0,-2.0,,2.0,00790,990.0,982.5,,61.0,,,28.0,20.0,,,N,2.1,0,0,8.0
-1996-03-08,5.9,-1.0,,2.0,00790,990.2,986.0,,13.0,,,4.0,360.0,,,NE,0.0,0,0,9.0
-1996-03-09,5.8,-6.6,,2.0,00790,985.5,976.0,,21.0,,,6.0,20.0,,,NE,1.1,0,0,10.0
-1996-03-10,4.9,-1.2,,2.0,00790,965.0,963.3,,55.0,,,28.0,40.0,,,NE,9.4,0,0,10.0
-1996-03-11,4.0,-5.5,,2.0,00790,985.0,967.5,,29.0,,,12.0,310.0,,,NW,12.1,3,0,10.0
-1996-03-12,5.7,-2.7,,2.0,00790,997.0,990.2,,27.0,,,7.0,360.0,,,N,0.5,0,0,7.0
-1996-03-13,7.8,-3.0,,2.0,00790,1002.0,999.9,,24.0,,,11.0,20.0,,,NE,0.0,0,0,9.0
-1996-03-14,4.1,-1.2,,2.0,00790,999.2,990.2,,14.0,,,4.0,180.0,,,S,0.0,0,0,4.0
-1996-03-15,1.9,-2.2,,2.0,00790,990.4,989.1,,22.0,,,6.0,350.0,,,N,0.0,0,0,9.0
-1996-03-16,6.4,0.2,,2.0,00790,985.9,974.9,,35.0,,,15.0,10.0,,,N,0.0,0,0,10.0
-1996-03-17,4.6,2.1,,2.0,00790,977.7,975.0,,21.0,,,7.0,40.0,,,SE,2.2,0,0,9.0
-1996-03-18,3.3,1.1,,2.0,00790,989.0,984.1,,19.0,,,5.0,90.0,,,E,3.0,0,0,9.0
-1996-03-19,5.9,2.8,,1.0,00790,985.3,984.6,,54.0,,,18.0,20.0,,,N,6.0,0,0,10.0
-1996-03-20,4.2,2.5,,2.0,00690,983.3,971.9,,23.0,,,14.0,60.0,,,N,2.1,0,0,8.0
-1996-03-21,4.0,1.8,,2.0,00690,987.2,974.5,,51.0,,,12.0,360.0,,,N,0.9,0,0,9.0
-1996-03-22,4.6,0.8,,1.0,00690,994.0,990.3,,36.0,,,8.0,20.0,,,NW,0.4,0,0,10.0
-1996-03-23,3.0,1.5,,2.0,00790,988.2,984.3,,33.0,,,10.0,10.0,,,NW,0.4,0,0,10.0
-1996-03-24,4.0,-1.0,,1.0,00790,985.2,964.0,,28.0,,,6.0,90.0,,,E,0.0,0,0,9.0
-1996-03-25,2.0,0.0,,2.0,00690,976.0,965.2,,30.0,,,4.0,110.0,,,SE,0.0,0,0,10.0
-1996-03-26,0.8,-1.7,,1.0,00690,977.0,976.0,,18.0,,,8.0,330.0,,,NW,7.0,10,6,10.0
-1996-03-27,0.9,-3.5,,1.0,00690,977.1,972.9,,21.0,,,3.0,40.0,,,E,0.8,0,3,8.0
-1996-03-28,-1.5,-5.5,,0.5,00690,982.6,975.5,,29.0,,,6.0,230.0,,,E,0.6,1,3,9.0
-1996-03-29,-2.0,-4.0,,0.6,00690,983.1,980.7,,21.0,,,6.0,200.0,,,SW,0.0,0,2,9.0
-1996-03-30,-2.1,-7.0,,0.8,00690,980.4,979.0,,14.0,,,6.0,150.0,,,NE,3.4,5,7,4.0
-1996-03-31,-3.0,-7.0,,0.0,00690,982.5,980.2,,15.0,,,8.0,190.0,,,SW,0.0,0,5,4.0
-1996-04-01,-2.6,-7.0,,0.0,00690,988.2,986.0,,16.0,,,5.0,190.0,,,S,0.0,0,3,10.0
-1996-04-02,-3.4,-7.4,,0.0,00790,988.1,984.8,,15.0,,,3.0,180.0,,,NE,0.0,0,3,3.0
-1996-04-03,-2.5,-9.0,,0.2,00790,993.3,966.8,,46.0,,,13.0,90.0,,,E,0.0,0,2,9.0
-1996-04-04,2.0,0.0,,0.6,00790,978.0,964.3,,42.0,,,19.0,30.0,,,NE,0.0,0,2,6.0
-1996-04-05,1.8,-1.0,,0.4,00790,985.0,980.2,,22.0,,,6.0,90.0,,,E,0.0,0,1,9.0
-1996-04-06,-0.1,-4.5,,0.0,00790,986.8,984.4,,15.0,,,7.0,20.0,,,E,0.0,0,1,4.0
-1996-04-07,-3.5,-6.5,,0.0,00790,981.1,980.1,,17.0,,,5.0,80.0,,,E,0.0,0,1,7.0
-1996-04-08,-2.3,-7.2,,-0.5,00790,986.7,981.6,,11.0,,,6.0,20.0,,,NE,0.0,0,1,3.0
-1996-04-09,-2.0,-6.0,,-0.6,00790,995.2,989.6,,10.0,,,4.0,30.0,,,S,1.7,5,5,3.0
-1996-04-10,-0.1,-4.5,,-0.8,00790,1006.2,999.3,,8.0,,,5.0,20.0,,,N,0.3,0,5,9.0
-1996-04-11,2.3,-2.5,,0.0,00790,1009.4,1007.2,,24.0,,,8.0,130.0,,,SE,3.8,1,4,10.0
-1996-04-12,1.7,-0.1,,0.0,00690,1010.0,1009.5,,23.0,,,3.0,140.0,,,SE,7.5,0,4,10.0
-1996-04-13,3.5,-0.2,,-0.3,00790,1010.9,1009.0,,24.0,,,4.0,90.0,,,SE,3.4,0,4,10.0
-1996-04-14,1.0,-1.6,,0.0,00690,1012.7,1010.3,,8.0,,,3.0,240.0,,,SW,1.5,0,4,7.0
-1996-04-15,0.0,-4.5,,-0.3,00790,1012.9,1011.0,,11.0,,,4.0,200.0,,,SW,0.5,0,4,10.0
-1996-04-16,-1.0,-6.0,,-0.8,00790,1013.0,1012.0,,6.0,,,2.0,340.0,,,SE,0.4,0,4,2.0
-1996-04-17,1.5,-4.6,,-0.4,00790,1010.0,1003.6,,14.0,,,5.0,140.0,,,SE,0.6,0,4,7.0
-1996-04-18,3.3,-0.2,,-0.5,00790,999.0,990.8,,17.0,,,4.0,80.0,,,SE,3.2,0,3,9.0
-1996-04-19,2.0,-0.6,,-0.5,00790,991.9,988.0,,9.0,,,3.0,350.0,,,NW,2.6,0,3,10.0
-1996-04-20,1.9,-1.2,,-0.7,00790,997.3,993.0,,31.0,,,4.0,20.0,,,W,2.2,2,3,7.0
-1996-04-21,0.5,-2.2,,-0.9,00790,997.6,997.0,,8.0,,,2.0,250.0,,,NW,0.7,2,8,10.0
-1996-04-22,0.0,-2.0,,-1.0,00790,1000.4,997.5,,17.0,,,8.0,220.0,,,SW,0.0,0,9,6.0
-1996-04-23,-0.9,-6.5,,-0.3,00790,1007.3,1003.0,,13.0,,,3.0,200.0,,,E,0.0,0,9,9.0
-1996-04-24,-0.8,-5.5,,-0.6,00790,1009.0,1001.8,,23.0,,,7.0,60.0,,,E,0.6,1,9,10.0
-1996-04-25,4.5,0.5,,0.0,00790,997.0,991.0,,43.0,,,17.0,40.0,,,SE,5.2,5,8,10.0
-1996-04-26,4.5,1.5,,0.1,00790,990.8,982.0,,92.0,,,33.0,40.0,,,NE,8.3,0,0,10.0
-1996-04-27,4.0,2.2,,-0.1,00690,981.0,974.9,,58.0,,,29.0,20.0,,,NE,2.7,0,0,10.0
-1996-04-28,1.7,-2.4,,-0.1,00690,991.0,976.9,,54.0,,,19.0,20.0,,,W,4.8,5,5,10.0
-1996-04-29,3.5,-1.2,,-0.5,00790,998.2,993.8,,44.0,,,22.0,30.0,,,SE,0.8,0,6,10.0
-1996-04-30,4.2,-0.2,,-0.2,00790,988.9,986.0,,42.0,,,17.0,30.0,,,E,17.3,0,0,10.0
-1996-05-01,1.4,-2.0,,-0.3,00790,987.0,981.0,,12.0,,,1.0,180.0,,,SW,0.3,0,0,10.0
-1996-05-02,3.9,1.0,,-0.3,00790,977.5,976.0,,27.0,,,12.0,60.0,,,NE,0.0,0,0,8.0
-1996-05-03,3.6,-2.5,,-0.5,00690,983.8,974.1,,41.0,,,18.0,50.0,,,NE,2.4,8,8,8.0
-1996-05-04,-0.1,-3.0,,-0.6,00690,991.3,970.0,,38.0,,,19.0,230.0,,,SW,0.9,T,8,8.0
-1996-05-05,2.4,-5.0,,0.0,00690,991.4,986.1,,30.0,,,6.0,130.0,,,E,2.3,2,8,6.0
-1996-05-06,3.1,-1.5,,-0.5,00690,987.3,979.2,,26.0,,,8.0,150.0,,,SE,6.8,8,15,10.0
-1996-05-07,4.0,0.5,,-0.3,00690,976.4,970.2,,37.0,,,18.0,50.0,,,E,0.0,0,13,7.0
-1996-05-08,3.8,-0.8,,-0.4,00690,977.0,970.1,,28.0,,,8.0,60.0,,,SE,0.0,0,12,6.0
-1996-05-09,1.0,-2.2,,-0.4,00690,978.8,977.0,,31.0,,,10.0,50.0,,,SW,0.0,0,11,10.0
-1996-05-10,0.3,-2.2,,-0.5,00690,983.9,981.3,,6.0,,,1.0,40.0,,,NE,10.6,15,20,10.0
-1996-05-11,-0.5,-3.8,,-0.4,00690,990.9,983.6,,25.0,,,7.0,20.0,,,SE,0.8,1,24,10.0
-1996-05-12,0.1,-4.5,,-0.5,00690,1010.3,995.9,,20.0,,,2.0,190.0,,,S,0.0,0,20,8.0
-1996-05-13,-1.8,-5.5,,-0.6,00690,1014.2,1012.9,,16.0,,,8.0,110.0,,,E,0.0,0,19,3.0
-1996-05-14,0.5,-5.6,,-0.5,00690,1015.2,1003.4,,47.0,,,12.0,40.0,,,E,1.1,T,19,8.0
-1996-05-15,1.5,0.2,,-0.7,00690,1000.2,977.2,,51.0,,,21.0,50.0,,,NW,3.9,T,20,10.0
-1996-05-16,0.0,-1.8,,-1.0,00690,988.3,973.9,,51.0,,,20.0,40.0,,,SE,0.4,0,21,10.0
-1996-05-17,2.4,-1.6,,-0.8,00690,972.1,962.3,,43.0,,,21.0,40.0,,,N,6.1,7,24,10.0
-1996-05-18,-0.5,-2.0,,-1.4,00690,975.2,970.5,,42.0,,,25.0,20.0,,,N,2.8,4,37,10.0
-1996-05-19,-0.1,-7.7,,-1.2,00690,979.7,977.3,,24.0,,,16.0,350.0,,,N,2.7,1,36,10.0
-1996-05-20,-0.5,-6.0,,-1.2,00690,977.3,976.5,,38.0,,,26.0,40.0,,,NE,0.0,0,28,10.0
-1996-05-21,-2.4,-6.0,,-1.4,00690,986.6,983.0,,38.0,,,10.0,40.0,,,NE,0.9,3,28,7.0
-1996-05-22,-0.9,-6.0,,-1.0,00690,986.4,967.8,,44.0,,,16.0,40.0,,,SE,0.9,T,26,10.0
-1996-05-23,0.5,-2.5,,-1.2,00690,979.4,976.4,,36.0,,,17.0,20.0,,,NW,2.4,2,30,10.0
-1996-05-24,0.5,-5.2,,-1.6,00690,985.0,977.1,,37.0,,,17.0,330.0,,,W,1.7,0,33,8.0
-1996-05-25,-3.3,-8.0,,-1.5,00790,1005.6,997.0,,35.0,,,14.0,230.0,,,SW,0.2,0,30,9.0
-1996-05-26,2.5,-6.1,,0.0,00690,1000.9,980.1,,54.0,,,26.0,90.0,,,NE,1.3,0,39,9.0
-1996-05-27,6.1,-2.2,,-0.7,00690,980.0,960.7,,64.0,,,29.0,20.0,,,NE,2.6,0,15,8.0
-1996-05-28,3.0,-4.2,,-0.8,00690,974.5,963.5,,39.0,,,19.0,360.0,,,NW,6.9,8,13,10.0
-1996-05-29,1.0,-5.0,,-1.3,00690,968.7,950.9,,73.0,,,29.0,50.0,,,W,4.9,3,30,10.0
-1996-05-30,-1.0,-6.8,,-2.4,00690,982.0,968.4,,47.0,,,24.0,250.0,,,SW,0.0,0,19,8.0
-1996-05-31,-3.0,-6.8,,-1.8,00690,992.9,985.2,,40.0,,,20.0,250.0,,,SW,0.4,0,19,10.0
-1996-06-01,-6.1,-7.7,,-1.6,00690,1004.9,997.2,,30.0,,,9.0,250.0,,,SW,0.0,0,19,7.0
-1996-06-02,3.7,-6.7,,-1.2,00690,999.8,975.1,,38.0,,,13.0,40.0,,,E,8.5,5,18,10.0
-1996-06-03,1.5,-2.2,,-1.4,00690,976.1,974.7,,24.0,,,11.0,320.0,,,NW,4.8,4,22,9.0
-1996-06-04,-1.0,-4.5,,-1.8,00690,985.8,983.2,,23.0,,,10.0,230.0,,,NE,0.0,0,26,7.0
-1996-06-05,-3.0,-7.0,,-1.5,00690,981.4,972.4,,22.0,,,9.0,210.0,,,NW,0.0,0,25,7.0
-1996-06-06,-2.1,-4.6,,-1.4,00690,988.7,979.5,,21.0,,,8.0,210.0,,,SW,0.0,0,25,6.0
-1996-06-07,1.3,-5.0,,-1.1,00690,991.5,982.4,,40.0,,,16.0,20.0,,,NE,0.0,0,24,10.0
-1996-06-08,4.1,1.3,,-1.3,00690,979.9,972.9,,43.0,,,19.0,70.0,,,NE,0.6,0,17,9.0
-1996-06-09,1.3,-3.5,,-1.3,00690,979.1,971.3,,44.0,,,18.0,30.0,,,NE,0.3,T,17,7.0
-1996-06-10,1.2,-2.5,,-1.3,00690,981.8,977.0,,45.0,,,12.0,30.0,,,E,0.6,0,16,9.0
-1996-06-11,-2.3,-5.3,,-1.4,00690,986.1,983.7,,23.0,,,6.0,30.0,,,NE,0.5,T,15,8.0
-1996-06-12,-1.8,-5.6,,-1.4,00690,984.4,980.6,,28.0,,,5.0,250.0,,,NW,2.7,3,20,10.0
-1996-06-13,0.7,-3.8,,-1.4,00690,992.9,981.8,,33.0,,,4.0,50.0,,,S,0.0,0,18,10.0
-1996-06-14,-2.8,-5.9,,-1.4,00690,1009.1,998.0,,31.0,,,15.0,40.0,,,NE,0.0,0,18,10.0
-1996-06-15,-3.2,-5.5,,-1.4,00690,1015.5,1012.6,,26.0,,,8.0,240.0,,,SW,0.5,T,18,10.0
-1996-06-16,-3.3,-7.9,,-1.2,00690,1015.2,1004.3,,37.0,,,6.0,130.0,,,S,2.0,6,28,3.0
-1996-06-17,-4.7,-8.4,,-1.6,00690,1019.1,1015.2,,10.0,,,5.0,200.0,,,E,0.0,0,24,10.0
-1996-06-18,-2.1,-5.8,,-1.5,00690,1012.0,992.6,,22.0,,,5.0,140.0,,,SE,0.0,0,21,10.0
-1996-06-19,2.0,-2.5,,-1.2,00690,984.1,965.3,,32.0,,,13.0,50.0,,,E,0.0,0,21,10.0
-1996-06-20,-0.1,-3.8,,-1.3,00690,971.0,965.0,,24.0,,,5.0,30.0,,,NW,6.7,9,32,10.0
-1996-06-21,-2.4,-5.4,,-1.8,00790,980.0,974.2,,28.0,,,10.0,230.0,,,SW,0.6,T,30,10.0
-1996-06-22,-5.2,-11.0,,-1.9,00790,981.2,973.2,,33.0,,,15.0,200.0,,,S,0.0,0,25,9.0
-1996-06-23,-3.3,-12.3,,-1.2,00790,999.7,980.7,,44.0,,,22.0,130.0,,,SE,0.6,0,25,4.0
-1996-06-24,-2.9,-5.3,,-1.4,00790,1024.1,1008.8,,34.0,,,6.0,140.0,,,NE,0.0,0,24,2.0
-1996-06-25,-3.1,-6.1,,-1.7,00790,1031.5,1028.5,,11.0,,,4.0,270.0,,,N,0.0,0,24,10.0
-1996-06-26,1.0,-3.7,,-1.7,00790,1028.7,1010.6,,48.0,,,12.0,30.0,,,E,0.0,0,24,10.0
-1996-06-27,1.1,-3.3,,-1.6,00790,1006.9,1002.7,,50.0,,,18.0,20.0,,,W,0.8,0,25,10.0
-1996-06-28,-0.9,-3.6,,-1.8,00790,1004.1,984.4,,32.0,,,13.0,30.0,,,SW,1.2,T,26,9.0
-1996-06-29,-2.5,-6.8,,-1.9,00790,983.0,981.9,,30.0,,,12.0,260.0,,,W,1.0,T,30,7.0
-1996-06-30,-3.2,-6.6,,-1.8,00790,982.3,976.2,,40.0,,,16.0,110.0,,,SE,2.8,6,32,10.0
-1996-07-01,-4.0,-7.5,,-1.8,00790,999.7,987.0,,20.0,,,5.0,30.0,,,NE,0.1,0,30,10.0
-1996-07-02,-2.2,-6.0,,-1.7,00790,1004.9,1000.3,,26.0,,,5.0,230.0,,,SW,0.6,T,27,10.0
-1996-07-03,-1.7,-4.4,,-1.8,00790,1007.4,1003.1,,33.0,,,13.0,240.0,,,SW,1.9,0,27,10.0
-1996-07-04,-1.6,-4.2,,-1.8,00790,1002.0,999.0,,15.0,,,5.0,350.0,,,SW,2.9,2,33,10.0
-1996-07-05,0.0,-2.2,,-1.9,00790,1007.7,1003.3,,12.0,,,6.0,350.0,,,NW,1.3,T,33,8.0
-1996-07-06,3.3,-3.9,,-1.5,00790,1006.9,996.8,,52.0,,,18.0,30.0,,,N,1.4,0,34,10.0
-1996-07-07,3.0,-1.5,,-1.7,00790,995.6,988.8,,32.0,,,25.0,20.0,,,N,5.0,2,33,10.0
-1996-07-08,-1.4,-4.1,,-1.7,00790,997.9,994.2,,30.0,,,7.0,350.0,,,E,0.3,0,36,5.0
-1996-07-09,1.5,-2.8,,-1.4,00790,995.8,985.3,,63.0,,,27.0,50.0,,,NW,0.5,0,35,10.0
-1996-07-10,1.8,-1.5,,-1.7,00790,1005.2,999.5,,33.0,,,14.0,300.0,,,NE,0.8,T,41,10.0
-1996-07-11,2.2,-0.3,,-1.5,00790,1003.8,991.7,,44.0,,,25.0,30.0,,,NE,0.3,0,40,10.0
-1996-07-12,2.1,-3.1,,-1.5,00790,987.5,979.5,,39.0,,,11.0,240.0,,,E,0.7,T,39,7.0
-1996-07-13,-1.2,-5.3,,-1.6,00790,992.9,980.4,,47.0,,,18.0,50.0,,,S,3.8,2,38,10.0
-1996-07-14,0.3,-2.9,,-1.6,00790,980.0,977.1,,24.0,,,12.0,30.0,,,NE,11.1,9,47,10.0
-1996-07-15,0.3,-2.9,,-1.7,00690,987.5,973.7,,44.0,,,18.0,10.0,,,NE,0.8,1,60,10.0
-1996-07-16,-1.3,-6.1,,-1.9,00790,986.4,977.9,,29.0,,,17.0,250.0,,,SW,2.7,4,65,10.0
-1996-07-17,-4.3,-9.1,,-1.8,00790,979.3,966.5,,36.0,,,12.0,90.0,,,E,1.4,1,70,10.0
-1996-07-18,-4.3,-9.2,,-2.0,00790,982.7,980.9,,24.0,,,10.0,210.0,,,SE,0.5,1,69,9.0
-1996-07-19,-7.5,-11.2,,-1.9,00790,1001.2,984.4,,32.0,,,17.0,230.0,,,SW,0.2,T,65,10.0
-1996-07-20,-6.0,-13.3,,-1.9,00790,1008.1,993.8,,21.0,,,5.0,230.0,,,NE,0.0,0,66,10.0
-1996-07-21,0.5,-7.2,,-1.9,00790,974.8,972.4,,74.0,,,24.0,50.0,,,NW,2.0,3,48,10.0
-1996-07-22,-1.7,-7.4,,-1.9,00790,989.5,981.0,,48.0,,,21.0,350.0,,,W,1.0,T,48,9.0
-1996-07-23,-7.3,-16.1,,-2.0,00790,997.3,990.0,,60.0,,,15.0,240.0,,,SW,0.1,T,49,8.0
-1996-07-24,-0.6,-14.3,,-2.0,00790,996.1,984.8,,30.0,,,13.0,20.0,,,N,3.6,8,50,10.0
-1996-07-25,1.3,-14.7,,-1.9,20790,973.5,959.0,,44.0,,,23.0,360.0,,,NW,4.2,2,95,9.0
-1996-07-26,-2.1,-18.7,,-2.0,20790,977.1,958.3,,74.0,,,21.0,40.0,,,SE,1.5,T,50,9.0
-1996-07-27,1.6,-7.7,,-1.9,20790,969.7,951.6,,69.0,,,27.0,10.0,,,NW,2.1,0,48,10.0
-1996-07-28,1.7,-14.4,,-1.9,//790,984.3,952.8,,69.0,,,18.0,330.0,,,SE,0.9,1,49,10.0
-1996-07-29,1.1,-15.1,,-1.9,21790,975.3,950.9,,58.0,,,25.0,30.0,,,N,0.2,T,51,10.0
-1996-07-30,-3.2,-18.5,,-1.9,21790,993.4,966.5,,55.0,,,13.0,360.0,,,W,0.2,T,49,10.0
-1996-07-31,-17.7,-21.5,,-1.9,90492,1006.9,993.6,,18.0,,,7.0,220.0,,,SW,0.0,0,49,10.0
-1996-08-01,-11.3,-19.4,,-1.9,90492,1009.8,1001.2,,10.0,,,5.0,120.0,,,SW,0.4,1,48,10.0
-1996-08-02,-7.1,-13.5,,-1.7,90492,1005.7,998.3,,8.0,,,1.0,120.0,,,SE,0.0,0,48,10.0
-1996-08-03,-3.5,-12.5,,-1.8,90492,1020.0,1006.1,,9.0,,,2.0,200.0,,,N,0.0,0,48,10.0
-1996-08-04,0.2,-9.3,,-1.2,90492,1014.6,1005.8,,22.0,,,7.0,290.0,,,NW,5.1,5,55,10.0
-1996-08-05,1.4,-6.8,,-1.9,90492,1013.2,1002.7,,17.0,,,3.0,300.0,,,E,3.2,2,54,10.0
-1996-08-06,0.8,-2.2,,-1.9,90491,1002.7,995.7,,25.0,,,17.0,20.0,,,NE,1.0,1,54,10.0
-1996-08-07,0.7,-9.4,,-1.9,56493,1000.4,997.2,,19.0,,,4.0,330.0,,,E,1.5,1,60,10.0
-1996-08-08,1.8,-9.2,,-2.0,56493,1000.0,998.5,,8.0,,,2.0,210.0,,,E,0.2,T,60,10.0
-1996-08-09,2.6,-2.8,,-2.0,56493,997.8,988.4,,22.0,,,3.0,30.0,,,NE,3.6,3,61,10.0
-1996-08-10,2.6,-1.7,,-2.0,42491,987.5,974.6,,56.0,,,18.0,40.0,,,E,0.4,0,61,10.0
-1996-08-11,2.7,-2.0,,-2.0,62691,978.8,969.5,,28.0,,,8.0,50.0,,,N,0.1,T,60,10.0
-1996-08-12,0.7,-2.9,,-1.9,62691,977.4,972.4,,15.0,,,1.0,80.0,,,NE,0.0,0,60,10.0
-1996-08-13,-0.3,-3.9,,-2.0,62691,981.8,978.1,,24.0,,,6.0,40.0,,,NE,0.8,3,61,10.0
-1996-08-14,-0.7,-5.6,,-2.0,62692,994.2,982.1,,24.0,,,9.0,20.0,,,NW,0.9,T,60,10.0
-1996-08-15,-1.3,-6.1,,-2.0,62692,994.6,977.5,,24.0,,,7.0,130.0,,,E,0.6,1,61,10.0
-1996-08-16,-1.2,-6.7,,-1.4,22490,976.6,964.8,,55.0,,,24.0,110.0,,,E,0.0,0,61,10.0
-1996-08-17,-0.9,-8.6,,-1.9,20690,989.7,976.3,,45.0,,,11.0,40.0,,,N,0.1,T,60,10.0
-1996-08-18,1.1,-1.8,,-1.7,0/6/0,981.1,967.1,,46.0,,,25.0,30.0,,,N,0.6,1,60,10.0
-1996-08-19,0.6,-3.9,,-1.9,32692,983.4,967.8,,36.0,,,14.0,60.0,,,NE,0.8,0,62,10.0
-1996-08-20,3.2,-0.4,,-1.7,0/690,974.6,953.0,,66.0,,,43.0,30.0,,,NE,1.6,T,52,10.0
-1996-08-21,-0.3,-10.9,,-1.9,0/690,968.9,951.9,,58.0,,,13.0,30.0,,,W,2.0,1,61,10.0
-1996-08-22,-4.9,-16.9,,-2.0,31690,977.0,965.9,,51.0,,,21.0,40.0,,,NE,0.1,T,61,10.0
-1996-08-23,-4.6,-19.1,,-2.0,41693,968.4,964.1,,52.0,,,6.0,30.0,,,NW,5.0,3,60,10.0
-1996-08-24,-15.2,-22.7,,-2.0,41693,978.7,968.5,,21.0,,,12.0,260.0,,,SW,0.0,0,59,10.0
-1996-08-25,-13.9,-19.7,,-1.4,41693,983.4,978.0,,10.0,,,3.0,200.0,,,NE,0.3,T,58,5.0
-1996-08-26,-3.4,-19.7,,-2.0,41692,990.1,982.7,,35.0,,,5.0,130.0,,,SE,0.0,0,58,4.0
-1996-08-27,-3.2,-11.3,,-2.0,91692,1001.6,990.6,,21.0,,,4.0,130.0,,,SE,0.0,0,59,1.0
-1996-08-28,-5.1,-11.3,,-2.0,91692,1006.1,1002.4,,29.0,,,13.0,20.0,,,N,0.0,0,59,10.0
-1996-08-29,-5.8,-10.6,,-2.0,91692,1009.1,1002.8,,34.0,,,13.0,30.0,,,NE,0.0,0,58,10.0
-1996-08-30,-2.9,-10.1,,-2.0,91692,1003.0,997.7,,34.0,,,11.0,80.0,,,E,1.2,1,60,10.0
-1996-08-31,1.8,-4.7,,-2.0,91692,996.6,991.5,,61.0,,,20.0,30.0,,,E,1.5,T,58,10.0
-1996-09-01,3.4,-0.1,1.0,-2.0,82691,994.6,988.5,991.1,43.0,,,28.0,220.0,,,NE,1.3,T,58,10.0
-1996-09-02,2.8,-5.3,-2.4,-2.0,82691,998.7,993.4,997.3,22.0,,,6.0,90.0,,,NE,0.0,0,58,10.0
-1996-09-03,0.9,-3.7,-1.3,-1.7,82690,998.7,994.9,996.8,35.0,,,12.0,80.0,,,E,0.0,0,58,10.0
-1996-09-04,0.9,-3.4,-1.3,-1.7,82690,1010.2,995.9,1006.3,25.0,,,3.0,40.0,,,NE,0.5,T,58,10.0
-1996-09-05,0.9,-1.9,-0.7,-1.7,82690,1010.2,1006.1,1008.0,28.0,,,13.0,70.0,,,E,0.0,0,58,10.0
-1996-09-06,3.1,-2.5,-0.8,-1.8,82690,1008.5,1006.6,1007.6,26.0,,,6.0,80.0,,,NE,0.0,0,58,10.0
-1996-09-07,1.3,-3.4,-1.7,-1.8,82690,1006.8,999.5,1002.5,51.0,,,14.0,40.0,,,NE,0.8,1,57,10.0
-1996-09-08,-1.2,-8.0,-5.6,-1.7,84680,1008.8,1004.7,1006.8,18.0,,,5.0,10.0,,,N,1.2,1,60,8.0
-1996-09-09,2.2,-7.7,-3.1,-1.7,84680,1004.7,984.3,993.3,36.0,,,12.0,80.0,,,NE,0.0,0,60,10.0
-1996-09-10,1.5,-5.6,-2.2,-1.8,0/6/0,986.2,979.0,982.8,58.0,,,25.0,50.0,,,NE,T,T,59,10.0
-1996-09-11,0.8,-4.9,-1.4,-1.9,0/6/0,986.2,977.3,979.6,59.0,,,30.0,30.0,,,NE,0.3,T,58,10.0
-1996-09-12,2.4,-2.2,-0.2,-1.9,0/6/0,980.9,977.0,978.5,50.0,,,22.0,30.0,,,NE,0.4,T,58,10.0
-1996-09-13,0.5,-3.8,-2.6,-1.9,0/6/0,989.3,977.3,985.7,28.0,,,8.0,360.0,,,N,1.7,2,58,9.0
-1996-09-14,-3.0,-7.4,-4.8,-1.9,51692,990.4,983.3,987.3,24.0,,,10.0,240.0,,,SW,0.7,T,60,10.0
-1996-09-15,-5.9,-8.7,-7.7,-2.0,41691,990.4,987.8,988.9,18.0,,,10.0,340.0,,,NW,1.7,5,70,10.0
-1996-09-16,-6.3,-12.2,-8.8,-2.0,41692,1004.8,988.3,998.2,18.0,,,5.0,230.0,,,N,1.1,3,71,3.0
-1996-09-17,-5.4,-11.4,-8.0,-1.9,30692,1005.3,988.8,999.2,21.0,,,7.0,40.0,,,NE,0.0,0,67,8.0
-1996-09-18,0.1,-6.7,-1.6,-1.9,20692,988.8,979.3,981.5,38.0,,,10.0,60.0,,,NE,1.1,1,59,10.0
-1996-09-19,0.3,-1.7,-1.1,-1.9,21692,992.4,983.9,989.0,37.0,,,6.0,30.0,,,N,8.3,18,59,10.0
-1996-09-20,2.4,-3.1,0.0,-1.9,0/6/0,992.4,985.1,988.4,42.0,,,14.0,20.0,,,NE,4.1,2,62,10.0
-1996-09-21,3.9,1.6,2.6,-1.8,0/6/0,986.2,980.0,983.1,44.0,,,20.0,20.0,,,N,1.8,T,58,10.0
-1996-09-22,2.7,-3.0,-0.7,-1.8,0/6/0,994.6,983.0,989.4,38.0,,,21.0,30.0,,,N,0.7,1,57,10.0
-1996-09-23,3.8,-0.3,1.9,-1.8,0/6/0,991.7,982.2,986.9,60.0,,,27.0,20.0,,,N,19.9,T,52,10.0
-1996-09-24,2.0,-0.4,1.1,-1.8,0/6/0,987.9,979.6,983.8,45.0,,,22.0,350.0,,,NW,11.7,T,47,10.0
-1996-09-25,1.7,-1.2,0.6,-1.9,0/6/0,999.5,979.1,988.4,49.0,,,26.0,330.0,,,NW,1.7,T,47,10.0
-1996-09-26,3.4,-0.1,1.6,-1.8,0/6/0,999.7,973.8,986.0,60.0,,,29.0,10.0,,,N,7.1,T,44,10.0
-1996-09-27,2.3,-1.1,0.4,-1.9,0/6/0,998.3,975.6,993.6,40.0,,,22.0,360.0,,,N,4.3,T,42,10.0
-1996-09-28,3.1,0.1,1.5,-1.9,0/6/0,989.8,965.2,976.8,55.0,,,31.0,20.0,,,N,10.2,2,45,10.0
-1996-09-29,2.6,1.0,1.7,-1.8,0/6/0,973.2,965.0,971.9,60.0,,,26.0,10.0,,,N,3.6,T,37,10.0
-1996-09-30,3.6,-1.4,0.8,-1.7,0/6/0,978.5,967.5,973.9,69.0,,,22.0,30.0,,,N,1.6,T,37,10.0
-1996-10-01,1.5,0.0,0.8,-1.8,0/6/0,975.5,970.5,973.6,35.0,,,22.0,20.0,,,N,1.4,T,35,10.0
-1996-10-02,2.8,-4.2,-3.1,-1.9,52792,991.9,971.9,985.4,32.0,,,10.0,240.0,,,SW,3.1,4,43,10.0
-1996-10-03,0.1,-4.4,-0.9,-1.9,0/6/0,992.2,977.2,983.5,58.0,,,31.0,10.0,,,N,0.4,T,39,10.0
-1996-10-04,1.8,-1.4,-0.2,-1.8,0/6/0,977.2,966.5,971.3,56.0,,,28.0,20.0,,,N,0.7,T,42,9.0
-1996-10-05,-1.2,-4.1,-2.3,-1.8,0/6/0,966.1,956.7,961.3,28.0,,,9.0,330.0,,,N,0.3,T,42,10.0
-1996-10-06,0.0,-3.8,-2.6,-1.9,0/6/0,970.5,962.8,967.0,22.0,,,16.0,240.0,,,SW,2.5,2,43,10.0
-1996-10-07,-3.4,-8.3,-6.6,-2.0,71692,975.6,970.9,974.0,22.0,,,12.0,240.0,,,SW,0.1,T,43,10.0
-1996-10-08,-2.2,-8.0,-5.6,-2.0,71692,979.7,969.9,976.6,48.0,,,10.0,360.0,,,S,0.1,T,43,10.0
-1996-10-09,-0.8,-4.1,-2.5,-2.0,72692,986.2,969.9,980.0,36.0,,,13.0,250.0,,,W,0.6,1,44,9.0
-1996-10-10,1.6,-2.0,0.5,-2.0,72692,998.3,985.4,995.0,42.0,,,22.0,340.0,,,NW,2.0,2,46,10.0
-1996-10-11,1.4,-5.0,-1.1,-2.0,21691,994.9,965.5,972.3,58.0,,,30.0,360.0,,,N,2.1,2,53,10.0
-1996-10-12,0.6,-5.5,-3.7,-2.0,21691,969.2,956.0,962.7,42.0,,,20.0,340.0,,,W,3.3,3,57,9.0
-1996-10-13,-4.2,-10.2,-8.5,-2.0,21692,967.6,957.9,965.5,36.0,,,14.0,210.0,,,S,0.3,T,53,9.0
-1996-10-14,-2.4,-11.2,-8.9,-2.0,52692,969.8,964.8,966.7,18.0,,,8.0,200.0,,,S,0.0,0,51,4.0
-1996-10-15,-1.0,-10.4,-8.0,-2.0,92693,980.1,969.5,977.7,27.0,,,5.0,60.0,,,NW,1.0,1,52,8.0
-1996-10-16,0.0,-9.3,-2.6,-1.8,0/6/0,980.1,966.3,971.4,37.0,,,17.0,30.0,,,NE,3.6,3,53,10.0
-1996-10-17,4.1,-3.8,-0.4,-1.9,0/6/0,979.2,967.8,973.6,29.0,,,8.0,60.0,,,NE,1.2,1,52,8.0
-1996-10-18,-3.5,-5.3,-4.4,-1.8,0/6/0,992.9,979.2,988.3,15.0,,,5.0,220.0,,,S,T,T,51,10.0
-1996-10-19,0.5,-5.4,-3.3,-1.8,21692,996.9,992.9,995.9,13.0,,,5.0,230.0,,,SW,T,T,51,10.0
-1996-10-20,0.1,-3.3,-1.0,-1.8,21692,995.0,989.2,991.9,24.0,,,8.0,260.0,,,NW,3.3,3,53,10.0
-1996-10-21,0.3,-1.4,-0.3,-1.7,42693,989.2,981.8,985.3,26.0,,,9.0,10.0,,,NW,7.5,11,66,10.0
-1996-10-22,0.7,-7.5,-3.2,-1.8,22692,984.2,976.0,979.8,32.0,,,17.0,250.0,,,W,3.0,1,66,9.0
-1996-10-23,0.3,-7.3,-5.0,-1.8,42693,994.2,984.8,992.6,24.0,,,7.0,220.0,,,S,T,T,68,8.0
-1996-10-24,2.0,-7.4,-1.4,-1.8,52692,994.1,988.9,990.6,20.0,,,6.0,330.0,,,NW,0.2,T,67,10.0
-1996-10-25,0.2,-3.8,-1.2,-1.8,42692,990.4,980.4,984.9,38.0,,,21.0,10.0,,,NW,1.5,1,66,8.0
-1996-10-26,4.1,-6.0,-2.2,-1.9,52692,994.9,990.5,993.2,22.0,,,7.0,340.0,,,NW,0.2,T,64,8.0
-1996-10-27,4.0,-4.3,-1.5,-1.9,42692,1001.9,995.0,1000.9,12.0,,,3.0,10.0,,,NW,0.1,T,62,10.0
-1996-10-28,3.1,-6.6,-0.7,-1.9,43692,1001.9,989.5,995.9,50.0,,,9.0,10.0,,,N,0.2,T,62,9.0
-1996-10-29,4.7,-0.4,1.9,-1.6,0/6/0,992.8,984.8,988.2,52.0,,,25.0,10.0,,,N,7.5,T,51,10.0
-1996-10-30,2.6,0.4,1.7,-1.4,0/6/0,994.6,986.5,991.0,51.0,,,26.0,340.0,,,N,3.5,T,41,10.0
-1996-10-31,5.2,1.3,2.7,-1.3,0/6/0,1001.0,987.8,996.3,38.0,,,19.0,340.0,,,N,3.1,0,38,10.0
-1996-11-01,2.9,0.9,2.4,-1.2,0/6/0,989.5,980.0,986.2,50.0,,,25.0,20.0,,,N,4.8,T,29,9.0
-1996-11-02,1.7,-0.7,0.3,-1.3,0/6/0,981.3,972.3,975.6,44.0,,,27.0,10.0,,,N,0.7,T,28,9.0
-1996-11-03,0.2,-2.6,-0.6,-1.4,0/6/0,972.3,963.9,968.7,51.0,,,16.0,10.0,,,N,0.5,T,30,8.0
-1996-11-04,1.9,-0.9,0.5,-1.4,0/6/0,971.4,949.9,959.9,59.0,,,28.0,30.0,,,NE,5.0,T,27,9.0
-1996-11-05,-0.4,-3.5,-1.9,-1.5,0/6/0,963.4,954.3,959.5,36.0,,,19.0,350.0,,,W,3.9,4,46,10.0
-1996-11-06,0.6,-4.3,-1.6,-1.4,0/6/0,965.8,959.2,963.2,35.0,,,16.0,350.0,,,NW,6.2,3,48,9.0
-1996-11-07,0.2,-4.2,-3.1,-1.5,21692,978.3,965.8,975.5,21.0,,,9.0,230.0,,,SW,0.5,1,54,10.0
-1996-11-08,0.6,-3.3,-0.9,-1.4,0/6/0,977.3,969.7,974.0,55.0,,,17.0,30.0,,,N,T,T,50,10.0
-1996-11-09,1.1,-3.5,-1.4,-1.3,0/6/0,970.9,962.3,966.2,37.0,,,15.0,30.0,,,NW,0.2,T,45,10.0
-1996-11-10,1.0,-3.3,-2.0,-1.3,0/6/0,971.6,961.4,969.4,23.0,,,10.0,240.0,,,W,1.9,4,46,8.0
-1996-11-11,2.8,-6.7,-3.7,-1.0,0/4/0,970.9,967.8,969.4,16.0,,,5.0,240.0,,,SW,0.3,T,44,4.0
-1996-11-12,0.8,-7.0,-3.4,-1.3,0/6/0,969.9,965.6,967.8,16.0,,,5.0,230.0,,,SW,0.6,1,44,5.0
-1996-11-13,-2.2,-9.8,-5.5,-0.9,0/6/0,965.1,956.3,959.3,21.0,,,10.0,220.0,,,SW,T,T,43,4.0
-1996-11-14,-1.2,-7.7,-5.2,-1.0,0/6/0,963.8,955.6,959.2,25.0,,,9.0,210.0,,,SW,0.5,T,42,8.0
-1996-11-15,1.5,-6.9,-3.2,-0.8,0/6/0,971.9,963.8,970.4,9.0,,,3.0,310.0,,,NE,0.0,0,41,2.0
-1996-11-16,3.7,-4.0,-1.7,-1.0,31692,973.0,963.7,970.3,20.0,,,6.0,70.0,,,E,0.0,0,40,9.0
-1996-11-17,2.0,-2.5,0.6,-0.9,0/6/0,963.7,957.3,959.4,24.0,,,5.0,320.0,,,SE,2.5,T,40,10.0
-1996-11-18,4.5,-1.8,0.2,-1.0,0/6/0,973.6,963.7,969.8,37.0,,,10.0,10.0,,,NW,0.7,2,42,9.0
-1996-11-19,2.5,-1.7,-0.3,-1.0,0/6/0,977.8,959.7,968.7,47.0,,,21.0,100.0,,,N,4.4,4,50,10.0
-1996-11-20,6.5,-3.1,1.2,-0.8,0/6/0,988.1,977.8,985.5,14.0,,,6.0,20.0,,,N,T,T,45,4.0
-1996-11-21,8.1,-2.5,2.1,-0.5,0/6/0,993.9,986.8,990.0,17.0,,,4.0,70.0,,,E,0.0,0,40,2.0
-1996-11-22,5.6,-1.7,1.4,-0.2,0/6/0,999.8,993.9,998.8,14.0,,,4.0,20.0,,,N,T,T,37,10.0
-1996-11-23,4.3,-0.9,0.7,0.2,0/6/0,998.0,989.8,993.7,16.0,,,3.0,100.0,,,NW,T,T,35,9.0
-1996-11-24,5.7,-0.7,2.1,-0.7,0/5/0,989.8,980.3,982.9,40.0,,,14.0,70.0,,,NE,0.0,0,32,10.0
-1996-11-25,6.7,0.3,2.4,-0.2,0/5/0,985.8,981.1,984.3,12.0,,,4.0,180.0,,,SE,T,0,28,9.0
-1996-11-26,5.6,0.2,2.0,-0.1,0/5/0,984.3,977.3,980.6,23.0,,,4.0,130.0,,,NW,T,T,25,10.0
-1996-11-27,5.6,0.1,2.6,0.0,0/5/0,989.4,984.3,987.8,19.0,,,5.0,20.0,,,SE,0.3,0,21,9.0
-1996-11-28,5.3,0.6,3.0,-0.2,0/6/0,989.4,977.8,981.3,44.0,,,20.0,10.0,,,NE,5.6,0,10,10.0
-1996-11-29,4.6,0.5,2.2,0.2,0/6/0,980.1,974.3,977.4,22.0,,,5.0,30.0,,,SE,T,T,5,10.0
-1996-11-30,2.1,-2.6,-1.7,0.0,0/6/0,981.5,980.1,981.3,20.0,,,9.0,250.0,,,SW,0.2,T,5,10.0
-1996-12-01,0.4,-2.9,-1.5,-0.2,0/6/0,980.8,977.5,978.2,22.0,,,11.0,260.0,,,SW,T,T,0,9.0
-1996-12-02,-1.0,-4.0,-2.7,-0.1,0/6/0,981.2,977.2,978.6,22.0,,,13.0,220.0,,,SW,T,T,0,9.0
-1996-12-03,3.7,-3.3,-1.0,-0.1,0/6/0,990.5,981.0,986.4,13.0,,,4.0,230.0,,,NW,T,T,0,9.0
-1996-12-04,2.5,-1.1,0.3,-0.1,0/6/0,1001.1,985.2,992.3,45.0,,,13.0,20.0,,,NW,0.2,T,0,10.0
-1996-12-05,4.5,-1.3,1.4,-0.5,0/6/0,1006.2,1001.1,1004.9,32.0,,,10.0,360.0,,,N,1.9,T,0,10.0
-1996-12-06,4.1,0.1,2.0,-0.5,0/6/0,1004.0,993.6,1000.3,39.0,,,18.0,10.0,,,N,8.1,1,0,10.0
-1996-12-07,3.6,-1.1,0.2,-0.4,0/6/0,1000.0,987.4,992.0,23.0,,,5.0,220.0,,,S,12.3,9,4,8.0
-1996-12-08,2.5,-1.4,0.6,-0.2,0/6/0,1005.9,998.7,1003.0,38.0,,,14.0,40.0,,,N,T,0,0,10.0
-1996-12-09,4.3,-0.5,0.9,-0.2,0/6/0,1001.3,996.5,999.6,32.0,,,7.0,30.0,,,NW,6.5,1,0,10.0
-1996-12-10,2.4,-0.7,0.6,-0.4,0/6/0,1002.3,1000.1,1001.0,9.0,,,5.0,260.0,,,W,0.3,T,0,10.0
-1996-12-11,2.2,-1.7,-0.3,-0.2,0/6/0,1003.2,995.8,1000.9,12.0,,,5.0,260.0,,,W,0.4,T,0,10.0
-1996-12-12,7.6,-2.5,2.4,0.2,0/6/0,995.8,982.1,986.0,34.0,,,7.0,100.0,,,E,0.0,0,0,9.0
-1996-12-13,4.0,-1.7,2.4,-0.1,0/6/0,989.1,978.4,982.4,40.0,,,14.0,60.0,,,E,0.1,T,0,10.0
-1996-12-14,3.5,-0.4,0.9,-0.1,0/6/0,978.9,977.3,978.6,28.0,,,8.0,360.0,,,NW,2.6,1,0,10.0
-1996-12-15,4.2,-1.8,0.5,0.0,0/6/0,983.9,978.6,980.6,9.0,,,4.0,40.0,,,E,0.2,T,0,9.0
-1996-12-16,2.6,-1.0,0.0,0.2,0/6/0,989.3,983.9,987.8,7.0,,,3.0,130.0,,,SE,0.3,T,0,10.0
-1996-12-17,2.6,-1.7,0.4,0.3,0/6/0,990.9,989.2,990.2,14.0,,,5.0,220.0,,,SW,2.0,2,0,10.0
-1996-12-18,2.2,-0.7,1.1,0.5,0/6/0,992.1,990.7,991.4,21.0,,,8.0,360.0,,,W,0.8,T,0,10.0
-1996-12-19,5.5,1.1,3.1,0.1,0/6/0,990.7,976.3,983.0,27.0,,,10.0,100.0,,,SE,0.0,0,0,10.0
-1996-12-20,5.5,0.5,3.2,0.2,0/6/0,976.3,970.0,971.1,29.0,,,9.0,70.0,,,E,3.0,T,0,9.0
-1996-12-21,6.6,1.8,4.7,0.1,0/6/0,969.8,967.1,968.9,38.0,,,12.0,20.0,,,N,0.7,0,0,10.0
-1996-12-22,7.2,3.1,4.7,-0.1,0/6/0,969.9,966.6,968.1,45.0,,,22.0,100.0,,,E,T,0,0,10.0
-1996-12-23,5.3,1.6,2.9,-0.4,0/6/0,986.3,970.0,979.8,45.0,,,7.0,100.0,,,E,1.2,T,0,10.0
-1996-12-24,8.2,-0.4,3.9,-0.1,0/6/0,990.9,986.3,989.0,14.0,,,2.0,100.0,,,E,0.0,0,0,2.0
-1996-12-25,9.6,-0.1,5.4,0.3,0/6/0,986.8,981.4,982.9,26.0,,,11.0,120.0,,,E,0.0,0,0,4.0
-1996-12-26,9.2,1.6,4.8,0.1,0/6/0,995.5,983.2,990.7,26.0,,,7.0,120.0,,,W,0.0,0,0,3.0
-1996-12-27,4.0,0.0,0.8,0.6,0/6/0,996.9,991.5,994.5,9.0,,,4.0,240.0,,,W,0.0,0,0,9.0
-1996-12-28,3.2,-1.1,0.7,0.0,0/6/0,991.9,985.8,987.3,9.0,,,2.0,260.0,,,W,3.0,2,0,10.0
-1996-12-29,5.7,0.1,2.1,0.2,0/6/0,985.9,981.3,984.0,19.0,,,5.0,220.0,,,SW,T,T,0,8.0
-1996-12-30,6.5,0.6,3.7,0.0,0/6/0,981.3,971.5,974.4,34.0,,,10.0,60.0,,,E,0.2,T,0,10.0
-1996-12-31,5.6,0.7,2.4,0.1,0/6/0,981.8,973.1,979.2,22.0,,,5.0,100.0,,,E,1.3,T,0,10.0
-1997-01-01,5.6,1.3,4.3,0.2,0/6/0,981.9,970.3,975.9,38.0,,,11.0,30.0,,,NE,T,0,0,9.0
-1997-01-02,5.8,0.8,2.7,0.4,0/6/0,976.9,970.8,975.3,33.0,,,13.0,360.0,,,N,2.3,0,0,9.0
-1997-01-03,5.5,0.3,1.6,0.5,0/6/0,981.1,976.9,979.6,18.0,,,6.0,350.0,,,N,1.4,T,0,10.0
-1997-01-04,4.5,-1.5,1.2,0.6,0/6/0,981.1,978.9,980.3,7.0,,,3.0,50.0,,,NE,0.0,0,0,8.0
-1997-01-05,5.6,-0.4,2.1,0.5,0/6/0,978.9,975.0,976.7,10.0,,,2.0,360.0,,,NE,0.0,0,0,7.0
-1997-01-06,5.5,-1.1,2.3,0.8,0/6/0,975.0,970.2,972.1,13.0,,,4.0,190.0,,,SW,0.0,0,0,2.0
-1997-01-07,5.6,-1.1,1.7,0.8,0/6/0,980.6,973.6,978.6,22.0,,,6.0,10.0,,,N,0.0,0,0,7.0
-1997-01-08,5.6,0.5,2.7,1.0,0/6/0,984.0,979.2,981.2,27.0,,,8.0,20.0,,,NE,T,0,0,9.0
-1997-01-09,5.9,-0.1,2.8,1.7,0/6/0,990.2,984.0,987.7,22.0,,,6.0,10.0,,,N,1.4,T,0,5.0
-1997-01-10,8.2,2.6,4.0,0.8,0/6/0,987.2,971.9,976.2,36.0,,,15.0,40.0,,,E,T,0,0,10.0
-1997-01-11,8.3,2.1,4.5,1.0,0/6/0,977.9,972.8,976.2,34.0,,,17.0,20.0,,,N,2.1,0,0,9.0
-1997-01-12,5.7,2.2,4.5,1.0,0/6/0,981.8,977.2,979.4,30.0,,,10.0,40.0,,,N,1.7,0,0,10.0
-1997-01-13,5.5,2.2,4.0,1.0,0/6/0,992.9,981.9,987.6,26.0,,,14.0,360.0,,,N,2.5,0,0,7.0
-1997-01-14,8.9,2.9,5.3,1.2,0/6/0,994.0,981.9,987.1,38.0,,,13.0,80.0,,,E,0.4,0,0,10.0
-1997-01-15,7.5,2.6,4.8,1.3,0/6/0,991.8,982.0,988.9,35.0,,,16.0,10.0,,,N,0.4,0,0,9.0
-1997-01-16,6.1,1.1,2.6,1.0,0/6/0,988.9,978.9,982.6,40.0,,,11.0,90.0,,,E,5.9,T,0,10.0
-1997-01-17,2.6,0.5,1.2,1.0,0/6/0,995.6,986.2,992.1,19.0,,,7.0,270.0,,,W,T,0,0,10.0
-1997-01-18,2.0,-0.8,0.0,0.8,0/6/0,1003.6,995.6,1001.5,10.0,,,3.0,220.0,,,W,T,T,0,10.0
-1997-01-19,6.0,-2.1,1.4,1.0,0/6/0,1003.7,996.0,999.9,26.0,,,3.0,120.0,,,SE,0.1,T,0,10.0
-1997-01-20,6.0,1.9,3.9,1.0,0/6/0,996.0,986.4,991.4,26.0,,,3.0,120.0,,,SE,0.1,0,0,9.0
-1997-01-21,6.4,0.9,4.2,1.0,0/6/0,986.4,971.4,978.0,41.0,,,10.0,70.0,,,E,0.2,0,0,10.0
-1997-01-22,9.5,1.6,5.0,1.0,0/6/0,991.9,974.5,985.8,52.0,,,8.0,140.0,,,E,0.9,0,0,9.0
-1997-01-23,4.7,2.2,3.5,1.1,0/6/0,992.4,976.0,988.2,42.0,,,23.0,10.0,,,N,3.0,0,0,10.0
-1997-01-24,6.2,0.5,3.8,0.9,0/6/0,993.1,984.8,989.3,39.0,,,16.0,10.0,,,N,2.1,0,0,10.0
-1997-01-25,5.5,1.4,2.8,0.8,0/6/0,985.3,982.5,984.0,29.0,,,4.0,340.0,,,SE,3.2,T,0,10.0
-1997-01-26,6.0,0.9,2.8,0.9,0/6/0,983.2,982.2,982.7,10.0,,,2.0,360.0,,,SE,0.6,T,0,10.0
-1997-01-27,4.7,0.5,1.6,0.9,0/6/0,985.2,980.2,982.4,9.0,,,1.0,320.0,,,NW,1.5,T,0,10.0
-1997-01-28,2.6,0.1,1.3,0.8,0/6/0,997.5,985.2,993.0,8.0,,,3.0,230.0,,,W,0.1,T,0,10.0
-1997-01-29,6.5,0.0,2.1,1.1,0/6/0,1000.8,997.5,999.9,13.0,,,3.0,10.0,,,NE,0.7,1,0,8.0
-1997-01-30,6.0,-0.7,2.3,1.2,0/6/0,1000.2,996.9,998.0,6.0,,,2.0,120.0,,,NE,0.0,0,0,4.0
-1997-01-31,3.3,-0.3,1.2,1.3,0/6/0,999.0,997.0,998.0,7.0,,,1.0,340.0,,,NW,0.8,T,0,10.0
-1997-02-01,3.0,-1.2,0.3,1.1,0/6/0,1005.1,999.0,1002.4,14.0,,,2.0,250.0,,,W,16.4,22,0,10.0
-1997-02-02,4.3,-0.8,1.0,1.2,0/6/0,1007.8,1005.1,1007.0,9.0,,,4.0,190.0,,,S,8.7,20,15,10.0
-1997-02-03,3.2,-1.3,1.2,1.2,0/6/0,1007.2,1004.6,1005.1,8.0,,,5.0,210.0,,,S,0.6,T,0,8.0
-1997-02-04,3.0,-0.3,0.5,1.3,0/6/0,1004.6,1003.2,1004.0,20.0,,,10.0,230.0,,,SW,0.0,0,0,10.0
-1997-02-05,3.0,-1.1,0.3,1.0,0/6/0,1003.5,995.3,999.5,13.0,,,6.0,260.0,,,S,0.2,T,0,10.0
-1997-02-06,4.7,-0.9,2.2,1.0,0/6/0,995.1,975.9,985.6,47.0,,,10.0,50.0,,,SE,6.4,1,0,10.0
-1997-02-07,5.4,-1.6,3.2,1.0,0/6/0,975.9,969.9,972.7,45.0,,,13.0,30.0,,,N,2.3,T,0,10.0
-1997-02-08,7.4,1.6,3.7,1.1,0/6/0,980.2,971.9,975.3,20.0,,,6.0,40.0,,,NE,0.1,0,0,8.0
-1997-02-09,3.5,-2.1,-1.0,1.0,0/6/0,998.0,980.2,992.0,22.0,,,12.0,230.0,,,SW,1.9,2,0,9.0
-1997-02-10,4.7,-1.7,1.0,1.2,0/6/0,1000.9,998.0,999.6,22.0,,,5.0,40.0,,,SW,0.1,T,0,8.0
-1997-02-11,3.9,0.2,1.9,0.8,0/6/0,998.8,995.8,996.3,24.0,,,8.0,90.0,,,SE,10.8,T,0,10.0
-1997-02-12,8.0,1.4,3.8,1.0,0/6/0,997.1,980.6,987.9,23.0,,,6.0,350.0,,,SE,0.8,0,0,10.0
-1997-02-13,7.6,1.6,3.1,0.8,0/6/0,989.7,980.0,986.2,46.0,,,15.0,10.0,,,N,3.1,0,0,10.0
-1997-02-14,7.9,2.1,4.4,1.0,0/6/0,989.1,985.4,986.3,33.0,,,10.0,10.0,,,N,0.5,0,0,10.0
-1997-02-15,7.0,2.2,3.9,1.0,0/6/0,986.5,985.0,985.4,24.0,,,7.0,20.0,,,NE,T,0,0,10.0
-1997-02-16,5.2,1.6,2.6,0.9,0/6/0,985.0,982.5,983.2,10.0,,,4.0,130.0,,,NE,0.2,0,0,10.0
-1997-02-17,3.4,0.4,1.3,0.8,0/6/0,994.8,983.2,989.2,8.0,,,2.0,330.0,,,NW,8.2,T,0,10.0
-1997-02-18,1.2,-0.5,0.4,0.6,0/6/0,1002.9,994.8,1000.7,22.0,,,7.0,220.0,,,SW,5.2,1,0,10.0
-1997-02-19,3.0,-3.0,-0.2,0.8,0/6/0,1001.7,988.0,993.6,18.0,,,3.0,10.0,,,NE,1.2,T,0,10.0
-1997-02-20,4.9,0.5,2.8,0.9,0/6/0,988.0,978.0,980.5,35.0,,,11.0,20.0,,,N,1.2,T,0,10.0
-1997-02-21,4.6,0.2,2.5,0.6,0/6/0,982.5,978.2,979.8,14.0,,,5.0,40.0,,,NE,1.9,T,0,9.0
-1997-02-22,4.6,-0.2,1.6,0.6,0/6/0,989.2,982.2,987.1,9.0,,,3.0,320.0,,,NW,0.2,T,0,8.0
-1997-02-23,5.2,-1.4,1.0,0.7,0/6/0,990.9,989.2,990.1,10.0,,,3.0,10.0,,,N,0.0,0,0,5.0
-1997-02-24,2.4,-1.5,0.0,0.9,0/6/0,990.1,988.6,989.1,14.0,,,3.0,200.0,,,N,0.0,0,0,10.0
-1997-02-25,2.5,-1.4,-0.1,0.9,0/6/0,996.0,989.0,992.9,15.0,,,5.0,200.0,,,SE,0.0,0,0,9.0
-1997-02-26,3.0,-0.6,0.9,0.8,0/6/0,997.5,994.2,996.0,32.0,,,10.0,40.0,,,NE,0.0,0,0,8.0
-1997-02-27,4.2,-0.2,2.5,0.9,0/6/0,995.0,994.1,994.3,37.0,,,15.0,10.0,,,N,T,0,0,10.0
-1997-02-28,6.5,1.4,4.0,1.0,0/6/0,998.8,983.0,993.7,48.0,,,19.0,30.0,,,N,4.7,0,0,10.0
-1997-03-01,7.3,1.2,3.3,0.8,0/6/0,984.9,969.2,978.3,46.0,,,24.0,30.0,,,NW,3.4,T,0,10.0
-1997-03-02,3.7,-0.2,1.4,1.1,0/6/0,991.3,981.4,985.4,17.0,,,3.0,330.0,,,NW,1.6,T,0,9.0
-1997-03-03,3.8,-1.0,1.4,0.7,0/6/0,992.8,981.3,987.8,18.0,,,4.0,100.0,,,E,0.1,T,0,10.0
-1997-03-04,4.5,0.5,3.3,0.8,0/6/0,994.5,978.7,986.6,41.0,,,16.0,360.0,,,N,3.7,T,0,10.0
-1997-03-05,5.1,0.8,2.4,0.8,0/6/0,998.2,994.5,996.6,23.0,,,6.0,10.0,,,N,0.3,0,0,10.0
-1997-03-06,2.7,0.0,0.9,0.6,0/6/0,1000.2,997.9,999.0,18.0,,,4.0,210.0,,,SW,0.6,0,0,8.0
-1997-03-07,3.5,0.1,2.1,0.5,0/6/0,1000.5,988.8,993.5,26.0,,,14.0,20.0,,,N,1.5,0,0,10.0
-1997-03-08,3.5,0.3,1.2,0.5,0/6/0,994.7,984.1,987.7,26.0,,,7.0,220.0,,,SW,0.8,0,0,8.0
-1997-03-09,1.7,-0.4,0.8,0.0,0/6/0,999.9,984.8,994.3,30.0,,,14.0,340.0,,,NW,6.5,T,0,10.0
-1997-03-10,2.7,-1.1,0.4,-0.1,0/6/0,984.8,975.6,977.9,52.0,,,23.0,260.0,,,SW,12.0,T,0,10.0
-1997-03-11,0.8,-2.9,-1.0,0.2,0/6/0,979.9,975.2,977.4,43.0,,,18.0,220.0,,,SW,4.7,5,10,9.0
-1997-03-12,1.3,-2.0,-0.6,0.5,0/6/0,995.2,978.5,987.1,35.0,,,13.0,220.0,,,SW,0.1,T,9,5.0
-1997-03-13,0.6,-2.1,-0.1,-0.5,0/6/0,994.2,983.3,988.1,22.0,,,9.0,260.0,,,SW,3.5,3,10,10.0
-1997-03-14,1.5,-0.4,0.5,-0.3,0/6/0,1005.0,994.2,999.7,30.0,,,14.0,220.0,,,SW,0.6,1,10,10.0
-1997-03-15,2.5,-0.5,0.4,0.0,0/6/0,1014.8,1005.0,1011.5,29.0,,,8.0,220.0,,,SW,T,T,10,9.0
-1997-03-16,3.6,-0.5,2.0,-0.5,0/6/0,1014.2,1000.5,1005.1,44.0,,,7.0,10.0,,,SE,3.7,0,2,10.0
-1997-03-17,2.7,0.0,0.8,-0.7,0/6/0,1002.2,990.6,997.6,30.0,,,11.0,310.0,,,NW,5.6,3,0,10.0
-1997-03-18,0.5,-1.6,-0.2,-0.9,0/6/0,994.8,989.0,991.9,23.0,,,5.0,200.0,,,SW,1.1,4,5,10.0
-1997-03-19,1.5,-0.5,0.7,-1.2,0/6/0,994.5,978.9,985.1,39.0,,,14.0,20.0,,,NW,1.7,T,0,10.0
-1997-03-20,2.0,-0.2,1.2,-0.8,0/6/0,980.7,977.0,978.9,34.0,,,17.0,350.0,,,NW,5.3,T,0,10.0
-1997-03-21,2.0,-3.9,-1.4,-1.0,0/6/0,981.4,975.0,978.4,34.0,,,16.0,10.0,,,W,7.8,3,4,9.0
-1997-03-22,-1.2,-5.0,-2.3,-1.0,0/6/0,981.4,973.8,977.5,46.0,,,17.0,30.0,,,SW,1.3,1,13,9.0
-1997-03-23,-0.8,-5.0,-3.2,-0.7,0/6/0,988.0,979.2,982.1,38.0,,,11.0,230.0,,,SW,1.4,2,15,8.0
-1997-03-24,-1.8,-4.4,-3.4,-0.7,0/6/0,1002.2,988.0,998.1,23.0,,,8.0,220.0,,,S,T,T,13,6.0
-1997-03-25,0.4,-4.0,-1.8,-0.9,21692,1004.7,1002.2,1003.9,9.0,,,3.0,250.0,,,N,T,T,12,7.0
-1997-03-26,1.0,-1.9,-0.2,-0.6,21691,1005.1,995.0,1001.4,22.0,,,7.0,110.0,,,E,1.1,T,11,10.0
-1997-03-27,6.3,0.5,3.2,-0.1,0/6/0,994.2,971.6,978.2,44.0,,,21.0,30.0,,,NE,0.9,0,7,10.0
-1997-03-28,4.8,0.4,1.7,-0.1,0/6/0,973.8,964.6,969.6,38.0,,,8.0,10.0,,,NE,4.8,1,0,10.0
-1997-03-29,4.6,-0.4,1.9,0.0,0/6/0,980.6,964.2,972.0,29.0,,,7.0,100.0,,,E,0.5,0,0,6.0
-1997-03-30,0.6,-1.4,-0.4,0.3,0/6/0,989.5,980.6,986.4,22.0,,,9.0,220.0,,,SW,T,T,0,10.0
-1997-03-31,0.2,-1.9,-0.9,-0.9,0/6/0,987.2,982.0,985.1,34.0,,,9.0,230.0,,,SW,3.6,4,16,10.0
-1997-04-01,-0.5,-2.3,-1.6,-0.3,0/6/0,999.4,987.2,996.2,26.0,,,9.0,230.0,,,SW,0.3,T,18,10.0
-1997-04-02,2.0,-3.2,-0.6,-0.4,0/6/0,1003.7,996.9,1000.0,40.0,,,14.0,10.0,,,N,1.7,T,15,10.0
-1997-04-03,0.3,-1.5,0.0,-0.3,0/6/0,1013.2,1002.8,1009.4,12.0,,,3.0,320.0,,,NW,1.0,1,13,10.0
-1997-04-04,1.8,-1.5,0.4,-0.2,0/6/0,1013.4,1008.7,1011.1,20.0,,,3.0,40.0,,,SE,0.0,0,12,10.0
-1997-04-05,3.0,-0.2,1.0,-0.5,0/6/0,1008.7,1000.1,1003.6,24.0,,,7.0,20.0,,,E,2.5,T,10,10.0
-1997-04-06,6.0,0.8,3.2,-0.1,0/6/0,1001.0,987.1,994.3,42.0,,,16.0,30.0,,,N,3.1,0,6,10.0
-1997-04-07,3.8,-0.5,1.8,-0.4,0/6/0,989.3,982.8,986.3,56.0,,,20.0,10.0,,,N,10.7,1,3,10.0
-1997-04-08,6.5,-0.6,2.6,-0.2,0/6/0,988.3,967.0,975.8,42.0,,,13.0,30.0,,,NE,1.4,0,0,10.0
-1997-04-09,3.5,-2.3,-1.0,-0.4,0/6/0,971.8,966.2,968.9,19.0,,,7.0,220.0,,,SW,11.5,11,10,10.0
-1997-04-10,-1.5,-3.3,-2.0,-0.3,0/6/0,981.3,971.8,977.7,19.0,,,7.0,250.0,,,SW,0.2,T,8,10.0
-1997-04-11,-1.0,-4.0,-1.8,-0.2,21692,984.7,981.2,982.8,25.0,,,9.0,240.0,,,N,1.3,2,9,10.0
-1997-04-12,-1.0,-3.5,-2.0,-1.2,0/6/0,983.1,974.0,977.7,14.0,,,6.0,320.0,,,N,2.9,4,15,10.0
-1997-04-13,0.5,-6.0,-2.4,-1.0,21692,977.1,972.7,974.9,28.0,,,6.0,10.0,,,NE,T,T,14,4.0
-1997-04-14,2.0,-1.5,1.2,-0.8,0/6/0,977.2,972.5,974.3,50.0,,,26.0,20.0,,,NE,T,T,11,10.0
-1997-04-15,1.5,-1.5,-0.3,-0.4,21691,972.5,968.0,968.6,24.0,,,3.0,70.0,,,NW,1.1,1,11,10.0
-1997-04-16,0.8,-2.5,-1.1,-0.1,0/6/0,970.0,968.5,969.2,8.0,,,1.0,320.0,,,NE,2.0,2,14,10.0
-1997-04-17,-0.5,-2.5,-1.0,-1.0,0/5/0,969.6,967.3,968.2,12.0,,,4.0,340.0,,,NW,1.1,1,15,10.0
-1997-04-18,-0.5,-4.0,-2.3,-0.8,0/5/0,970.0,968.3,969.5,17.0,,,4.0,70.0,,,NE,T,T,15,4.0
-1997-04-19,-1.0,-4.0,-2.4,-0.6,0/4/0,972.8,970.0,971.9,23.0,,,7.0,150.0,,,NE,0.0,0,14,8.0
-1997-04-20,-2.0,-3.6,-2.7,-1.1,0/4/0,972.8,967.9,969.4,24.0,,,10.0,250.0,,,SW,2.0,2,15,10.0
-1997-04-21,-1.9,-6.6,-3.0,-1.3,0/5/0,984.5,971.0,979.4,18.0,,,7.0,230.0,,,SW,0.0,0,17,1.0
-1997-04-22,-2.3,-6.4,-4.1,-1.7,0/5/0,985.5,976.2,981.2,25.0,,,6.0,60.0,,,NE,0.0,0,15,5.0
-1997-04-23,-1.2,-3.8,-2.3,-1.5,0/5/0,982.3,975.9,978.5,15.0,,,2.0,140.0,,,NE,3.1,4,16,8.0
-1997-04-24,1.3,-3.2,-0.6,-0.7,0/5/0,986.9,982.3,985.0,31.0,,,9.0,70.0,,,N,2.5,3,22,7.0
-1997-04-25,0.4,-4.1,-1.6,-0.5,0/5/0,992.0,982.5,986.8,42.0,,,11.0,20.0,,,N,1.0,1,21,5.0
-1997-04-26,-1.7,-4.6,-2.7,-0.8,0/5/0,999.5,992.0,997.8,23.0,,,8.0,280.0,,,SW,5.8,6,30,10.0
-1997-04-27,-3.1,-5.5,-4.0,-1.0,0/5/0,999.1,991.7,994.8,13.0,,,4.0,10.0,,,N,0.8,2,28,9.0
-1997-04-28,-2.5,-5.2,-3.0,-1.2,0/5/0,991.8,973.8,980.0,38.0,,,16.0,360.0,,,NW,0.7,T,28,10.0
-1997-04-29,-2.6,-7.6,-5.9,-1.1,0/4/0,984.8,974.2,981.2,32.0,,,13.0,230.0,,,SW,0.8,T,29,10.0
-1997-04-30,-4.6,-6.8,-6.3,-0.8,0/6/0,992.3,984.7,990.1,19.0,,,8.0,190.0,,,SW,0.3,T,28,10.0
-1997-05-01,-1.6,-7.4,-4.3,-0.6,0/5/0,991.9,987.3,989.3,29.0,,,11.0,110.0,,,SE,0.6,T,27,10.0
-1997-05-02,0.7,-5.9,-1.2,-0.4,0/5/0,987.5,972.9,977.0,49.0,,,20.0,40.0,,,NE,3.9,4,26,10.0
-1997-05-03,-1.5,-4.7,-2.8,-0.7,0/4/0,985.9,974.3,981.0,24.0,,,12.0,240.0,,,SW,2.3,2,37,10.0
-1997-05-04,-3.1,-7.3,-4.1,-1.3,0/6/0,996.4,986.0,993.3,21.0,,,9.0,190.0,,,N,0.0,0,32,1.0
-1997-05-05,-3.7,-6.2,-4.6,-1.0,0/6/0,997.3,994.4,995.9,15.0,,,8.0,10.0,,,N,1.0,2,35,9.0
-1997-05-06,-1.0,-5.2,-2.3,-1.4,0/6/0,997.1,992.0,992.4,27.0,,,10.0,220.0,,,NW,1.0,2,33,9.0
-1997-05-07,0.6,-5.6,-2.7,-1.5,0/6/0,993.5,979.5,987.4,42.0,,,19.0,30.0,,,SW,1.3,1,30,2.0
-1997-05-08,0.9,-4.8,-1.6,-1.4,0/5/0,995.8,977.3,991.0,49.0,,,23.0,360.0,,,SW,0.2,T,29,10.0
-1997-05-09,1.4,-4.7,-1.6,-1.4,0/5/0,999.8,994.3,996.6,26.0,,,9.0,120.0,,,SW,10.5,5,27,10.0
-1997-05-10,3.5,-1.0,0.5,-1.0,0/5/0,998.9,995.3,998.1,26.0,,,9.0,320.0,,,NW,1.7,T,32,10.0
-1997-05-11,5.9,-1.4,1.8,-1.1,0/6/0,999.5,982.0,992.8,30.0,,,22.0,30.0,,,N,1.5,0,19,10.0
-1997-05-12,4.7,1.3,2.6,-0.6,0/6/0,988.1,979.3,984.3,62.0,,,29.0,20.0,,,N,4.2,0,9,10.0
-1997-05-13,4.7,0.2,2.8,-0.6,0/6/0,988.7,976.5,983.0,48.0,,,21.0,360.0,,,N,1.4,0,5,10.0
-1997-05-14,2.0,-3.2,-0.9,-0.7,0/0/0,985.4,976.2,981.5,40.0,,,20.0,350.0,,,NW,1.1,T,2,9.0
-1997-05-15,-2.3,-5.2,-3.6,-0.8,0/6/0,987.3,985.0,986.4,29.0,,,11.0,310.0,,,N,0.9,1,4,8.0
-1997-05-16,-3.2,-7.3,-4.8,-1.0,0/6/0,1001.1,985.3,995.7,22.0,,,11.0,220.0,,,SW,0.0,0,3,1.0
-1997-05-17,-4.0,-7.2,-5.2,-1.0,0/6/0,1001.5,999.6,1000.4,19.0,,,4.0,150.0,,,NE,0.0,0,2,1.0
-1997-05-18,-4.6,-7.6,-5.3,-0.9,0/6/0,1000.0,996.8,997.5,16.0,,,8.0,190.0,,,SW,0.1,T,2,9.0
-1997-05-19,-5.2,-6.7,-5.9,-1.0,0/6/0,1001.2,997.3,999.4,17.0,,,5.0,210.0,,,SW,T,T,2,9.0
-1997-05-20,-4.2,-6.8,-4.6,-1.5,0/5/0,1000.8,999.5,999.8,9.0,,,4.0,240.0,,,N,0.2,0,2,2.0
-1997-05-21,-3.5,-5.0,-4.3,-1.6,0/6/0,1003.0,999.8,1001.1,20.0,,,6.0,230.0,,,SW,0.5,0,2,10.0
-1997-05-22,-2.1,-5.0,-3.5,-1.9,0/6/0,1004.5,1003.0,1003.8,16.0,,,9.0,200.0,,,SW,0.2,0,2,10.0
-1997-05-23,-2.2,-3.8,-3.1,-1.5,0/6/0,1012.5,1004.2,1009.6,18.0,,,7.0,210.0,,,SW,0.1,0,2,10.0
-1997-05-24,-1.1,-3.6,-2.0,-1.4,20692,1013.5,1004.1,1008.9,15.0,,,8.0,340.0,,,NW,5.7,8,4,10.0
-1997-05-25,-0.9,-4.7,-2.7,-1.5,20692,1019.0,1002.5,1011.9,18.0,,,7.0,210.0,,,SW,2.0,2,22,8.0
-1997-05-26,-1.2,-3.9,-1.9,-1.4,20692,1020.0,1015.0,1016.9,28.0,,,9.0,240.0,,,SW,0.0,0,20,10.0
-1997-05-27,-1.5,-2.8,-2.1,-1.5,20692,1016.4,1014.3,1016.1,12.0,,,4.0,220.0,,,SW,0.3,0,19,10.0
-1997-05-28,-1.3,-5.5,-2.8,-1.7,20692,1014.0,1004.5,1009.4,12.0,,,4.0,230.0,,,NW,1.0,T,19,10.0
-1997-05-29,0.0,-2.3,-1.0,-1.6,20692,1005.4,1001.2,1003.8,13.0,,,4.0,300.0,,,NW,5.4,1,19,10.0
-1997-05-30,-1.7,-5.2,-3.3,-1.3,20692,1005.6,1002.9,1003.9,9.0,,,2.0,320.0,,,NE,0.3,0,19,3.0
-1997-05-31,-1.0,-5.1,-3.3,-1.4,20692,1003.2,1001.3,1002.1,8.0,,,2.0,310.0,,,NW,0.0,0,19,8.0
-1997-06-01,-0.1,-5.6,-2.6,-1.1,20692,1002.8,1000.8,1001.5,1.0,,,0.0,120.0,,,NE,1.8,0,19,10.0
-1997-06-02,7.1,-0.5,3.5,-0.8,0/6/0,1005.2,998.0,1002.6,37.0,,,15.0,20.0,,,NE,0.2,0,10,10.0
-1997-06-03,5.0,0.3,2.7,-0.6,0/6/0,997.0,994.2,996.0,54.0,,,16.0,20.0,,,NE,0.8,0,0,8.0
-1997-06-04,4.9,0.4,2.0,-0.9,0/6/0,1002.3,991.8,996.9,40.0,,,22.0,20.0,,,N,6.5,0,0,9.0
-1997-06-05,4.0,-1.3,0.9,-0.9,0/6/0,1002.5,995.0,997.0,46.0,,,16.0,360.0,,,N,2.0,0,0,7.0
-1997-06-06,0.5,-2.0,-1.0,-1.1,0/6/0,1005.7,996.8,1003.1,17.0,,,7.0,40.0,,,NW,3.4,5,1,10.0
-1997-06-07,-0.4,-6.2,-3.3,-1.2,0/6/0,1006.1,1004.2,1004.7,12.0,,,6.0,210.0,,,SW,3.5,1,13,10.0
-1997-06-08,-2.6,-6.9,-4.2,-1.8,0/6/0,1009.1,1003.2,1006.5,20.0,,,8.0,220.0,,,N,0.0,0,11,10.0
-1997-06-09,-2.6,-4.6,-3.8,-1.5,0/5/0,1003.9,1000.9,1002.7,14.0,,,3.0,240.0,,,SW,0.5,T,10,10.0
-1997-06-10,-0.5,-4.6,-3.3,-1.8,0/5/0,1004.1,994.7,1002.1,45.0,,,21.0,190.0,,,SW,0.6,T,10,5.0
-1997-06-11,-2.3,-6.6,-4.0,-1.6,0/6/0,1008.8,1004.1,1006.7,21.0,,,9.0,220.0,,,SW,0.0,0,10,1.0
-1997-06-12,-2.1,-3.3,-2.8,-1.6,0/5/0,1010.8,1006.0,1008.1,16.0,,,7.0,230.0,,,SW,0.9,T,10,10.0
-1997-06-13,-2.0,-3.6,-3.1,-1.1,0/5/0,1021.8,1010.7,1016.5,13.0,,,4.0,260.0,,,SW,0.1,T,9,7.0
-1997-06-14,-0.6,-3.9,-2.0,-1.5,20592,1023.8,1020.9,1022.6,17.0,,,8.0,240.0,,,NW,0.1,T,9,10.0
-1997-06-15,-1.7,-5.6,-3.0,-1.5,20592,1021.0,1007.1,1014.1,17.0,,,7.0,220.0,,,NW,0.4,0,9,10.0
-1997-06-16,-2.1,-5.2,-2.9,-1.6,20592,1007.0,997.8,999.8,13.0,,,2.0,90.0,,,SE,0.4,1,10,10.0
-1997-06-17,-0.2,-3.7,-1.7,-1.4,20592,997.5,986.6,990.3,16.0,,,6.0,330.0,,,SE,12.2,14,19,10.0
-1997-06-18,-3.4,-8.4,-6.5,-1.9,20692,997.7,989.5,995.3,21.0,,,8.0,220.0,,,SW,0.0,0,26,6.0
-1997-06-19,-3.4,-9.3,-5.6,-1.4,20692,997.3,987.5,990.6,15.0,,,3.0,110.0,,,NE,2.0,3,25,10.0
-1997-06-20,2.4,-3.6,-0.1,-1.0,0/6/0,987.7,981.5,983.9,40.0,,,13.0,20.0,,,NE,8.4,11,29,10.0
-1997-06-21,0.0,-4.2,-3.7,-1.4,0/6/0,985.5,981.7,984.4,21.0,,,6.0,190.0,,,S,6.7,6,31,10.0
-1997-06-22,-3.7,-7.7,-6.9,-1.9,20692,994.2,985.5,991.3,17.0,,,7.0,220.0,,,SW,2.0,4,47,10.0
-1997-06-23,-6.8,-9.7,-8.2,-1.7,20692,1001.8,994.2,999.3,19.0,,,5.0,210.0,,,SW,2.0,2,48,10.0
-1997-06-24,-7.6,-13.3,-11.2,-2.0,20692,1002.3,998.5,999.8,23.0,,,8.0,30.0,,,NE,T,T,43,6.0
-1997-06-25,-6.6,-11.6,-8.9,-1.5,20692,1009.5,1002.3,1007.7,18.0,,,8.0,190.0,,,NE,0.0,0,41,1.0
-1997-06-26,-7.0,-11.2,-9.6,-1.9,20692,1009.2,1005.3,1005.9,14.0,,,6.0,180.0,,,NE,0.0,0,39,1.0
-1997-06-27,-5.8,-10.2,-7.7,-1.8,20692,1005.5,998.9,1001.0,9.0,,,3.0,10.0,,,NE,0.0,0,37,10.0
-1997-06-28,-4.2,-6.9,-5.7,-1.6,20692,1001.9,998.9,1000.5,17.0,,,5.0,10.0,,,NE,0.0,0,36,10.0
-1997-06-29,-3.1,-5.2,-4.1,-1.5,21693,1002.3,997.6,998.6,39.0,,,22.0,360.0,,,NE,T,T,34,9.0
-1997-06-30,-4.2,-7.8,-6.0,-1.9,21693,997.8,996.0,996.3,26.0,,,11.0,20.0,,,NE,0.0,0,32,5.0
-1997-07-01,-6.5,-10.8,-9.0,-2.0,21693,1007.5,997.0,1002.2,15.0,,,4.0,360.0,,,NE,0.2,1,31,10.0
-1997-07-02,-6.0,-9.8,-8.3,-2.0,21693,1009.7,1007.5,1008.7,22.0,,,8.0,340.0,,,NE,2.0,9,45,2.0
-1997-07-03,-7.5,-12.9,-9.9,-2.0,31693,1011.0,1007.3,1008.6,16.0,,,7.0,180.0,,,S,1.9,6,47,2.0
-1997-07-04,-9.4,-12.2,-10.6,-2.0,31693,1011.0,1004.0,1007.1,11.0,,,4.0,30.0,,,S,0.2,1,45,10.0
-1997-07-05,-7.1,-12.2,-9.8,-1.9,42693,1012.8,1004.5,1009.3,10.0,,,4.0,360.0,,,NE,0.0,0,42,1.0
-1997-07-06,-6.3,-10.2,-8.1,-1.8,42693,1018.3,1012.2,1016.2,9.0,,,3.0,340.0,,,N,0.0,0,41,10.0
-1997-07-07,-6.5,-10.4,-9.1,-1.8,42693,1018.5,1017.3,1017.6,7.0,,,3.0,210.0,,,NE,0.0,0,39,2.0
-1997-07-08,-9.1,-11.3,-10.0,-1.8,42693,1018.2,1010.9,1013.2,7.0,,,4.0,360.0,,,NE,0.4,0,39,2.0
-1997-07-09,-8.0,-11.1,-9.6,-1.8,42693,1010.9,1004.0,1006.0,11.0,,,3.0,240.0,,,NE,0.7,T,38,1.0
-1997-07-10,-5.4,-11.5,-9.0,-1.8,42693,1004.0,982.7,993.8,22.0,,,5.0,10.0,,,NE,0.0,0,38,10.0
-1997-07-11,-0.3,-6.1,-2.8,-1.8,32691,982.7,967.0,969.7,37.0,,,15.0,360.0,,,N,0.6,T,36,7.0
-1997-07-12,-1.6,-6.3,-3.4,-1.6,32692,975.0,967.1,972.1,34.0,,,11.0,10.0,,,NW,1.2,1,38,9.0
-1997-07-13,1.7,-2.7,-0.8,-1.6,21691,972.0,956.8,961.1,50.0,,,21.0,40.0,,,N,1.5,3,35,10.0
-1997-07-14,-0.6,-6.7,-4.1,-1.7,21691,972.9,955.5,963.7,38.0,,,16.0,250.0,,,N,5.3,11,42,10.0
-1997-07-15,-4.2,-8.8,-6.2,-1.5,21690,990.4,972.8,984.1,23.0,,,8.0,20.0,,,N,0.0,0,40,1.0
-1997-07-16,-1.7,-10.1,-6.9,-1.8,21690,991.4,970.0,983.2,25.0,,,11.0,30.0,,,W,0.8,1,38,10.0
-1997-07-17,-1.6,-8.4,-6.4,-1.7,21690,991.6,965.7,977.8,38.0,,,22.0,240.0,,,SW,0.7,2,42,10.0
-1997-07-18,-0.2,-10.2,-4.5,-1.7,21693,994.3,980.7,987.5,53.0,,,23.0,340.0,,,NW,1.2,T,41,7.0
-1997-07-19,2.8,-7.7,-3.8,-1.8,21690,994.5,970.4,979.6,58.0,,,24.0,360.0,,,N,3.7,1,38,10.0
-1997-07-20,-0.5,-2.3,-1.3,-1.7,21693,972.0,960.1,966.2,57.0,,,5.0,350.0,,,NW,22.6,21,47,10.0
-1997-07-21,-0.6,-6.6,-2.6,-2.0,21693,980.0,967.0,977.0,50.0,,,28.0,350.0,,,N,0.2,T,40,10.0
-1997-07-22,-0.8,-15.1,-9.8,,21692,987.3,968.3,980.2,43.0,,,22.0,10.0,,,SW,0.6,T,36,9.0
-1997-07-23,-7.6,-15.6,-14.7,-2.0,42793,1001.3,987.0,998.0,24.0,,,13.0,210.0,,,SW,T,T,35,10.0
-1997-07-24,-0.3,-14.0,-3.1,-1.9,32691,999.8,975.0,982.4,54.0,,,25.0,30.0,,,N,2.4,3,35,9.0
-1997-07-25,-0.5,-11.5,-6.1,-1.8,22691,975.0,968.2,970.4,46.0,,,18.0,10.0,,,SW,0.6,T,35,10.0
-1997-07-26,-11.0,-19.3,-16.8,-2.0,42693,988.9,973.3,984.3,21.0,,,13.0,240.0,,,SW,0.5,T,36,10.0
-1997-07-27,-13.2,-19.0,-15.2,-1.9,52793,988.9,985.8,986.9,13.0,,,6.0,270.0,,,SW,T,T,36,8.0
-1997-07-28,-3.1,-15.3,-8.7,-1.9,52692,987.7,965.1,975.1,22.0,,,4.0,140.0,,,NW,4.3,8,44,10.0
-1997-07-29,-3.0,-9.5,-5.6,-1.9,52692,970.0,963.4,965.6,31.0,,,13.0,80.0,,,NE,4.7,10,44,10.0
-1997-07-30,-6.0,-12.7,-10.1,-1.9,52692,981.4,970.1,978.3,21.0,,,8.0,140.0,,,NW,2.1,3,56,10.0
-1997-07-31,-6.2,-19.2,-15.1,-1.9,52693,980.0,967.1,973.3,44.0,,,26.0,230.0,,,SW,0.4,T,35,9.0
-1997-08-01,-15.2,-25.2,-20.1,-1.9,52693,977.5,974.0,975.8,37.0,,,21.0,240.0,,,SW,0.3,T,34,8.0
-1997-08-02,-7.5,-15.5,-10.2,-1.9,92795,1000.3,978.2,996.1,62.0,,,14.0,110.0,,,SE,0.2,T,34,1.0
-1997-08-03,-6.8,-11.9,-9.6,-1.9,92795,999.8,983.1,989.9,19.0,,,10.0,260.0,,,NW,1.7,4,38,10.0
-1997-08-04,-11.2,-16.2,-12.4,-1.9,92795,997.4,980.1,989.4,43.0,,,19.0,250.0,,,SW,1.4,1,36,10.0
-1997-08-05,-3.5,-12.6,-7.8,-1.9,92695,999.2,994.2,997.0,27.0,,,12.0,260.0,,,SW,1.1,2,36,10.0
-1997-08-06,-3.6,-13.1,-8.2,-1.9,92695,1006.3,997.8,1003.7,18.0,,,6.0,320.0,,,NW,0.5,1,57,10.0
-1997-08-07,-0.6,-6.6,-3.1,-1.9,92695,1006.9,997.0,1002.4,17.0,,,6.0,110.0,,,SE,0.2,T,55,10.0
-1997-08-08,4.4,-1.5,0.7,-1.8,52694,997.0,971.4,978.6,43.0,,,20.0,50.0,,,E,0.4,T,42,10.0
-1997-08-09,2.6,-1.9,-0.6,-1.8,52692,977.2,971.3,975.0,9.0,,,2.0,140.0,,,SE,0.2,T,40,10.0
-1997-08-10,1.1,-3.5,-2.0,-1.8,42691,980.2,977.0,978.0,11.0,,,1.0,340.0,,,NW,6.8,13,44,10.0
-1997-08-11,0.7,-5.2,-2.3,-1.8,42692,982.5,980.0,981.6,27.0,,,8.0,360.0,,,N,1.8,3,51,10.0
-1997-08-12,2.2,-4.6,-2.2,-1.7,32791,983.0,974.5,980.1,38.0,,,20.0,350.0,,,NE,0.3,T,38,8.0
-1997-08-13,0.4,-5.4,-2.0,-1.7,32791,982.0,972.0,976.0,42.0,,,18.0,80.0,,,E,T,T,37,10.0
-1997-08-14,-0.4,-5.5,-3.5,-1.7,22791,985.1,975.7,981.1,40.0,,,26.0,20.0,,,E,0.8,T,38,10.0
-1997-08-15,-1.3,-6.5,-3.8,-1.9,22890,988.5,975.0,986.1,40.0,,,15.0,70.0,,,NE,0.1,T,37,10.0
-1997-08-16,-1.2,-6.8,-4.3,-1.9,22790,987.6,970.9,976.5,24.0,,,8.0,110.0,,,SE,11.2,19,62,10.0
-1997-08-17,-2.2,-5.6,-4.5,-2.0,22790,976.9,971.3,975.4,30.0,,,10.0,60.0,,,NE,1.5,1,61,9.0
-1997-08-18,-4.2,-10.0,-7.5,-1.8,22790,993.5,972.9,984.0,31.0,,,11.0,110.0,,,E,T,T,53,4.0
-1997-08-19,-2.3,-10.5,-6.9,-2.0,32693,998.2,985.9,992.8,30.0,,,10.0,360.0,,,SW,4.0,5,51,10.0
-1997-08-20,-1.0,-10.7,-6.2,-1.9,32692,986.0,963.7,968.9,44.0,,,28.0,350.0,,,SW,1.3,1,63,10.0
-1997-08-21,-9.0,-13.0,-11.5,-1.9,32692,992.8,971.0,985.8,40.0,,,13.0,240.0,,,SW,T,T,62,10.0
-1997-08-22,1.4,-11.0,-0.4,-2.0,32691,992.5,957.0,969.4,68.0,,,33.0,360.0,,,N,4.2,1,38,10.0
-1997-08-23,1.5,-16.0,-13.2,-2.0,32793,978.6,955.7,975.0,39.0,,,18.0,340.0,,,SW,1.8,T,40,10.0
-1997-08-24,-9.6,-18.2,-14.9,-2.0,32793,974.0,965.2,971.0,32.0,,,16.0,220.0,,,SW,3.0,2,42,10.0
-1997-08-25,-15.7,-21.6,-18.7,-2.0,42793,984.5,973.0,981.2,25.0,,,12.0,220.0,,,SW,0.1,T,42,10.0
-1997-08-26,-1.4,-16.0,-9.9,-2.0,52793,996.2,974.9,986.2,54.0,,,16.0,350.0,,,SW,6.3,9,40,10.0
-1997-08-27,0.4,-16.1,-5.8,-2.0,52792,998.6,993.3,995.7,46.0,,,14.0,360.0,,,N,0.2,T,41,10.0
-1997-08-28,0.9,-0.6,0.2,-2.0,42791,995.2,990.0,992.6,39.0,,,26.0,360.0,,,N,0.0,0,41,9.0
-1997-08-29,1.3,-2.6,-0.7,-2.0,42791,989.9,962.6,974.6,43.0,,,21.0,360.0,,,NE,T,T,40,10.0
-1997-08-30,-1.5,-13.1,-8.2,-2.0,42793,966.6,956.5,961.2,28.0,,,14.0,260.0,,,SW,2.7,2,53,10.0
-1997-08-31,-11.2,-14.3,-13.0,-2.0,42793,975.7,965.3,971.0,21.0,,,10.0,270.0,,,SW,0.2,T,49,10.0
-1997-09-01,-6.7,-17.0,-12.9,-2.0,52893,995.1,974.5,987.8,11.0,,,3.0,90.0,,,NE,0.0,0,49,1.0
-1997-09-02,-9.8,-16.5,-13.4,-2.0,52893,1003.2,994.0,1000.7,6.0,,,2.0,30.0,,,NE,0.0,0,49,1.0
-1997-09-03,-0.8,-14.1,-5.4,-2.0,54792,1002.7,993.4,998.2,39.0,,,8.0,10.0,,,SE,0.2,T,49,10.0
-1997-09-04,0.7,-1.6,-0.1,-2.0,54692,994.1,983.7,986.8,51.0,,,29.0,30.0,,,N,3.2,3,42,10.0
-1997-09-05,-0.1,-14.1,-7.8,-2.0,56791,987.5,979.1,985.7,24.0,,,6.0,230.0,,,NW,6.5,13,62,5.0
-1997-09-06,-4.0,-13.1,-7.5,-2.0,52791,985.1,983.1,983.7,31.0,,,6.0,360.0,,,NW,0.3,T,61,8.0
-1997-09-07,-7.6,-18.2,-11.9,-2.0,42891,994.6,985.2,990.3,15.0,,,8.0,300.0,,,NW,T,T,60,9.0
-1997-09-08,-7.6,-22.2,-14.4,-2.0,42692,997.3,994.6,996.2,8.0,,,2.0,130.0,,,NW,0.5,T,59,10.0
-1997-09-09,-3.7,-16.0,-8.5,-2.0,42692,997.0,979.5,990.6,44.0,,,9.0,360.0,,,N,2.0,2,59,10.0
-1997-09-10,-0.2,-15.2,-8.6,-2.0,42692,979.5,948.7,961.4,62.0,,,22.0,310.0,,,SW,11.4,11,49,9.0
-1997-09-11,-13.6,-17.2,-16.3,-2.0,42793,972.3,961.0,967.2,31.0,,,15.0,240.0,,,SW,T,T,47,10.0
-1997-09-12,-11.0,-18.5,-14.8,-2.0,52793,968.5,961.3,964.5,15.0,,,5.0,230.0,,,NW,0.0,0,48,6.0
-1997-09-13,-6.4,-14.1,-11.3,-2.0,52892,988.1,968.2,981.1,18.0,,,6.0,160.0,,,NW,0.0,0,48,3.0
-1997-09-14,-4.2,-16.0,-10.8,-2.0,52692,988.0,962.5,974.0,63.0,,,19.0,360.0,,,N,1.6,T,48,10.0
-1997-09-15,-10.5,-18.2,-14.5,-2.0,42791,983.1,970.5,978.5,31.0,,,13.0,240.0,,,SW,0.8,2,48,10.0
-1997-09-16,-4.6,-12.6,-8.6,-2.0,42791,984.0,972.5,976.6,20.0,,,2.0,330.0,,,SE,2.1,3,50,10.0
-1997-09-17,-5.6,-17.9,-11.2,-2.0,52893,993.2,983.1,988.7,19.0,,,8.0,350.0,,,NW,2.8,T,53,10.0
-1997-09-18,-3.8,-13.7,-9.0,-1.9,52792,984.2,977.8,980.1,33.0,,,9.0,20.0,,,SE,1.7,3,53,10.0
-1997-09-19,-10.0,-15.1,-13.5,-1.9,52972,1003.6,984.3,997.5,25.0,,,13.0,230.0,,,SW,T,T,53,10.0
-1997-09-20,-9.7,-14.4,-12.1,-2.0,52893,1010.1,1003.7,1008.4,14.0,,,3.0,200.0,,,SW,0.0,0,51,9.0
-1997-09-21,-3.2,-12.6,-8.2,-1.9,52891,1010.0,1007.0,1008.3,9.0,,,2.0,320.0,,,NW,0.0,0,50,5.0
-1997-09-22,-2.1,-13.0,-7.8,-1.9,52892,1012.0,1010.0,1011.3,16.0,,,5.0,360.0,,,NE,0.0,0,49,6.0
-1997-09-23,-1.3,-12.5,-5.4,-1.9,42891,1015.8,1011.8,1014.8,14.0,,,3.0,130.0,,,NE,0.0,0,49,8.0
-1997-09-24,0.3,-4.0,-3.2,-1.9,42891,1014.9,1001.7,1006.1,13.0,,,2.0,130.0,,,SE,0.4,1,51,10.0
-1997-09-25,0.5,-4.4,-2.8,-1.8,42891,1001.2,997.7,999.2,11.0,,,2.0,130.0,,,NW,0.4,T,51,10.0
-1997-09-26,-1.7,-6.1,-4.1,-1.8,42891,1004.5,1000.0,1002.7,16.0,,,7.0,220.0,,,SW,2.0,T,51,10.0
-1997-09-27,-0.2,-6.0,-1.5,-1.9,42891,1009.7,1003.5,1006.2,24.0,,,7.0,240.0,,,SW,1.7,T,52,10.0
-1997-09-28,0.0,-4.5,-2.0,-1.9,42891,1009.9,998.3,1003.1,38.0,,,15.0,350.0,,,NW,1.9,T,54,10.0
-1997-09-29,-1.5,-7.6,-4.5,-1.9,42891,1011.5,997.4,1003.8,27.0,,,11.0,230.0,,,SW,1.7,5,60,10.0
-1997-09-30,-5.3,-10.7,-7.5,-1.9,42891,1023.2,1011.5,1019.2,9.0,,,2.0,240.0,,,SW,T,T,58,10.0
-1997-10-01,-1.0,-8.4,-3.8,-1.4,42691,1023.0,1013.1,1017.3,9.0,,,2.0,280.0,,,W,0.1,0,57,10.0
-1997-10-02,-0.9,-8.0,-4.6,-1.7,42691,1012.6,995.5,1001.7,16.0,,,7.0,40.0,,,E,0.4,T,57,10.0
-1997-10-03,3.0,-2.5,0.5,-1.7,42691,998.5,994.9,996.9,13.0,,,3.0,20.0,,,E,2.6,2,56,9.0
-1997-10-04,0.3,-3.0,-1.7,-1.6,42691,999.5,998.5,999.2,9.0,,,2.0,340.0,,,E,T,T,56,9.0
-1997-10-05,-1.1,-5.5,-3.2,,/////,999.6,994.0,996.6,11.0,,,1.0,70.0,,,E,0.2,T,56,10.0
-1997-10-06,3.7,-5.0,0.5,-1.5,4269/,994.0,980.2,984.3,26.0,,,7.0,60.0,,,E,0.0,0,56,10.0
-1997-10-07,2.5,-4.8,-2.0,-1.6,2269/,980.9,970.0,976.4,48.0,,,16.0,90.0,,,E,1.3,T,55,9.0
-1997-10-08,-1.5,-6.5,-4.1,-1.6,3269/,986.6,969.5,978.1,40.0,,,16.0,100.0,,,E,1.2,1,56,8.0
-1997-10-09,-3.0,-6.2,-4.5,-1.6,2219/,996.3,986.6,993.4,30.0,,,16.0,20.0,,,N,0.0,0,55,8.0
-1997-10-10,0.6,-5.0,-2.9,-1.6,2219/,1005.0,996.4,1003.0,11.0,,,4.0,210.0,,,S,0.0,0,55,6.0
-1997-10-11,-2.0,-6.2,-5.1,-1.7,2219/,1005.1,995.1,1000.2,14.0,,,5.0,20.0,,,S,0.2,T,54,10.0
-1997-10-12,-1.0,-8.0,-3.6,-1.6,2219/,995.0,974.5,986.6,34.0,,,8.0,30.0,,,N,0.8,T,54,10.0
-1997-10-13,0.0,-7.6,-3.1,-1.8,2219/,975.0,966.9,969.9,36.0,,,19.0,30.0,,,W,3.8,T,59,10.0
-1997-10-14,-6.0,-11.1,-9.8,-1.9,32291,992.7,975.0,987.0,30.0,,,18.0,230.0,,,SW,T,T,56,10.0
-1997-10-15,-4.3,-12.5,-9.0,-1.9,52292,999.0,987.9,993.5,14.0,,,4.0,200.0,,,NE,0.1,T,55,7.0
-1997-10-16,0.7,-8.5,-2.6,-2.0,39891,998.8,988.5,989.9,26.0,,,12.0,20.0,,,E,11.5,18,64,10.0
-1997-10-17,3.3,0.9,1.5,-1.9,39891,989.0,980.0,983.3,45.0,,,23.0,30.0,,,N,2.6,3,62,10.0
-1997-10-18,4.2,1.0,2.1,1.6,2219/,980.5,957.4,967.0,50.0,,,29.0,50.0,,,N,7.6,0,52,10.0
-1997-10-19,3.0,-1.0,0.2,-1.7,2219/,966.5,952.2,962.3,56.0,,,30.0,360.0,,,N,2.9,T,53,10.0
-1997-10-20,1.3,-1.2,-0.1,1.6,2219/,972.8,966.1,971.5,36.0,,,25.0,360.0,,,N,1.0,T,58,10.0
-1997-10-21,2.2,-1.7,-0.4,1.6,2219/,975.5,971.9,972.8,33.0,,,12.0,360.0,,,N,1.2,2,57,10.0
-1997-10-22,5.0,-5.3,-1.0,-1.5,2219/,983.1,975.4,980.6,15.0,,,5.0,270.0,,,W,2.3,2,62,9.0
-1997-10-23,-3.1,-7.0,-5.5,-1.6,52292,994.2,983.1,989.4,14.0,,,7.0,240.0,,,SW,0.3,T,61,10.0
-1997-10-24,-4.5,-9.5,-7.3,-1.7,52292,1000.0,994.0,997.9,10.0,,,4.0,230.0,,,W,0.0,0,60,10.0
-1997-10-25,-1.7,-7.6,-5.7,-1.7,52292,999.5,995.0,996.7,15.0,,,5.0,200.0,,,SW,0.0,0,59,10.0
-1997-10-26,0.0,-4.0,-1.7,-1.6,52292,995.9,993.9,994.1,25.0,,,7.0,240.0,,,SW,1.1,1,58,9.0
-1997-10-27,2.0,-2.5,-1.3,-1.6,52292,995.9,994.0,994.7,21.0,,,7.0,220.0,,,SW,0.4,T,60,10.0
-1997-10-28,-0.3,-4.0,-1.9,-1.6,52292,995.0,984.6,988.0,36.0,,,12.0,210.0,,,SW,2.6,1,61,10.0
-1997-10-29,-0.6,-5.0,-2.8,-1.6,2219/,992.0,985.5,988.6,35.0,,,11.0,210.0,,,SW,1.3,T,57,10.0
-1997-10-30,0.2,-2.0,-1.4,-1.6,2219/,986.5,978.2,982.8,19.0,,,11.0,310.0,,,NW,7.3,5,69,10.0
-1997-10-31,0.0,-6.6,-3.9,-1.8,2219/,978.0,971.2,973.4,29.0,,,11.0,240.0,,,SW,7.5,19,89,10.0
-1997-11-01,-2.5,-8.4,-5.6,-1.9,2219/,996.2,977.0,988.2,26.0,,,12.0,220.0,,,SW,0.1,T,69,7.0
-1997-11-02,2.8,-7.0,-3.2,-1.8,2219/,996.2,986.1,990.3,9.0,,,5.0,120.0,,,NW,0.3,T,66,7.0
-1997-11-03,2.1,-8.0,-1.7,-1.8,2219/,986.9,984.5,985.7,14.0,,,4.0,30.0,,,E,2.3,1,63,10.0
-1997-11-04,3.5,0.6,0.9,-1.9,2219/,985.2,973.3,976.8,31.0,,,7.0,10.0,,,NW,14.1,7,75,10.0
-1997-11-05,0.5,-3.1,-1.9,-1.9,2219/,986.3,975.6,983.3,12.0,,,7.0,240.0,,,W,2.1,2,79,10.0
-1997-11-06,2.0,-3.5,-0.6,-1.9,2219/,985.0,976.1,978.7,14.0,,,2.0,160.0,,,SE,14.2,10,89,10.0
-1997-11-07,-0.3,-7.0,-4.6,-1.9,2219/,987.8,978.2,984.4,15.0,,,8.0,250.0,,,W,0.3,T,87,6.0
-1997-11-08,-1.1,-13.0,-5.7,-1.9,2219/,1002.6,987.9,997.6,20.0,,,7.0,110.0,,,E,0.0,0,86,2.0
-1997-11-09,-0.5,-11.0,-5.6,-1.9,2219/,1005.0,1002.4,1004.3,8.0,,,2.0,70.0,,,NE,0.0,0,82,2.0
-1997-11-10,-0.7,-11.5,-6.1,-1.8,2219/,1003.8,1001.0,1002.6,18.0,,,6.0,50.0,,,NE,0.0,0,76,5.0
-1997-11-11,2.0,-10.6,-3.9,-1.8,2219/,1001.0,992.9,997.1,24.0,,,5.0,70.0,,,NE,0.0,0,77,4.0
-1997-11-12,1.7,-7.4,-2.6,-1.9,2219/,992.9,989.1,991.0,20.0,,,4.0,70.0,,,NE,T,T,76,10.0
-1997-11-13,2.9,-6.0,-2.1,-1.7,2219/,999.7,991.3,997.8,14.0,,,3.0,190.0,,,S,0.3,T,74,7.0
-1997-11-14,2.0,-6.7,-3.1,-1.6,2219/,1004.8,999.5,1002.4,8.0,,,3.0,240.0,,,NE,0.0,0,74,9.0
-1997-11-15,1.2,-9.5,-3.2,-1.7,63791,1005.1,992.7,999.6,20.0,,,5.0,10.0,,,N,1.6,1,73,10.0
-1997-11-16,1.3,-2.0,-0.9,-1.8,63791,998.0,992.4,995.9,13.0,,,6.0,230.0,,,SW,2.0,1,75,10.0
-1997-11-17,4.2,-2.5,0.0,-1.8,63791,998.6,996.4,997.3,10.0,,,2.0,310.0,,,NW,2.3,2,74,10.0
-1997-11-18,5.5,-1.0,1.6,-1.5,63791,998.8,995.4,996.6,16.0,,,3.0,120.0,,,SE,1.3,T,71,10.0
-1997-11-19,3.8,-1.0,0.9,-1.3,63791,998.3,995.4,997.2,23.0,,,6.0,30.0,,,N,0.1,0,65,10.0
-1997-11-20,1.0,-3.4,-2.0,,63791,1003.0,998.5,1000.8,36.0,,,18.0,10.0,,,N,T,0,63,8.0
-1997-11-21,3.0,-3.0,-1.1,-1.2,0/790,1003.2,1001.9,1002.1,29.0,,,12.0,20.0,,,N,0.0,0,62,10.0
-1997-11-22,2.1,-2.2,-0.6,-1.1,0/790,1006.1,1002.2,1004.2,13.0,,,5.0,350.0,,,N,0.0,0,60,10.0
-1997-11-23,0.7,-2.0,-1.2,-0.9,0/790,1009.9,1006.1,1009.0,13.0,,,4.0,360.0,,,NW,0.0,0,64,10.0
-1997-11-24,3.9,-2.4,-0.7,-0.9,0/790,1008.9,1002.2,1005.1,18.0,,,4.0,40.0,,,N,0.0,0,63,8.0
-1997-11-25,4.9,-1.5,1.0,-0.9,0/790,1002.2,986.8,993.9,49.0,,,18.0,50.0,,,E,T,0,61,8.0
-1997-11-26,6.4,0.5,2.5,-0.9,0/790,992.5,986.5,990.5,50.0,,,9.0,50.0,,,N,0.0,0,56,6.0
-1997-11-27,4.3,-1.0,0.2,-0.7,0/790,986.4,975.0,977.4,12.0,,,5.0,270.0,,,NW,0.1,0,55,9.0
-1997-11-28,4.5,-1.0,0.4,-0.6,0/790,990.9,978.5,985.2,16.0,,,5.0,150.0,,,SE,0.0,0,54,10.0
-1997-11-29,2.2,-2.9,-0.2,-0.3,0/790,1003.4,990.9,998.0,12.0,,,3.0,300.0,,,NW,0.0,0,48,10.0
-1997-11-30,2.0,-1.9,0.1,-0.3,0/790,1012.2,1003.4,1007.2,11.0,,,4.0,280.0,,,SW,0.0,0,48,9.0
-1997-12-01,5.7,-3.0,1.2,,0/790,1013.2,1012.2,1012.6,7.0,,,2.0,130.0,,,SE,0.0,0,48,8.0
-1997-12-02,6.0,-1.0,1.3,,0/790,1015.5,1012.9,1014.0,9.0,,,2.0,130.0,,,SE,0.0,0,46,5.0
-1997-12-03,6.9,-2.0,2.7,,0/790,1016.0,1012.4,1013.6,16.0,,,6.0,120.0,,,SE,0.0,0,40,6.0
-1997-12-04,6.8,0.0,2.2,,0/790,1012.3,1001.8,1006.6,21.0,,,4.0,50.0,,,E,0.0,0,34,8.0
-1997-12-05,6.0,1.0,2.5,-0.4,0/790,1003.1,1001.0,1002.1,22.0,,,5.0,10.0,,,SE,2.2,0,28,10.0
-1997-12-06,6.0,0.2,2.4,1.2,0/790,1003.5,1002.0,1002.3,6.0,,,3.0,140.0,,,NW,0.0,0,23,7.0
-1997-12-07,4.8,1.7,2.0,1.0,0/790,1003.0,1000.2,1001.0,8.0,,,2.0,130.0,,,NW,0.0,0,23,6.0
-1997-12-08,7.2,-0.2,2.4,0.8,0/790,1000.2,997.1,998.1,10.0,,,2.0,120.0,,,SE,0.4,0,16,10.0
-1997-12-09,4.2,0.6,1.9,1.3,0/790,997.0,995.3,995.9,8.0,,,3.0,310.0,,,S,2.4,0,0,10.0
-1997-12-10,4.4,-0.2,1.6,1.5,0/790,997.0,995.7,996.6,5.0,,,2.0,150.0,,,S,0.0,0,0,10.0
-1997-12-11,4.0,-1.2,1.1,0.9,0/790,997.0,990.2,993.4,10.0,,,3.0,60.0,,,NE,0.0,0,0,9.0
-1997-12-12,5.5,0.7,3.0,1.3,0/790,990.2,986.9,988.8,26.0,,,10.0,10.0,,,N,2.3,0,0,10.0
-1997-12-13,6.5,0.6,3.1,0.5,0/790,987.0,982.0,983.8,34.0,,,9.0,360.0,,,N,3.7,T,0,9.0
-1997-12-14,6.0,-0.5,1.9,0.5,0/790,986.0,982.8,984.1,14.0,,,5.0,240.0,,,NW,1.0,0,0,10.0
-1997-12-15,4.9,0.5,1.4,1.3,0/790,999.6,986.0,996.4,16.0,,,7.0,290.0,,,NW,0.0,0,0,8.0
-1997-12-16,3.4,-0.7,0.5,,0/790,999.0,991.6,993.8,11.0,,,3.0,340.0,,,NW,0.0,0,0,10.0
-1997-12-17,4.0,0.2,1.4,0.7,0/792,991.6,986.6,988.4,11.0,,,2.0,120.0,,,SE,0.2,T,0,10.0
-1997-12-18,3.5,-0.4,0.9,0.6,0/792,990.7,986.2,988.6,22.0,,,4.0,30.0,,,E,0.9,T,0,10.0
-1997-12-19,3.6,0.3,1.2,0.4,0/792,991.2,989.1,990.3,26.0,,,10.0,20.0,,,N,0.2,T,0,10.0
-1997-12-20,2.3,-1.0,-0.5,-0.3,0/792,989.0,983.6,986.0,17.0,,,5.0,240.0,,,SW,3.6,6,0,10.0
-1997-12-21,4.0,-1.9,-0.8,0.1,0/7/0,983.6,979.2,980.3,12.0,,,4.0,210.0,,,SW,1.2,T,0,10.0
-1997-12-22,6.3,-2.5,1.5,-0.3,0/7/0,986.0,979.2,982.7,26.0,,,6.0,120.0,,,E,0.5,T,0,7.0
-1997-12-23,5.7,-2.1,1.3,0.3,0/7/0,992.6,986.0,990.6,25.0,,,11.0,20.0,,,NE,0.0,0,0,4.0
-1997-12-24,4.6,-1.2,-0.2,0.5,0/7/0,995.9,992.6,995.0,25.0,,,9.0,20.0,,,E,1.2,T,0,8.0
-1997-12-25,4.0,-1.0,1.0,0.8,0/7/0,995.0,991.0,992.1,29.0,,,13.0,340.0,,,NW,0.8,T,0,10.0
-1997-12-26,5.1,-1.9,1.2,,0/7/0,999.5,991.0,995.4,21.0,,,6.0,20.0,,,NW,0.0,0,0,4.0
-1997-12-27,0.9,-0.8,0.0,1.7,0/7/0,1000.1,998.6,999.4,16.0,,,7.0,360.0,,,N,T,T,0,8.0
-1997-12-28,6.5,-2.3,2.2,1.6,0/7/0,1002.4,999.2,1000.9,11.0,,,5.0,140.0,,,NE,0.0,0,0,6.0
-1997-12-29,4.3,-2.5,1.5,-1.4,0/7/0,1005.4,1002.5,1004.4,12.0,,,4.0,190.0,,,S,0.0,0,0,3.0
-1997-12-30,4.5,-1.4,2.4,2.0,0/7/0,1009.2,1005.4,1008.0,10.0,,,4.0,210.0,,,SW,0.0,0,0,3.0
-1997-12-31,3.1,1.2,3.0,0.7,0/7/0,1008.9,998.3,1001.0,57.0,,,15.0,30.0,,,N,0.5,0,0,10.0
-1998-01-01,6.4,1.0,4.4,0.9,0/7/0,997.9,991.6,994.8,32.0,,,5.0,30.0,,,NE,1.5,0,0,10.0
-1998-01-02,6.2,2.9,4.8,0.8,/98/0,993.0,980.3,984.0,32.0,,,6.0,20.0,,,N,1.3,0,0,10.0
-1998-01-03,2.6,0.8,2.0,0.8,/98/0,983.2,978.8,980.3,10.0,,,4.0,280.0,,,NW,1.4,T,0,10.0
-1998-01-04,4.3,1.2,2.9,1.2,/////,987.0,982.4,985.5,10.0,,,3.0,120.0,,,SE,0.0,0,0,9.0
-1998-01-05,3.8,1.6,3.0,0.9,/98/0,990.7,987.0,988.6,8.0,,,2.0,340.0,,,NW,3.4,0,0,10.0
-1998-01-06,3.4,-1.0,1.5,1.1,/98/0,992.2,988.8,991.0,11.0,,,2.0,250.0,,,W,1.3,0,0,9.0
-1998-01-07,7.3,0.5,3.5,0.8,/98/0,988.6,977.2,981.6,8.0,,,2.0,130.0,,,E,0.2,0,0,10.0
-1998-01-08,3.6,1.1,2.2,0.3,/////,977.0,974.2,974.8,11.0,,,3.0,240.0,,,NW,0.3,0,0,7.0
-1998-01-09,1.4,0.1,1.0,1.1,/98/0,976.0,973.8,975.4,25.0,,,11.0,240.0,,,SW,1.4,T,0,10.0
-1998-01-10,0.6,-1.2,0.5,0.6,0/9/2,979.0,975.2,976.6,29.0,,,13.0,220.0,,,SW,1.7,T,0,10.0
-1998-01-11,3.1,-1.5,0.6,0.5,/98/0,986.0,979.0,982.8,16.0,,,7.0,250.0,,,SW,2.3,4,0,8.0
-1998-01-12,5.3,-1.0,2.4,0.8,/98/0,987.1,981.8,985.2,32.0,,,6.0,30.0,,,NE,2.1,T,0,10.0
-1998-01-13,8.5,3.5,6.9,0.8,/98/0,982.0,978.2,979.9,34.0,,,14.0,30.0,,,E,T,0,0,10.0
-1998-01-14,5.0,3.2,5.0,0.7,/98/0,978.8,972.5,974.0,25.0,,,5.0,80.0,,,E,3.1,0,0,9.0
-1998-01-15,4.9,0.4,2.7,0.6,/98/0,984.4,973.1,978.9,10.0,,,3.0,110.0,,,SE,16.7,0,0,10.0
-1998-01-16,6.6,2.0,4.7,0.7,/98/0,986.0,984.2,985.7,24.0,,,9.0,30.0,,,N,0.3,0,0,9.0
-1998-01-17,5.3,2.9,4.5,1.0,/98/0,986.0,983.4,984.8,20.0,,,7.0,30.0,,,NE,0.7,0,0,9.0
-1998-01-18,5.2,3.0,4.3,0.5,/////,983.4,976.2,978.4,44.0,,,14.0,60.0,,,E,0.1,0,0,10.0
-1998-01-19,5.5,2.7,4.8,0.5,/98/0,987.8,981.0,985.0,26.0,,,8.0,30.0,,,NE,0.2,0,0,10.0
-1998-01-20,4.6,0.8,2.7,0.6,/98/0,993.3,984.5,989.4,18.0,,,3.0,60.0,,,E,4.8,0,0,10.0
-1998-01-21,3.4,1.5,2.6,0.5,/98/0,994.0,991.2,992.1,7.0,,,2.0,250.0,,,NW,6.6,0,0,9.0
-1998-01-22,1.0,-0.5,0.6,0.7,/98/0,992.0,989.0,990.8,9.0,,,4.0,260.0,,,NW,0.2,0,0,10.0
-1998-01-23,4.7,-0.5,2.1,0.6,/98/0,989.0,981.9,984.4,10.0,,,2.0,360.0,,,E,0.0,0,0,8.0
-1998-01-24,6.0,0.0,2.0,0.9,/98/0,981.9,977.3,978.9,5.0,,,1.0,180.0,,,E,0.8,T,0,8.0
-1998-01-25,2.8,0.0,1.6,0.9,/98/0,980.7,977.0,978.6,7.0,,,1.0,240.0,,,NW,1.4,T,0,10.0
-1998-01-26,5.5,0.5,1.8,1.3,0/9/0,986.8,980.8,984.4,11.0,,,6.0,240.0,,,W,1.7,T,0,10.0
-1998-01-27,5.7,-1.2,2.4,1.2,0/9/0,986.9,977.1,982.7,12.0,,,4.0,30.0,,,N,0.2,T,0,10.0
-1998-01-28,4.8,0.8,2.9,1.1,0/9/0,977.4,970.8,972.6,16.0,,,2.0,60.0,,,E,0.2,0,0,9.0
-1998-01-29,7.6,0.7,4.8,1.2,0/9/0,974.6,969.0,971.5,22.0,,,7.0,90.0,,,E,0.0,0,0,7.0
-1998-01-30,7.5,0.5,3.0,1.4,0/9/0,987.8,974.8,982.1,17.0,,,5.0,80.0,,,N,0.0,0,0,2.0
-1998-01-31,6.3,0.9,2.8,1.6,0/9/0,999.3,987.9,994.8,10.0,,,6.0,230.0,,,SW,0.0,0,0,4.0
-1998-02-01,6.7,1.2,2.7,1.2,/////,1005.7,999.2,1003.1,18.0,,,8.0,230.0,,,SW,0.0,0,0,8.0
-1998-02-02,4.8,0.1,2.5,1.2,0/9/0,1007.0,1003.0,1005.6,8.0,,,3.0,120.0,,,E,0.0,0,0,9.0
-1998-02-03,5.7,1.5,3.0,1.0,0/9/0,1003.0,991.8,996.3,21.0,,,5.0,360.0,,,NW,1.5,0,0,10.0
-1998-02-04,4.1,2.5,3.2,0.9,0/9/0,991.9,990.6,990.9,26.0,,,15.0,360.0,,,N,4.6,0,0,10.0
-1998-02-05,4.5,1.4,2.6,1.0,0/9/0,995.2,991.5,993.6,8.0,,,1.0,210.0,,,E,2.3,0,0,10.0
-1998-02-06,2.6,0.0,1.0,1.1,0/9/0,995.5,990.0,993.0,16.0,,,6.0,220.0,,,SW,1.1,T,0,10.0
-1998-02-07,4.3,-0.2,1.6,1.2,0/9/0,990.1,983.0,985.3,12.0,,,4.0,200.0,,,S,0.3,0,0,7.0
-1998-02-08,5.8,0.0,2.9,1.0,0/9/9,997.3,988.9,993.2,13.0,,,4.0,230.0,,,SW,0.2,0,0,5.0
-1998-02-09,4.8,2.0,3.6,1.1,0/9/0,1007.2,996.7,1005.3,26.0,,,5.0,100.0,,,E,0.0,0,0,9.0
-1998-02-10,4.5,1.4,2.8,1.0,0/9/0,1007.0,998.0,1001.8,18.0,,,2.0,340.0,,,NW,2.3,0,0,10.0
-1998-02-11,3.4,0.8,2.1,0.9,0/9/0,998.7,996.0,997.6,36.0,,,15.0,240.0,,,SW,12.7,0,0,10.0
-1998-02-12,4.6,0.9,2.3,0.7,0/9/0,996.2,979.6,983.6,40.0,,,13.0,10.0,,,NW,1.9,0,0,10.0
-1998-02-13,2.2,0.4,1.7,0.4,0/9/0,984.5,975.8,978.9,21.0,,,6.0,220.0,,,SW,1.9,0,0,10.0
-1998-02-14,2.0,0.9,1.9,0.1,0/9/0,995.9,984.5,992.9,20.0,,,8.0,240.0,,,SW,1.0,0,0,10.0
-1998-02-15,1.9,0.8,1.3,0.3,/////,1001.9,996.0,1000.3,17.0,,,8.0,250.0,,,SW,0.1,0,0,10.0
-1998-02-16,2.1,0.9,1.7,0.1,0/9/0,1001.0,995.4,998.1,22.0,,,11.0,340.0,,,NW,16.3,0,0,10.0
-1998-02-17,4.0,0.3,2.1,-0.2,0/9/0,1007.2,995.1,1001.8,18.0,,,5.0,230.0,,,SW,5.1,1,0,3.0
-1998-02-18,6.4,0.5,3.5,0.2,0/9/0,1008.4,999.7,1005.1,46.0,,,10.0,30.0,,,N,10.0,0,0,10.0
-1998-02-19,3.5,0.7,1.8,-0.4,0/9/0,1000.2,996.1,998.1,22.0,,,7.0,250.0,,,NW,12.5,0,0,10.0
-1998-02-20,2.5,0.6,1.7,0.2,0/9/0,1008.7,1000.5,1005.2,10.0,,,5.0,320.0,,,NW,0.1,0,0,10.0
-1998-02-21,4.0,0.9,2.0,3.5,0/9/0,1007.7,986.4,995.8,14.0,,,4.0,140.0,,,E,17.3,0,0,10.0
-1998-02-22,3.9,1.5,2.9,0.3,0/9/0,986.4,975.9,979.8,30.0,,,5.0,20.0,,,N,12.9,0,0,9.0
-1998-02-23,1.7,0.4,1.2,0.1,0/9/0,988.9,983.2,987.0,20.0,,,6.0,240.0,,,SW,2.9,T,0,10.0
-1998-02-24,3.2,-0.4,1.4,0.1,0/9/0,989.0,982.9,986.0,22.0,,,7.0,10.0,,,SW,0.0,0,0,10.0
-1998-02-25,3.2,-0.7,0.9,0.3,0/9/0,982.9,979.2,981.1,39.0,,,12.0,20.0,,,N,1.9,1,0,5.0
-1998-02-26,2.4,-0.5,1.2,0.1,0/9/0,983.0,979.9,981.9,27.0,,,10.0,120.0,,,N,0.3,0,0,9.0
-1998-02-27,2.5,-0.5,1.3,0.3,0/9/0,979.6,970.7,973.3,34.0,,,14.0,80.0,,,E,5.1,1,0,9.0
-1998-02-28,3.2,-2.0,1.1,0.4,0/9/0,981.2,972.0,977.3,25.0,,,9.0,70.0,,,NE,3.1,12,8,5.0
-1998-03-01,3.7,-3.8,-0.6,0.6,0/9/0,989.0,981.0,986.5,12.0,,,3.0,30.0,,,NE,0.0,0,6,4.0
-1998-03-02,2.7,-2.5,-0.3,0.2,0/9/0,995.8,989.0,993.1,9.0,,,2.0,360.0,,,E,0.0,0,0,7.0
-1998-03-03,2.5,-3.0,-1.5,0.1,0/9/0,996.0,981.6,991.4,26.0,,,5.0,100.0,,,NE,0.0,0,0,5.0
-1998-03-04,1.2,-1.0,0.5,0.5,0/9/0,981.9,970.1,972.5,42.0,,,25.0,100.0,,,E,0.0,0,0,10.0
-1998-03-05,2.6,0.5,1.4,0.3,0/9/0,972.2,969.7,970.9,33.0,,,18.0,80.0,,,E,0.0,0,0,9.0
-1998-03-06,4.7,-1.2,1.3,0.3,0/9/0,977.4,971.9,975.9,21.0,,,10.0,20.0,,,E,0.0,0,0,8.0
-1998-03-07,2.3,-2.3,-0.2,0.2,0/9/0,977.4,971.4,974.0,24.0,,,11.0,20.0,,,NE,0.4,T,0,8.0
-1998-03-08,0.8,-3.5,-0.9,-0.1,0/9/0,985.4,972.0,979.7,16.0,,,5.0,210.0,,,NE,0.0,0,0,6.0
-1998-03-09,0.0,-1.6,-0.8,-0.4,0/9/0,991.0,976.2,985.6,51.0,,,16.0,20.0,,,SW,0.2,T,0,9.0
-1998-03-10,3.0,-0.5,1.5,0.0,0/9/0,977.8,967.9,974.3,46.0,,,14.0,20.0,,,NE,3.3,T,0,10.0
-1998-03-11,2.0,-0.2,0.5,0.2,0/9/0,990.6,965.4,978.6,25.0,,,11.0,230.0,,,SW,9.3,1,0,7.0
-1998-03-12,2.5,-2.8,0.3,-0.1,0/9/0,1003.8,990.5,999.7,13.0,,,3.0,240.0,,,NE,0.0,0,0,10.0
-1998-03-13,7.2,1.3,5.6,0.5,0/9/0,1003.9,988.4,996.2,58.0,,,28.0,20.0,,,N,0.1,0,0,9.0
-1998-03-14,5.8,3.2,4.4,0.3,0/9/0,997.1,981.7,988.4,52.0,,,26.0,20.0,,,N,4.7,0,0,10.0
-1998-03-15,4.0,0.0,1.5,0.2,/////,994.3,980.9,990.6,30.0,,,13.0,340.0,,,SW,5.8,T,0,9.0
-1998-03-16,3.2,-0.5,1.7,0.2,0/9/0,990.0,980.0,983.2,21.0,,,8.0,30.0,,,SE,14.6,1,0,10.0
-1998-03-17,3.5,0.5,1.5,0.1,0/9/0,983.9,974.6,979.3,12.0,,,3.0,120.0,,,E,11.5,0,0,10.0
-1998-03-18,4.0,0.5,1.7,-0.2,0/9/0,991.5,983.9,987.5,26.0,,,10.0,350.0,,,NW,1.0,0,0,7.0
-1998-03-19,1.0,-1.9,-0.7,-0.4,0/9/0,994.9,992.1,994.1,11.0,,,2.0,300.0,,,E,0.0,0,0,10.0
-1998-03-20,0.5,-1.5,-0.7,-0.2,0/9/0,993.4,985.4,988.7,9.0,,,2.0,10.0,,,E,0.3,T,0,10.0
-1998-03-21,0.5,-0.7,-0.1,-0.1,0/9/0,987.3,985.0,985.7,9.0,,,3.0,120.0,,,SE,0.8,T,0,10.0
-1998-03-22,0.4,-1.4,-0.3,-0.2,0/9/0,999.6,987.2,993.6,14.0,,,5.0,220.0,,,S,0.4,T,0,10.0
-1998-03-23,0.3,-1.0,-0.2,-0.2,0/9/0,1005.0,999.8,1003.6,17.0,,,7.0,200.0,,,SW,0.0,0,0,10.0
-1998-03-24,1.6,-1.5,0.4,-0.3,0/9/0,1001.0,997.6,999.5,18.0,,,9.0,120.0,,,W,2.3,T,0,10.0
-1998-03-25,4.5,0.6,2.5,-0.7,0/9/0,1002.0,998.1,1000.4,11.0,,,4.0,120.0,,,NW,1.0,0,0,10.0
-1998-03-26,5.4,1.1,3.8,-0.5,0/9/0,998.0,994.2,994.8,33.0,,,11.0,20.0,,,N,4.6,0,0,10.0
-1998-03-27,7.1,1.9,4.1,-0.2,0/9/0,995.2,992.8,994.4,34.0,,,10.0,30.0,,,N,1.5,0,0,10.0
-1998-03-28,3.2,2.0,2.9,0.1,0/9/0,996.5,988.2,993.9,44.0,,,13.0,20.0,,,NW,1.2,0,0,10.0
-1998-03-29,2.5,0.5,2.3,0.2,0/9/0,996.6,990.7,994.0,20.0,,,5.0,350.0,,,N,0.7,0,0,9.0
-1998-03-30,0.3,-1.1,-0.1,-0.4,0/9/0,990.9,987.4,988.4,9.0,,,2.0,320.0,,,NW,0.3,T,0,9.0
-1998-03-31,0.9,-0.1,0.8,-0.3,0/9/0,995.0,988.5,990.8,15.0,,,3.0,240.0,,,S,0.9,T,0,10.0
-1998-04-01,4.9,-1.0,1.8,-0.3,0/8/0,995.4,970.0,984.9,89.0,,,28.0,30.0,,,N,11.1,T,0,10.0
-1998-04-02,4.3,0.5,2.7,,0/8/0,981.0,967.2,975.3,49.0,,,23.0,340.0,,,N,2.8,T,0,7.0
-1998-04-03,1.0,-1.5,-0.5,-0.9,0/9/0,976.5,974.9,975.6,58.0,,,23.0,10.0,,,NE,3.1,3,0,7.0
-1998-04-04,5.5,-2.0,-0.5,-1.0,0/9/0,979.7,974.0,975.9,35.0,,,18.0,290.0,,,W,2.3,12,18,9.0
-1998-04-05,2.0,-1.4,0.4,-0.1,0/9/0,978.5,961.0,968.9,36.0,,,19.0,20.0,,,N,1.3,1,16,10.0
-1998-04-06,2.5,-2.8,-0.7,-0.4,0/8/0,979.2,966.2,972.7,23.0,,,7.0,10.0,,,N,1.3,1,15,6.0
-1998-04-07,2.0,-1.3,0.3,-0.4,0/9/0,979.8,965.0,970.0,64.0,,,19.0,20.0,,,N,3.5,3,18,10.0
-1998-04-08,0.0,-3.8,-1.9,-0.7,0/7/0,995.2,973.7,987.0,35.0,,,15.0,250.0,,,W,1.1,T,19,7.0
-1998-04-09,1.0,-2.3,-0.4,-0.7,0/7/0,996.0,991.5,993.9,33.0,,,11.0,360.0,,,N,7.5,1,22,10.0
-1998-04-10,2.1,-0.4,1.3,-1.3,0/7/0,998.2,992.9,995.3,32.0,,,16.0,350.0,,,NW,5.5,T,17,10.0
-1998-04-11,3.7,0.8,2.2,-0.5,0/9/0,993.9,986.2,989.5,35.0,,,18.0,350.0,,,N,10.9,T,12,8.0
-1998-04-12,4.0,0.3,2.2,-0.4,/////,986.9,983.2,983.8,27.0,,,9.0,20.0,,,N,1.5,T,10,8.0
-1998-04-13,2.5,-2.0,-0.7,-0.5,0/7/0,989.5,982.3,984.7,20.0,,,5.0,340.0,,,NW,2.1,T,9,10.0
-1998-04-14,1.7,-1.0,-0.1,-0.9,0/7/0,1007.0,989.4,1001.3,41.0,,,22.0,230.0,,,W,3.5,T,10,10.0
-1998-04-15,3.4,-0.5,0.8,-1.0,0/7/0,1007.8,996.1,999.9,24.0,,,7.0,60.0,,,N,4.5,3,16,10.0
-1998-04-16,4.5,0.0,2.1,-0.9,0/9/0,997.0,993.7,994.2,32.0,,,11.0,60.0,,,N,6.0,0,15,10.0
-1998-04-17,7.0,0.0,4.3,-1.7,0/7/0,995.0,974.5,979.6,59.0,,,28.0,10.0,,,N,11.3,0,0,10.0
-1998-04-18,5.5,0.7,2.0,-1.6,0/7/0,975.1,962.1,966.3,53.0,,,26.0,20.0,,,N,9.5,0,0,9.0
-1998-04-19,2.0,-3.8,-1.6,-3.0,0/9/0,979.8,967.2,974.4,27.0,,,17.0,350.0,,,W,3.3,0,8,10.0
-1998-04-20,-2.3,-5.0,-3.3,-0.7,0/8/0,992.7,979.8,987.5,25.0,,,10.0,230.0,,,SW,0.5,1,5,5.0
-1998-04-21,0.6,-2.4,-0.6,-0.8,/////,990.1,977.5,981.4,39.0,,,18.0,230.0,,,W,5.4,T,18,8.0
-1998-04-22,0.5,-2.0,-0.4,-1.1,60200,1002.4,986.8,996.6,34.0,,,18.0,260.0,,,W,4.1,2,24,6.0
-1998-04-23,2.6,-2.5,0.1,-0.9,30799,1008.8,1002.8,1007.0,34.0,,,15.0,340.0,,,N,1.0,T,20,10.0
-1998-04-24,3.5,-1.0,1.8,-0.6,0/29/,1007.7,1001.4,1004.1,48.0,,,15.0,340.0,,,N,3.8,0,0,10.0
-1998-04-25,1.9,-2.3,-0.3,-0.8,01291,1018.6,1007.8,1016.0,19.0,,,6.0,340.0,,,NW,0.5,0,0,4.0
-1998-04-26,2.4,0.5,1.5,-0.9,01291,1017.6,1008.2,1008.5,39.0,,,22.0,310.0,,,NW,0.8,0,0,9.0
-1998-04-27,3.7,1.3,2.6,-0.9,102//,1008.5,999.7,1003.8,43.0,,,23.0,340.0,,,NW,19.7,0,0,10.0
-1998-04-28,3.5,-0.3,0.9,-0.7,20211,1013.6,995.2,1004.4,37.0,,,19.0,320.0,,,W,4.1,0,0,8.0
-1998-04-29,0.7,-1.5,0.2,-0.7,20211,1020.3,1013.0,1019.0,27.0,,,11.0,230.0,,,SW,0.3,T,0,10.0
-1998-04-30,0.4,-2.7,-1.6,-0.7,20211,1019.7,1016.2,1017.5,15.0,,,4.0,210.0,,,W,0.0,0,0,4.0
-1998-05-01,-0.4,-2.6,-1.4,-0.8,20211,1016.1,1010.5,1013.7,6.0,,,2.0,360.0,,,NW,0.1,T,0,10.0
-1998-05-02,0.7,-1.5,-0.6,-0.7,207//,1010.9,995.2,1001.3,10.0,,,3.0,110.0,,,E,7.8,2,2,10.0
-1998-05-03,0.5,-0.5,-0.1,-1.1,207//,996.8,993.8,996.2,15.0,,,3.0,280.0,,,W,4.7,T,1,10.0
-1998-05-04,2.3,-2.2,0.0,-1.3,207//,994.2,985.5,990.8,37.0,,,12.0,350.0,,,NW,15.9,1,2,10.0
-1998-05-05,0.5,-4.5,-3.0,-1.5,207//,986.0,980.5,984.4,23.0,,,11.0,190.0,,,SW,6.6,9,11,10.0
-1998-05-06,-3.0,-9.4,-6.7,-1.9,207//,985.7,979.8,984.1,41.0,,,19.0,220.0,,,SW,0.7,T,16,8.0
-1998-05-07,-6.5,-8.7,-7.9,-1.7,307//,986.0,982.7,984.8,29.0,,,15.0,200.0,,,SW,3.2,4,24,10.0
-1998-05-08,-4.6,-9.1,-6.2,-1.9,200//,983.3,969.5,977.1,18.0,,,4.0,110.0,,,S,1.7,1,23,10.0
-1998-05-09,-4.0,-9.6,-5.9,-1.2,200//,998.2,978.0,988.1,32.0,,,16.0,100.0,,,SE,0.2,0,19,1.0
-1998-05-10,-2.2,-8.1,-3.2,-1.3,200//,998.6,996.1,998.5,17.0,,,3.0,210.0,,,S,0.0,0,19,9.0
-1998-05-11,-1.2,-8.0,-2.3,-1.4,200//,1002.5,997.3,1000.1,24.0,,,12.0,220.0,,,SW,0.0,0,18,10.0
-1998-05-12,-2.0,-3.3,-2.3,-1.5,203//,1008.3,1002.4,1006.4,19.0,,,8.0,220.0,,,SW,0.0,0,17,9.0
-1998-05-13,2.7,-3.0,0.1,-1.4,200//,1005.8,996.7,1002.5,34.0,,,12.0,360.0,,,NW,1.2,T,17,10.0
-1998-05-14,5.2,0.0,1.4,-1.1,200//,996.8,977.6,987.1,66.0,,,36.0,20.0,,,N,3.6,0,0,10.0
-1998-05-15,1.5,-3.8,-2.8,-0.9,200//,985.7,980.0,984.7,46.0,,,15.0,310.0,,,SW,0.8,T,4,10.0
-1998-05-16,0.0,-4.1,-2.2,-1.1,207//,986.0,978.8,983.6,36.0,,,18.0,250.0,,,SW,0.1,0,3,10.0
-1998-05-17,-2.0,-5.4,-3.6,-1.1,208//,991.3,984.3,987.3,27.0,,,12.0,200.0,,,SW,0.3,T,4,3.0
-1998-05-18,-2.2,-5.5,-3.3,-1.0,207//,1003.0,991.5,997.3,21.0,,,8.0,190.0,,,S,0.0,0,4,7.0
-1998-05-19,-0.5,-2.7,-1.7,-1.3,208//,1003.7,999.0,1000.1,14.0,,,5.0,330.0,,,W,1.2,T,4,10.0
-1998-05-20,-0.5,-2.8,-1.7,-1.4,207//,1002.3,997.8,999.4,37.0,,,19.0,210.0,,,SW,0.7,T,5,10.0
-1998-05-21,-1.0,-3.2,-2.2,-1.6,207//,1003.2,1000.3,1000.7,26.0,,,9.0,200.0,,,SW,0.0,0,5,10.0
-1998-05-22,-2.2,-4.8,-3.2,-1.2,208//,1008.6,1002.3,1005.6,22.0,,,8.0,190.0,,,S,0.0,0,5,10.0
-1998-05-23,-1.4,-3.8,-2.6,-1.3,207//,1013.2,1008.8,1011.2,21.0,,,11.0,200.0,,,SW,0.0,0,5,10.0
-1998-05-24,-1.0,-3.0,-1.7,-1.3,30752,1013.3,1007.2,1008.4,17.0,,,5.0,230.0,,,SW,1.7,3,6,10.0
-1998-05-25,-2.3,-5.6,-4.1,-0.4,20712,1016.6,1006.9,1010.2,9.0,,,1.0,230.0,,,N,0.5,T,6,1.0
-1998-05-26,-3.2,-6.0,-4.3,-1.5,207//,1019.5,1016.5,1016.6,10.0,,,3.0,350.0,,,NW,0.1,0,6,9.0
-1998-05-27,-1.3,-5.3,-4.9,-2.0,207//,1016.7,1013.3,1015.1,8.0,,,2.0,10.0,,,N,5.0,T,6,4.0
-1998-05-28,0.0,-2.5,-1.9,-1.9,208//,1015.8,1010.0,1010.9,11.0,,,2.0,330.0,,,NW,8.6,10,16,10.0
-1998-05-29,-0.5,-5.6,-3.5,-1.6,208//,1016.3,1009.2,1011.4,9.0,,,0.0,140.0,,,SE,0.2,0,16,5.0
-1998-05-30,-1.4,-5.3,-3.1,-1.0,206//,1015.8,1008.3,1012.9,12.0,,,2.0,130.0,,,NE,0.0,0,16,10.0
-1998-05-31,1.3,-3.8,-1.1,-0.6,206//,1008.8,1004.3,1006.3,13.0,,,2.0,110.0,,,S,3.8,T,15,10.0
-1998-06-01,0.2,-4.0,-1.0,-1.3,208//,1016.2,1008.8,1012.2,29.0,,,7.0,330.0,,,NW,3.6,2,17,10.0
-1998-06-02,2.0,-1.0,0.4,-1.4,206//,1016.4,1006.4,1010.6,35.0,,,10.0,10.0,,,NW,1.0,0,17,10.0
-1998-06-03,1.5,-1.9,0.7,-1.2,206//,1006.5,995.0,998.1,12.0,,,5.0,100.0,,,SE,3.5,2,19,10.0
-1998-06-04,1.1,-0.8,0.1,-1.4,206//,994.9,981.8,987.7,14.0,,,2.0,120.0,,,SE,11.7,6,24,10.0
-1998-06-05,1.5,-3.4,-2.5,-1.7,206//,981.0,970.3,973.1,22.0,,,5.0,210.0,,,S,7.6,8,34,10.0
-1998-06-06,-2.1,-4.8,-3.6,-1.9,206//,984.6,972.0,981.1,28.0,,,13.0,230.0,,,SW,0.0,0,37,10.0
-1998-06-07,-4.0,-6.4,-5.2,-1.9,206//,983.7,973.8,978.2,32.0,,,11.0,200.0,,,SW,1.2,1,33,8.0
-1998-06-08,-1.2,-9.8,-5.2,-1.4,0////,1002.7,975.8,991.7,38.0,,,14.0,120.0,,,SE,0.0,0,32,4.0
-1998-06-09,-1.5,-6.3,-4.4,-1.6,206//,1008.0,1003.6,1005.7,18.0,,,5.0,220.0,,,SW,0.0,0,32,9.0
-1998-06-10,-2.6,-6.5,-3.9,-1.8,306//,1014.8,1007.5,1012.2,11.0,,,1.0,330.0,,,N,0.0,T,32,2.0
-1998-06-11,0.2,-4.0,-1.3,-1.8,306//,1014.9,1002.4,1007.7,23.0,,,7.0,340.0,,,NW,9.2,12,42,10.0
-1998-06-12,0.2,-3.0,-1.3,-1.9,427//,1007.5,1001.2,1003.6,26.0,,,12.0,320.0,,,W,6.7,10,44,10.0
-1998-06-13,-0.2,-5.4,-2.8,-1.9,327//,1013.5,1001.0,1009.5,29.0,,,10.0,230.0,,,SW,0.9,1,54,1.0
-1998-06-14,-1.3,-5.5,-2.8,-1.7,327//,1013.4,1009.5,1011.9,9.0,,,2.0,100.0,,,NE,0.0,0,50,10.0
-1998-06-15,-0.6,-2.5,-1.6,-1.8,327//,1009.4,1006.4,1007.6,12.0,,,1.0,110.0,,,SE,0.7,0,47,10.0
-1998-06-16,0.5,-2.7,-1.2,-1.7,327//,1007.2,1006.4,1006.9,11.0,,,1.0,20.0,,,NE,0.0,0,45,10.0
-1998-06-17,4.3,-1.4,0.7,-1.4,297//,1006.5,1003.7,1004.7,27.0,,,6.0,50.0,,,NE,0.0,0,44,2.0
-1998-06-18,3.6,-2.0,0.8,-1.3,297//,1003.2,993.7,998.7,44.0,,,11.0,10.0,,,N,1.9,0,42,10.0
-1998-06-19,6.0,0.8,3.5,-1.0,//2//,994.4,988.3,990.7,51.0,,,23.0,30.0,,,N,2.4,0,20,10.0
-1998-06-20,5.0,0.3,2.7,-0.9,0/7//,989.7,988.3,989.4,44.0,,,6.0,20.0,,,NE,0.0,0,17,10.0
-1998-06-21,1.2,-0.7,0.3,-1.3,2379/,988.8,983.2,984.6,15.0,,,4.0,340.0,,,SW,4.5,4,5,10.0
-1998-06-22,-1.1,-6.8,-3.3,-1.3,2379/,993.5,985.7,992.0,16.0,,,3.0,220.0,,,SW,2.8,2,8,9.0
-1998-06-23,1.3,-6.5,-1.9,-1.4,2379/,992.0,973.1,983.4,28.0,,,7.0,30.0,,,NE,1.0,3,11,6.0
-1998-06-24,4.0,-1.5,0.7,-1.3,2379/,975.9,965.2,970.6,51.0,,,18.0,60.0,,,NE,6.0,6,10,8.0
-1998-06-25,1.3,-4.4,-1.5,-1.5,2379/,986.1,975.9,984.3,37.0,,,14.0,20.0,,,N,2.3,4,20,10.0
-1998-06-26,3.5,-0.3,2.2,-1.3,2/6//,984.3,972.2,980.4,53.0,,,23.0,40.0,,,NE,0.0,0,20,10.0
-1998-06-27,3.5,-1.4,1.1,-1.2,0/69/,984.3,967.3,973.3,45.0,,,15.0,30.0,,,NE,4.8,T,10,10.0
-1998-06-28,2.4,-4.6,-1.6,-1.5,0/69/,993.4,984.3,990.1,39.0,,,13.0,60.0,,,E,0.4,T,17,10.0
-1998-06-29,2.8,0.8,1.6,-1.1,0/69/,985.5,970.6,974.0,44.0,,,18.0,30.0,,,NE,1.8,0,16,8.0
-1998-06-30,1.1,-1.7,-0.6,-1.3,0/69/,982.8,970.2,979.0,43.0,,,16.0,10.0,,,NW,1.5,2,21,5.0
-1998-07-01,2.4,-3.5,-0.4,-1.2,0/69/,982.5,966.7,970.9,44.0,,,20.0,20.0,,,NE,0.5,0,18,8.0
-1998-07-02,1.3,-3.0,-0.2,-1.3,0/69/,976.9,971.5,974.4,36.0,,,11.0,20.0,,,N,0.0,0,19,3.0
-1998-07-03,2.4,-3.7,-0.3,-1.1,0/69/,974.1,964.8,967.4,43.0,,,16.0,70.0,,,E,0.2,1,17,10.0
-1998-07-04,-0.5,-3.4,-2.0,-1.3,0/7//,969.4,968.5,969.0,17.0,,,5.0,10.0,,,E,6.5,8,24,10.0
-1998-07-05,-1.6,-4.4,-3.0,-1.3,0/7//,969.2,961.7,963.7,34.0,,,10.0,20.0,,,N,10.8,22,45,10.0
-1998-07-06,-1.1,-4.5,-2.9,-1.6,0/7//,966.7,962.5,963.4,32.0,,,7.0,10.0,,,N,0.7,T,38,10.0
-1998-07-07,-2.4,-5.4,-3.8,-1.9,6279/,977.1,967.0,972.5,20.0,,,7.0,240.0,,,W,2.5,2,42,10.0
-1998-07-08,-3.4,-7.0,-5.2,-1.8,6279/,977.8,964.7,974.1,22.0,,,9.0,90.0,,,E,1.6,1,41,9.0
-1998-07-09,-2.5,-5.4,-3.9,-1.7,6279/,965.1,952.5,956.7,20.0,,,6.0,90.0,,,E,3.4,4,44,10.0
-1998-07-10,-3.5,-5.9,-4.1,-1.7,6279/,963.8,948.2,953.3,15.0,,,4.0,330.0,,,N,2.4,3,45,10.0
-1998-07-11,-1.2,-9.3,-4.6,-2.0,6279/,978.3,959.2,970.0,31.0,,,13.0,50.0,,,E,0.1,T,42,7.0
-1998-07-12,1.1,-4.6,-1.8,-1.5,6169/,972.0,953.2,964.1,61.0,,,25.0,30.0,,,N,1.0,T,32,9.0
-1998-07-13,1.1,-0.8,0.4,-1.5,0/19/,973.3,965.8,969.4,62.0,,,31.0,10.0,,,N,0.5,0,31,10.0
-1998-07-14,1.3,-4.7,-2.5,-1.6,0/19/,977.8,967.3,973.8,34.0,,,11.0,30.0,,,N,0.6,T,30,6.0
-1998-07-15,-0.5,-5.1,-3.3,-1.7,0/19/,968.8,965.1,967.6,41.0,,,11.0,20.0,,,N,0.0,0,30,6.0
-1998-07-16,-2.5,-5.7,-4.4,-1.8,0/19/,968.9,953.4,961.3,38.0,,,14.0,50.0,,,NE,0.0,0,30,10.0
-1998-07-17,-3.1,-7.0,-5.1,-1.8,0/19/,966.8,950.8,958.9,38.0,,,9.0,80.0,,,NE,1.8,2,32,10.0
-1998-07-18,-4.4,-8.4,-6.4,-1.9,6079/,973.1,967.2,972.1,27.0,,,7.0,20.0,,,N,0.7,1,39,5.0
-1998-07-19,-4.5,-8.1,-6.3,-2.0,6079/,985.6,971.8,978.7,38.0,,,10.0,30.0,,,N,0.0,0,35,4.0
-1998-07-20,-4.0,-8.8,-5.8,-2.0,6079/,997.0,985.0,993.4,16.0,,,7.0,190.0,,,S,0.0,T,32,10.0
-1998-07-21,-4.0,-7.2,-5.5,-2.0,3169/,997.2,983.9,991.0,21.0,,,10.0,90.0,,,N,1.2,2,38,7.0
-1998-07-22,0.8,-6.6,-2.9,-2.0,0/19/,984.0,967.4,972.8,47.0,,,14.0,50.0,,,E,0.0,0,33,9.0
-1998-07-23,0.5,-5.5,-3.4,-1.9,0/19/,972.3,955.6,962.7,58.0,,,26.0,90.0,,,NE,1.1,T,32,10.0
-1998-07-24,0.5,-5.6,-2.1,-1.9,0/19/,976.0,955.2,963.6,50.0,,,24.0,80.0,,,NE,0.4,0,32,10.0
-1998-07-25,-2.2,-5.7,-3.3,-1.9,0/19/,987.1,976.4,986.1,38.0,,,12.0,10.0,,,N,0.1,T,32,10.0
-1998-07-26,-0.5,-5.8,-3.2,-2.0,0/19/,991.0,986.8,989.6,13.0,,,4.0,20.0,,,E,0.5,T,31,10.0
-1998-07-27,-5.4,-7.8,-6.0,-2.0,3119/,994.3,988.0,990.1,16.0,,,8.0,340.0,,,N,0.0,0,32,10.0
-1998-07-28,-5.0,-10.4,-7.7,-2.0,/////,1008.6,993.5,1004.8,12.0,,,3.0,30.0,,,NE,0.0,0,31,0.0
-1998-07-29,-1.2,-11.4,-7.8,-1.9,3119/,1008.2,995.7,1003.1,33.0,,,5.0,60.0,,,E,0.1,T,31,8.0
-1998-07-30,0.6,-4.8,-2.3,-1.9,2119/,996.5,983.4,990.1,54.0,,,16.0,10.0,,,N,1.9,1,32,10.0
-1998-07-31,1.5,-2.8,-0.5,-1.9,0/19/,983.4,963.6,971.1,78.0,,,24.0,340.0,,,N,1.4,T,32,10.0
-1998-08-01,0.2,-7.1,-3.1,-2.0,3019/,974.1,970.7,973.0,28.0,,,5.0,60.0,,,N,0.0,0,33,2.0
-1998-08-02,1.5,-3.4,-0.4,-1.9,2119/,983.5,970.7,975.0,31.0,,,8.0,70.0,,,NE,1.9,2,33,10.0
-1998-08-03,-2.1,-7.1,-4.7,-2.0,2019/,993.5,983.5,990.4,33.0,,,10.0,70.0,,,E,1.3,3,34,10.0
-1998-08-04,-3.6,-7.9,-5.7,-2.0,3119/,1008.6,993.0,1002.4,9.0,,,4.0,360.0,,,E,0.3,T,35,10.0
-1998-08-05,-0.3,-7.9,-3.4,-2.0,2019/,1009.9,1001.7,1006.3,31.0,,,9.0,30.0,,,N,0.5,0,34,5.0
-1998-08-06,2.3,-2.0,0.2,-1.9,2019/,1001.7,984.2,990.2,61.0,,,22.0,30.0,,,NE,1.4,0,37,10.0
-1998-08-07,3.5,-4.4,-1.7,-2.0,3109/,986.5,977.1,981.1,23.0,,,5.0,180.0,,,W,19.4,15,52,10.0
-1998-08-08,1.2,-4.0,-0.7,-2.0,4159/,1001.4,986.5,997.8,33.0,,,12.0,360.0,,,N,0.9,T,51,10.0
-1998-08-09,0.5,-3.9,-1.7,-2.0,4159/,999.4,988.5,992.8,49.0,,,21.0,360.0,,,N,3.7,6,56,6.0
-1998-08-10,1.1,-3.3,-0.6,-2.0,2049/,993.4,962.9,974.4,55.0,,,29.0,20.0,,,N,0.4,T,53,10.0
-1998-08-11,0.0,-5.0,-2.8,-2.0,3169/,971.9,960.3,967.3,52.0,,,20.0,20.0,,,N,1.9,T,50,10.0
-1998-08-12,-1.5,-9.4,-4.8,-2.0,2179/,974.6,971.9,972.9,29.0,,,3.0,220.0,,,SW,0.0,0,48,5.0
-1998-08-13,-4.1,-9.4,-6.8,-2.0,5169/,971.3,967.7,969.8,26.0,,,5.0,50.0,,,SW,0.0,0,47,1.0
-1998-08-14,-5.3,-8.5,-6.7,-2.0,5169/,976.6,971.1,975.0,25.0,,,4.0,70.0,,,N,1.1,4,51,10.0
-1998-08-15,-4.3,-10.2,-7.8,-2.0,4119/,978.3,974.4,976.6,37.0,,,11.0,10.0,,,N,0.1,0,50,8.0
-1998-08-16,-2.5,-11.1,-6.3,-2.1,2069/,978.8,963.8,970.0,58.0,,,21.0,70.0,,,NE,0.5,0,47,10.0
-1998-08-17,-4.7,-11.9,-8.3,-2.1,3089/,969.1,963.8,966.3,34.0,,,11.0,110.0,,,N,1.1,1,48,5.0
-1998-08-18,-1.5,-10.0,-7.5,-2.0,3069/,971.6,969.1,971.1,9.0,,,4.0,310.0,,,NE,0.1,T,47,10.0
-1998-08-19,-5.5,-11.4,-8.5,-2.1,3169/,990.7,971.6,982.5,22.0,,,7.0,30.0,,,NE,0.5,0,47,10.0
-1998-08-20,-8.0,-11.5,-10.2,-2.0,5169/,1002.8,990.7,998.5,18.0,,,8.0,220.0,,,SW,0.0,0,46,10.0
-1998-08-21,-10.1,-13.7,-11.4,-2.0,5169/,1004.9,996.9,1002.1,15.0,,,4.0,360.0,,,NE,0.0,0,45,2.0
-1998-08-22,-1.8,-11.6,-4.2,-2.0,4169/,996.9,973.9,978.2,54.0,,,29.0,60.0,,,NE,0.3,0,44,10.0
-1998-08-23,-1.0,-7.2,-5.2,-2.0,5169/,987.2,975.1,984.0,49.0,,,6.0,60.0,,,NE,0.4,T,45,8.0
-1998-08-24,-6.5,-13.2,-9.2,-6.9,5169/,988.9,984.3,987.4,9.0,,,2.0,260.0,,,W,0.0,T,43,7.0
-1998-08-25,-2.5,-13.1,-6.9,-2.0,5169/,984.3,972.6,974.7,30.0,,,6.0,70.0,,,NE,0.0,0,43,1.0
-1998-08-26,-3.0,-8.2,-5.5,-2.0,5169/,985.3,973.2,981.3,21.0,,,6.0,60.0,,,N,0.0,0,44,10.0
-1998-08-27,-4.0,-10.1,-5.6,-2.0,5169/,986.0,983.7,985.3,16.0,,,1.0,80.0,,,E,0.1,T,43,3.0
-1998-08-28,-3.0,-6.8,-4.5,-2.0,5169/,988.6,982.0,984.7,23.0,,,3.0,110.0,,,E,1.8,3,46,10.0
-1998-08-29,-0.5,-9.6,-2.9,-2.0,4219/,992.2,966.0,982.3,71.0,,,20.0,20.0,,,NE,0.1,T,46,10.0
-1998-08-30,1.0,-1.7,-0.4,-2.0,4169/,967.8,958.2,963.0,47.0,,,25.0,20.0,,,N,2.1,T,46,10.0
-1998-08-31,-0.9,-6.2,-3.5,-1.9,5269/,973.3,965.6,969.9,26.0,,,6.0,10.0,,,NW,0.3,T,45,8.0
-1998-09-01,0.0,-6.6,-3.4,-2.0,4269/,968.3,959.2,962.3,46.0,,,10.0,360.0,,,N,2.8,1,46,10.0
-1998-09-02,-2.2,-6.7,-4.5,-2.0,5269/,972.5,966.9,970.7,27.0,,,6.0,10.0,,,E,1.3,4,49,9.0
-1998-09-03,-2.5,-7.7,-5.7,-2.0,5269/,977.7,966.9,973.7,45.0,,,19.0,360.0,,,N,9.6,7,60,10.0
-1998-09-04,-5.5,-9.6,-8.0,-2.0,5269/,977.7,967.4,970.3,39.0,,,8.0,20.0,,,W,0.0,0,57,9.0
-1998-09-05,-5.9,-11.2,-9.2,-2.0,5159/,977.8,970.7,975.2,31.0,,,14.0,360.0,,,N,0.8,0,61,7.0
-1998-09-06,-8.2,-12.8,-11.5,-2.0,5159/,988.0,977.0,985.2,29.0,,,7.0,10.0,,,N,1.4,1,57,10.0
-1998-09-07,-8.8,-15.6,-11.1,-2.0,5259/,988.0,967.1,978.3,33.0,,,10.0,40.0,,,NE,0.1,0,50,7.0
-1998-09-08,-7.0,-12.2,-9.5,-2.0,5259/,966.6,961.0,964.1,50.0,,,12.0,60.0,,,NE,1.8,2,51,8.0
-1998-09-09,-9.5,-13.5,-11.5,-2.0,4259/,968.4,964.2,965.5,41.0,,,12.0,60.0,,,E,0.2,T,50,5.0
-1998-09-10,-10.9,-13.0,-12.1,-2.0,5259/,975.0,968.4,973.1,24.0,,,9.0,360.0,,,N,0.7,T,50,10.0
-1998-09-11,-11.4,-15.5,-12.9,-2.0,5259/,977.5,975.0,976.5,31.0,,,13.0,250.0,,,SW,0.2,T,47,10.0
-1998-09-12,-11.2,-15.3,-14.6,-2.0,9259/,976.9,973.0,974.2,25.0,,,19.0,240.0,,,SW,0.2,0,46,10.0
-1998-09-13,-10.8,-19.5,-16.7,-2.0,92576,989.8,973.0,982.1,12.0,,,1.0,150.0,,,W,0.4,1,46,0.0
-1998-09-14,-9.7,-21.7,-15.7,-2.0,92576,998.8,989.8,993.7,25.0,,,4.0,180.0,,,NE,0.0,0,46,4.0
-1998-09-15,-5.0,-15.1,-10.5,-2.0,92576,1008.4,998.8,1006.3,16.0,,,4.0,160.0,,,E,0.0,0,45,1.0
-1998-09-16,-4.3,-11.5,-8.0,-2.0,92576,1014.8,1008.4,1012.0,13.0,,,4.0,290.0,,,NW,0.0,0,45,8.0
-1998-09-17,-3.9,-8.5,-5.4,-2.0,92576,1017.8,1014.8,1016.9,16.0,,,1.0,240.0,,,W,0.3,T,45,10.0
-1998-09-18,-0.3,-4.6,-2.5,-2.0,92576,1016.3,1010.5,1013.3,16.0,,,9.0,10.0,,,NW,1.2,T,45,10.0
-1998-09-19,2.0,-2.9,0.6,-2.0,92576,1010.7,997.7,1001.2,45.0,,,24.0,330.0,,,N,5.1,T,45,10.0
-1998-09-20,3.3,-0.7,1.3,-2.0,92502,1006.9,998.7,1004.9,41.0,,,19.0,10.0,,,NW,2.9,T,42,10.0
-1998-09-21,5.5,0.5,3.2,-1.9,43691,1004.0,978.6,989.2,54.0,,,27.0,20.0,,,N,2.1,0,34,10.0
-1998-09-22,,-0.7,0.2,-1.9,200/0,982.1,974.7,977.5,63.0,,,35.0,360.0,,,N,1.9,0,31,10.0
-1998-09-23,2.2,-1.2,0.3,-1.9,330/3,995.1,978.0,990.0,38.0,,,21.0,20.0,,,NW,1.3,2,37,10.0
-1998-09-24,3.5,0.4,2.1,-1.8,131/5,993.3,979.4,984.1,65.0,,,33.0,360.0,,,N,8.9,0,23,10.0
-1998-09-25,2.5,-5.5,-2.1,-1.9,131/5,982.5,975.4,979.1,54.0,,,19.0,10.0,,,NW,2.4,T,26,10.0
-1998-09-26,1.1,-3.5,0.9,-1.8,561/5,989.2,982.5,988.2,18.0,,,4.0,350.0,,,SE,2.8,1,28,10.0
-1998-09-27,2.6,-3.2,0.0,-1.7,546/5,1003.7,988.0,997.9,8.0,,,1.0,300.0,,,N,0.4,T,24,9.0
-1998-09-28,2.1,-3.5,-0.9,-1.6,546/5,1006.7,1002.9,1005.2,23.0,,,9.0,360.0,,,SE,1.0,T,23,10.0
-1998-09-29,3.5,-1.5,1.1,-1.8,546/4,1002.9,989.2,995.0,22.0,,,5.0,120.0,,,SE,0.2,T,21,10.0
-1998-09-30,2.5,-1.4,1.4,-1.8,246/4,989.2,984.8,986.0,49.0,,,15.0,340.0,,,N,3.5,3,27,10.0
-1998-10-01,5.1,-1.0,2.1,-1.8,236/2,985.2,961.4,969.3,40.0,,,19.0,10.0,,,NE,0.0,0,20,9.0
-1998-10-02,3.5,-3.0,-1.6,-1.8,546/2,975.3,960.1,969.8,27.0,,,9.0,340.0,,,NW,3.1,4,31,10.0
-1998-10-03,0.2,-3.6,-1.8,-1.8,566/2,985.2,975.7,984.7,10.0,,,2.0,70.0,,,NW,0.0,0,29,9.0
-1998-10-04,1.2,-3.0,0.3,-1.8,136/0,987.0,973.2,975.8,52.0,,,29.0,30.0,,,N,0.6,T,28,10.0
-1998-10-05,2.5,-2.8,0.2,-1.8,136/0,973.1,962.0,965.6,38.0,,,24.0,20.0,,,NE,T,T,27,9.0
-1998-10-06,1.4,-4.5,-0.7,-1.7,446/3,968.1,964.1,967.4,17.0,,,5.0,120.0,,,NE,T,T,26,7.0
-1998-10-07,-2.1,-6.0,-4.1,-1.6,56693,973.0,967.0,969.2,7.0,,,3.0,300.0,,,W,1.0,1,26,10.0
-1998-10-08,-1.5,-6.5,-3.7,-1.7,56//2,983.0,973.0,978.4,17.0,,,7.0,190.0,,,NW,2.1,2,32,8.0
-1998-10-09,-0.5,-13.2,-6.7,-1.7,566/3,983.7,982.4,983.3,9.0,,,2.0,110.0,,,E,0.0,0,30,7.0
-1998-10-10,3.0,-9.7,-2.5,-1.7,566/2,990.9,981.0,985.0,21.0,,,1.0,40.0,,,E,0.1,T,29,9.0
-1998-10-11,2.5,-2.5,0.9,-1.7,366/1,1001.2,990.9,998.5,42.0,,,20.0,20.0,,,N,0.0,0,27,9.0
-1998-10-12,3.2,0.5,2.2,-1.7,166/0,1005.4,1001.0,1002.8,46.0,,,22.0,20.0,,,N,2.0,T,22,10.0
-1998-10-13,3.7,-2.5,1.1,-1.6,176/0,1006.9,996.4,1002.0,28.0,,,8.0,50.0,,,NE,0.0,0,14,9.0
-1998-10-14,2.6,-1.4,0.7,-1.7,466/3,996.3,990.5,992.6,39.0,,,11.0,50.0,,,NE,0.2,T,14,10.0
-1998-10-15,3.0,-1.5,1.4,-1.7,166/0,990.5,974.8,982.1,41.0,,,18.0,20.0,,,NE,0.1,T,13,10.0
-1998-10-16,3.5,-4.2,0.3,-1.5,266/0,975.0,969.6,972.0,49.0,,,10.0,20.0,,,NE,1.2,T,12,6.0
-1998-10-17,-0.5,-7.7,-2.6,-1.5,166/0,970.0,955.5,960.0,47.0,,,12.0,100.0,,,E,T,T,10,8.0
-1998-10-18,2.4,-5.2,-1.6,-1.6,166/0,974.1,958.2,968.8,12.0,,,3.0,290.0,,,NW,0.0,0,10,7.0
-1998-10-19,1.0,-6.0,-1.4,-1.5,566/2,984.0,974.6,981.3,11.0,,,4.0,280.0,,,NW,1.7,2,12,6.0
-1998-10-20,1.6,-6.7,-1.0,-1.6,1/6/0,977.0,969.1,971.8,41.0,,,14.0,60.0,,,E,0.0,0,12,8.0
-1998-10-21,0.4,-4.6,-2.1,-1.0,1///0,978.0,974.6,977.0,26.0,,,7.0,20.0,,,NE,1.6,T,9,8.0
-1998-10-22,2.7,-4.1,-1.1,-1.3,166/0,980.2,976.0,976.8,20.0,,,6.0,130.0,,,S,0.0,0,7,6.0
-1998-10-23,-2.8,-8.0,-5.6,-1.5,266/0,983.1,975.8,980.2,20.0,,,7.0,210.0,,,SW,0.0,0,7,7.0
-1998-10-24,-0.2,-8.0,-3.6,-1.5,546/3,976.0,960.9,965.7,11.0,,,2.0,80.0,,,SW,0.0,0,5,10.0
-1998-10-25,1.8,-7.0,-1.9,-1.5,256/0,963.9,950.9,955.2,51.0,,,22.0,20.0,,,NE,T,T,5,7.0
-1998-10-26,0.0,-11.7,-5.6,-1.7,537/3,974.0,964.0,969.4,12.0,,,6.0,110.0,,,SE,0.0,0,9,5.0
-1998-10-27,-2.7,-9.6,-5.6,-1.6,567/3,981.2,974.0,979.6,20.0,,,7.0,10.0,,,S,T,T,9,7.0
-1998-10-28,0.1,-8.0,-3.6,-1.6,336/0,986.9,972.9,978.3,39.0,,,13.0,10.0,,,N,1.8,1,9,7.0
-1998-10-29,1.0,-10.0,-2.8,-1.6,53//2,987.6,976.2,980.5,41.0,,,7.0,20.0,,,SE,6.3,4,15,10.0
-1998-10-30,2.5,-2.2,0.9,-1.6,1/3/0,981.1,964.2,972.8,53.0,,,20.0,20.0,,,N,2.9,2,12,10.0
-1998-10-31,1.7,-2.2,0.2,-1.6,11//0,965.6,957.2,962.1,51.0,,,29.0,340.0,,,NW,4.3,T,17,10.0
-1998-11-01,-0.7,-4.2,-2.7,-1.9,236/1,987.0,964.5,981.4,26.0,,,6.0,270.0,,,W,0.6,T,18,8.0
-1998-11-02,1.5,-4.5,-0.2,-1.7,196/0,988.2,974.9,981.4,51.0,,,22.0,340.0,,,N,1.3,T,17,10.0
-1998-11-03,0.5,-3.6,-1.1,-1.5,166/0,986.3,974.6,979.2,39.0,,,9.0,330.0,,,NW,0.5,T,18,10.0
-1998-11-04,-2.5,-5.7,-4.0,-1.6,536/2,1000.2,986.5,996.1,16.0,,,6.0,240.0,,,SW,0.5,T,18,10.0
-1998-11-05,-0.3,-8.1,-2.8,-1.8,536/2,1010.8,1000.2,1006.9,14.0,,,3.0,160.0,,,S,0.0,0,19,4.0
-1998-11-06,2.5,-4.7,0.3,-1.7,53692,1015.2,1010.6,1013.2,16.0,,,6.0,330.0,,,NW,0.7,T,21,10.0
-1998-11-07,3.8,-1.1,1.5,-1.7,536/2,1014.1,1011.1,1012.7,24.0,,,9.0,10.0,,,SE,10.1,1,20,10.0
-1998-11-08,3.0,-0.6,1.8,-1.6,536/2,1011.2,1008.0,1009.5,10.0,,,1.0,120.0,,,E,6.9,T,15,10.0
-1998-11-09,6.7,-0.5,0.5,-1.6,536/2,1008.5,1001.4,1003.8,11.0,,,2.0,110.0,,,SE,0.0,0,13,10.0
-1998-11-10,5.5,-0.6,2.3,-1.5,536/2,1000.0,996.0,997.1,46.0,,,3.0,360.0,,,N,0.9,T,0,10.0
-1998-11-11,3.2,-0.3,2.3,-1.5,536/2,996.0,984.1,986.4,41.0,,,21.0,10.0,,,N,1.7,T,0,10.0
-1998-11-12,3.3,0.0,1.8,-1.6,436/1,985.5,979.4,980.9,37.0,,,16.0,10.0,,,N,2.7,T,0,10.0
-1998-11-13,1.9,-1.7,-0.5,-1.3,536/2,992.7,980.0,986.4,21.0,,,12.0,10.0,,,W,1.3,T,0,10.0
-1998-11-14,3.0,-3.1,0.3,-1.4,546/2,992.9,984.6,986.5,35.0,,,11.0,10.0,,,N,2.1,T,0,10.0
-1998-11-15,2.2,-3.5,-0.3,-1.2,536/2,985.9,980.0,982.7,29.0,,,3.0,10.0,,,NW,1.0,T,0,10.0
-1998-11-16,3.7,-3.5,-0.2,,136/0,981.0,952.8,962.8,41.0,,,11.0,80.0,,,E,0.1,T,0,10.0
-1998-11-17,-0.3,-2.5,-1.4,,566/5,978.5,959.6,971.3,22.0,,,8.0,140.0,,,SW,0.0,0,0,10.0
-1998-11-18,4.2,-4.1,0.3,-1.7,567/5,961.2,951.9,956.2,37.0,,,7.0,100.0,,,E,T,T,0,8.0
-1998-11-19,-0.2,-6.3,-1.8,-1.7,567/5,978.5,961.2,970.2,16.0,,,2.0,220.0,,,SW,0.3,T,0,5.0
-1998-11-20,1.2,-4.8,-1.5,-1.6,567/5,981.5,967.2,976.6,36.0,,,8.0,140.0,,,NE,0.3,T,0,9.0
-1998-11-21,3.2,-2.4,1.6,-1.5,366/0,973.3,966.8,969.9,24.0,,,12.0,20.0,,,N,0.6,T,0,10.0
-1998-11-22,4.7,0.0,2.4,-1.6,166/0,974.3,963.5,968.3,37.0,,,13.0,30.0,,,NE,2.8,0,0,9.0
-1998-11-23,2.6,-2.0,0.1,-1.0,166/0,964.0,959.7,961.3,16.0,,,5.0,330.0,,,NE,3.0,T,0,7.0
-1998-11-24,2.3,-2.2,-0.1,-1.2,546/2,972.3,964.0,968.2,18.0,,,9.0,340.0,,,NW,0.3,T,0,9.0
-1998-11-25,0.6,-4.2,-1.3,-0.9,546/2,984.7,972.3,979.6,16.0,,,5.0,230.0,,,SW,0.3,T,0,7.0
-1998-11-26,3.4,-3.2,0.0,-0.9,546/2,988.2,976.3,984.6,30.0,,,7.0,10.0,,,E,T,T,0,9.0
-1998-11-27,4.3,-1.4,1.6,-1.5,436/0,976.2,959.9,965.2,41.0,,,10.0,80.0,,,NE,0.1,T,0,10.0
-1998-11-28,2.2,-1.9,-0.3,-1.5,247/0,962.0,954.8,957.0,24.0,,,9.0,230.0,,,W,0.4,T,0,9.0
-1998-11-29,0.6,-3.6,-1.2,-1.5,566/2,969.0,962.0,966.9,25.0,,,10.0,230.0,,,SW,T,T,0,8.0
-1998-11-30,4.0,-6.3,0.3,-1.5,566/2,967.0,954.0,958.4,9.0,,,2.0,110.0,,,S,0.0,0,0,6.0
-1998-12-01,4.2,-3.0,0.7,-1.5,536/2,970.2,962.4,968.7,20.0,,,1.0,90.0,,,W,0.0,0,0,5.0
-1998-12-02,0.7,-3.2,-1.5,-1.5,536/2,972.6,970.4,971.8,21.0,,,8.0,230.0,,,SW,0.4,T,0,10.0
-1998-12-03,-1.4,-3.5,-1.9,-1.5,536/2,975.9,972.5,973.7,21.0,,,7.0,240.0,,,SW,0.6,T,0,10.0
-1998-12-04,0.8,-4.0,-1.1,-1.5,536/2,980.3,973.4,977.1,13.0,,,6.0,280.0,,,W,2.8,T,0,10.0
-1998-12-05,2.2,-4.1,-0.2,-1.5,536/2,973.5,968.5,970.1,17.0,,,8.0,310.0,,,NW,3.8,3,0,10.0
-1998-12-06,0.1,-1.5,-0.6,-1.5,536/2,979.5,971.0,977.0,18.0,,,7.0,210.0,,,W,0.5,T,0,10.0
-1998-12-07,2.0,-2.1,-0.4,-1.2,536/2,985.0,976.7,980.1,20.0,,,7.0,210.0,,,SW,T,T,0,6.0
-1998-12-08,2.1,-5.0,-0.4,-1.2,536/5,994.9,985.0,991.8,15.0,,,7.0,240.0,,,SW,0.0,0,0,10.0
-1998-12-09,5.0,-0.6,2.3,-1.3,636/4,991.4,970.1,978.0,42.0,,,15.0,20.0,,,NE,0.0,0,0,10.0
-1998-12-10,3.0,-2.9,2.4,-1.5,136/0,971.4,968.1,969.2,37.0,,,19.0,360.0,,,N,0.7,0,0,10.0
-1998-12-11,5.5,1.3,2.8,-1.4,436/0,971.2,969.0,970.6,32.0,,,9.0,20.0,,,N,1.7,T,0,10.0
-1998-12-12,3.9,-0.6,1.3,-1.4,536/3,973.3,968.2,970.3,11.0,,,2.0,270.0,,,SW,3.8,3,0,10.0
-1998-12-13,3.5,-1.2,0.8,-1.3,536/5,975.0,968.2,971.6,15.0,,,3.0,160.0,,,NW,1.2,1,0,10.0
-1998-12-14,1.3,-2.5,-0.1,-1.5,536/5,978.9,969.6,975.9,14.0,,,5.0,340.0,,,NW,0.0,0,0,9.0
-1998-12-15,4.5,-3.2,1.0,-1.6,536/5,978.0,969.6,974.4,30.0,,,3.0,70.0,,,SE,0.3,T,0,8.0
-1998-12-16,7.3,-0.2,2.5,-0.9,166/0,974.7,962.2,966.9,48.0,,,18.0,110.0,,,E,0.1,T,0,7.0
-1998-12-17,3.0,-1.2,0.2,-1.3,166/0,985.0,974.7,982.4,14.0,,,5.0,290.0,,,SW,0.0,0,0,7.0
-1998-12-18,4.9,-2.2,1.6,-0.9,486/3,985.6,979.0,983.5,29.0,,,7.0,120.0,,,SE,0.0,0,0,7.0
-1998-12-19,4.9,0.8,2.8,-0.9,446/0,979.0,971.5,973.9,41.0,,,15.0,30.0,,,NE,0.6,T,0,9.0
-1998-12-20,5.0,-0.9,1.1,-1.2,246/0,986.0,977.8,984.4,21.0,,,5.0,310.0,,,NW,7.2,3,0,10.0
-1998-12-21,6.0,-1.6,1.9,-1.2,246/1,987.0,977.4,983.4,15.0,,,4.0,250.0,,,NW,0.9,T,0,9.0
-1998-12-22,7.5,0.1,2.5,-0.6,166/0,977.5,969.7,971.3,22.0,,,5.0,60.0,,,E,0.0,0,0,8.0
-1998-12-23,5.3,0.4,2.7,-0.5,156/5,979.2,973.0,976.7,16.0,,,6.0,110.0,,,E,0.0,0,0,7.0
-1998-12-24,2.5,-1.8,1.4,0.1,136/0,982.0,979.2,980.5,10.0,,,3.0,210.0,,,W,0.0,0,0,3.0
-1998-12-25,4.3,0.3,2.6,0.4,136/0,987.6,982.1,986.1,11.0,,,3.0,90.0,,,E,0.0,0,0,8.0
-1998-12-26,6.2,-0.5,1.6,0.4,/////,987.2,984.1,985.7,31.0,,,7.0,60.0,,,NE,0.0,0,0,5.0
-1998-12-27,3.5,0.5,1.5,0.5,0/6/0,994.9,986.8,992.7,31.0,,,9.0,10.0,,,N,0.4,T,0,10.0
-1998-12-28,4.8,0.4,2.4,0.3,0/6/0,999.3,994.2,996.8,17.0,,,4.0,140.0,,,S,0.7,T,0,9.0
-1998-12-29,3.1,0.2,1.5,0.8,0/6/0,1001.7,999.3,1001.2,7.0,,,0.0,80.0,,,E,0.8,T,0,10.0
-1998-12-30,5.6,0.4,2.8,-0.1,0/6/0,1003.8,1000.6,1002.2,9.0,,,1.0,340.0,,,W,0.0,0,0,10.0
-1998-12-31,6.5,0.5,3.1,-0.3,0/6/0,1004.2,995.0,1001.2,19.0,,,3.0,70.0,,,E,0.0,0,0,10.0
-1999-01-01,6.1,1.4,3.4,-0.2,0/6/5,995.0,985.0,987.2,52.0,,,14.0,30.0,,,NE,0.6,0,0,10.0
-1999-01-02,4.4,0.2,2.4,0.3,0/6/0,988.2,986.2,987.4,24.0,,,3.0,30.0,,,E,2.4,0,0,10.0
-1999-01-03,6.2,0.5,2.2,-0.6,0/6/0,990.4,986.2,988.7,7.0,,,2.0,110.0,,,E,0.3,0,0,8.0
-1999-01-04,6.9,-0.1,2.8,0.0,0/6/0,990.9,986.5,989.0,8.0,,,2.0,120.0,,,SE,0.0,0,0,9.0
-1999-01-05,5.4,0.8,3.8,-0.0,0/6/0,986.5,977.1,980.6,27.0,,,10.0,20.0,,,N,0.5,0,0,9.0
-1999-01-06,5.2,1.0,3.3,0.4,0/6/0,977.2,970.1,971.9,29.0,,,6.0,90.0,,,E,2.3,0,0,10.0
-1999-01-07,4.5,0.1,3.0,0.2,0/6/0,982.0,972.9,979.5,26.0,,,7.0,10.0,,,N,0.0,0,0,9.0
-1999-01-08,3.8,0.2,1.7,0.1,0/6/0,992.0,982.0,990.1,14.0,,,4.0,10.0,,,NW,2.9,T,0,9.0
-1999-01-09,3.7,-0.2,1.1,0.0,0/6/0,992.2,984.6,988.3,45.0,,,11.0,20.0,,,N,9.0,1,0,10.0
-1999-01-10,7.0,0.0,3.8,0.2,0/6/0,997.9,988.2,995.6,36.0,,,13.0,10.0,,,SE,1.7,T,0,10.0
-1999-01-11,6.5,3.2,4.3,0.4,0/6/0,996.9,990.1,992.0,47.0,,,27.0,10.0,,,N,1.8,0,0,10.0
-1999-01-12,3.7,0.2,2.5,0.3,0/6/0,995.9,991.0,993.9,27.0,,,14.0,360.0,,,NW,1.3,0,0,10.0
-1999-01-13,3.7,1.1,3.2,0.4,0/6/0,994.0,974.0,978.8,51.0,,,21.0,20.0,,,N,5.8,0,0,10.0
-1999-01-14,2.4,0.3,1.1,0.2,0/6/0,974.0,972.2,973.3,30.0,,,16.0,310.0,,,NW,16.2,T,0,10.0
-1999-01-15,2.2,-0.9,1.1,0.4,0/6/0,978.9,973.8,976.0,10.0,,,3.0,20.0,,,NW,1.2,T,0,10.0
-1999-01-16,3.7,-0.8,1.8,0.1,0/6/0,981.8,978.9,980.9,12.0,,,6.0,340.0,,,NW,0.0,0,0,6.0
-1999-01-17,4.0,-1.4,1.5,0.7,0/6/0,982.4,979.4,980.7,14.0,,,4.0,250.0,,,W,0.0,0,0,7.0
-1999-01-18,3.2,-0.2,1.4,0.6,0/6/0,991.0,982.4,986.8,17.0,,,8.0,210.0,,,SW,1.1,T,0,10.0
-1999-01-19,4.4,0.4,1.9,0.8,0/6/0,995.8,991.0,994.0,18.0,,,8.0,210.0,,,SW,0.0,0,0,7.0
-1999-01-20,4.9,-0.8,2.2,0.6,0/6/0,997.5,993.0,994.7,5.0,,,2.0,300.0,,,NW,0.0,0,0,8.0
-1999-01-21,5.5,0.6,2.4,0.3,0/6/0,998.6,994.0,996.8,16.0,,,3.0,120.0,,,E,4.0,T,0,10.0
-1999-01-22,7.1,0.4,3.1,0.4,0/6/0,999.9,994.0,998.3,10.0,,,4.0,150.0,,,SE,2.2,0,0,8.0
-1999-01-23,6.7,1.9,4.5,0.5,0/6/0,998.0,975.9,985.7,45.0,,,11.0,50.0,,,E,2.0,0,0,10.0
-1999-01-24,5.3,1.2,3.6,-0.1,0/6/0,977.7,971.0,972.8,63.0,,,17.0,20.0,,,N,3.3,0,0,10.0
-1999-01-25,4.7,0.5,2.8,-0.3,0/6/0,990.1,977.7,986.7,18.0,,,11.0,30.0,,,NW,2.6,T,0,10.0
-1999-01-26,4.2,0.4,3.1,-0.1,0/6/0,990.4,988.3,988.6,29.0,,,15.0,360.0,,,N,3.5,0,0,10.0
-1999-01-27,2.7,0.7,1.5,0.1,0/6/0,991.2,988.3,989.3,20.0,,,11.0,330.0,,,NW,4.4,0,0,10.0
-1999-01-28,3.0,-0.3,1.5,0.1,0/6/0,990.5,974.7,980.6,16.0,,,2.0,100.0,,,E,2.5,T,0,10.0
-1999-01-29,5.2,0.4,2.2,0.0,0/6/0,986.0,973.8,980.1,29.0,,,7.0,60.0,,,NE,1.8,T,0,9.0
-1999-01-30,3.0,0.0,0.9,0.4,0/6/0,993.4,986.0,990.8,14.0,,,6.0,220.0,,,SW,6.3,7,0,9.0
-1999-01-31,3.4,0.0,1.4,0.8,0/6/0,993.9,992.3,993.5,19.0,,,9.0,210.0,,,SW,0.2,T,0,7.0
-1999-02-01,4.0,-1.2,1.6,0.7,0/6/0,992.3,984.2,985.7,10.0,,,3.0,230.0,,,E,0.0,0,0,10.0
-1999-02-02,3.5,0.4,2.5,0.5,0/6/0,985.5,979.1,983.5,37.0,,,9.0,10.0,,,N,0.4,T,0,10.0
-1999-02-03,2.9,0.6,1.9,0.3,0/6/0,979.1,966.3,968.4,57.0,,,19.0,20.0,,,N,3.9,T,0,10.0
-1999-02-04,4.6,-0.5,1.6,0.2,0/6/0,973.0,969.9,972.3,16.0,,,5.0,230.0,,,NW,0.0,0,0,8.0
-1999-02-05,3.2,-0.4,1.1,0.2,0/6/0,975.5,972.2,973.5,15.0,,,4.0,260.0,,,SW,0.8,T,0,9.0
-1999-02-06,3.2,-1.0,0.3,0.4,0/6/0,978.0,975.5,976.9,25.0,,,13.0,230.0,,,SW,1.8,2,0,8.0
-1999-02-07,3.4,-1.7,1.1,0.6,0/6/0,975.6,963.4,966.1,22.0,,,6.0,30.0,,,E,6.5,4,0,10.0
-1999-02-08,5.3,0.3,3.3,,0/6/0,981.9,963.6,972.2,18.0,,,4.0,80.0,,,E,0.0,0,0,4.0
-1999-02-09,5.2,-0.3,1.3,0.7,0/6/0,991.0,981.9,986.4,13.0,,,6.0,250.0,,,N,0.0,0,0,9.0
-1999-02-10,2.6,-0.2,1.6,0.5,0/6/0,995.7,991.0,994.1,17.0,,,4.0,220.0,,,SW,0.0,0,0,10.0
-1999-02-11,4.5,0.8,2.8,0.3,0/6/0,991.4,959.7,974.4,32.0,,,16.0,120.0,,,E,3.2,T,0,10.0
-1999-02-12,4.2,1.4,2.3,0.7,0/6/0,965.1,954.1,959.7,44.0,,,11.0,30.0,,,NW,0.1,0,0,8.0
-1999-02-13,3.1,0.3,1.5,0.5,0/6/0,977.2,965.0,972.5,20.0,,,9.0,240.0,,,SW,0.0,0,0,8.0
-1999-02-14,5.5,-0.2,2.2,0.6,0/6/0,978.0,976.9,977.5,9.0,,,2.0,270.0,,,SE,0.2,T,0,10.0
-1999-02-15,3.5,0.1,2.0,0.2,0/6/0,979.5,976.4,977.9,26.0,,,8.0,20.0,,,N,1.8,2,0,10.0
-1999-02-16,5.0,0.5,2.6,0.6,0/6/0,984.5,979.5,983.2,14.0,,,1.0,360.0,,,N,2.4,T,0,7.0
-1999-02-17,3.5,0.4,2.1,0.7,0/6/0,990.1,984.5,986.9,8.0,,,1.0,230.0,,,SW,0.0,0,0,9.0
-1999-02-18,3.2,-0.8,1.4,0.5,0/6/0,990.7,985.5,987.9,29.0,,,9.0,80.0,,,NE,0.0,0,0,10.0
-1999-02-19,5.6,-1.5,1.6,0.4,0/6/0,990.7,984.5,987.6,19.0,,,5.0,40.0,,,NE,0.0,0,0,3.0
-1999-02-20,2.7,0.3,1.3,0.4,0/6/0,1000.0,990.7,996.7,24.0,,,8.0,20.0,,,NE,0.2,T,0,10.0
-1999-02-21,5.3,-0.3,2.1,0.8,0/6/0,1000.0,980.8,989.2,38.0,,,15.0,20.0,,,E,1.3,0,0,9.0
-1999-02-22,9.2,1.5,4.4,0.7,0/6/0,986.4,972.5,982.1,35.0,,,10.0,70.0,,,SE,4.6,0,0,10.0
-1999-02-23,6.0,1.7,3.4,1.1,0/6/0,975.6,968.5,972.1,54.0,,,31.0,30.0,,,N,7.3,T,0,9.0
-1999-02-24,5.6,2.3,3.7,0.9,0/6/0,977.5,966.3,972.3,54.0,,,24.0,20.0,,,N,13.3,0,0,10.0
-1999-02-25,5.3,0.9,2.3,0.7,0/6/0,985.9,965.2,978.0,41.0,,,11.0,20.0,,,NW,6.1,T,0,10.0
-1999-02-26,5.3,-0.2,2.7,0.9,0/6/0,1000.7,985.9,992.6,19.0,,,4.0,160.0,,,E,1.2,0,0,4.0
-1999-02-27,7.1,1.9,5.1,1.0,/////,998.0,980.9,986.0,49.0,,,33.0,30.0,,,N,23.7,0,0,7.0
-1999-02-28,6.8,-0.6,0.5,0.4,0/6/0,1000.7,981.5,993.4,38.0,,,12.0,10.0,,,NW,11.4,3,1,8.0
-1999-03-01,6.7,-0.1,3.9,0.8,0/6/0,1002.9,1000.0,1001.3,42.0,,,22.0,20.0,,,N,0.6,T,0,7.0
-1999-03-02,6.1,0.0,2.7,0.9,0/6/0,1001.8,983.4,991.4,39.0,,,9.0,20.0,,,N,5.6,T,0,10.0
-1999-03-03,4.2,0.5,1.9,0.8,0/6/0,983.4,979.3,980.9,15.0,,,4.0,120.0,,,E,1.4,0,0,9.0
-1999-03-04,5.1,1.5,3.5,0.8,0/6/0,979.3,977.5,978.0,22.0,,,7.0,120.0,,,E,7.8,0,0,9.0
-1999-03-05,4.5,1.0,2.3,0.7,0/6/0,984.9,977.8,981.0,27.0,,,9.0,170.0,,,E,4.3,T,0,8.0
-1999-03-06,4.3,0.3,1.9,0.7,0/6/0,988.0,980.5,985.7,32.0,,,8.0,10.0,,,N,2.1,T,0,8.0
-1999-03-07,6.5,0.1,2.1,0.8,0/6/0,980.5,957.0,966.2,49.0,,,19.0,210.0,,,E,8.5,1,0,10.0
-1999-03-08,4.5,-0.5,1.8,0.7,0/6/0,990.5,977.0,986.5,49.0,,,16.0,220.0,,,SW,1.1,T,0,7.0
-1999-03-09,3.0,1.0,2.0,0.5,0/6/0,986.1,981.0,983.4,30.0,,,9.0,360.0,,,N,0.2,T,0,9.0
-1999-03-10,3.0,0.3,1.3,0.5,0/6/0,1000.9,986.1,996.9,20.0,,,5.0,30.0,,,N,0.8,T,0,10.0
-1999-03-11,3.0,0.5,1.4,0.7,0/6/0,1000.2,990.6,993.1,28.0,,,8.0,30.0,,,SE,1.9,T,0,9.0
-1999-03-12,3.9,0.5,2.3,0.7,0/6/0,991.5,983.8,989.0,40.0,,,17.0,20.0,,,N,11.6,T,0,10.0
-1999-03-13,3.3,0.3,2.0,0.3,0/6/0,988.5,983.5,986.5,41.0,,,17.0,20.0,,,N,4.2,T,0,10.0
-1999-03-14,3.5,0.8,2.1,0.5,0/6/0,987.0,982.9,985.1,36.0,,,20.0,360.0,,,NW,3.5,T,0,10.0
-1999-03-15,2.2,-0.7,1.4,0.5,0/6/0,995.1,987.0,993.5,38.0,,,22.0,340.0,,,NW,0.5,T,0,8.0
-1999-03-16,2.2,0.0,1.4,0.6,0/6/0,998.0,989.2,994.4,52.0,,,21.0,350.0,,,NW,4.9,T,0,8.0
-1999-03-17,4.1,1.5,3.2,0.4,0/6/0,998.1,991.1,993.7,46.0,,,27.0,20.0,,,N,18.8,0,0,10.0
-1999-03-18,5.1,-0.9,2.3,0.8,0/6/0,1001.0,994.9,997.5,50.0,,,19.0,20.0,,,N,12.8,0,0,8.0
-1999-03-19,5.5,2.2,3.8,0.8,0/6/0,994.9,991.2,992.6,57.0,,,25.0,20.0,,,N,9.4,0,0,8.0
-1999-03-20,6.2,2.0,4.5,0.7,0/6/0,995.2,980.1,990.1,41.0,,,14.0,10.0,,,N,0.7,0,0,8.0
-1999-03-21,1.5,-0.1,0.8,0.7,0/6/0,980.1,974.7,975.9,22.0,,,5.0,290.0,,,W,15.0,4,3,10.0
-1999-03-22,0.5,-0.5,0.1,0.2,0/1/0,992.1,978.6,986.4,16.0,,,7.0,220.0,,,SW,1.2,T,0,10.0
-1999-03-23,4.1,-1.0,1.0,0.3,0/6/0,1008.5,992.1,1001.9,13.0,,,3.0,340.0,,,N,0.7,T,0,2.0
-1999-03-24,0.5,-1.5,-0.1,0.4,0/6/0,998.8,997.7,1003.3,26.0,,,7.0,210.0,,,SW,0.6,T,0,10.0
-1999-03-25,0.7,-0.5,0.4,0.0,0/1/0,999.9,994.5,996.1,22.0,,,10.0,210.0,,,S,0.5,T,0,8.0
-1999-03-26,1.0,-1.8,-0.4,-0.1,0/6/0,1000.9,980.1,990.4,59.0,,,8.0,30.0,,,NW,3.7,2,5,10.0
-1999-03-27,1.8,-1.0,-0.4,0.3,0/1/0,1007.0,987.2,1000.7,24.0,,,2.0,190.0,,,S,T,T,3,7.0
-1999-03-28,1.8,-0.9,0.3,0.3,0/5/0,1007.1,1003.9,1005.3,8.0,,,1.0,90.0,,,E,T,T,0,9.0
-1999-03-29,2.0,-1.5,0.2,0.0,0/5/0,1003.9,996.6,999.8,8.0,,,2.0,180.0,,,S,0.4,T,0,9.0
-1999-03-30,3.7,-1.9,0.6,0.2,0/6/0,998.2,994.9,997.2,36.0,,,8.0,360.0,,,SE,13.7,3,0,10.0
-1999-03-31,-1.0,-4.0,-1.9,0.2,0/6/0,1000.0,997.0,998.5,9.0,,,0.0,120.0,,,N,2.0,T,0,7.0
-1999-04-01,0.5,-1.5,-0.2,0.0,0/6/0,999.6,996.3,998.0,19.0,,,6.0,110.0,,,E,0.5,0,0,9.0
-1999-04-02,6.6,-0.5,1.4,-0.8,0/5/0,1000.2,985.5,993.5,52.0,,,13.0,340.0,,,N,12.0,0,0,10.0
-1999-04-03,2.6,1.0,2.1,-0.2,0/6/0,986.9,979.3,983.5,42.0,,,20.0,330.0,,,N,3.3,0,0,10.0
-1999-04-04,2.0,-0.6,0.7,-0.1,0/6/0,979.3,974.0,975.0,24.0,,,12.0,360.0,,,W,7.9,T,0,10.0
-1999-04-05,1.0,-1.0,-0.5,-0.1,0/7/0,982.5,973.9,978.0,24.0,,,12.0,210.0,,,S,T,T,0,6.0
-1999-04-06,0.5,-3.0,-1.1,0.2,0/7/0,984.1,980.1,982.6,16.0,,,4.0,120.0,,,E,1.8,3,0,10.0
-1999-04-07,0.0,-2.0,-0.5,0.2,0/7/0,994.3,979.9,989.3,18.0,,,5.0,10.0,,,S,0.2,T,2,8.0
-1999-04-08,2.0,-0.5,1.3,0.0,0/7/0,993.2,981.6,986.2,55.0,,,23.0,30.0,,,W,3.4,0,0,9.0
-1999-04-09,3.1,-1.0,1.1,-0.4,0/7/0,990.3,969.4,983.4,49.0,,,16.0,90.0,,,NE,4.4,T,3,10.0
-1999-04-10,3.0,-0.3,0.8,0.0,0/7/0,988.7,964.8,974.8,52.0,,,22.0,30.0,,,NW,8.9,T,3,10.0
-1999-04-11,5.0,-1.5,1.5,0.1,0/7/0,990.0,972.5,980.0,41.0,,,15.0,10.0,,,N,3.8,1,3,9.0
-1999-04-12,4.5,1.4,2.1,0.1,0/7/0,972.5,963.5,964.5,54.0,,,26.0,10.0,,,N,13.2,0,0,10.0
-1999-04-13,2.9,-0.9,0.3,0.2,0/3/0,968.4,959.8,963.6,38.0,,,6.0,10.0,,,NW,T,T,0,5.0
-1999-04-14,2.0,-1.0,-0.5,-0.2,0///0,983.5,968.4,975.4,34.0,,,21.0,10.0,,,NW,6.4,6,13,10.0
-1999-04-15,-1.5,-6.8,-3.1,-0.4,0/7/0,989.5,983.5,988.0,36.0,,,7.0,240.0,,,N,1.1,1,22,6.0
-1999-04-16,0.0,-6.0,-2.7,-0.5,0/8/0,993.2,987.0,991.5,16.0,,,5.0,270.0,,,NW,0.2,T,18,8.0
-1999-04-17,3.0,-3.5,0.6,0.1,0/7/0,993.0,968.5,977.1,70.0,,,23.0,20.0,,,N,1.5,T,14,9.0
-1999-04-18,3.0,0.5,1.6,-0.2,0/7/0,979.6,969.2,976.4,48.0,,,19.0,350.0,,,N,6.0,T,0,10.0
-1999-04-19,3.0,-1.9,-1.2,-0.4,0/7/0,983.5,968.5,977.1,42.0,,,14.0,360.0,,,W,6.2,7,8,10.0
-1999-04-20,1.0,-2.6,-0.9,-0.5,0/8/0,983.5,979.6,981.1,32.0,,,19.0,20.0,,,N,0.2,T,7,8.0
-1999-04-21,1.5,-0.8,0.4,0.0,0///0,979.6,962.0,966.8,40.0,,,15.0,70.0,,,NE,2.9,5,13,10.0
-1999-04-22,0.8,-2.0,-0.1,-0.4,0/7/0,982.0,964.0,975.3,20.0,,,4.0,10.0,,,SW,0.1,T,11,6.0
-1999-04-23,0.2,-2.6,-2.0,-0.6,0/7/0,985.0,979.6,982.2,18.0,,,4.0,220.0,,,NW,T,T,9,9.0
-1999-04-24,0.5,-2.6,-0.6,-0.8,0/7/0,997.9,985.0,992.5,24.0,,,6.0,240.0,,,SW,2.7,2,10,9.0
-1999-04-25,1.5,-0.6,0.4,-1.2,0/7/0,1001.7,997.9,1000.0,22.0,,,12.0,320.0,,,NW,7.2,T,10,10.0
-1999-04-26,3.5,0.9,2.1,-1.0,0/7/0,1001.0,991.2,996.0,53.0,,,13.0,10.0,,,N,8.8,0,10,10.0
-1999-04-27,3.6,0.0,1.4,-0.9,0/6/0,991.2,990.3,990.7,41.0,,,11.0,320.0,,,NW,17.3,T,0,8.0
-1999-04-28,2.2,-0.9,1.0,-0.5,0/6/0,993.9,987.2,990.2,35.0,,,19.0,270.0,,,NW,7.7,3,0,10.0
-1999-04-29,1.4,-1.2,-0.6,-0.5,0/6/0,1005.2,993.9,1002.2,21.0,,,8.0,290.0,,,NW,5.3,7,13,10.0
-1999-04-30,4.6,1.3,2.7,-0.2,0/7/0,1004.0,989.2,994.9,60.0,,,17.0,10.0,,,N,1.4,0,6,10.0
-1999-05-01,4.2,1.3,1.9,-0.1,0/6/0,990.1,974.0,978.2,49.0,,,23.0,360.0,,,N,8.5,0,0,10.0
-1999-05-02,1.3,-1.5,0.0,-0.2,0/7/0,982.0,975.0,979.1,36.0,,,18.0,330.0,,,NW,1.1,1,2,9.0
-1999-05-03,-0.8,-2.6,-1.5,-0.4,0/7/0,982.0,975.0,977.0,26.0,,,12.0,320.0,,,NW,2.4,1,9,9.0
-1999-05-04,-0.8,-3.4,-1.5,-0.5,0/7/0,984.0,973.9,978.4,10.0,,,1.0,120.0,,,SE,2.0,4,8,8.0
-1999-05-05,-1.6,-3.9,-2.8,-0.8,0/7/0,987.8,984.0,986.0,29.0,,,10.0,10.0,,,N,1.8,1,11,10.0
-1999-05-06,-3.7,-6.0,-4.9,-1.2,117/0,988.9,987.7,988.5,16.0,,,5.0,30.0,,,N,0.0,0,9,1.0
-1999-05-07,-1.4,-7.1,-4.3,-0.8,0/7/0,988.8,986.8,987.8,24.0,,,7.0,50.0,,,NE,0.3,T,10,9.0
-1999-05-08,-0.5,-2.9,-1.9,-0.6,0/7/0,986.8,976.8,980.8,19.0,,,3.0,130.0,,,SE,0.3,T,9,9.0
-1999-05-09,-0.3,-3.4,-1.2,-0.8,0/7/0,982.0,974.9,978.9,46.0,,,11.0,20.0,,,N,0.3,T,9,10.0
-1999-05-10,-0.3,-3.0,-0.9,-1.0,0/7/0,984.1,981.8,983.5,38.0,,,15.0,10.0,,,N,0.3,T,8,9.0
-1999-05-11,0.3,-3.1,-1.4,-0.9,0/7/0,983.5,978.0,981.8,40.0,,,14.0,20.0,,,NE,1.0,T,9,10.0
-1999-05-12,0.7,-4.6,-2.6,-1.1,0/7/0,996.4,983.5,989.2,24.0,,,9.0,240.0,,,SW,0.5,T,11,8.0
-1999-05-13,-1.8,-3.9,-2.4,-1.3,0/7/0,997.6,981.2,991.4,20.0,,,10.0,10.0,,,N,T,T,9,10.0
-1999-05-14,2.8,-3.2,1.0,-1.4,0/7/0,983.9,974.3,977.9,43.0,,,18.0,90.0,,,E,0.1,T,9,10.0
-1999-05-15,2.0,-0.9,-0.5,-1.0,0/7/0,1005.9,983.9,998.2,16.0,,,4.0,230.0,,,W,0.1,T,8,9.0
-1999-05-16,2.2,-1.4,0.5,-1.0,0/7/0,1008.8,1001.6,1005.7,46.0,,,18.0,330.0,,,NW,1.5,2,8,10.0
-1999-05-17,2.1,-0.6,0.3,-0.9,0/7/0,1014.0,1001.6,1009.5,46.0,,,17.0,310.0,,,NW,4.0,T,6,10.0
-1999-05-18,2.0,-0.4,0.6,-1.2,0/7/0,1017.0,1014.0,1015.4,28.0,,,14.0,10.0,,,N,1.5,T,6,9.0
-1999-05-19,6.9,0.6,4.5,-0.5,0/7/0,1014.0,1000.4,1006.0,58.0,,,26.0,20.0,,,N,0.1,0,0,10.0
-1999-05-20,5.6,0.3,1.7,-0.6,0/7/0,1005.8,991.0,997.7,42.0,,,5.0,20.0,,,NE,2.5,T,0,10.0
-1999-05-21,4.6,0.2,2.0,-0.5,0/7/0,991.4,988.2,989.1,38.0,,,13.0,10.0,,,N,1.2,0,0,10.0
-1999-05-22,2.1,-2.0,-0.4,-0.7,0/7/0,989.2,987.2,987.4,25.0,,,9.0,290.0,,,SW,0.1,T,0,10.0
-1999-05-23,0.2,-3.2,-2.0,-0.7,0/7/0,988.3,976.3,983.1,45.0,,,14.0,20.0,,,SW,T,T,0,10.0
-1999-05-24,1.0,-2.2,-0.2,-0.1,0/2/0,976.7,948.1,957.6,63.0,,,21.0,30.0,,,NE,1.4,T,0,6.0
-1999-05-25,-0.1,-1.6,-0.7,-0.9,0/7/0,961.2,951.3,958.2,37.0,,,22.0,350.0,,,N,2.3,2,7,7.0
-1999-05-26,1.0,-3.0,-0.9,-0.7,0/7/0,977.7,961.2,973.7,35.0,,,11.0,10.0,,,NE,1.9,4,12,9.0
-1999-05-27,1.1,-3.6,-1.2,-1.1,0/7/0,991.5,975.5,983.4,36.0,,,14.0,10.0,,,N,4.9,6,21,10.0
-1999-05-28,0.0,-1.9,-0.9,-1.3,0/7/0,1015.3,991.5,1007.4,26.0,,,7.0,230.0,,,SW,0.1,T,20,10.0
-1999-05-29,1.3,-0.8,0.0,-0.8,0/7/0,1019.7,1015.3,1018.3,30.0,,,12.0,10.0,,,N,0.0,0,18,8.0
-1999-05-30,2.0,-3.7,-0.2,-1.0,0/7/0,1016.7,999.0,1005.5,38.0,,,13.0,40.0,,,NE,T,0,17,10.0
-1999-05-31,2.6,-0.5,0.7,-0.9,0/7/0,1000.0,994.0,997.0,24.0,,,3.0,80.0,,,SE,4.1,4,16,10.0
-1999-06-01,1.1,-2.0,-1.0,-1.1,0/7/0,1009.2,1000.0,1005.3,0.0,,,0.0,0.0,,,SE,1.7,2,19,10.0
-1999-06-02,-0.5,-3.4,-2.5,-1.0,0/7/0,1013.8,1009.2,1012.3,17.0,,,5.0,220.0,,,SW,2.2,1,19,10.0
-1999-06-03,-0.4,-2.1,-1.2,-0.9,0/7/0,1013.8,1007.3,1010.4,8.0,,,2.0,320.0,,,NW,0.4,T,18,10.0
-1999-06-04,-0.1,-2.5,-0.9,-1.2,0/7/0,1007.3,998.2,1001.4,16.0,,,4.0,310.0,,,NW,3.4,2,19,10.0
-1999-06-05,0.3,-4.6,-2.2,-1.1,0/7/0,998.2,987.3,991.9,32.0,,,6.0,360.0,,,NW,2.1,3,19,10.0
-1999-06-06,0.3,-1.5,-0.7,-1.7,0/7/0,994.2,987.1,991.3,32.0,,,12.0,10.0,,,W,1.6,2,26,10.0
-1999-06-07,2.4,-1.3,0.0,-1.3,0/7/0,988.5,978.4,984.4,60.0,,,14.0,20.0,,,N,1.6,1,24,10.0
-1999-06-08,2.4,-1.3,0.3,-1.2,0/7/0,989.4,978.4,985.2,52.0,,,17.0,20.0,,,N,0.7,T,24,10.0
-1999-06-09,2.8,-0.4,1.4,-1.0,0/7/0,978.4,967.9,970.2,57.0,,,29.0,10.0,,,N,9.7,T,20,10.0
-1999-06-10,0.8,-3.8,-2.7,-1.0,0/7/0,990.3,968.0,982.9,28.0,,,13.0,300.0,,,W,1.0,2,20,10.0
-1999-06-11,1.8,-4.8,0.3,-0.9,0/7/0,991.0,976.5,983.5,64.0,,,31.0,10.0,,,N,4.5,T,20,10.0
-1999-06-12,1.5,-6.3,-4.8,-1.0,0/7/0,986.7,983.1,983.9,63.0,,,17.0,20.0,,,S,5.4,4,23,10.0
-1999-06-13,-5.0,-6.7,-5.7,-0.9,0/7/0,985.2,973.8,978.9,30.0,,,10.0,210.0,,,SW,T,T,23,9.0
-1999-06-14,-5.2,-10.2,-8.4,-1.2,0/7/0,986.1,973.4,980.5,46.0,,,26.0,230.0,,,SW,0.8,T,22,9.0
-1999-06-15,-8.5,-11.0,-10.2,-1.5,0/7/0,985.9,983.1,984.6,46.0,,,21.0,220.0,,,SW,2.3,2,23,9.0
-1999-06-16,-7.0,-12.7,-10.5,-1.4,0/7/0,999.4,985.9,994.7,36.0,,,13.0,200.0,,,S,0.8,1,25,1.0
-1999-06-17,-4.5,-8.2,-6.3,-1.5,0/7/0,1004.8,998.3,1001.7,21.0,,,9.0,10.0,,,N,0.0,0,24,4.0
-1999-06-18,-5.6,-7.6,-6.8,-1.5,0/7/0,1006.0,1004.2,1005.0,18.0,,,6.0,30.0,,,NE,0.0,0,24,2.0
-1999-06-19,-5.8,-8.3,-6.8,-1.7,0/7/0,1004.2,995.0,997.8,15.0,,,5.0,50.0,,,NE,0.0,0,24,3.0
-1999-06-20,-4.8,-8.2,-6.2,-1.8,117/0,998.2,994.7,996.3,22.0,,,8.0,70.0,,,NE,0.0,0,23,6.0
-1999-06-21,-4.2,-6.7,-5.6,-1.9,0/7/0,998.5,996.2,997.2,31.0,,,12.0,100.0,,,E,0.0,0,23,10.0
-1999-06-22,-3.0,-5.2,-3.7,-1.8,117/0,998.5,996.3,997.3,20.0,,,3.0,60.0,,,N,0.2,T,23,10.0
-1999-06-23,-1.6,-4.8,-2.9,-1.5,0/7/0,999.5,997.8,998.5,44.0,,,12.0,30.0,,,NE,3.0,1,24,10.0
-1999-06-24,1.0,-2.6,-0.5,-1.0,0/7/0,998.2,989.6,990.8,65.0,,,34.0,20.0,,,N,3.0,1,27,10.0
-1999-06-25,0.5,-2.8,-1.2,-0.9,0/7/0,990.0,976.6,981.5,56.0,,,16.0,30.0,,,E,2.4,1,26,10.0
-1999-06-26,-2.2,-6.9,-5.5,-1.3,107/0,993.5,980.8,988.9,46.0,,,12.0,30.0,,,NE,0.1,T,26,2.0
-1999-06-27,-3.2,-6.1,-5.3,-1.2,0/7/0,1004.2,993.5,1000.1,25.0,,,7.0,240.0,,,SW,1.4,1,28,10.0
-1999-06-28,-5.0,-6.9,-6.0,-1.4,0/7/0,1010.3,1004.2,1009.0,12.0,,,4.0,210.0,,,S,0.5,2,30,10.0
-1999-06-29,-4.9,-6.8,-5.7,-1.3,0/7/0,1011.3,1010.0,1011.0,12.0,,,2.0,230.0,,,SW,0.0,0,30,10.0
-1999-06-30,-1.5,-8.3,-3.5,-1.4,0/7/0,1010.7,1001.1,1005.4,24.0,,,4.0,120.0,,,SE,1.1,1,30,9.0
-1999-07-01,0.0,-2.5,-1.0,-1.2,107/0,1001.1,996.3,997.8,33.0,,,7.0,40.0,,,NE,3.1,2,30,10.0
-1999-07-02,-2.5,-6.7,-4.2,-1.4,107/0,996.3,994.0,994.6,8.0,,,2.0,200.0,,,NE,1.9,1,31,7.0
-1999-07-03,-5.5,-7.6,-6.2,-1.8,107/0,999.8,994.5,997.6,22.0,,,4.0,30.0,,,NE,T,T,31,3.0
-1999-07-04,3.2,-5.5,-0.1,-1.4,0/7/0,994.5,974.9,980.4,39.0,,,12.0,60.0,,,E,T,T,30,9.0
-1999-07-05,2.0,-1.0,0.9,-1.2,0/7/0,975.7,968.8,972.3,42.0,,,18.0,10.0,,,N,0.8,T,30,10.0
-1999-07-06,0.0,-1.4,-0.6,-1.2,107/0,981.5,968.5,974.7,8.0,,,0.0,120.0,,,SE,10.7,11,38,10.0
-1999-07-07,0.0,-3.8,-1.3,-1.3,0/7/0,983.1,976.7,979.9,26.0,,,4.0,120.0,,,E,4.0,9,41,10.0
-1999-07-08,3.0,-1.8,0.3,-1.4,0/7/0,985.3,975.3,982.0,60.0,,,17.0,30.0,,,NE,2.2,2,44,10.0
-1999-07-09,3.1,-1.0,1.1,-1.2,0/7/0,975.3,959.1,964.6,62.0,,,40.0,10.0,,,N,23.5,T,29,10.0
-1999-07-10,-0.4,-5.0,-2.7,-1.6,0/7/0,975.0,958.4,967.6,52.0,,,23.0,360.0,,,NW,5.8,3,39,10.0
-1999-07-11,2.0,-7.6,-4.8,-1.7,0/7/0,990.8,975.0,985.1,43.0,,,11.0,350.0,,,SW,0.1,T,36,9.0
-1999-07-12,-0.3,-2.6,-0.8,-1.8,117/0,990.9,978.8,984.7,42.0,,,21.0,320.0,,,NW,5.6,1,39,10.0
-1999-07-13,-0.6,-5.3,-4.6,-1.9,117/0,1011.9,980.0,1004.1,46.0,,,20.0,240.0,,,SW,0.5,T,39,10.0
-1999-07-14,-1.0,-4.6,-2.3,-1.8,0/7/0,1011.1,972.0,992.5,38.0,,,15.0,30.0,,,NW,1.5,1,39,10.0
-1999-07-15,-2.0,-6.1,-5.4,-2.0,0/7/0,992.8,972.5,982.7,50.0,,,24.0,220.0,,,SW,2.1,2,38,10.0
-1999-07-16,-4.8,-11.8,-8.9,-2.0,117/0,1005.7,992.8,999.8,42.0,,,18.0,220.0,,,SW,0.2,T,38,2.0
-1999-07-17,-8.0,-11.0,-9.9,-2.0,117/0,1015.5,1005.7,1012.1,20.0,,,7.0,170.0,,,NE,0.0,0,38,1.0
-1999-07-18,-6.0,-9.4,-6.8,-2.0,117/0,1017.3,1014.3,1016.0,14.0,,,4.0,230.0,,,NE,T,T,38,10.0
-1999-07-19,-6.0,-10.8,-8.1,-1.9,117/1,1014.3,1006.2,1009.5,9.0,,,2.0,210.0,,,E,0.1,T,38,9.0
-1999-07-20,-8.1,-11.8,-10.1,-1.9,117/0,1006.2,998.5,1002.0,6.0,,,3.0,110.0,,,NE,0.0,0,38,4.0
-1999-07-21,2.0,-9.5,-1.8,-1.8,117/0,998.5,990.4,994.1,38.0,,,11.0,10.0,,,E,0.2,T,38,10.0
-1999-07-22,1.8,-0.6,1.1,-1.8,0/7/0,990.4,977.0,981.8,62.0,,,31.0,10.0,,,N,9.1,T,34,10.0
-1999-07-23,1.5,-3.5,-1.2,-1.6,0/7/0,977.8,973.3,975.5,51.0,,,21.0,60.0,,,NE,1.1,T,34,10.0
-1999-07-24,-1.3,-4.6,-3.6,-1.8,107/0,973.3,970.3,970.8,24.0,,,5.0,10.0,,,N,0.3,T,34,10.0
-1999-07-25,-2.5,-5.0,-3.7,-1.8,0/7/0,979.2,971.2,975.7,28.0,,,10.0,150.0,,,NE,2.4,4,36,10.0
-1999-07-26,-2.6,-8.0,-6.0,-1.8,0/7/0,984.5,979.2,982.6,21.0,,,10.0,360.0,,,N,T,T,34,8.0
-1999-07-27,-3.9,-7.7,-5.7,-2.0,0/7/0,984.9,980.7,982.6,22.0,,,10.0,240.0,,,N,0.6,T,34,10.0
-1999-07-28,-0.4,-7.4,-1.4,-2.0,0/7/0,984.5,980.0,981.3,38.0,,,20.0,360.0,,,N,0.8,T,35,10.0
-1999-07-29,0.2,-6.6,-2.6,-1.9,0/7/0,980.0,963.7,969.4,41.0,,,22.0,10.0,,,N,1.6,1,35,10.0
-1999-07-30,-6.5,-13.5,-10.6,-2.0,0/7/0,976.3,967.1,971.0,34.0,,,9.0,210.0,,,SW,0.5,T,34,9.0
-1999-07-31,-1.2,-12.5,-1.7,-2.0,117/0,973.9,954.2,962.5,51.0,,,30.0,10.0,,,N,2.1,1,35,10.0
-1999-08-01,-0.5,-7.6,-3.3,-2.0,0/7/0,968.7,942.6,956.8,72.0,,,29.0,260.0,,,W,0.8,T,35,8.0
-1999-08-02,-1.7,-8.5,-5.0,-2.0,0/7/0,972.9,956.8,963.6,73.0,,,33.0,10.0,,,NW,0.5,T,37,10.0
-1999-08-03,-7.5,-13.2,-10.2,-2.0,217/1,991.3,972.9,980.8,32.0,,,9.0,210.0,,,SW,0.1,T,38,10.0
-1999-08-04,-1.4,-12.4,-6.7,-2.0,117/0,999.3,990.5,995.4,43.0,,,17.0,10.0,,,SW,0.5,T,38,10.0
-1999-08-05,-1.6,-11.2,-8.4,-2.0,217/2,996.4,990.0,994.9,36.0,,,11.0,320.0,,,SW,3.2,5,42,10.0
-1999-08-06,-2.8,-9.1,-3.3,-2.0,23//3,996.6,994.3,995.3,30.0,,,15.0,250.0,,,W,3.0,3,44,10.0
-1999-08-07,-0.9,-3.1,-1.5,-2.0,227/3,995.3,989.9,992.4,35.0,,,21.0,320.0,,,NW,2.4,3,59,10.0
-1999-08-08,-1.0,-9.6,-6.7,-2.1,227/0,996.9,989.1,993.4,33.0,,,12.0,120.0,,,SE,4.2,9,67,0.0
-1999-08-09,-6.4,-10.6,-8.9,-2.0,827/3,1003.4,996.9,1001.3,15.0,,,4.0,360.0,,,NE,0.0,0,64,8.0
-1999-08-10,-7.6,-12.1,-10.2,-2.0,817/3,1006.4,1003.4,1004.9,11.0,,,5.0,20.0,,,NE,0.0,0,64,0.0
-1999-08-11,-9.5,-12.6,-10.9,-1.9,827/3,1010.8,1006.4,1009.3,10.0,,,4.0,30.0,,,NE,T,T,63,10.0
-1999-08-12,-10.3,-16.6,-13.0,-1.9,827/3,1014.5,1010.8,1013.4,8.0,,,2.0,230.0,,,N,0.2,1,64,9.0
-1999-08-13,0.5,-15.8,-6.8,-1.9,827/1,1012.6,990.0,1002.3,71.0,,,16.0,20.0,,,NE,T,T,55,10.0
-1999-08-14,1.2,-2.5,-0.3,-1.8,817/0,990.0,962.7,975.0,47.0,,,15.0,250.0,,,N,5.0,3,39,10.0
-1999-08-15,0.2,-4.2,-2.9,-2.0,227/1,995.0,974.4,984.8,55.0,,,25.0,240.0,,,SW,1.8,1,47,10.0
-1999-08-16,0.3,-7.4,-3.0,-2.0,127/0,996.4,981.6,989.3,43.0,,,13.0,130.0,,,E,1.1,T,38,9.0
-1999-08-17,-1.2,-5.0,-2.8,-2.0,327/3,998.4,991.7,995.7,24.0,,,11.0,20.0,,,NW,T,T,38,10.0
-1999-08-18,-0.3,-4.4,-1.8,-1.9,0////,991.7,960.3,970.0,69.0,,,34.0,20.0,,,N,3.6,T,39,10.0
-1999-08-19,-4.2,-7.1,-5.8,-2.0,127/0,972.1,964.8,969.3,23.0,,,10.0,210.0,,,N,0.2,T,41,10.0
-1999-08-20,-3.1,-11.8,-6.8,-2.0,0/7/0,977.3,960.2,966.3,36.0,,,17.0,240.0,,,SW,0.7,T,41,10.0
-1999-08-21,-1.5,-16.0,-10.3,-1.9,52793,985.1,955.6,974.2,44.0,,,14.0,20.0,,,SW,2.1,T,41,10.0
-1999-08-22,-1.4,-15.0,-9.0,-2.0,52763,990.0,955.2,971.2,46.0,,,20.0,230.0,,,SW,1.0,1,48,10.0
-1999-08-23,-3.2,-15.3,-8.8,-2.0,727/1,992.2,977.8,985.8,32.0,,,9.0,350.0,,,SW,2.6,4,49,10.0
-1999-08-24,-2.3,-12.9,-8.8,-2.0,937/3,989.0,978.0,985.4,32.0,,,13.0,210.0,,,W,2.2,1,51,10.0
-1999-08-25,-10.5,-17.6,-13.8,-2.0,937/3,988.7,983.2,984.0,29.0,,,11.0,230.0,,,SW,0.7,1,52,10.0
-1999-08-26,-10.6,-17.0,-14.0,-2.0,/47/3,994.8,983.4,990.1,28.0,,,7.0,230.0,,,NW,0.1,T,52,7.0
-1999-08-27,-13.0,-15.4,-14.0,-2.0,/47/3,997.8,994.8,996.4,18.0,,,6.0,190.0,,,NW,T,T,52,10.0
-1999-08-28,-3.0,-14.6,-8.8,-2.0,947/3,998.2,982.6,991.9,41.0,,,7.0,340.0,,,SE,1.2,1,54,10.0
-1999-08-29,-2.5,-15.6,-12.5,-2.0,947/3,987.8,983.2,985.3,35.0,,,10.0,220.0,,,SW,1.7,2,54,10.0
-1999-08-30,-11.7,-20.2,-17.0,-2.0,957/3,999.0,987.8,995.7,10.0,,,2.0,230.0,,,NE,T,T,54,4.0
-1999-08-31,-13.6,-20.9,-16.4,-2.0,957/3,1004.7,998.2,1000.9,18.0,,,3.0,230.0,,,NE,0.0,0,54,5.0
-1999-09-01,-10.8,-19.8,-15.0,-2.0,957/3,1009.0,1004.7,1007.4,12.0,,,2.0,320.0,,,N,T,T,54,5.0
-1999-09-02,-8.6,-17.2,-12.3,-2.0,957/3,1007.8,998.3,1002.8,14.0,,,3.0,150.0,,,N,0.5,2,56,8.0
-1999-09-03,-7.0,-18.2,-10.6,-2.0,957/3,1005.7,1003.9,1004.9,13.0,,,4.0,320.0,,,NW,0.0,0,55,7.0
-1999-09-04,-4.5,-10.8,-7.0,-2.0,957/3,1006.6,1003.8,1005.4,14.0,,,2.0,230.0,,,W,0.4,T,54,10.0
-1999-09-05,-5.3,-7.3,-6.1,-2.0,957/3,1003.8,997.8,1000.6,22.0,,,12.0,260.0,,,W,1.2,3,56,9.0
-1999-09-06,-4.0,-14.0,-9.2,-1.8,957/2,997.8,979.0,984.2,40.0,,,18.0,10.0,,,N,0.8,T,52,10.0
-1999-09-07,-12.6,-20.6,-17.9,-1.9,957/2,992.2,981.6,987.4,27.0,,,11.0,240.0,,,SW,0.7,T,52,10.0
-1999-09-08,-15.0,-23.4,-17.9,-1.9,957/3,999.0,992.2,997.4,13.0,,,2.0,230.0,,,SW,T,T,52,10.0
-1999-09-09,-16.4,-19.5,-17.8,-1.9,957/3,998.8,996.2,996.7,11.0,,,2.0,190.0,,,SE,T,T,52,10.0
-1999-09-10,-11.7,-21.6,-15.5,-1.9,957/3,996.5,995.4,995.9,12.0,,,3.0,250.0,,,NE,0.0,0,52,8.0
-1999-09-11,-8.0,-15.3,-11.5,-1.8,957/3,996.3,995.2,996.0,17.0,,,2.0,160.0,,,NW,0.7,3,53,10.0
-1999-09-12,-1.6,-10.6,-4.5,-1.8,957/3,998.6,994.4,996.4,13.0,,,3.0,320.0,,,NW,3.1,9,60,10.0
-1999-09-13,-0.9,-7.3,-3.1,-1.7,957/2,1001.8,997.2,999.9,45.0,,,13.0,20.0,,,NW,0.5,T,52,10.0
-1999-09-14,2.6,-2.7,0.3,-1.5,857/1,997.6,973.1,985.9,40.0,,,14.0,130.0,,,E,0.2,T,51,10.0
-1999-09-15,2.3,-3.2,-1.8,-1.6,857/1,973.1,963.6,964.7,27.0,,,5.0,70.0,,,NW,6.0,7,55,10.0
-1999-09-16,-1.5,-4.9,-3.4,-1.6,857/1,976.6,964.7,971.9,34.0,,,5.0,20.0,,,E,3.1,3,58,10.0
-1999-09-17,-0.6,-8.7,-4.3,-1.6,857/3,978.2,973.6,975.7,37.0,,,6.0,80.0,,,E,0.6,T,54,6.0
-1999-09-18,0.9,-4.5,-1.0,-1.6,157/0,986.4,974.3,978.3,45.0,,,17.0,40.0,,,NE,1.0,T,51,10.0
-1999-09-19,4.5,-2.5,0.2,-1.7,157/0,989.7,985.6,987.7,39.0,,,14.0,30.0,,,E,T,T,50,9.0
-1999-09-20,3.5,-1.5,0.9,-1.7,157/0,1000.3,985.6,994.8,47.0,,,14.0,20.0,,,N,9.8,12,59,10.0
-1999-09-21,5.1,0.0,2.3,-1.5,15791,998.4,978.7,989.0,56.0,,,32.0,10.0,,,N,7.7,T,40,10.0
-1999-09-22,3.0,-2.7,-0.4,-1.6,0/7/0,978.7,969.4,972.4,47.0,,,27.0,10.0,,,N,2.3,T,40,10.0
-1999-09-23,0.4,-6.1,-3.7,-1.7,10790,985.9,975.6,982.3,39.0,,,16.0,20.0,,,W,5.6,9,47,10.0
-1999-09-24,0.6,-2.7,-0.7,-1.6,0/7/0,981.6,974.4,977.1,32.0,,,13.0,300.0,,,N,2.3,1,49,10.0
-1999-09-25,-1.7,-10.3,-6.3,-1.7,51796,982.3,972.9,977.0,33.0,,,18.0,230.0,,,SW,1.6,T,50,10.0
-1999-09-26,-9.3,-12.3,-10.9,-1.7,52892,988.2,975.0,983.3,34.0,,,10.0,230.0,,,SW,0.2,T,49,10.0
-1999-09-27,-3.8,-10.4,-5.7,-1.7,52/92,975.0,962.6,966.3,45.0,,,16.0,120.0,,,SE,9.8,11,62,10.0
-1999-09-28,-1.7,-11.4,-7.9,-1.5,0/8/0,995.4,973.2,987.9,29.0,,,12.0,120.0,,,E,T,T,59,4.0
-1999-09-29,-5.1,-10.7,-7.0,-1.7,21890,999.5,995.4,998.1,20.0,,,7.0,360.0,,,N,0.0,0,59,10.0
-1999-09-30,-2.5,-10.3,-6.8,-1.6,21892,1009.9,999.5,1005.2,20.0,,,4.0,360.0,,,N,T,T,57,8.0
-1999-10-01,-3.5,-5.7,-4.6,-1.6,21872,1013.8,1009.9,1013.3,21.0,,,7.0,210.0,,,SW,0.1,T,57,10.0
-1999-10-02,0.7,-4.3,-1.6,-1.5,24872,1017.0,1013.2,1015.3,24.0,,,9.0,240.0,,,SW,0.1,T,57,10.0
-1999-10-03,0.4,-2.3,-0.9,-1.6,32892,1016.9,1013.0,1013.9,12.0,,,5.0,260.0,,,NW,0.4,T,56,9.0
-1999-10-04,2.9,-0.5,1.3,-1.6,32//2,1013.2,997.9,1005.0,44.0,,,13.0,330.0,,,NW,5.3,1,53,10.0
-1999-10-05,0.7,-3.1,-2.0,-1.6,34362,1013.2,998.3,1009.0,27.0,,,8.0,230.0,,,SW,0.5,T,52,9.0
-1999-10-06,7.4,-5.9,-0.1,-1.5,24860,1013.2,1000.2,1006.5,41.0,,,7.0,20.0,,,NE,0.0,0,52,9.0
-1999-10-07,3.7,-1.3,0.9,-1.5,64//0,1000.2,986.8,992.1,40.0,,,10.0,20.0,,,SE,1.0,T,51,10.0
-1999-10-08,2.3,-1.1,-0.6,-1.5,249/0,999.5,975.7,984.9,52.0,,,17.0,20.0,,,N,1.1,1,52,10.0
-1999-10-09,2.3,-4.5,-0.7,-1.7,449/3,1007.8,999.5,1005.9,29.0,,,10.0,240.0,,,SW,1.3,T,51,10.0
-1999-10-10,3.1,0.4,1.5,-1.8,64892,1005.1,999.4,1000.5,27.0,,,13.0,10.0,,,N,8.2,1,51,10.0
-1999-10-11,3.2,-0.4,1.6,-1.7,24892,999.6,988.5,993.4,35.0,,,11.0,10.0,,,N,0.8,T,52,10.0
-1999-10-12,3.5,-0.6,1.1,-1.5,65892,988.5,983.5,985.1,25.0,,,6.0,10.0,,,SE,1.2,T,52,10.0
-1999-10-13,2.1,-2.0,-0.3,-1.6,0/2/0,984.0,967.8,973.5,43.0,,,19.0,20.0,,,N,0.4,T,52,10.0
-1999-10-14,0.7,-4.1,-1.3,-1.7,05//0,970.0,937.1,950.8,54.0,,,25.0,40.0,,,NE,2.7,T,53,10.0
-1999-10-15,-0.3,-7.4,-4.7,-1.9,20692,943.9,934.3,939.6,37.0,,,17.0,30.0,,,W,0.7,T,53,10.0
-1999-10-16,-6.9,-10.3,-9.6,-1.9,54792,956.1,943.9,951.8,33.0,,,18.0,240.0,,,SW,0.3,T,53,10.0
-1999-10-17,-8.5,-10.7,-9.7,-1.9,55792,958.4,955.9,957.3,30.0,,,16.0,220.0,,,SW,2.4,2,54,10.0
-1999-10-18,-5.1,-10.6,-9.0,-1.9,55792,967.8,957.9,964.0,24.0,,,8.0,240.0,,,SW,2.3,6,64,9.0
-1999-10-19,1.2,-11.5,-1.8,-1.9,54792,966.6,952.6,956.9,59.0,,,18.0,20.0,,,N,1.3,1,54,10.0
-1999-10-20,2.4,-0.4,0.7,-2.0,64791,963.8,956.6,962.0,41.0,,,20.0,20.0,,,NW,1.7,T,54,10.0
-1999-10-21,1.4,-3.1,-1.4,-1.9,54792,961.2,952.3,955.4,24.0,,,5.0,20.0,,,W,0.1,T,53,10.0
-1999-10-22,2.6,-5.8,-2.5,-1.9,44792,971.5,959.0,965.9,11.0,,,3.0,300.0,,,NW,0.2,T,53,8.0
-1999-10-23,-1.5,-4.6,-3.3,-1.9,44792,981.2,971.5,978.4,21.0,,,8.0,250.0,,,NW,1.4,1,54,10.0
-1999-10-24,-1.2,-5.3,-2.8,-2.0,54792,992.0,980.9,986.7,22.0,,,10.0,320.0,,,NW,0.5,T,56,10.0
-1999-10-25,1.0,-7.6,-2.9,-1.9,54892,992.0,970.6,977.2,27.0,,,6.0,110.0,,,SE,T,T,55,10.0
-1999-10-26,2.8,-3.5,-1.9,-1.9,54792,986.4,970.8,978.8,21.0,,,7.0,110.0,,,E,0.0,0,55,6.0
-1999-10-27,-2.6,-9.4,-6.0,-1.9,54792,998.1,986.4,995.1,12.0,,,4.0,320.0,,,W,0.0,0,55,9.0
-1999-10-28,1.6,-6.1,-1.2,-1.9,54792,1002.3,996.4,999.9,29.0,,,7.0,350.0,,,NW,0.5,T,54,10.0
-1999-10-29,1.6,-0.7,0.6,-1.9,64792,996.4,969.0,978.9,44.0,,,24.0,20.0,,,N,4.8,T,57,10.0
-1999-10-30,1.2,-3.8,-2.2,-1.9,54792,976.5,967.0,970.8,35.0,,,16.0,350.0,,,NW,2.9,1,59,10.0
-1999-10-31,-2.1,-5.8,-4.1,-1.9,54692,1001.4,976.5,995.8,18.0,,,5.0,230.0,,,SW,0.0,0,62,10.0
-1999-11-01,1.7,-6.4,-2.6,-1.9,54692,1000.6,980.0,986.9,10.0,,,3.0,100.0,,,SE,6.0,7,67,10.0
-1999-11-02,-1.6,-5.9,-4.7,-1.9,54792,994.0,978.7,985.9,28.0,,,7.0,200.0,,,W,0.5,1,65,10.0
-1999-11-03,1.2,-8.5,-4.1,-1.9,54792,999.7,994.0,998.5,10.0,,,3.0,80.0,,,E,0.0,0,64,6.0
-1999-11-04,2.5,-9.5,-2.4,-1.9,54792,999.1,983.7,990.8,31.0,,,5.0,70.0,,,NE,T,T,63,6.0
-1999-11-05,6.6,-1.2,1.5,-1.9,65692,988.9,982.1,984.6,31.0,,,6.0,120.0,,,NW,T,T,61,8.0
-1999-11-06,0.7,-5.7,-2.6,-1.9,54792,1001.5,988.9,996.8,10.0,,,3.0,360.0,,,NW,0.0,0,58,10.0
-1999-11-07,1.8,-4.6,-1.4,-1.9,44792,1012.1,1001.4,1009.0,9.0,,,4.0,210.0,,,S,T,T,58,10.0
-1999-11-08,4.4,-5.5,0.7,-1.9,65762,1012.0,996.7,1003.0,50.0,,,18.0,20.0,,,NW,3.8,T,56,10.0
-1999-11-09,5.9,-3.3,0.7,-1.5,25791,1004.2,989.8,998.6,21.0,,,5.0,30.0,,,SE,0.5,1,56,10.0
-1999-11-10,5.9,-0.4,1.5,-1.3,74692,989.8,982.1,983.2,40.0,,,5.0,40.0,,,SE,5.5,3,55,10.0
-1999-11-11,3.6,-2.7,0.3,-1.4,14792,982.2,974.4,976.9,12.0,,,3.0,120.0,,,E,0.1,T,54,10.0
-1999-11-12,4.9,-0.5,2.0,-1.4,15790,977.9,969.9,974.9,54.0,,,20.0,20.0,,,N,0.1,T,53,9.0
-1999-11-13,4.2,-1.4,1.1,-1.5,15790,978.2,965.5,971.3,43.0,,,23.0,30.0,,,N,13.1,1,47,10.0
-1999-11-14,2.8,-1.7,0.0,-1.3,15790,981.4,962.4,972.3,11.0,,,4.0,160.0,,,SE,0.0,0,49,10.0
-1999-11-15,1.9,-3.9,-1.6,-1.4,44292,984.9,962.0,976.0,27.0,,,8.0,270.0,,,W,1.3,T,46,5.0
-1999-11-16,3.2,-2.3,1.0,-1.5,0/1/0,986.2,960.6,974.3,57.0,,,25.0,30.0,,,NE,16.8,T,45,10.0
-1999-11-17,2.7,-0.2,0.9,-1.6,0/1/0,977.2,961.0,972.2,31.0,,,20.0,340.0,,,NW,1.0,T,40,9.0
-1999-11-18,3.7,0.5,2.2,-1.4,65690,982.1,975.9,980.2,45.0,,,28.0,340.0,,,N,8.5,T,34,10.0
-1999-11-19,5.3,0.4,2.0,-1.3,0/6/0,982.5,972.1,975.3,52.0,,,18.0,30.0,,,N,7.3,T,22,10.0
-1999-11-20,1.9,-1.4,0.3,-1.2,0/6/0,983.1,972.6,980.9,31.0,,,13.0,360.0,,,NW,3.2,4,24,10.0
-1999-11-21,2.1,-0.9,0.2,-1.1,15690,992.0,982.1,986.0,29.0,,,11.0,360.0,,,NW,T,T,23,10.0
-1999-11-22,2.5,-0.6,0.9,-1.1,0/6/0,993.8,988.8,991.6,45.0,,,24.0,350.0,,,NW,3.6,1,22,10.0
-1999-11-23,6.0,-0.6,2.8,-1.1,0/6/0,993.2,970.2,977.0,46.0,,,17.0,30.0,,,NE,2.5,T,14,10.0
-1999-11-24,0.8,-1.7,0.1,-1.0,0/7/0,979.1,974.2,976.3,24.0,,,13.0,310.0,,,NW,2.8,1,8,9.0
-1999-11-25,4.1,-1.5,0.1,-1.2,0/7/0,982.6,975.9,980.3,34.0,,,13.0,320.0,,,NW,0.9,1,7,7.0
-1999-11-26,5.4,-1.4,-1.1,-0.9,0/7/0,985.0,973.8,980.1,36.0,,,15.0,20.0,,,N,0.7,T,0,9.0
-1999-11-27,6.1,-0.6,1.9,-0.9,0/8/0,982.6,972.9,977.2,24.0,,,7.0,30.0,,,E,1.9,4,0,6.0
-1999-11-28,2.9,-2.8,-0.2,-0.7,0/7/0,984.3,976.6,980.1,40.0,,,10.0,10.0,,,E,0.0,0,0,10.0
-1999-11-29,2.8,-0.6,-0.1,-0.9,0/7/0,977.6,969.2,971.3,48.0,,,20.0,20.0,,,NW,2.6,1,1,10.0
-1999-11-30,1.4,-1.2,-0.2,-0.8,0/7/0,980.7,973.4,977.4,24.0,,,14.0,300.0,,,NW,1.0,T,0,10.0
-1999-12-01,3.9,-1.5,-0.2,-0.7,0/7/0,984.4,980.6,981.7,16.0,,,6.0,310.0,,,N,0.3,T,0,10.0
-1999-12-02,3.9,-1.4,0.8,-0.6,0/7/0,990.8,984.4,989.6,11.0,,,4.0,230.0,,,E,0.0,0,0,9.0
-1999-12-03,3.4,-3.4,-0.5,-0.1,0/7/0,997.0,990.3,994.6,10.0,,,2.0,170.0,,,NW,0.0,0,0,5.0
-1999-12-04,1.3,-1.6,-0.7,-0.1,24792,999.0,995.4,997.5,12.0,,,4.0,230.0,,,SW,0.0,0,0,10.0
-1999-12-05,1.2,-1.0,-0.4,-0.8,44762,995.4,992.4,993.6,13.0,,,4.0,240.0,,,NW,0.5,T,0,10.0
-1999-12-06,1.2,-1.4,-0.4,-1.1,54763,992.4,984.0,988.0,24.0,,,9.0,270.0,,,SW,2.5,1,0,10.0
-1999-12-07,1.2,-1.2,-0.4,-1.1,54762,984.0,979.4,980.2,17.0,,,7.0,240.0,,,NW,4.0,6,0,10.0
-1999-12-08,3.6,-1.7,0.3,-1.2,54762,980.0,969.1,973.8,19.0,,,5.0,120.0,,,SE,1.9,T,0,10.0
-1999-12-09,2.3,-1.8,-0.2,-1.4,55792,981.4,972.0,977.7,19.0,,,7.0,240.0,,,SW,1.4,1,0,10.0
-1999-12-10,3.2,-1.6,0.3,-1.2,55792,990.0,981.4,987.8,29.0,,,10.0,360.0,,,NW,4.9,1,0,10.0
-1999-12-11,3.5,0.6,1.4,-1.2,55792,986.4,979.7,981.4,26.0,,,12.0,330.0,,,NW,2.1,T,0,10.0
-1999-12-12,4.4,0.6,3.0,-1.2,55791,983.0,970.8,977.6,40.0,,,21.0,10.0,,,N,11.5,T,0,10.0
-1999-12-13,4.2,1.2,2.3,-1.1,0/7/0,970.8,962.2,964.2,43.0,,,22.0,20.0,,,N,15.7,T,0,8.0
-1999-12-14,3.5,-0.8,0.4,-1.2,0/7/0,970.3,960.5,964.8,28.0,,,10.0,360.0,,,W,1.0,T,0,8.0
-1999-12-15,5.9,-2.2,1.4,-1.1,0/6/0,970.8,962.0,967.6,37.0,,,16.0,70.0,,,NE,0.2,T,0,8.0
-1999-12-16,4.5,0.4,1.4,-0.7,0/7/0,962.0,955.0,957.5,48.0,,,13.0,70.0,,,E,0.4,T,0,10.0
-1999-12-17,5.1,-1.1,1.9,-0.6,15790,972.4,960.1,966.9,17.0,,,3.0,80.0,,,SE,0.0,0,0,10.0
-1999-12-18,4.6,-1.2,0.6,-0.3,0/7/0,982.3,972.4,979.3,13.0,,,3.0,80.0,,,E,0.0,0,0,10.0
-1999-12-19,1.3,-2.0,-0.7,-0.2,0/7/0,988.6,982.3,986.7,14.0,,,4.0,240.0,,,SW,0.1,T,0,10.0
-1999-12-20,2.4,-1.0,-0.3,-0.1,0/7/0,988.2,986.0,986.5,20.0,,,8.0,240.0,,,SW,T,T,0,10.0
-1999-12-21,3.1,-1.3,0.0,-0.8,44793,988.4,984.8,986.9,18.0,,,7.0,120.0,,,SW,1.1,T,0,10.0
-1999-12-22,6.3,-0.8,1.9,-0.5,36792,984.8,972.7,977.1,18.0,,,3.0,120.0,,,NW,T,T,0,9.0
-1999-12-23,5.4,0.5,1.9,-0.8,36794,980.4,973.2,977.1,34.0,,,4.0,360.0,,,SE,0.1,T,0,10.0
-1999-12-24,6.3,0.6,1.9,-0.5,24791,980.5,978.1,978.9,17.0,,,3.0,50.0,,,SE,T,T,0,9.0
-1999-12-25,5.2,-1.4,2.5,0.2,0/7/0,987.7,979.3,984.8,16.0,,,3.0,350.0,,,NW,0.0,0,0,4.0
-1999-12-26,7.6,2.0,4.6,-0.1,0/7/0,988.1,978.8,983.1,50.0,,,24.0,20.0,,,N,6.4,T,0,10.0
-1999-12-27,5.4,1.7,2.5,0.1,0/7/0,983.1,976.8,981.4,38.0,,,22.0,20.0,,,N,5.6,T,0,10.0
-1999-12-28,5.0,0.9,2.5,0.0,0/6/0,982.2,976.3,978.5,35.0,,,15.0,10.0,,,N,1.6,T,0,10.0
-1999-12-29,6.1,-0.8,2.2,0.2,0/7/0,979.9,970.9,976.0,39.0,,,12.0,30.0,,,N,1.2,T,0,9.0
-1999-12-30,4.5,0.9,1.8,0.3,0/7/0,970.9,967.6,969.0,36.0,,,16.0,20.0,,,N,1.5,T,0,10.0
-1999-12-31,5.1,-1.2,1.2,0.5,0/7/0,971.5,966.7,968.7,12.0,,,6.0,220.0,,,SW,0.0,0,0,10.0
-2000-01-01,6.6,-0.1,2.3,0.5,0/7/0,979.3,971.5,977.9,13.0,,,5.0,240.0,,,N,T,T,0,7.0
-2000-01-02,5.0,0.2,2.1,0.3,0/7/0,979.3,977.0,977.7,16.0,,,4.0,70.0,,,SE,1.7,T,0,10.0
-2000-01-03,3.6,0.1,1.3,0.6,0/7/0,986.9,978.0,984.2,13.0,,,4.0,290.0,,,W,1.8,T,0,10.0
-2000-01-04,3.9,-0.3,1.6,0.7,0/6/0,987.8,977.0,983.2,46.0,,,17.0,20.0,,,N,2.2,T,0,10.0
-2000-01-05,6.5,-0.6,2.4,0.8,0/7/0,982.2,977.5,981.4,22.0,,,6.0,350.0,,,NW,2.4,1,0,10.0
-2000-01-06,4.6,0.7,3.0,1.1,0/6/0,980.3,976.3,978.8,49.0,,,20.0,20.0,,,N,1.1,0,0,10.0
-2000-01-07,4.0,0.4,1.7,0.8,0/6/0,980.5,962.9,968.9,25.0,,,9.0,120.0,,,SE,14.6,1,0,10.0
-2000-01-08,4.0,-0.5,0.9,0.6,0/6/0,968.7,963.1,966.8,27.0,,,7.0,320.0,,,NW,3.4,T,0,10.0
-2000-01-09,6.0,0.1,2.4,0.9,0/6/0,971.0,968.5,969.5,32.0,,,6.0,360.0,,,W,0.3,T,0,6.0
-2000-01-10,4.5,-0.7,2.0,0.5,0/8/0,976.0,971.0,974.0,13.0,,,7.0,260.0,,,W,0.0,0,0,6.0
-2000-01-11,4.7,-1.3,1.4,0.5,0/6/0,981.1,976.0,979.2,12.0,,,5.0,250.0,,,SW,0.0,0,0,6.0
-2000-01-12,3.0,-1.5,0.5,0.3,0/7/0,982.9,979.0,981.2,28.0,,,10.0,250.0,,,SW,2.2,1,0,10.0
-2000-01-13,4.0,-1.3,0.7,0.6,0/6/0,985.6,979.1,983.1,20.0,,,9.0,230.0,,,SW,0.1,T,0,9.0
-2000-01-14,4.1,-1.3,1.0,0.3,0/6/0,982.0,978.4,978.9,14.0,,,4.0,230.0,,,SW,0.5,T,0,8.0
-2000-01-15,4.0,-0.2,1.3,0.7,0/6/0,978.4,969.0,971.3,15.0,,,5.0,170.0,,,S,0.6,T,0,10.0
-2000-01-16,2.6,-0.8,0.6,1.1,0/6/0,971.2,969.4,970.1,21.0,,,11.0,210.0,,,SW,0.7,T,0,9.0
-2000-01-17,4.4,-1.3,1.2,1.4,0/1/0,979.0,966.4,972.0,18.0,,,7.0,200.0,,,SW,0.0,0,0,3.0
-2000-01-18,4.9,-1.7,0.9,1.4,0/6/0,982.2,979.0,981.3,16.0,,,5.0,210.0,,,SW,0.0,0,0,9.0
-2000-01-19,4.4,-1.9,1.2,1.1,0/2/0,981.2,976.6,978.5,20.0,,,6.0,90.0,,,E,0.0,0,0,10.0
-2000-01-20,2.0,-1.3,-0.2,0.3,0/1/0,986.4,981.2,984.9,16.0,,,6.0,330.0,,,NW,1.8,1,0,10.0
-2000-01-21,2.9,-1.9,0.6,0.7,0/1/0,986.5,971.2,978.0,59.0,,,20.0,20.0,,,NE,T,T,0,10.0
-2000-01-22,3.6,0.2,2.1,0.8,0/1/0,972.2,958.1,963.5,59.0,,,20.0,30.0,,,NW,3.8,T,0,10.0
-2000-01-23,4.1,0.0,1.3,0.6,0/6/0,978.2,967.9,971.7,26.0,,,13.0,310.0,,,N,2.8,T,0,10.0
-2000-01-24,5.9,-0.2,1.6,0.6,0/6/0,984.1,970.6,978.2,59.0,,,21.0,30.0,,,NE,5.5,T,0,10.0
-2000-01-25,4.6,1.9,2.9,0.9,0/6/0,978.3,970.1,975.1,44.0,,,21.0,20.0,,,N,5.6,T,0,10.0
-2000-01-26,5.5,-1.6,2.5,0.7,0/6/0,982.3,971.1,978.3,44.0,,,20.0,330.0,,,NW,0.8,T,0,9.0
-2000-01-27,4.6,0.6,2.0,0.8,0/6/0,988.7,975.0,985.1,26.0,,,9.0,310.0,,,NW,0.9,T,0,10.0
-2000-01-28,6.4,-0.7,2.2,0.9,0/6/0,988.8,975.0,982.2,30.0,,,5.0,80.0,,,NE,0.3,T,0,9.0
-2000-01-29,4.7,0.6,2.6,0.4,0/6/0,990.8,976.2,987.8,44.0,,,17.0,20.0,,,N,1.0,T,0,10.0
-2000-01-30,7.4,1.4,3.4,0.7,0/6/0,991.0,981.6,985.5,32.0,,,4.0,20.0,,,N,0.0,0,0,10.0
-2000-01-31,5.9,1.3,2.7,0.5,0/6/0,984.5,979.1,981.7,22.0,,,3.0,70.0,,,NW,0.0,0,0,10.0
-2000-02-01,6.2,0.7,3.4,0.6,0/7/0,997.7,984.5,993.3,20.0,,,3.0,50.0,,,NE,0.0,0,0,9.0
-2000-02-02,8.5,1.5,3.8,1.1,0/7/0,998.1,985.4,991.8,39.0,,,14.0,70.0,,,NE,0.9,0,0,10.0
-2000-02-03,8.1,2.9,5.0,1.4,0/6/0,985.4,973.1,977.0,51.0,,,21.0,70.0,,,E,9.5,0,0,10.0
-2000-02-04,6.6,2.9,4.5,1.6,0/6/0,986.2,974.4,982.5,40.0,,,24.0,20.0,,,N,0.7,0,0,8.0
-2000-02-05,8.1,2.0,3.8,1.1,0/6/0,986.4,983.4,984.4,28.0,,,7.0,40.0,,,E,0.0,0,0,10.0
-2000-02-06,5.2,2.1,3.1,1.1,0/6/0,984.0,982.7,983.3,35.0,,,9.0,10.0,,,N,3.1,T,0,10.0
-2000-02-07,3.2,0.3,1.4,1.2,0/6/0,994.2,984.0,989.5,13.0,,,5.0,250.0,,,W,0.4,T,0,10.0
-2000-02-08,4.4,0.2,1.6,1.1,0/6/0,994.8,992.0,993.4,34.0,,,13.0,30.0,,,N,14.6,T,0,10.0
-2000-02-09,4.4,0.5,1.7,0.8,0/6/0,992.5,989.4,991.1,31.0,,,14.0,10.0,,,SW,10.8,0,0,7.0
-2000-02-10,5.5,-1.6,1.2,1.2,0/6/0,993.0,986.3,989.6,18.0,,,8.0,190.0,,,SW,0.0,0,0,2.0
-2000-02-11,4.2,-0.5,0.8,1.1,0/6/0,987.8,986.3,987.2,26.0,,,10.0,20.0,,,N,0.6,T,0,10.0
-2000-02-12,4.8,-0.2,1.1,0.6,0/6/0,993.2,987.5,990.8,23.0,,,9.0,360.0,,,N,0.2,T,0,10.0
-2000-02-13,1.5,-0.8,0.0,0.4,0/6/0,995.4,985.3,991.3,35.0,,,11.0,140.0,,,N,2.9,4,0,10.0
-2000-02-14,2.1,-0.3,0.9,0.6,0/7/0,994.4,986.0,989.8,23.0,,,9.0,250.0,,,W,3.6,2,0,10.0
-2000-02-15,4.2,-1.4,1.3,0.9,0/6/0,998.0,988.1,993.2,48.0,,,12.0,20.0,,,N,2.9,T,0,10.0
-2000-02-16,5.2,2.3,3.1,0.8,0/7/0,995.8,988.2,993.8,38.0,,,17.0,10.0,,,NW,8.9,T,0,10.0
-2000-02-17,5.3,1.7,3.3,0.7,0/7/0,995.8,983.8,988.2,36.0,,,15.0,20.0,,,N,7.2,T,0,10.0
-2000-02-18,4.0,1.0,1.9,0.0,0/6/0,990.9,985.6,989.2,36.0,,,16.0,10.0,,,NW,6.0,T,0,10.0
-2000-02-19,4.5,1.4,2.1,0.6,0/7/0,994.1,990.7,992.2,37.0,,,12.0,360.0,,,NW,0.7,0,0,10.0
-2000-02-20,3.8,-1.9,1.0,0.2,0/7/0,992.4,989.1,991.0,16.0,,,6.0,10.0,,,NW,0.4,T,0,8.0
-2000-02-21,2.4,-0.3,1.1,0.0,0/7/0,1001.8,991.8,998.3,24.0,,,9.0,230.0,,,W,2.4,1,0,10.0
-2000-02-22,4.6,-0.1,0.8,0.6,0/7/0,1009.2,1001.8,1006.7,22.0,,,7.0,230.0,,,SW,0.0,0,0,8.0
-2000-02-23,5.9,-1.8,1.3,0.7,0/7/0,1011.7,1009.2,1011.1,10.0,,,4.0,40.0,,,NE,0.0,0,0,7.0
-2000-02-24,3.7,0.3,1.5,0.3,0/7/0,1011.2,1002.2,1004.5,27.0,,,7.0,360.0,,,SE,2.7,T,0,10.0
-2000-02-25,2.3,-0.5,0.5,0.1,0/7/0,1008.3,1002.6,1005.7,12.0,,,2.0,210.0,,,S,0.4,0,0,10.0
-2000-02-26,2.6,-1.7,-0.3,0.6,0/7/0,1008.8,1004.5,1006.7,8.0,,,2.0,90.0,,,E,0.4,T,0,10.0
-2000-02-27,2.8,-0.9,0.2,0.8,0/7/0,1004.5,989.7,996.3,10.0,,,3.0,140.0,,,E,0.5,1,0,10.0
-2000-02-28,2.5,-0.5,0.6,0.6,0/7/0,989.7,981.3,983.2,6.0,,,1.0,90.0,,,SE,0.3,T,0,10.0
-2000-02-29,4.4,-0.3,1.8,0.4,0/7/0,981.3,976.5,978.4,37.0,,,11.0,360.0,,,N,0.2,T,0,9.0
-2000-03-01,4.1,0.3,2.0,0.3,0/7/0,989.8,978.5,985.4,33.0,,,14.0,20.0,,,N,1.4,T,0,7.0
-2000-03-02,4.6,0.3,2.4,0.5,0/7/0,990.4,980.4,984.9,58.0,,,27.0,30.0,,,N,15.8,T,0,10.0
-2000-03-03,4.0,0.2,1.2,0.6,0/2/0,1000.4,990.4,996.4,21.0,,,11.0,320.0,,,NW,0.2,T,0,7.0
-2000-03-04,9.1,-0.2,3.5,0.8,0/7/0,1002.0,999.2,1000.9,28.0,,,8.0,120.0,,,SE,T,T,0,9.0
-2000-03-05,5.4,1.6,3.1,0.9,0/6/0,999.4,989.1,993.2,47.0,,,19.0,20.0,,,N,T,T,0,10.0
-2000-03-06,9.5,2.3,4.3,1.2,0/6/0,989.1,979.8,983.4,46.0,,,11.0,30.0,,,E,0.5,0,0,10.0
-2000-03-07,6.3,1.0,2.7,0.9,0/7/0,985.5,977.2,980.8,42.0,,,21.0,20.0,,,N,13.2,T,0,10.0
-2000-03-08,5.4,0.4,2.6,1.0,0/6/0,992.9,979.0,988.1,55.0,,,14.0,10.0,,,NW,1.9,0,0,10.0
-2000-03-09,4.8,1.6,3.0,0.9,0/2/0,998.3,979.2,991.3,54.0,,,20.0,20.0,,,NW,5.2,0,0,8.0
-2000-03-10,6.5,1.6,4.8,1.2,0/7/0,1001.0,998.3,999.9,47.0,,,26.0,20.0,,,N,3.2,T,0,10.0
-2000-03-11,7.1,3.0,5.1,1.3,0/6/0,999.8,992.2,996.4,52.0,,,31.0,20.0,,,N,11.1,0,0,10.0
-2000-03-12,5.7,0.0,1.4,1.0,0/1/0,1004.7,991.8,997.1,14.0,,,6.0,240.0,,,W,12.1,0,0,10.0
-2000-03-13,4.0,0.7,2.0,1.1,0/6/0,1014.0,1004.7,1011.7,16.0,,,6.0,360.0,,,N,0.7,T,0,10.0
-2000-03-14,6.2,-1.2,1.4,1.1,0///0,1014.6,1009.5,1012.0,26.0,,,4.0,90.0,,,E,0.1,0,0,5.0
-2000-03-15,5.1,2.4,3.3,1.4,0/1/0,1009.5,1005.9,1006.5,37.0,,,19.0,90.0,,,E,0.0,0,0,10.0
-2000-03-16,5.1,-0.1,1.3,1.0,0/6/0,1008.4,1006.0,1007.6,17.0,,,3.0,120.0,,,E,0.0,0,0,5.0
-2000-03-17,4.5,-0.5,0.3,0.5,0/1/0,1008.4,1005.3,1006.2,6.0,,,2.0,70.0,,,NE,0.0,0,0,1.0
-2000-03-18,4.2,-1.2,0.2,0.9,0/6/0,1008.8,1007.0,1007.6,13.0,,,3.0,60.0,,,E,0.0,0,0,8.0
-2000-03-19,4.3,-1.8,-0.4,0.7,0/6/0,1014.9,1008.8,1012.0,14.0,,,5.0,30.0,,,N,0.0,0,0,10.0
-2000-03-20,0.1,-2.8,-1.5,0.7,0/6/0,1017.5,1014.9,1016.8,12.0,,,4.0,20.0,,,E,T,0,0,10.0
-2000-03-21,0.4,-2.1,-1.1,0.6,0/6/0,1016.2,1007.1,1011.0,13.0,,,4.0,170.0,,,SE,T,T,0,10.0
-2000-03-22,-0.8,-3.5,-2.4,0.9,0/6/0,1007.1,996.2,1001.0,12.0,,,4.0,40.0,,,SE,0.0,0,0,10.0
-2000-03-23,0.0,-3.5,-1.9,0.6,0/6/0,996.2,981.9,987.2,9.0,,,1.0,170.0,,,SE,0.5,T,0,10.0
-2000-03-24,0.9,-0.8,-0.3,-0.2,0/4/0,981.9,976.3,978.2,21.0,,,10.0,20.0,,,N,1.3,1,0,10.0
-2000-03-25,1.1,-1.0,-0.4,-0.3,0/5/0,984.9,980.2,982.4,28.0,,,11.0,10.0,,,N,2.8,2,1,10.0
-2000-03-26,2.0,-3.1,-1.3,-0.1,0/4/0,1004.0,984.9,995.6,14.0,,,4.0,170.0,,,SE,T,T,1,5.0
-2000-03-27,0.2,-4.1,-2.1,-0.2,0/6/0,1014.4,1004.0,1011.5,12.0,,,4.0,280.0,,,NE,0.0,0,0,6.0
-2000-03-28,0.2,-3.5,-2.3,0.2,0/7/0,1016.7,1014.6,1015.8,11.0,,,3.0,190.0,,,S,0.0,0,0,10.0
-2000-03-29,-1.3,-5.6,-3.2,0.1,0/6/0,1014.6,1005.4,1008.8,12.0,,,3.0,90.0,,,E,0.0,0,0,10.0
-2000-03-30,3.5,-3.6,-1.7,-0.5,0/6/0,1006.2,1004.4,1005.1,10.0,,,2.0,110.0,,,NE,0.0,0,0,2.0
-2000-03-31,3.4,-2.8,-1.1,-0.7,0/6/0,1006.4,994.9,1002.2,38.0,,,7.0,40.0,,,NE,0.0,0,0,5.0
-2000-04-01,2.5,-0.9,1.0,-0.1,0/6/0,994.9,986.6,987.2,45.0,,,16.0,30.0,,,NW,2.7,1,0,10.0
-2000-04-02,2.6,-1.6,0.3,-0.2,0/6/0,990.4,980.9,986.3,48.0,,,16.0,20.0,,,NW,2.4,1,1,10.0
-2000-04-03,2.7,0.4,1.4,0.1,0/6/0,990.4,976.3,981.5,54.0,,,18.0,20.0,,,N,0.7,T,0,10.0
-2000-04-04,2.6,-0.1,1.0,0.2,0/6/0,977.8,962.8,968.4,58.0,,,16.0,20.0,,,N,6.8,T,0,10.0
-2000-04-05,4.0,-1.5,1.0,0.1,0/6/0,985.0,970.1,977.9,46.0,,,16.0,10.0,,,W,2.2,1,0,10.0
-2000-04-06,3.3,-1.2,0.9,0.3,0/6/0,986.5,970.3,978.0,58.0,,,31.0,300.0,,,NW,0.2,T,0,10.0
-2000-04-07,0.6,-2.5,-1.0,-0.2,0/6/0,994.9,986.5,992.1,32.0,,,15.0,280.0,,,W,0.5,T,0,10.0
-2000-04-08,2.0,-1.6,-0.6,-0.8,0/6/0,995.2,979.3,988.9,50.0,,,19.0,20.0,,,N,1.2,T,2,10.0
-2000-04-09,3.1,-0.7,1.3,0.0,0/6/0,979.3,967.7,972.1,40.0,,,23.0,10.0,,,N,36.3,T,0,10.0
-2000-04-10,1.9,-1.6,-0.2,-0.2,0/6/0,983.6,974.8,980.2,40.0,,,17.0,20.0,,,N,1.0,2,4,10.0
-2000-04-11,2.8,-1.1,0.4,0.1,0/6/0,974.8,957.0,962.9,48.0,,,23.0,30.0,,,N,9.2,2,1,10.0
-2000-04-12,0.6,-2.9,-1.3,-0.3,0/6/0,972.1,967.3,969.5,32.0,,,10.0,230.0,,,SW,0.5,T,5,9.0
-2000-04-13,0.7,-3.4,-1.7,-0.7,0/6/0,978.7,967.5,974.2,15.0,,,4.0,220.0,,,NE,0.7,1,4,9.0
-2000-04-14,0.0,-3.5,-1.7,-0.4,0/6/0,990.7,977.6,983.1,18.0,,,5.0,20.0,,,NE,T,T,5,9.0
-2000-04-15,1.6,-1.4,-0.3,-0.5,0/6/0,991.4,988.9,990.7,26.0,,,9.0,20.0,,,N,1.1,T,5,10.0
-2000-04-16,1.1,-1.7,-0.4,-0.6,0/6/0,995.8,989.1,991.9,22.0,,,7.0,10.0,,,SW,2.2,3,9,10.0
-2000-04-17,0.4,-3.4,-2.1,-0.5,0/6/0,995.6,990.4,992.3,20.0,,,7.0,230.0,,,SW,0.1,T,8,9.0
-2000-04-18,3.5,-1.7,1.6,0.2,0/6/0,990.7,981.5,984.7,54.0,,,19.0,30.0,,,N,2.3,2,6,10.0
-2000-04-19,3.3,0.4,1.8,0.2,0/6/0,991.7,983.0,986.8,41.0,,,22.0,360.0,,,N,2.8,T,3,10.0
-2000-04-20,4.9,1.1,3.0,0.3,0/6/0,992.3,988.4,990.5,57.0,,,32.0,20.0,,,N,23.0,T,0,10.0
-2000-04-21,4.0,-0.1,1.4,0.4,0/6/0,989.7,983.4,984.6,41.0,,,12.0,70.0,,,NE,20.7,7,6,10.0
-2000-04-22,0.8,-2.6,-1.1,0.2,0/6/0,988.8,984.6,987.2,29.0,,,6.0,20.0,,,N,0.6,1,6,10.0
-2000-04-23,1.0,-3.0,-0.6,-0.1,0/6/0,991.6,986.2,989.3,33.0,,,10.0,360.0,,,N,1.5,1,9,8.0
-2000-04-24,0.8,-3.1,-1.3,-0.6,0/6/0,990.6,988.1,989.5,27.0,,,12.0,320.0,,,NW,4.2,4,17,10.0
-2000-04-25,0.6,-3.1,-0.8,-0.3,0/6/0,989.3,980.3,983.1,29.0,,,8.0,350.0,,,N,1.6,2,18,10.0
-2000-04-26,1.1,-3.0,-1.3,-0.2,0/6/0,985.5,980.0,982.6,13.0,,,2.0,40.0,,,NE,0.2,T,18,4.0
-2000-04-27,-0.3,-5.3,-3.6,-0.6,0/6/0,994.3,985.5,990.9,11.0,,,4.0,60.0,,,NE,0.0,0,16,1.0
-2000-04-28,-2.0,-5.7,-3.1,-1.0,0/6/0,994.4,984.5,990.1,10.0,,,3.0,210.0,,,NE,0.0,0,15,9.0
-2000-04-29,-1.9,-6.1,-4.0,-1.0,0/6/0,984.5,975.9,977.7,29.0,,,12.0,230.0,,,SW,T,T,14,10.0
-2000-04-30,-3.8,-8.9,-6.0,-0.7,0/6/0,991.6,976.8,984.9,14.0,,,8.0,10.0,,,NE,0.0,0,13,1.0
-2000-05-01,-1.4,-4.5,-2.7,-1.3,0/6/0,996.0,989.5,992.2,28.0,,,7.0,320.0,,,SW,1.4,1,14,9.0
-2000-05-02,-2.6,-5.0,-4.2,-1.2,0/6/0,1007.0,996.0,1004.2,22.0,,,8.0,230.0,,,SW,0.7,1,18,10.0
-2000-05-03,0.9,-7.2,-2.3,-0.2,0/6/0,1007.0,988.4,996.9,20.0,,,6.0,150.0,,,SE,0.2,T,17,10.0
-2000-05-04,0.3,-1.4,-0.7,-0.7,0/6/0,996.0,987.0,991.0,14.0,,,6.0,330.0,,,SW,6.9,8,24,10.0
-2000-05-05,-0.7,-2.6,-1.8,-1.1,0/6/0,998.6,994.1,996.8,13.0,,,3.0,260.0,,,SW,1.2,1,25,10.0
-2000-05-06,1.5,-2.5,-1.2,-0.9,0/6/0,994.1,986.4,988.6,26.0,,,10.0,240.0,,,SW,5.4,5,30,10.0
-2000-05-07,-1.4,-6.4,-4.0,-1.1,0/6/0,986.4,978.6,979.5,16.0,,,5.0,30.0,,,NE,0.1,T,30,10.0
-2000-05-08,-2.4,-6.9,-4.2,-1.3,0/6/0,994.4,979.6,987.6,12.0,,,6.0,10.0,,,N,T,T,28,1.0
-2000-05-09,-2.5,-7.4,-4.1,-1.2,0/6/0,997.8,993.6,996.4,18.0,,,7.0,20.0,,,N,0.0,0,27,10.0
-2000-05-10,0.6,-7.6,-1.5,-0.5,0/6/0,993.6,979.9,984.5,32.0,,,7.0,120.0,,,SE,3.0,1,26,10.0
-2000-05-11,4.5,-2.1,0.8,-0.8,0/6/0,993.1,988.1,991.2,46.0,,,14.0,10.0,,,N,1.2,1,27,10.0
-2000-05-12,4.2,-1.9,-0.1,-0.6,0/6/0,988.9,986.1,987.7,50.0,,,18.0,30.0,,,NW,4.7,5,22,10.0
-2000-05-13,2.1,-2.6,-0.6,-0.9,0/6/0,998.2,987.8,994.7,47.0,,,13.0,20.0,,,N,1.7,1,29,10.0
-2000-05-14,3.3,-2.1,0.7,-0.6,0/6/0,994.3,985.4,987.4,52.0,,,20.0,20.0,,,NW,11.3,T,25,3.0
-2000-05-15,3.9,0.6,2.2,-0.4,0/6/0,988.9,981.3,986.7,52.0,,,25.0,20.0,,,N,6.6,0,18,9.0
-2000-05-16,2.8,-0.4,0.5,-0.4,0/6/0,999.9,986.2,994.9,30.0,,,15.0,250.0,,,NW,1.4,T,17,10.0
-2000-05-17,4.7,0.2,3.0,-0.3,0/6/0,999.9,990.1,993.0,58.0,,,30.0,330.0,,,NW,12.4,T,0,10.0
-2000-05-18,2.5,-1.1,0.6,-0.4,0/6/0,997.0,991.8,994.8,42.0,,,11.0,320.0,,,NW,4.9,T,0,10.0
-2000-05-19,3.3,-1.0,0.8,-0.4,0/6/0,995.9,972.0,984.1,32.0,,,7.0,10.0,,,N,1.2,2,0,10.0
-2000-05-20,4.3,-1.1,-0.1,-0.5,0/6/0,974.1,960.7,968.1,59.0,,,31.0,340.0,,,NW,4.0,2,3,10.0
-2000-05-21,-0.2,-4.1,-2.7,-1.1,0/6/0,975.7,970.3,973.5,32.0,,,14.0,10.0,,,N,0.9,1,5,7.0
-2000-05-22,-3.0,-4.7,-3.8,-1.1,0/6/0,973.8,965.4,969.2,24.0,,,8.0,190.0,,,S,4.4,5,11,10.0
-2000-05-23,-3.5,-7.2,-5.3,-1.4,0/6/0,989.4,973.8,983.3,17.0,,,5.0,240.0,,,NE,0.7,1,15,2.0
-2000-05-24,-3.2,-5.1,-4.0,-1.3,0/6/0,1001.6,989.4,997.5,21.0,,,9.0,220.0,,,SW,0.0,0,12,9.0
-2000-05-25,-0.5,-6.2,-2.5,-1.0,0/6/0,1002.2,997.3,1000.0,33.0,,,8.0,10.0,,,N,0.3,T,11,10.0
-2000-05-26,1.2,-2.1,-0.4,-0.9,0/6/0,997.3,991.2,993.8,20.0,,,5.0,150.0,,,SE,8.1,10,16,10.0
-2000-05-27,0.6,-2.8,-2.1,-1.1,0/6/0,1015.2,997.3,1009.2,14.0,,,5.0,190.0,,,S,0.6,1,21,10.0
-2000-05-28,-2.2,-5.6,-4.5,-1.3,20690,1022.2,1015.2,1018.9,8.0,,,4.0,30.0,,,NE,0.0,0,20,2.0
-2000-05-29,-3.3,-8.5,-7.1,-1.5,20690,1031.7,1022.2,1028.5,9.0,,,2.0,340.0,,,NE,0.0,0,20,5.0
-2000-05-30,-3.8,-8.3,-5.6,-1.8,20690,1031.7,1023.3,1027.5,8.0,,,3.0,330.0,,,NW,0.0,0,20,5.0
-2000-05-31,-4.3,-9.8,-6.9,-1.5,0/6/0,1023.3,1011.4,1014.3,8.0,,,3.0,290.0,,,NE,0.4,T,19,10.0
-2000-06-01,-3.2,-8.7,-5.7,-1.0,0/6/0,1011.4,1003.8,1006.7,13.0,,,5.0,110.0,,,NE,0.0,0,18,7.0
-2000-06-02,-0.1,-5.0,-1.9,-1.2,0/6/0,1003.8,988.2,995.5,48.0,,,8.0,70.0,,,NE,T,T,17,10.0
-2000-06-03,3.1,-2.2,0.4,-0.6,0/6/0,988.2,967.4,975.9,62.0,,,31.0,40.0,,,NE,3.0,T,16,7.0
-2000-06-04,3.1,-2.1,0.3,-0.9,0/6/0,988.1,977.5,984.7,44.0,,,17.0,30.0,,,NW,0.6,T,18,10.0
-2000-06-05,5.6,0.9,2.8,-0.6,0/6/0,981.7,971.1,976.2,62.0,,,31.0,20.0,,,NE,3.5,T,6,10.0
-2000-06-06,3.1,-2.5,0.1,-0.7,0/6/0,979.7,972.1,975.8,68.0,,,28.0,30.0,,,NE,4.1,2,0,10.0
-2000-06-07,3.1,-2.0,1.1,-0.6,0/6/0,972.1,957.6,964.6,60.0,,,26.0,20.0,,,NE,19.0,1,0,10.0
-2000-06-08,0.5,-2.3,-0.4,-1.0,0/5/0,976.3,968.3,974.0,38.0,,,22.0,330.0,,,N,2.0,T,8,10.0
-2000-06-09,1.4,-2.6,-0.9,-0.9,0/4/0,978.8,967.8,973.2,59.0,,,22.0,30.0,,,N,1.4,2,15,10.0
-2000-06-10,-1.5,-4.6,-3.3,-1.5,0/6/0,980.5,978.2,979.4,32.0,,,14.0,330.0,,,NW,1.7,T,15,10.0
-2000-06-11,-2.8,-6.1,-4.2,-1.6,0/6/0,980.3,975.4,978.0,36.0,,,15.0,350.0,,,N,3.6,4,20,10.0
-2000-06-12,-0.2,-4.9,-2.5,-1.2,0/6/0,976.4,961.0,968.3,48.0,,,20.0,30.0,,,SW,1.3,T,16,8.0
-2000-06-13,-1.0,-5.6,-3.1,-1.4,0/6/0,978.1,969.2,973.9,43.0,,,17.0,20.0,,,SW,0.8,T,16,9.0
-2000-06-14,-2.8,-6.6,-4.4,-1.4,0/6/0,984.1,978.0,981.6,54.0,,,20.0,20.0,,,N,0.8,T,15,10.0
-2000-06-15,-3.0,-7.5,-5.3,-1.3,0/6/0,983.9,972.8,977.8,26.0,,,11.0,120.0,,,E,2.8,7,17,10.0
-2000-06-16,-0.5,-6.9,-2.7,-1.3,0/5/0,997.9,983.9,995.5,18.0,,,9.0,320.0,,,SW,0.2,T,18,10.0
-2000-06-17,0.0,-2.5,-0.7,-1.4,0/5/0,1004.8,997.9,1001.9,28.0,,,12.0,260.0,,,W,2.4,2,24,10.0
-2000-06-18,2.5,-1.0,1.0,-1.5,0/5/0,1005.5,997.7,1001.9,34.0,,,16.0,360.0,,,N,9.1,1,21,10.0
-2000-06-19,1.6,-4.1,-1.9,-1.5,0/4/0,1007.7,993.8,1001.1,39.0,,,22.0,270.0,,,SW,3.3,1,19,8.0
-2000-06-20,0.2,-4.1,-1.0,-1.4,0/4/0,1009.5,1002.3,1006.4,39.0,,,18.0,330.0,,,NW,2.9,1,25,10.0
-2000-06-21,-0.7,-5.5,-3.9,-1.8,0/4/0,1002.3,996.5,997.8,35.0,,,13.0,330.0,,,NW,1.3,1,28,6.0
-2000-06-22,-4.1,-8.0,-6.8,-1.8,0/6/0,1005.9,998.6,1002.4,31.0,,,8.0,110.0,,,NE,0.0,0,26,9.0
-2000-06-23,-4.1,-7.2,-5.8,-1.4,0/5/0,1008.0,1005.9,1007.1,12.0,,,5.0,30.0,,,NE,0.1,T,25,7.0
-2000-06-24,-3.2,-7.1,-5.2,-1.8,0/5/2,1006.0,1000.9,1003.3,22.0,,,5.0,230.0,,,SW,T,0,25,10.0
-2000-06-25,-3.0,-7.1,-4.6,-1.8,0/5/2,1007.2,1001.3,1006.0,11.0,,,5.0,210.0,,,N,0.0,0,24,9.0
-2000-06-26,-3.4,-6.3,-4.8,-1.9,40592,1012.2,1007.2,1010.3,11.0,,,4.0,340.0,,,N,0.0,0,24,1.0
-2000-06-27,-4.3,-6.4,-5.5,-1.9,40592,1015.0,1012.2,1014.0,7.0,,,3.0,340.0,,,NE,0.0,0,24,8.0
-2000-06-28,-4.6,-8.3,-7.2,-1.6,20691,1015.1,1013.0,1014.0,8.0,,,4.0,60.0,,,NE,0.0,0,25,1.0
-2000-06-29,-3.0,-9.1,-6.8,-1.8,10490,1013.1,1008.4,1010.3,16.0,,,5.0,40.0,,,E,0.0,0,25,10.0
-2000-06-30,0.5,-4.8,-2.1,-1.8,0/4/0,1008.4,1000.8,1004.3,31.0,,,10.0,10.0,,,SE,T,T,25,10.0
-2000-07-01,0.3,-5.5,-3.2,-1.4,0/4/0,1000.8,998.0,998.9,24.0,,,5.0,20.0,,,NE,T,T,24,8.0
-2000-07-02,-1.2,-7.0,-3.9,-1.6,0/5/0,998.3,996.0,997.5,14.0,,,2.0,110.0,,,NE,1.8,2,24,10.0
-2000-07-03,-0.3,-4.9,-2.6,-1.4,0/4/0,996.0,987.9,989.8,29.0,,,9.0,360.0,,,NW,3.1,4,29,9.0
-2000-07-04,-2.5,-8.9,-6.9,-1.8,20590,989.5,987.0,988.0,26.0,,,9.0,230.0,,,N,0.8,2,32,2.0
-2000-07-05,-5.5,-10.0,-7.5,-1.9,0/1/0,998.8,987.1,993.7,17.0,,,6.0,190.0,,,NE,0.0,0,30,1.0
-2000-07-06,-6.8,-9.9,-8.8,-1.8,0/4/0,1001.0,998.2,999.9,8.0,,,5.0,50.0,,,NE,0.0,0,30,9.0
-2000-07-07,-4.5,-8.5,-5.4,-1.5,0/6/0,1011.2,998.1,1005.0,9.0,,,2.0,20.0,,,NE,1.0,1,29,10.0
-2000-07-08,-4.6,-7.1,-5.7,-1.6,0/6/0,1021.4,1011.2,1017.4,22.0,,,5.0,230.0,,,SW,0.4,T,29,9.0
-2000-07-09,-1.5,-5.5,-2.9,-1.3,20690,1030.0,1021.4,1026.6,14.0,,,5.0,250.0,,,SW,0.2,0,28,10.0
-2000-07-10,0.5,-2.2,-1.2,-1.6,0/6/0,1030.9,1027.4,1029.5,28.0,,,9.0,330.0,,,NW,2.8,1,28,10.0
-2000-07-11,0.6,-3.9,-1.1,-1.8,0/6/2,1030.9,1021.5,1026.5,30.0,,,7.0,20.0,,,NW,0.5,T,31,10.0
-2000-07-12,2.8,-0.4,1.3,-1.4,0/4/0,1021.5,1008.9,1012.4,37.0,,,21.0,360.0,,,N,2.3,T,30,10.0
-2000-07-13,2.5,-2.7,-1.9,-1.2,0/6/0,1009.5,1004.0,1006.9,47.0,,,13.0,10.0,,,N,0.0,0,29,8.0
-2000-07-14,1.5,-5.7,-1.7,-1.3,20690,1013.2,1009.5,1011.9,30.0,,,7.0,20.0,,,N,T,T,29,9.0
-2000-07-15,2.9,-0.6,0.9,-1.1,0/5/0,1011.8,993.0,1001.1,60.0,,,33.0,20.0,,,N,0.6,T,28,10.0
-2000-07-16,1.5,-4.1,-1.5,-1.2,0/6/0,1001.8,983.5,992.7,52.0,,,24.0,20.0,,,NE,4.5,3,31,10.0
-2000-07-17,-3.3,-6.1,-4.7,-1.4,0/6/0,1008.8,1001.8,1006.4,25.0,,,11.0,20.0,,,N,0.2,1,32,8.0
-2000-07-18,0.6,-6.6,-2.4,-1.2,0/6/0,1013.0,1004.4,1009.5,53.0,,,14.0,10.0,,,N,0.1,T,31,9.0
-2000-07-19,-3.2,-7.1,-5.3,-1.6,0/4/0,1013.2,1009.9,1011.3,10.0,,,3.0,100.0,,,NE,T,T,31,2.0
-2000-07-20,-0.9,-6.4,-3.5,-1.7,20690,1012.0,1009.8,1011.0,11.0,,,3.0,140.0,,,NE,0.0,0,31,5.0
-2000-07-21,-2.3,-5.8,-3.7,-1.9,20691,1012.8,1008.1,1010.9,9.0,,,3.0,350.0,,,NW,0.0,0,31,10.0
-2000-07-22,-4.5,-7.6,-6.1,-1.7,0/6/0,1008.2,1003.4,1005.8,16.0,,,4.0,10.0,,,NE,T,T,31,10.0
-2000-07-23,-5.4,-8.8,-7.6,-1.5,0/6/0,1005.9,1003.4,1005.3,16.0,,,6.0,20.0,,,NE,0.0,0,31,4.0
-2000-07-24,-5.4,-10.0,-7.8,-1.4,0/6/0,1005.7,1001.4,1003.2,17.0,,,5.0,90.0,,,NE,0.0,0,31,2.0
-2000-07-25,0.3,-6.5,-2.1,-1.6,0/6/0,1001.4,990.9,995.6,20.0,,,4.0,80.0,,,SE,0.2,T,31,10.0
-2000-07-26,4.0,-1.9,2.3,-1.6,0/4/0,990.9,983.9,987.3,49.0,,,21.0,10.0,,,N,0.4,T,31,10.0
-2000-07-27,4.5,-1.7,0.6,-1.5,0/6/0,984.4,981.4,982.1,52.0,,,14.0,50.0,,,NE,3.4,4,31,10.0
-2000-07-28,-0.6,-3.3,-2.1,-1.6,20690,981.4,977.7,978.8,9.0,,,1.0,80.0,,,E,1.8,2,33,9.0
-2000-07-29,-2.1,-6.3,-3.4,-1.9,20690,986.9,980.2,985.0,20.0,,,6.0,10.0,,,N,0.8,T,32,10.0
-2000-07-30,3.4,-6.6,-2.3,-1.5,0/5/0,985.5,965.2,972.1,46.0,,,15.0,50.0,,,NE,0.4,T,32,10.0
-2000-07-31,2.1,-1.9,-0.3,-1.6,0/6/0,965.2,960.6,963.3,38.0,,,12.0,100.0,,,NE,0.0,0,31,10.0
-2000-08-01,-0.6,-3.6,-2.5,-1.7,0/6/0,985.8,963.1,976.8,22.0,,,10.0,360.0,,,N,T,T,31,10.0
-2000-08-02,-2.2,-5.5,-3.0,-1.9,0/4/0,994.0,985.8,992.6,26.0,,,12.0,260.0,,,W,1.6,T,33,10.0
-2000-08-03,-3.5,-7.4,-5.7,-1.8,20692,994.2,989.3,991.6,28.0,,,10.0,210.0,,,SW,2.1,3,36,10.0
-2000-08-04,-5.9,-9.8,-8.2,-1.9,20690,995.1,992.2,994.7,30.0,,,11.0,220.0,,,SW,0.2,T,30,9.0
-2000-08-05,-6.9,-12.0,-8.7,-1.9,20690,995.3,994.0,994.6,18.0,,,5.0,20.0,,,NE,T,T,31,9.0
-2000-08-06,-4.9,-8.5,-7.1,-1.8,20690,1000.9,994.2,997.6,35.0,,,15.0,360.0,,,NE,1.7,1,31,10.0
-2000-08-07,-4.6,-9.6,-6.6,-1.9,0/6/0,1002.2,1000.9,1001.6,32.0,,,17.0,20.0,,,NE,0.1,T,29,10.0
-2000-08-08,-2.7,-5.5,-3.8,-1.8,20692,1000.9,998.3,998.9,22.0,,,11.0,330.0,,,W,0.7,T,32,10.0
-2000-08-09,-4.7,-8.8,-6.5,-2.0,20692,1001.1,998.0,999.6,9.0,,,4.0,10.0,,,NE,0.0,0,31,2.0
-2000-08-10,1.0,-7.4,-0.8,-1.9,0/6/0,998.0,979.3,986.1,58.0,,,17.0,20.0,,,NW,1.7,T,31,9.0
-2000-08-11,0.5,-1.5,-0.7,-2.0,0/6/0,997.9,991.0,995.7,31.0,,,14.0,350.0,,,NW,4.3,2,36,10.0
-2000-08-12,0.6,-2.5,-1.4,-1.9,0/6/0,991.0,980.9,984.0,33.0,,,13.0,350.0,,,NW,1.3,T,37,10.0
-2000-08-13,0.6,-3.1,-1.5,-1.9,0/6/0,984.1,973.3,978.6,36.0,,,15.0,10.0,,,N,1.3,2,38,9.0
-2000-08-14,-0.7,-3.8,-2.5,-1.8,0/6/0,973.3,964.3,967.5,36.0,,,12.0,20.0,,,N,0.5,T,38,10.0
-2000-08-15,-1.7,-5.5,-3.5,-1.8,0/6/0,969.7,955.5,959.8,57.0,,,23.0,20.0,,,NW,1.4,T,38,10.0
-2000-08-16,-2.7,-6.2,-4.5,-1.7,0/6/0,965.1,953.9,959.5,43.0,,,13.0,70.0,,,E,0.7,T,38,10.0
-2000-08-17,-4.5,-7.0,-5.5,-1.9,0/6/0,982.0,965.1,976.0,15.0,,,6.0,30.0,,,N,0.4,1,39,10.0
-2000-08-18,-4.3,-10.4,-8.6,-2.0,20590,986.5,981.5,984.2,28.0,,,14.0,230.0,,,SW,2.0,3,38,10.0
-2000-08-19,-9.0,-10.5,-10.0,-2.0,21690,992.0,981.3,988.5,36.0,,,15.0,220.0,,,SW,0.4,T,37,10.0
-2000-08-20,-4.6,-11.0,-7.1,-1.9,20690,991.9,984.4,986.7,30.0,,,10.0,20.0,,,N,1.6,2,39,10.0
-2000-08-21,-2.6,-10.4,-7.7,-2.0,31692,995.2,987.3,991.6,58.0,,,13.0,240.0,,,SW,2.7,6,38,10.0
-2000-08-22,-7.7,-13.0,-12.1,-2.0,22696,996.6,990.0,993.0,40.0,,,20.0,230.0,,,SW,0.0,0,36,10.0
-2000-08-23,-10.0,-12.0,-11.1,-2.0,62966,998.0,996.6,997.6,21.0,,,7.0,220.0,,,SW,0.0,0,36,10.0
-2000-08-24,-6.5,-13.7,-9.0,-2.0,62964,1003.0,997.4,1000.6,26.0,,,8.0,10.0,,,NE,0.0,0,35,9.0
-2000-08-25,-4.9,-8.3,-6.5,-2.0,32864,1003.1,1000.6,1001.7,26.0,,,7.0,30.0,,,NE,T,T,35,10.0
-2000-08-26,-5.4,-9.3,-7.4,-2.0,32864,1003.7,1000.7,1002.7,14.0,,,5.0,200.0,,,NE,0.2,T,35,10.0
-2000-08-27,-5.0,-10.7,-7.9,-2.0,42892,1000.7,992.3,994.7,18.0,,,7.0,190.0,,,SW,T,T,35,9.0
-2000-08-28,-2.5,-11.4,-6.9,-2.0,32761,992.7,989.0,991.5,18.0,,,4.0,110.0,,,NE,0.0,0,35,8.0
-2000-08-29,2.9,-3.2,0.3,-2.0,22791,989.0,980.4,984.1,48.0,,,14.0,90.0,,,E,0.6,T,34,10.0
-2000-08-30,1.2,-1.8,-0.5,-1.8,0/6/0,987.8,984.0,985.4,45.0,,,23.0,20.0,,,N,1.2,T,35,9.0
-2000-08-31,1.5,-2.8,-0.9,-1.6,0/6/0,984.0,979.0,981.2,42.0,,,17.0,40.0,,,NE,0.6,T,34,10.0
-2000-09-01,1.0,-3.2,-1.7,-1.6,0/6/0,985.4,978.4,982.2,56.0,,,22.0,30.0,,,E,0.1,T,34,10.0
-2000-09-02,2.9,-2.8,-0.4,-1.5,0/6/0,988.4,980.1,984.9,56.0,,,20.0,20.0,,,NE,0.0,0,34,8.0
-2000-09-03,1.0,-4.2,-2.6,-1.6,0/6/0,995.9,988.3,992.3,29.0,,,12.0,80.0,,,N,0.0,0,33,8.0
-2000-09-04,-1.5,-3.8,-3.1,-1.8,0/6/0,1005.3,995.9,1001.9,16.0,,,5.0,320.0,,,NW,2.0,2,36,10.0
-2000-09-05,-1.0,-4.5,-3.2,-1.8,0/6/0,1013.2,1005.3,1010.1,12.0,,,3.0,190.0,,,E,0.6,T,36,10.0
-2000-09-06,-1.0,-6.8,-5.2,-1.6,60690,1030.6,1013.2,1023.7,15.0,,,5.0,30.0,,,NE,0.0,0,36,7.0
-2000-09-07,-3.1,-8.5,-6.6,-1.7,106/1,1034.8,1030.6,1033.9,12.0,,,6.0,30.0,,,NE,0.0,0,35,4.0
-2000-09-08,-5.0,-7.6,-6.4,-1.8,20693,1033.5,1023.8,1028.7,14.0,,,8.0,10.0,,,N,0.0,0,35,10.0
-2000-09-09,-2.0,-7.5,-4.5,-1.8,20693,1023.8,1006.6,1014.1,25.0,,,10.0,260.0,,,NW,0.9,T,35,10.0
-2000-09-10,-1.7,-11.7,-6.7,-1.8,0/6/0,1006.6,986.2,998.2,50.0,,,21.0,340.0,,,SW,0.5,T,37,9.0
-2000-09-11,-7.0,-15.3,-11.8,-1.9,20863,1006.0,992.1,998.5,41.0,,,15.0,230.0,,,S,0.6,1,35,3.0
-2000-09-12,-8.1,-14.9,-10.2,-1.9,51863,1007.0,1001.6,1004.4,22.0,,,9.0,190.0,,,SW,T,T,35,9.0
-2000-09-13,-1.5,-9.1,-4.7,-1.9,51863,1001.6,995.6,998.8,21.0,,,10.0,300.0,,,SW,0.6,T,35,10.0
-2000-09-14,-0.5,-3.8,-2.1,-1.9,42862,995.6,977.2,981.7,40.0,,,23.0,300.0,,,NW,0.7,T,37,10.0
-2000-09-15,-2.8,-9.9,-6.7,-1.9,42863,979.3,972.0,976.2,62.0,,,23.0,340.0,,,SW,2.0,1,37,9.0
-2000-09-16,-7.0,-18.2,-13.8,-1.9,52966,990.9,972.9,981.8,40.0,,,15.0,270.0,,,SW,1.1,T,37,10.0
-2000-09-17,-13.0,-19.6,-15.9,-1.9,52966,997.2,990.9,995.1,33.0,,,10.0,240.0,,,SW,1.3,2,38,10.0
-2000-09-18,-14.5,-16.3,-15.3,-1.9,52966,1001.5,997.1,999.2,22.0,,,11.0,250.0,,,SW,0.1,T,37,10.0
-2000-09-19,-12.5,-15.7,-14.1,-1.9,52966,1006.1,1001.5,1004.5,12.0,,,5.0,220.0,,,SW,T,T,37,10.0
-2000-09-20,-11.1,-15.1,-13.7,-1.9,52865,1006.3,1004.7,1005.6,13.0,,,4.0,230.0,,,SW,T,T,36,10.0
-2000-09-21,-3.5,-13.2,-8.0,-1.9,52864,1006.7,1004.7,1006.0,16.0,,,4.0,320.0,,,NW,T,T,36,6.0
-2000-09-22,-4.6,-10.0,-8.2,-1.9,92862,1006.7,1004.6,1005.3,8.0,,,3.0,320.0,,,NE,0.0,0,36,8.0
-2000-09-23,-5.4,-11.5,-8.4,-1.9,52862,1008.4,1006.1,1007.8,10.0,,,4.0,360.0,,,NE,T,T,36,10.0
-2000-09-24,-5.5,-11.8,-8.7,-1.9,52863,1008.0,996.4,1002.7,13.0,,,4.0,130.0,,,N,T,T,36,10.0
-2000-09-25,2.5,-7.3,-0.6,-1.9,52861,996.4,970.1,977.1,61.0,,,20.0,30.0,,,N,0.8,1,36,10.0
-2000-09-26,1.3,-2.2,-1.2,-2.0,52861,970.1,964.0,967.5,47.0,,,26.0,20.0,,,N,3.1,1,37,10.0
-2000-09-27,-2.0,-13.2,-10.3,-2.0,32863,994.4,969.3,984.3,30.0,,,10.0,340.0,,,S,2.1,3,58,10.0
-2000-09-28,-1.8,-9.3,-6.6,-2.0,52862,999.7,991.8,997.0,33.0,,,9.0,230.0,,,SE,6.8,4,58,10.0
-2000-09-29,-0.5,-7.7,-3.0,-1.9,52862,1002.1,998.2,1000.1,27.0,,,9.0,230.0,,,NW,1.2,T,41,10.0
-2000-09-30,1.4,-2.1,-0.3,-1.9,52761,1002.0,992.4,996.7,34.0,,,16.0,340.0,,,NW,3.5,3,42,10.0
-2000-10-01,3.6,-4.5,-1.4,-1.9,32861,994.2,989.6,992.8,11.0,,,4.0,290.0,,,NW,0.0,0,48,10.0
-2000-10-02,2.4,-4.2,-0.5,-1.7,22862,996.1,974.0,986.8,50.0,,,21.0,20.0,,,NW,1.8,1,45,10.0
-2000-10-03,0.7,-4.1,-1.4,-1.8,42863,1005.1,996.1,1001.0,23.0,,,9.0,340.0,,,NW,4.4,7,54,10.0
-2000-10-04,0.5,-7.2,-3.6,-1.8,42862,1009.6,1003.1,1005.5,20.0,,,5.0,340.0,,,NW,2.9,4,56,10.0
-2000-10-05,1.4,-10.1,-3.8,-1.8,42862,1014.9,1009.6,1013.5,13.0,,,2.0,30.0,,,NE,T,T,54,5.0
-2000-10-06,5.2,-2.1,2.1,-1.8,33861,1012.1,1001.9,1007.7,29.0,,,5.0,330.0,,,SE,0.8,T,51,10.0
-2000-10-07,4.9,0.4,2.0,-1.6,22861,1001.9,990.7,994.9,40.0,,,11.0,30.0,,,NE,0.7,0,45,10.0
-2000-10-08,4.2,-0.3,1.8,-1.5,0/8/0,990.7,984.5,985.8,31.0,,,15.0,20.0,,,NE,2.7,1,40,10.0
-2000-10-09,4.9,-0.2,2.4,-1.4,0/8/0,988.4,980.5,985.8,36.0,,,17.0,20.0,,,N,0.3,T,40,10.0
-2000-10-10,5.9,-0.2,1.6,-1.3,0/8/0,980.5,970.2,974.5,42.0,,,13.0,30.0,,,NE,T,T,35,10.0
-2000-10-11,2.2,-3.4,-0.8,-1.4,0/8/0,970.2,960.5,963.2,43.0,,,19.0,110.0,,,E,0.0,0,34,10.0
-2000-10-12,1.3,-4.0,-2.5,-1.5,0/7/0,974.9,962.2,969.4,21.0,,,2.0,80.0,,,NE,0.2,T,34,9.0
-2000-10-13,0.8,-4.4,-3.2,-1.6,0/8/0,989.3,974.9,983.8,15.0,,,5.0,240.0,,,SW,0.0,0,34,7.0
-2000-10-14,3.3,-3.5,0.1,-1.5,0/7/0,989.6,976.6,984.8,32.0,,,9.0,90.0,,,N,1.4,1,34,10.0
-2000-10-15,3.9,-0.8,2.5,-1.4,0/7/0,976.6,955.4,959.5,29.0,,,7.0,70.0,,,E,11.1,9,38,10.0
-2000-10-16,0.4,-4.1,-2.2,-1.6,0/8/0,962.6,951.6,957.6,22.0,,,5.0,310.0,,,NW,4.8,7,53,10.0
-2000-10-17,1.2,-3.7,-2.0,-1.4,0/8/0,971.2,951.4,961.0,17.0,,,6.0,120.0,,,SE,5.0,9,59,10.0
-2000-10-18,0.9,-5.0,-2.2,-1.4,0/8/0,980.6,971.2,976.2,15.0,,,4.0,80.0,,,N,0.0,0,56,10.0
-2000-10-19,0.9,-4.4,-2.8,-1.4,0/8/0,988.1,980.6,985.5,11.0,,,5.0,360.0,,,N,0.6,T,54,10.0
-2000-10-20,1.9,-4.5,-2.9,-1.2,0/8/0,989.0,985.8,987.9,25.0,,,5.0,30.0,,,NE,0.4,T,52,9.0
-2000-10-21,5.0,-4.5,-0.6,-1.1,0/8/0,985.8,982.9,984.2,27.0,,,6.0,60.0,,,NE,0.1,T,49,10.0
-2000-10-22,1.6,-3.3,-0.6,-0.9,0/7/0,989.6,984.4,986.1,17.0,,,3.0,10.0,,,NE,T,T,48,10.0
-2000-10-23,1.4,-2.1,-0.9,-0.8,0/8/0,995.1,989.6,994.3,10.0,,,2.0,40.0,,,N,T,T,47,10.0
-2000-10-24,1.1,-5.2,-1.9,-0.6,0/8/0,997.6,994.9,996.5,19.0,,,5.0,10.0,,,NE,T,T,47,10.0
-2000-10-25,1.7,-1.8,-0.5,-0.9,0/8/0,994.9,983.9,987.9,23.0,,,3.0,270.0,,,SE,1.4,1,46,10.0
-2000-10-26,0.7,-1.8,-0.7,-1.0,0/8/0,998.7,983.8,990.4,15.0,,,3.0,110.0,,,SW,2.4,2,48,10.0
-2000-10-27,0.5,-3.0,-1.3,-1.0,44892,1005.5,995.2,1001.5,15.0,,,5.0,240.0,,,SW,1.6,1,48,10.0
-2000-10-28,0.5,-5.6,-2.3,-1.2,44893,995.2,979.9,984.0,35.0,,,16.0,240.0,,,SW,4.9,6,56,10.0
-2000-10-29,-2.1,-6.6,-3.3,-1.4,44893,982.9,973.3,976.4,46.0,,,22.0,230.0,,,SW,3.1,3,47,10.0
-2000-10-30,-4.1,-8.8,-7.5,-1.6,43892,987.1,971.3,979.9,38.0,,,15.0,230.0,,,SW,1.7,5,45,10.0
-2000-10-31,-0.6,-9.0,-5.7,-1.8,43892,998.1,987.1,995.0,21.0,,,6.0,240.0,,,SW,T,T,46,7.0
-2000-11-01,1.6,-10.6,-3.4,-1.6,438/2,1001.1,998.0,1000.2,19.0,,,3.0,100.0,,,SE,2.8,T,46,10.0
-2000-11-02,5.4,-1.4,1.2,-1.6,338/1,1003.5,1001.1,1002.8,22.0,,,5.0,130.0,,,SE,9.5,5,53,10.0
-2000-11-03,5.6,0.5,3.2,-1.7,238/1,1003.3,1000.1,1001.8,39.0,,,13.0,20.0,,,N,4.2,0,40,10.0
-2000-11-04,5.4,0.2,2.1,-1.6,238/0,1002.8,996.2,999.1,34.0,,,5.0,40.0,,,SE,11.4,0,37,10.0
-2000-11-05,5.2,-0.7,2.0,-1.6,0/8/0,999.9,995.1,997.9,37.0,,,10.0,10.0,,,N,3.8,1,30,10.0
-2000-11-06,3.4,-1.2,0.5,-1.5,0/8/0,995.1,992.2,993.0,22.0,,,5.0,350.0,,,N,2.7,3,32,10.0
-2000-11-07,1.4,-1.9,-1.5,-1.5,238/2,993.8,992.5,993.6,17.0,,,9.0,340.0,,,SW,1.2,T,31,10.0
-2000-11-08,1.6,-2.6,-0.6,-1.4,0/8/0,995.5,993.8,994.7,10.0,,,1.0,210.0,,,SW,0.0,0,29,10.0
-2000-11-09,0.5,-3.1,-1.3,-1.4,0/8/0,997.6,995.1,997.1,12.0,,,2.0,20.0,,,SE,0.0,0,29,10.0
-2000-11-10,0.3,-2.3,-1.0,-1.3,0/8/0,998.4,993.6,996.2,14.0,,,2.0,360.0,,,SE,1.7,1,30,10.0
-2000-11-11,4.6,-1.2,-0.5,-1.2,0/8/0,993.6,989.5,990.6,7.0,,,2.0,300.0,,,W,0.6,T,30,8.0
-2000-11-12,0.5,-3.7,-2.1,1.2,0/8/0,1000.3,991.7,998.5,33.0,,,16.0,210.0,,,SW,T,T,29,9.0
-2000-11-13,2.9,-1.9,-0.7,-1.2,0/8/0,1002.1,998.7,1001.1,11.0,,,3.0,210.0,,,SW,0.0,0,28,10.0
-2000-11-14,0.7,-2.4,-1.3,-1.2,0/8/0,1001.1,987.2,991.1,31.0,,,10.0,220.0,,,SW,3.3,1,30,10.0
-2000-11-15,6.0,-3.1,-0.4,-1.2,0/8/0,991.9,984.9,987.8,37.0,,,9.0,70.0,,,SW,T,T,29,9.0
-2000-11-16,4.5,-3.2,-0.7,-1.2,0/8/0,993.2,988.5,991.4,38.0,,,14.0,10.0,,,N,0.0,0,29,9.0
-2000-11-17,2.7,-2.5,-0.7,-0.7,0/8/0,988.5,984.9,985.7,10.0,,,2.0,290.0,,,NW,0.0,0,27,10.0
-2000-11-18,1.6,-1.3,-0.5,-0.8,0/8/0,986.2,985.4,985.9,11.0,,,6.0,230.0,,,SW,0.5,T,24,10.0
-2000-11-19,4.8,-2.2,-1.4,-0.8,0/7/0,986.2,983.8,985.1,16.0,,,6.0,220.0,,,SW,T,T,24,10.0
-2000-11-20,2.8,-3.1,-0.2,-0.8,0/8/0,983.8,968.1,975.0,37.0,,,12.0,190.0,,,E,0.0,0,22,10.0
-2000-11-21,5.4,-3.4,-0.6,-0.8,0/8/0,973.1,966.2,971.3,38.0,,,10.0,50.0,,,E,3.4,5,26,10.0
-2000-11-22,1.5,-3.6,-1.9,-0.7,0/8/0,974.9,973.0,974.0,36.0,,,17.0,120.0,,,E,0.0,0,24,8.0
-2000-11-23,5.6,-3.6,1.5,-0.5,0/8/0,981.8,974.9,979.6,30.0,,,6.0,100.0,,,E,0.0,0,20,4.0
-2000-11-24,3.6,-2.8,0.2,0.0,0/8/0,982.3,981.3,981.7,14.0,,,5.0,50.0,,,SW,0.0,0,2,9.0
-2000-11-25,3.5,-3.7,0.1,0.0,0/8/0,987.2,982.3,985.6,12.0,,,3.0,180.0,,,SW,0.0,0,0,1.0
-2000-11-26,3.8,-3.5,-0.6,0.7,0/8/0,993.9,987.2,991.2,9.0,,,3.0,210.0,,,NE,0.0,0,0,8.0
-2000-11-27,3.5,-1.2,-0.1,0.3,0/6/0,998.3,993.9,996.7,16.0,,,4.0,290.0,,,SW,0.6,T,0,8.0
-2000-11-28,1.6,-3.4,-0.6,0.1,0/7/0,998.3,997.2,997.6,17.0,,,6.0,210.0,,,SW,0.0,0,0,9.0
-2000-11-29,3.6,-3.6,-0.5,0.2,0/7/0,997.5,995.1,996.1,12.0,,,3.0,190.0,,,SE,0.0,0,0,9.0
-2000-11-30,4.4,-3.2,0.1,0.4,0/7/0,995.3,991.4,992.9,23.0,,,5.0,20.0,,,N,0.0,0,0,10.0
-2000-12-01,4.5,-1.7,0.5,0.4,0/7/0,992.8,990.9,991.9,10.0,,,2.0,360.0,,,SE,0.0,0,0,10.0
-2000-12-02,3.3,-1.9,0.2,0.3,0/7/0,993.1,985.9,990.7,35.0,,,14.0,10.0,,,N,0.0,0,0,10.0
-2000-12-03,5.5,-0.3,1.9,0.1,0/7/0,985.9,975.1,978.7,40.0,,,9.0,30.0,,,SE,T,T,0,9.0
-2000-12-04,7.3,-0.7,2.1,0.2,0/7/0,975.1,965.0,967.4,34.0,,,11.0,70.0,,,E,T,T,0,10.0
-2000-12-05,5.8,0.7,2.4,0.2,0/7/0,975.8,965.8,972.0,26.0,,,5.0,80.0,,,E,0.0,0,0,9.0
-2000-12-06,5.6,-0.9,1.5,0.4,0/7/0,982.6,975.8,979.5,14.0,,,5.0,240.0,,,SW,0.0,0,0,8.0
-2000-12-07,4.3,-0.3,0.4,0.6,0/7/0,989.9,982.6,987.1,8.0,,,3.0,300.0,,,W,T,T,0,10.0
-2000-12-08,2.3,-0.6,0.0,0.6,0/7/0,997.5,989.9,993.9,23.0,,,6.0,210.0,,,SW,T,T,0,9.0
-2000-12-09,3.5,-1.1,0.2,0.9,0/7/0,997.9,994.8,997.0,19.0,,,9.0,210.0,,,SW,0.5,T,0,10.0
-2000-12-10,6.0,-0.3,2.0,0.3,0/7/0,994.8,988.6,991.2,24.0,,,8.0,10.0,,,N,0.0,0,0,10.0
-2000-12-11,10.8,0.2,2.5,0.9,0/7/0,990.8,987.8,989.1,24.0,,,6.0,10.0,,,N,0.0,0,0,9.0
-2000-12-12,6.5,-0.7,1.9,1.3,0/6/0,995.3,990.8,993.7,13.0,,,5.0,10.0,,,N,0.0,0,0,9.0
-2000-12-13,5.2,0.4,2.0,1.7,0/6/0,996.7,995.3,996.2,12.0,,,5.0,210.0,,,SW,0.0,0,0,9.0
-2000-12-14,5.5,-0.8,1.0,1.5,0/6/0,999.4,996.5,998.0,14.0,,,8.0,220.0,,,S,0.0,0,0,10.0
-2000-12-15,6.1,0.6,1.7,1.3,0/6/0,1000.5,996.4,998.8,17.0,,,8.0,220.0,,,N,0.0,0,0,9.0
-2000-12-16,5.3,-1.1,2.0,0.4,0/6/0,996.4,976.9,984.8,54.0,,,16.0,40.0,,,NE,0.0,0,0,10.0
-2000-12-17,5.4,1.4,2.7,0.2,0/6/0,978.2,976.5,977.2,44.0,,,10.0,40.0,,,E,2.7,0,0,10.0
-2000-12-18,8.2,0.5,3.2,0.5,0/6/0,996.4,977.5,986.8,14.0,,,2.0,130.0,,,NW,0.5,0,0,9.0
-2000-12-19,6.5,1.7,3.1,0.7,0/6/0,1001.7,996.4,999.7,14.0,,,4.0,350.0,,,E,0.0,0,0,10.0
-2000-12-20,5.5,0.6,2.0,0.7,0/6/0,996.8,986.5,989.6,9.0,,,2.0,240.0,,,E,0.0,0,0,10.0
-2000-12-21,6.0,-0.3,2.3,1.2,0/6/0,986.5,984.7,985.0,11.0,,,3.0,250.0,,,W,0.0,0,0,9.0
-2000-12-22,3.7,-0.1,0.6,1.3,0/6/0,988.5,985.3,987.3,16.0,,,7.0,230.0,,,SW,0.0,0,0,10.0
-2000-12-23,5.5,-2.4,1.3,1.1,0/6/0,988.5,982.9,985.2,14.0,,,4.0,240.0,,,E,0.0,0,0,10.0
-2000-12-24,3.0,-0.1,2.1,0.5,0/7/0,982.9,980.2,981.0,34.0,,,17.0,10.0,,,N,3.8,T,0,10.0
-2000-12-25,5.4,0.6,2.2,0.4,0/7/0,984.5,982.2,983.7,31.0,,,8.0,10.0,,,N,0.4,T,0,7.0
-2000-12-26,8.0,0.4,3.4,0.7,0/6/0,983.8,977.9,979.8,17.0,,,8.0,200.0,,,S,0.0,0,0,1.0
-2000-12-27,7.2,-0.2,2.6,0.8,0/6/0,977.9,975.1,976.1,23.0,,,7.0,140.0,,,E,0.0,0,0,8.0
-2000-12-28,9.5,0.3,3.1,1.4,0/6/0,980.8,976.9,979.6,6.0,,,1.0,110.0,,,N,0.0,0,0,6.0
-2000-12-29,6.9,-0.2,2.3,1.7,0/6/0,981.0,978.8,979.8,17.0,,,5.0,320.0,,,NW,0.0,0,0,7.0
-2000-12-30,7.9,1.3,3.9,1.9,0/6/0,984.8,979.5,983.4,8.0,,,2.0,220.0,,,SW,0.0,0,0,1.0
-2000-12-31,5.5,0.2,1.6,1.9,0/6/0,986.5,983.5,984.7,26.0,,,6.0,10.0,,,N,2.2,T,0,10.0
-2001-01-01,2.2,-1.1,-0.4,1.5,0/7/0,989.4,986.5,988.2,15.0,,,6.0,60.0,,,NW,0.1,T,0,10.0
-2001-01-02,2.7,-2.3,0.0,1.6,0/6/0,988.5,983.7,985.2,30.0,,,11.0,10.0,,,N,3.1,3,0,8.0
-2001-01-03,7.5,-1.6,2.2,1.9,0/6/0,985.5,982.9,984.2,25.0,,,8.0,30.0,,,SE,0.0,0,0,8.0
-2001-01-04,6.5,1.4,3.1,1.7,0/6/0,995.5,982.7,990.5,26.0,,,6.0,80.0,,,NW,0.0,0,0,6.0
-2001-01-05,7.4,-0.4,3.0,1.8,0/6/0,998.8,995.5,998.1,20.0,,,6.0,10.0,,,N,0.0,0,0,7.0
-2001-01-06,8.2,0.2,3.4,2.0,0/6/0,997.6,995.8,996.4,27.0,,,6.0,10.0,,,E,0.0,0,0,10.0
-2001-01-07,6.0,1.3,3.0,2.0,0/6/0,996.4,995.7,996.0,18.0,,,5.0,40.0,,,E,0.7,T,0,10.0
-2001-01-08,8.4,2.0,4.3,1.7,0/7/0,997.8,994.3,995.8,29.0,,,4.0,30.0,,,NE,0.0,0,0,10.0
-2001-01-09,7.2,1.1,3.6,2.0,0/7/0,996.0,993.9,994.7,12.0,,,3.0,10.0,,,E,0.0,0,0,10.0
-2001-01-10,5.0,0.7,2.0,1.0,0/6/0,997.3,995.7,996.7,8.0,,,2.0,170.0,,,SE,T,0,0,10.0
-2001-01-11,4.0,0.8,2.1,1.5,0/6/0,995.7,984.5,988.7,11.0,,,2.0,170.0,,,SE,T,T,0,10.0
-2001-01-12,5.7,0.4,1.8,1.0,0/6/0,984.5,981.3,982.1,8.0,,,3.0,310.0,,,NW,T,T,0,10.0
-2001-01-13,9.5,1.5,3.9,1.2,0/6/0,988.2,983.3,986.4,14.0,,,5.0,10.0,,,N,0.0,0,0,10.0
-2001-01-14,7.2,1.7,3.1,1.3,0/6/0,987.2,978.8,981.7,21.0,,,7.0,340.0,,,NW,1.0,0,0,10.0
-2001-01-15,7.1,1.9,3.1,1.4,0/6/0,981.8,972.0,975.8,21.0,,,5.0,100.0,,,SE,0.5,0,0,10.0
-2001-01-16,7.4,0.8,2.8,1.1,0/6/0,972.1,969.2,970.5,8.0,,,3.0,340.0,,,NW,0.5,0,0,10.0
-2001-01-17,4.0,-0.5,0.4,1.3,0/6/0,979.8,972.1,977.1,24.0,,,12.0,270.0,,,W,4.6,T,0,10.0
-2001-01-18,6.1,-1.6,2.2,1.7,0/6/0,989.6,979.8,984.3,10.0,,,5.0,10.0,,,SW,T,T,0,6.0
-2001-01-19,7.4,1.4,3.4,2.1,0/6/0,993.2,989.6,992.0,12.0,,,6.0,240.0,,,SW,0.0,0,0,9.0
-2001-01-20,5.7,1.2,2.8,1.9,0/6/0,990.8,983.9,985.4,9.0,,,2.0,330.0,,,NW,2.3,0,0,10.0
-2001-01-21,6.0,1.3,2.5,1.7,0/6/0,990.9,986.2,989.3,12.0,,,1.0,130.0,,,SE,1.6,0,0,10.0
-2001-01-22,6.0,0.9,2.5,1.7,0/6/0,990.3,983.7,987.3,20.0,,,3.0,120.0,,,SE,0.2,0,0,10.0
-2001-01-23,6.3,1.3,2.8,2.0,0/6/0,983.7,976.7,978.4,27.0,,,4.0,10.0,,,N,1.2,0,0,10.0
-2001-01-24,5.4,1.3,2.8,1.7,0/6/0,983.5,979.4,981.3,26.0,,,5.0,350.0,,,SE,5.0,0,0,10.0
-2001-01-25,8.5,-0.3,2.6,1.6,0/6/0,984.9,983.5,984.4,13.0,,,3.0,150.0,,,SE,0.0,0,0,6.0
-2001-01-26,7.0,0.2,2.2,1.9,0/6/0,986.1,984.1,985.2,14.0,,,4.0,10.0,,,N,0.0,0,0,7.0
-2001-01-27,5.0,1.3,2.3,2.0,0/6/0,986.5,986.1,986.4,13.0,,,4.0,310.0,,,NE,0.0,0,0,10.0
-2001-01-28,6.3,0.8,3.0,2.0,0/6/0,986.1,982.6,983.0,23.0,,,6.0,60.0,,,E,T,T,0,10.0
-2001-01-29,7.9,0.7,2.9,1.9,0/6/0,984.1,982.1,982.9,28.0,,,6.0,30.0,,,NE,0.5,0,0,7.0
-2001-01-30,7.5,0.2,3.2,2.1,0/6/0,984.4,973.0,976.5,17.0,,,3.0,110.0,,,SE,0.0,0,0,8.0
-2001-01-31,4.3,0.4,1.8,2.2,0/6/0,980.5,973.8,977.2,24.0,,,5.0,20.0,,,E,0.5,T,0,10.0
-2001-02-01,6.1,0.3,2.7,2.2,0/6/0,986.4,980.5,983.4,21.0,,,4.0,30.0,,,N,0.2,0,0,10.0
-2001-02-02,7.1,0.9,2.8,1.7,0/6/0,991.4,986.4,990.0,14.0,,,4.0,150.0,,,E,T,0,0,9.0
-2001-02-03,7.7,-0.2,3.6,2.2,0/6/0,991.1,989.1,990.2,20.0,,,10.0,110.0,,,E,0.0,0,0,7.0
-2001-02-04,6.6,1.9,3.4,2.2,0/6/0,989.1,985.0,986.4,39.0,,,16.0,110.0,,,E,0.0,0,0,10.0
-2001-02-05,5.4,0.9,2.6,2.0,0/6/0,987.0,984.1,985.5,32.0,,,15.0,100.0,,,E,0.0,0,0,10.0
-2001-02-06,7.0,1.0,2.6,2.0,0/6/0,991.2,987.0,988.8,22.0,,,4.0,60.0,,,NE,0.0,0,0,10.0
-2001-02-07,6.0,-0.2,1.7,1.9,0/6/0,994.8,991.2,994.2,28.0,,,8.0,10.0,,,NE,T,0,0,10.0
-2001-02-08,6.0,-0.3,2.2,1.7,0/6/0,993.1,985.3,988.2,35.0,,,17.0,140.0,,,E,0.5,0,0,10.0
-2001-02-09,6.5,1.2,3.4,1.5,0/6/0,986.4,984.5,985.6,32.0,,,7.0,130.0,,,SE,3.8,0,0,10.0
-2001-02-10,8.4,0.3,3.0,1.2,0/6/0,986.5,971.6,978.1,31.0,,,7.0,90.0,,,E,0.0,0,0,10.0
-2001-02-11,7.8,2.6,4.3,1.8,0/6/0,971.6,965.9,967.8,22.0,,,10.0,80.0,,,E,0.0,0,0,8.0
-2001-02-12,4.6,0.8,1.8,1.5,0/6/0,969.8,964.7,966.5,12.0,,,5.0,330.0,,,N,T,T,0,10.0
-2001-02-13,5.9,0.4,1.7,1.5,0/6/0,978.2,969.8,973.2,13.0,,,3.0,90.0,,,E,0.7,T,0,10.0
-2001-02-14,6.1,-0.6,2.9,1.3,0/6/0,981.8,977.7,979.6,34.0,,,9.0,60.0,,,NE,T,0,0,7.0
-2001-02-15,4.5,-0.3,1.8,1.0,0/6/0,984.8,978.1,983.0,24.0,,,4.0,120.0,,,NW,5.8,1,0,9.0
-2001-02-16,5.9,0.2,2.7,1.6,0/6/0,984.1,979.0,980.1,8.0,,,2.0,20.0,,,S,0.0,0,0,5.0
-2001-02-17,5.1,-0.2,1.5,1.6,0/6/0,985.2,979.0,981.5,17.0,,,5.0,130.0,,,NE,0.0,0,0,8.0
-2001-02-18,3.7,-2.5,0.8,1.1,0/6/0,994.3,985.2,991.4,15.0,,,5.0,90.0,,,E,0.0,0,0,9.0
-2001-02-19,5.4,-2.4,1.1,1.7,0/6/0,996.9,994.3,996.2,16.0,,,7.0,20.0,,,NE,0.0,0,0,7.0
-2001-02-20,6.5,0.7,3.5,1.5,0/6/0,996.0,989.0,991.8,32.0,,,9.0,70.0,,,E,T,T,0,8.0
-2001-02-21,8.0,-0.7,3.2,2.0,0/6/0,989.6,987.2,988.0,27.0,,,7.0,70.0,,,E,0.0,0,0,4.0
-2001-02-22,4.9,-0.8,1.4,2.0,0/6/0,994.8,987.9,991.9,16.0,,,5.0,60.0,,,NE,0.0,0,0,3.0
-2001-02-23,4.6,-0.8,1.7,1.9,0/6/0,998.9,994.8,996.9,20.0,,,9.0,250.0,,,SW,T,T,0,7.0
-2001-02-24,2.6,0.5,1.6,1.8,0/6/0,1001.7,998.9,1000.6,22.0,,,10.0,210.0,,,SW,0.0,0,0,10.0
-2001-02-25,6.4,0.2,3.4,1.8,0/6/0,1000.6,990.3,997.0,26.0,,,9.0,70.0,,,E,1.1,1,0,9.0
-2001-02-26,8.7,3.3,5.2,2.2,0/6/0,990.3,978.2,980.9,42.0,,,16.0,20.0,,,E,T,0,0,9.0
-2001-02-27,6.0,2.6,4.4,2.0,0/6/0,982.8,979.1,980.7,46.0,,,18.0,30.0,,,N,9.3,0,0,10.0
-2001-02-28,6.1,0.3,3.3,1.9,0/6/0,982.4,979.3,981.2,40.0,,,8.0,30.0,,,N,10.2,0,0,9.0
-2001-03-01,7.0,2.5,3.8,2.1,0/6/0,980.0,974.6,977.3,39.0,,,15.0,20.0,,,N,1.7,0,0,9.0
-2001-03-02,3.9,0.4,2.2,1.9,0/6/0,977.2,972.8,974.7,18.0,,,5.0,20.0,,,NW,T,0,0,9.0
-2001-03-03,3.4,1.1,1.8,1.2,0/6/0,988.5,977.2,985.0,15.0,,,7.0,230.0,,,SW,T,T,0,10.0
-2001-03-04,2.6,-0.6,1.1,1.7,0/6/0,988.5,984.0,985.6,7.0,,,1.0,10.0,,,NW,0.2,T,0,7.0
-2001-03-05,3.0,-0.9,1.2,1.0,0/6/0,984.0,980.4,981.5,25.0,,,6.0,60.0,,,NE,0.0,0,0,9.0
-2001-03-06,5.1,0.8,2.3,1.8,0/6/0,982.6,981.4,982.1,27.0,,,10.0,30.0,,,NE,0.0,0,0,8.0
-2001-03-07,5.1,0.7,1.9,2.0,0/6/0,986.1,981.6,984.1,28.0,,,13.0,40.0,,,NE,0.0,0,0,9.0
-2001-03-08,2.8,-1.2,1.0,2.2,0/6/0,985.2,982.7,983.4,32.0,,,14.0,90.0,,,E,0.0,0,0,10.0
-2001-03-09,2.7,0.0,1.5,2.0,0/6/0,987.2,984.0,986.3,30.0,,,9.0,80.0,,,E,0.0,0,0,10.0
-2001-03-10,3.6,-1.6,1.0,2.0,0/6/0,988.9,986.2,987.4,10.0,,,3.0,270.0,,,NE,0.0,0,0,10.0
-2001-03-11,1.7,-2.1,0.1,1.6,0/6/0,989.3,984.1,986.6,39.0,,,13.0,10.0,,,N,1.3,2,0,9.0
-2001-03-12,2.2,0.8,2.0,1.4,0/6/0,990.5,983.9,986.3,38.0,,,16.0,360.0,,,N,3.7,T,0,10.0
-2001-03-13,5.2,0.5,2.7,1.6,0/6/0,994.1,984.1,990.4,38.0,,,17.0,30.0,,,N,1.0,T,0,10.0
-2001-03-14,6.2,2.1,4.3,1.9,0/6/0,984.1,966.2,972.1,46.0,,,23.0,50.0,,,NE,1.9,0,0,9.0
-2001-03-15,3.8,0.4,1.6,1.1,0/5/0,976.0,963.2,970.6,40.0,,,18.0,20.0,,,N,10.9,T,0,10.0
-2001-03-16,5.7,1.4,3.5,1.8,0/5/0,975.8,969.8,973.0,48.0,,,20.0,30.0,,,N,8.3,0,0,9.0
-2001-03-17,6.2,1.5,3.2,1.7,0/5/0,972.5,967.2,969.4,40.0,,,17.0,30.0,,,E,2.9,0,0,10.0
-2001-03-18,2.5,0.4,1.2,1.6,0/5/0,984.0,971.0,980.0,17.0,,,6.0,330.0,,,SW,0.1,0,0,8.0
-2001-03-19,3.9,-0.6,0.4,1.4,0/5/0,993.1,984.0,987.5,21.0,,,7.0,220.0,,,SW,0.0,0,0,7.0
-2001-03-20,3.2,-0.9,1.1,1.5,0/5/0,1005.8,993.1,1001.4,17.0,,,8.0,210.0,,,SW,0.0,0,0,8.0
-2001-03-21,1.5,0.5,1.2,0.9,0/5/0,1008.5,1004.8,1007.0,16.0,,,8.0,270.0,,,W,1.1,0,0,10.0
-2001-03-22,3.0,0.2,1.2,1.1,0/5/0,1004.8,986.9,992.1,16.0,,,6.0,40.0,,,NW,2.4,T,0,10.0
-2001-03-23,2.2,0.1,0.9,-0.6,0/5/0,1000.0,989.1,998.0,23.0,,,7.0,350.0,,,NW,0.7,T,0,10.0
-2001-03-24,4.2,-0.7,1.3,0.6,0/5/0,998.5,972.0,982.5,53.0,,,8.0,60.0,,,NE,T,T,0,10.0
-2001-03-25,4.1,0.5,2.1,1.6,0/5/0,980.6,969.2,974.8,51.0,,,15.0,70.0,,,E,0.7,T,0,10.0
-2001-03-26,3.4,0.8,1.8,1.5,0/5/0,987.8,980.6,985.0,44.0,,,19.0,30.0,,,N,0.0,0,0,10.0
-2001-03-27,4.7,1.0,2.8,,0/5/0,982.0,964.5,968.0,60.0,,,35.0,30.0,,,NE,12.1,T,0,10.0
-2001-03-28,3.0,0.5,1.9,,0/5/0,967.0,958.8,961.8,47.0,,,20.0,360.0,,,N,17.1,T,0,10.0
-2001-03-29,1.6,-1.5,0.1,,0/4/0,979.5,961.8,974.6,20.0,,,3.0,10.0,,,N,4.7,5,0,9.0
-2001-03-30,0.8,-1.6,-1.0,,0/5/0,989.8,979.5,987.6,14.0,,,6.0,360.0,,,NW,3.8,8,13,10.0
-2001-03-31,1.0,-1.9,0.0,,0/5/0,993.1,989.8,991.6,25.0,,,12.0,320.0,,,N,1.9,4,14,8.0
-2001-04-01,-0.5,-2.5,-1.1,,0/4/0,995.0,993.1,993.8,28.0,,,12.0,220.0,,,SW,1.6,2,14,10.0
-2001-04-02,-0.3,-1.8,-0.7,,0/5/0,1002.6,994.5,998.2,23.0,,,9.0,210.0,,,SW,0.1,1,14,10.0
-2001-04-03,0.0,-2.2,-0.8,0.4,0/5/0,1003.5,992.0,998.6,15.0,,,4.0,30.0,,,SW,0.2,T,12,10.0
-2001-04-04,-1.4,-2.0,-1.6,0.9,0/5/0,992.0,984.1,985.6,19.0,,,5.0,120.0,,,SE,0.0,0,11,10.0
-2001-04-05,1.1,-2.3,-0.8,1.1,0/5/0,985.7,983.2,984.6,12.0,,,2.0,160.0,,,SE,T,T,10,10.0
-2001-04-06,2.0,-2.3,0.1,1.1,0/5/0,985.7,966.0,974.4,24.0,,,5.0,70.0,,,E,0.2,T,10,10.0
-2001-04-07,0.8,-0.5,0.1,1.0,0/5/0,987.8,969.0,982.6,22.0,,,12.0,180.0,,,W,2.9,3,13,10.0
-2001-04-08,0.6,-2.7,-0.2,0.6,0/5/0,990.8,975.0,985.6,33.0,,,10.0,90.0,,,SW,0.5,1,16,10.0
-2001-04-09,5.0,-1.4,0.8,1.2,0/5/0,975.0,962.5,965.6,48.0,,,22.0,70.0,,,E,6.6,3,16,10.0
-2001-04-10,0.0,-4.7,-1.9,1.0,0/5/0,980.8,968.0,975.9,34.0,,,12.0,60.0,,,E,0.0,0,15,9.0
-2001-04-11,-1.0,-4.8,-3.1,0.7,0/5/0,981.5,980.8,981.2,22.0,,,5.0,110.0,,,E,0.0,0,14,7.0
-2001-04-12,-1.8,-4.5,-3.0,0.5,0/5/0,982.0,979.9,980.9,17.0,,,4.0,270.0,,,E,5.6,11,18,10.0
-2001-04-13,-2.0,-5.0,-3.2,-0.4,0/5/0,994.5,982.0,987.8,24.0,,,11.0,360.0,,,N,2.4,6,30,10.0
-2001-04-14,-1.7,-4.9,-2.9,-0.1,0/5/0,998.5,994.5,997.7,22.0,,,9.0,360.0,,,N,0.0,0,25,10.0
-2001-04-15,3.5,-4.8,0.2,0.7,0/5/0,997.5,975.8,986.8,42.0,,,19.0,30.0,,,NE,0.8,0,23,10.0
-2001-04-16,3.3,-0.5,0.8,0.7,0/5/0,975.8,968.0,970.4,40.0,,,11.0,30.0,,,E,5.8,T,10,10.0
-2001-04-17,0.7,-1.1,-0.3,0.4,0/4/0,992.0,971.0,983.3,21.0,,,6.0,230.0,,,SW,1.3,1,11,10.0
-2001-04-18,2.0,-2.4,-0.4,0.4,0/5/0,994.1,984.7,990.4,52.0,,,10.0,30.0,,,SE,1.4,T,12,10.0
-2001-04-19,3.2,1.0,2.2,0.7,0/5/0,985.0,975.5,977.5,46.0,,,26.0,20.0,,,N,7.7,0,0,10.0
-2001-04-20,3.3,-0.5,2.1,0.8,0/5/0,976.2,962.0,966.5,52.0,,,24.0,360.0,,,N,12.7,T,0,9.0
-2001-04-21,0.1,-4.0,-2.3,0.4,0/5/0,974.0,964.9,971.5,37.0,,,17.0,330.0,,,W,2.1,1,9,10.0
-2001-04-22,-1.2,-5.2,-2.9,-0.3,0/5/0,978.9,974.0,975.8,42.0,,,20.0,330.0,,,SW,3.3,2,14,10.0
-2001-04-23,-3.2,-4.8,-3.9,-0.3,0/5/0,988.1,978.9,985.1,23.0,,,12.0,210.0,,,SW,0.0,0,15,8.0
-2001-04-24,-3.8,-5.4,-4.3,-0.3,0/5/0,987.2,983.2,984.3,14.0,,,5.0,230.0,,,NE,0.0,0,12,10.0
-2001-04-25,-3.2,-6.2,-4.9,-0.6,0/5/0,987.0,985.0,986.2,26.0,,,15.0,10.0,,,N,T,T,12,10.0
-2001-04-26,-2.2,-6.4,-4.8,-0.4,0/5/0,989.2,986.7,988.2,36.0,,,13.0,270.0,,,N,3.7,3,12,10.0
-2001-04-27,-2.0,-7.4,-4.9,-0.3,0/5/0,995.0,989.2,993.2,16.0,,,6.0,230.0,,,SW,0.8,1,17,5.0
-2001-04-28,-1.6,-4.1,-2.8,0.0,0/5/0,991.1,982.5,985.5,18.0,,,4.0,230.0,,,NE,0.2,T,17,8.0
-2001-04-29,0.7,-3.3,-0.8,0.0,0/5/0,982.5,970.0,973.2,48.0,,,16.0,30.0,,,SW,5.0,5,21,10.0
-2001-04-30,-0.2,-2.3,-1.3,-0.6,0/5/0,985.0,977.3,982.0,66.0,,,18.0,20.0,,,N,3.1,4,26,10.0
-2001-05-01,1.2,-2.1,-0.1,0.1,0/5/0,978.8,968.5,972.5,50.0,,,26.0,360.0,,,W,1.7,T,19,10.0
-2001-05-02,0.5,-2.5,-0.7,-0.3,0/5/0,989.9,973.8,984.0,44.0,,,21.0,260.0,,,W,4.3,3,24,10.0
-2001-05-03,1.1,-1.4,0.0,-0.7,0/5/0,995.0,989.5,992.5,32.0,,,15.0,20.0,,,W,0.2,T,26,10.0
-2001-05-04,1.6,0.1,1.4,-0.3,0/5/0,996.0,990.0,993.3,30.0,,,14.0,10.0,,,N,1.1,T,23,10.0
-2001-05-05,1.7,-1.0,0.4,-0.3,0/4/0,1008.1,991.5,1000.6,53.0,,,21.0,350.0,,,N,4.1,T,22,10.0
-2001-05-06,2.3,-1.8,0.9,0.0,0/5/0,1010.0,1003.2,1006.8,38.0,,,12.0,30.0,,,N,0.0,0,20,10.0
-2001-05-07,1.4,-1.2,-0.1,-0.3,0/5/0,1015.1,1002.5,1008.7,16.0,,,2.0,40.0,,,NE,1.4,0,20,9.0
-2001-05-08,2.5,-1.0,0.1,-0.1,0/5/0,1021.2,1015.1,1020.0,28.0,,,5.0,20.0,,,SE,0.0,0,20,9.0
-2001-05-09,1.3,-2.5,-0.8,-0.8,0/5/0,1021.0,1019.4,1020.1,24.0,,,5.0,90.0,,,E,1.8,1,20,10.0
-2001-05-10,0.3,-2.5,-1.4,-0.4,0/8/0,1020.0,1016.8,1018.5,15.0,,,3.0,140.0,,,SE,3.2,0,21,10.0
-2001-05-11,0.5,-2.6,0.0,-0.2,0/5/0,1016.8,1012.6,1013.4,14.0,,,1.0,110.0,,,SE,0.5,T,21,10.0
-2001-05-12,1.2,-1.7,0.4,-0.3,0/5/0,1016.7,1013.5,1015.5,13.0,,,4.0,130.0,,,SE,0.6,0,20,10.0
-2001-05-13,5.3,-0.3,3.0,-0.3,0/5/0,1015.5,1010.0,1012.1,42.0,,,19.0,360.0,,,N,3.2,0,14,10.0
-2001-05-14,3.7,0.4,2.2,0.0,0/5/0,1016.7,1013.5,1015.5,34.0,,,16.0,10.0,,,N,0.1,0,10,10.0
-2001-05-15,5.3,0.3,4.6,0.2,0/5/0,1015.6,1011.5,1012.5,48.0,,,24.0,20.0,,,N,0.0,0,0,10.0
-2001-05-16,4.8,2.0,3.9,0.3,0/4/0,1011.5,1005.0,1007.6,42.0,,,27.0,20.0,,,N,0.0,0,0,10.0
-2001-05-17,4.3,-0.5,1.6,0.2,0/5/0,1005.5,994.5,998.8,42.0,,,14.0,30.0,,,E,0.0,0,0,9.0
-2001-05-18,4.7,1.0,2.6,-0.1,0/5/0,994.5,988.0,990.1,30.0,,,10.0,80.0,,,E,0.0,0,0,10.0
-2001-05-19,5.0,-0.8,1.4,0.0,0/5/0,992.0,982.5,987.7,33.0,,,10.0,60.0,,,NE,0.0,0,0,9.0
-2001-05-20,3.9,-1.8,1.0,0.2,0/4/0,982.7,974.0,978.7,47.0,,,22.0,130.0,,,E,0.2,T,0,10.0
-2001-05-21,4.1,-0.5,0.4,0.1,0/4/0,990.7,982.5,988.8,29.0,,,13.0,110.0,,,E,0.0,0,0,10.0
-2001-05-22,1.4,-1.8,-0.8,-0.4,0/4/0,990.5,978.9,982.0,19.0,,,5.0,40.0,,,NW,1.0,2,0,10.0
-2001-05-23,-0.7,-4.5,-2.9,-0.5,0/4/0,979.2,974.6,976.8,15.0,,,7.0,110.0,,,E,3.0,3,4,10.0
-2001-05-24,-1.5,-4.0,-2.5,-0.5,0/5/0,980.5,975.0,978.2,9.0,,,2.0,20.0,,,NE,0.5,1,4,5.0
-2001-05-25,-2.9,-5.6,-3.8,-1.1,0/5/0,984.1,980.5,982.7,14.0,,,5.0,350.0,,,NE,0.0,0,4,9.0
-2001-05-26,-2.2,-5.9,-2.8,-1.2,0/5/0,986.9,982.0,984.1,13.0,,,5.0,260.0,,,NE,T,T,4,10.0
-2001-05-27,-1.9,-3.4,-2.8,-1.5,0/5/0,987.2,979.8,983.8,14.0,,,5.0,360.0,,,E,T,T,4,10.0
-2001-05-28,0.5,-3.4,0.2,-0.3,0/4/0,979.8,967.2,971.6,51.0,,,23.0,30.0,,,N,2.6,T,7,10.0
-2001-05-29,0.1,-2.8,-1.8,-0.7,0/5/0,969.9,967.0,968.4,38.0,,,16.0,360.0,,,NW,3.5,2,18,10.0
-2001-05-30,-1.8,-3.8,-3.2,-0.7,0/5/0,967.4,963.2,964.3,23.0,,,12.0,240.0,,,SW,1.2,1,18,10.0
-2001-05-31,-2.3,-7.5,-5.6,-1.2,0/5/0,971.4,965.0,969.2,22.0,,,13.0,230.0,,,N,0.1,T,16,9.0
-2001-06-01,-4.2,-7.4,-5.8,-0.6,0/5/0,978.5,971.4,976.0,21.0,,,9.0,50.0,,,NE,0.0,0,16,9.0
-2001-06-02,-2.5,-7.0,-3.6,-0.9,0/4/0,978.9,971.8,974.2,31.0,,,12.0,120.0,,,E,T,T,16,10.0
-2001-06-03,-2.3,-8.8,-7.2,-0.6,0/4/0,982.1,975.0,979.3,26.0,,,10.0,110.0,,,E,0.6,T,15,9.0
-2001-06-04,-4.2,-8.7,-5.9,-0.9,0/5/0,982.2,980.9,981.4,18.0,,,5.0,230.0,,,NE,T,T,14,10.0
-2001-06-05,-5.6,-8.5,-6.3,-1.1,0/6/0,985.5,980.9,983.5,9.0,,,5.0,30.0,,,NE,0.0,0,14,7.0
-2001-06-06,-4.8,-8.2,-7.0,-1.1,0/6/0,988.5,983.1,985.9,22.0,,,11.0,110.0,,,N,0.0,0,14,1.0
-2001-06-07,-4.5,-8.3,-5.4,-0.9,0/6/0,989.5,987.9,988.7,15.0,,,7.0,20.0,,,NE,T,T,14,9.0
-2001-06-08,-4.5,-7.7,-5.8,-1.0,0/6/0,993.1,989.5,991.8,23.0,,,10.0,20.0,,,NE,0.0,0,13,9.0
-2001-06-09,-3.2,-8.2,-4.9,-0.7,0/6/0,993.0,988.5,989.4,28.0,,,13.0,110.0,,,E,1.3,1,14,10.0
-2001-06-10,-2.8,-5.8,-3.8,-0.8,0/6/0,995.3,988.8,993.1,19.0,,,5.0,40.0,,,N,0.6,T,14,10.0
-2001-06-11,-0.2,-4.5,-2.8,-0.6,0/6/0,995.4,986.0,990.1,33.0,,,9.0,90.0,,,E,3.6,5,16,10.0
-2001-06-12,0.3,-5.0,-2.1,-0.6,0/4/0,996.0,990.0,994.3,54.0,,,15.0,20.0,,,N,0.8,T,20,10.0
-2001-06-13,0.0,-2.2,-1.3,-0.7,0/5/0,996.0,975.0,985.5,47.0,,,21.0,20.0,,,N,1.9,1,25,10.0
-2001-06-14,0.1,-2.4,-1.6,-0.9,0/6/0,1008.6,989.9,1004.5,39.0,,,16.0,210.0,,,SW,1.6,1,25,10.0
-2001-06-15,0.8,-2.4,-0.9,-0.6,0/6/0,1007.7,995.9,998.8,39.0,,,13.0,10.0,,,N,1.4,1,26,10.0
-2001-06-16,-0.3,-3.2,-2.0,-1.1,0/6/0,1012.5,1003.0,1010.6,38.0,,,12.0,330.0,,,SW,1.5,T,28,10.0
-2001-06-17,-0.9,-5.0,-3.6,-1.3,0/5/0,1008.0,1000.6,1005.2,32.0,,,13.0,240.0,,,SW,0.2,T,27,10.0
-2001-06-18,-2.5,-6.0,-4.0,-0.6,0/6/0,1000.6,974.0,981.4,37.0,,,9.0,70.0,,,E,1.6,T,27,10.0
-2001-06-19,-1.2,-5.9,-3.2,-1.0,0/6/0,981.1,966.6,974.8,59.0,,,19.0,230.0,,,SW,1.1,T,27,10.0
-2001-06-20,-3.6,-8.7,-4.6,-1.4,0/5/0,995.6,972.2,987.9,49.0,,,22.0,220.0,,,SW,0.1,T,25,9.0
-2001-06-21,-1.5,-10.9,-5.8,-1.6,0/6/0,994.7,977.8,982.4,53.0,,,25.0,10.0,,,SW,2.1,T,26,10.0
-2001-06-22,-6.2,-12.5,-9.4,-1.1,0/6/0,1011.6,991.3,1008.7,55.0,,,13.0,80.0,,,E,1.5,T,25,9.0
-2001-06-23,-3.9,-8.9,-5.8,-1.4,0/5/0,1011.5,1008.0,1010.4,14.0,,,7.0,20.0,,,N,0.0,0,24,10.0
-2001-06-24,-3.3,-5.1,-4.4,-1.3,0/5/0,1008.0,993.5,999.4,12.0,,,4.0,300.0,,,N,0.1,T,24,10.0
-2001-06-25,-4.8,-8.1,-6.8,-1.4,0/5/0,993.5,985.2,987.7,12.0,,,5.0,10.0,,,NE,0.7,T,24,10.0
-2001-06-26,-1.2,-6.7,-2.5,-1.3,0/5/0,987.0,980.3,984.1,37.0,,,16.0,250.0,,,SW,2.5,2,30,10.0
-2001-06-27,-1.6,-7.5,-5.0,-1.5,0/5/0,984.3,978.2,982.0,31.0,,,8.0,210.0,,,SW,T,T,28,10.0
-2001-06-28,-3.2,-7.6,-4.6,-1.4,0/5/0,978.6,972.2,973.9,9.0,,,2.0,120.0,,,NE,0.0,0,28,10.0
-2001-06-29,2.7,-5.2,-1.5,-1.5,0/5/0,985.7,976.8,984.3,46.0,,,10.0,10.0,,,N,T,T,27,10.0
-2001-06-30,2.7,-1.4,0.4,-1.1,0/5/0,987.1,985.1,986.4,33.0,,,10.0,10.0,,,N,2.4,T,24,9.0
-2001-07-01,-0.6,-5.9,-3.6,-1.2,0/5/0,985.1,977.7,978.8,24.0,,,9.0,110.0,,,E,2.9,4,23,10.0
-2001-07-02,-4.6,-7.4,-5.9,-1.2,0/5/0,978.1,973.9,975.1,19.0,,,9.0,110.0,,,E,0.1,T,26,10.0
-2001-07-03,-4.1,-7.2,-5.3,-1.3,0/5/0,980.0,974.7,978.0,14.0,,,5.0,10.0,,,NE,0.0,0,25,10.0
-2001-07-04,-2.9,-5.2,-4.1,-1.5,0/4/0,981.9,980.0,981.3,26.0,,,13.0,210.0,,,SW,0.0,0,25,10.0
-2001-07-05,-4.0,-7.6,-5.2,-1.5,0/5/0,981.9,976.9,979.6,19.0,,,7.0,50.0,,,SW,0.1,T,24,10.0
-2001-07-06,-3.9,-12.9,-11.7,-1.6,0/4/0,988.3,977.8,985.2,34.0,,,13.0,240.0,,,SW,0.2,T,23,10.0
-2001-07-07,-6.7,-12.8,-8.8,-1.8,0/4/0,998.5,981.0,990.8,36.0,,,11.0,160.0,,,SW,2.0,3,24,9.0
-2001-07-08,-1.0,-7.2,-3.4,-1.7,0/5/0,1005.4,998.5,1002.6,22.0,,,9.0,290.0,,,W,0.7,T,24,10.0
-2001-07-09,-1.5,-12.9,-9.0,-1.8,0/5/0,1001.8,991.6,998.7,54.0,,,24.0,210.0,,,SW,0.6,T,25,10.0
-2001-07-10,-8.5,-13.0,-10.2,-1.7,0/5/0,1005.0,1000.8,1004.3,42.0,,,10.0,190.0,,,E,0.0,0,26,0.0
-2001-07-11,-4.0,-10.9,-5.8,-1.8,0/4/0,1005.5,1003.5,1004.3,16.0,,,5.0,230.0,,,SW,0.0,0,25,9.0
-2001-07-12,-2.2,-5.1,-3.7,-1.7,0/5/0,1003.8,993.2,998.7,20.0,,,12.0,240.0,,,SW,0.5,1,25,10.0
-2001-07-13,-2.6,-5.4,-4.6,-1.8,0/5/0,993.2,990.5,992.2,20.0,,,11.0,230.0,,,SW,1.1,T,26,10.0
-2001-07-14,-3.7,-8.9,-6.3,-1.8,0/6/0,995.2,988.4,991.0,23.0,,,5.0,10.0,,,NE,0.2,T,26,0.0
-2001-07-15,-2.7,-8.5,-6.0,-1.7,0/6/0,996.6,988.9,992.5,32.0,,,10.0,10.0,,,N,3.6,8,35,10.0
-2001-07-16,-5.3,-9.4,-7.4,-1.5,0/6/0,999.9,988.8,992.9,31.0,,,8.0,60.0,,,E,1.5,T,33,10.0
-2001-07-17,-7.0,-11.5,-10.0,-1.4,0/6/0,1002.9,999.9,1001.8,20.0,,,10.0,90.0,,,E,0.0,0,30,8.0
-2001-07-18,-7.0,-11.8,-9.0,-1.4,0/5/0,1001.6,999.4,1000.9,16.0,,,6.0,260.0,,,SW,0.1,T,29,10.0
-2001-07-19,-8.4,-13.3,-10.6,-1.4,0/6/0,999.4,992.2,995.7,18.0,,,8.0,240.0,,,SW,0.4,T,30,10.0
-2001-07-20,-7.7,-13.6,-10.2,-1.6,0/7/0,1002.4,992.1,998.4,25.0,,,8.0,120.0,,,SW,0.7,1,29,10.0
-2001-07-21,-7.8,-10.5,-9.2,-1.7,0/6/0,1003.4,1002.1,1002.7,22.0,,,10.0,240.0,,,SW,0.6,T,31,10.0
-2001-07-22,-3.8,-8.6,-6.2,-1.6,0/8/0,1002.9,996.0,1000.0,15.0,,,6.0,110.0,,,NW,0.4,T,31,10.0
-2001-07-23,0.4,-3.8,-0.4,-1.6,20873,996.0,986.4,991.8,52.0,,,17.0,350.0,,,N,18.2,23,49,10.0
-2001-07-24,0.8,-2.3,-1.4,-1.7,20872,986.5,981.6,983.6,39.0,,,24.0,340.0,,,NW,0.7,T,47,10.0
-2001-07-25,-1.4,-6.4,-4.3,-1.7,20773,986.0,981.3,985.4,35.0,,,16.0,260.0,,,W,1.8,4,48,10.0
-2001-07-26,-5.9,-9.4,-8.1,-1.7,30673,999.3,984.8,993.1,29.0,,,14.0,210.0,,,SW,0.3,T,45,10.0
-2001-07-27,-6.5,-9.9,-8.3,-1.7,40873,1000.5,997.9,999.4,25.0,,,11.0,230.0,,,SW,0.2,T,45,10.0
-2001-07-28,-6.2,-8.9,-7.0,-1.7,50873,1009.5,1000.5,1005.2,12.0,,,4.0,190.0,,,S,0.0,0,44,10.0
-2001-07-29,-7.7,-11.9,-11.0,-1.8,40772,1012.0,1009.5,1010.6,8.0,,,2.0,30.0,,,NE,0.0,0,43,3.0
-2001-07-30,-0.2,-11.5,-3.8,-1.7,40782,1009.7,990.9,999.5,41.0,,,8.0,40.0,,,NE,0.1,T,43,10.0
-2001-07-31,1.5,-1.5,-0.1,-1.7,40782,991.8,985.2,987.4,38.0,,,15.0,10.0,,,N,1.3,1,43,10.0
-2001-08-01,-0.2,-8.3,-5.1,-1.7,40781,995.3,988.7,991.9,28.0,,,11.0,320.0,,,NW,1.1,T,44,10.0
-2001-08-02,-6.2,-10.8,-8.6,-1.8,30781,996.8,992.7,995.0,12.0,,,3.0,210.0,,,NE,0.1,T,44,10.0
-2001-08-03,-1.5,-9.6,-2.9,-1.8,30782,992.7,987.9,989.2,22.0,,,5.0,260.0,,,NW,2.0,2,48,10.0
-2001-08-04,1.8,-3.2,0.2,-1.7,30782,990.5,980.3,985.1,35.0,,,17.0,360.0,,,N,13.8,3,50,10.0
-2001-08-05,2.2,-0.2,0.8,-1.7,30671,980.3,965.0,969.7,57.0,,,31.0,360.0,,,NW,5.3,T,44,10.0
-2001-08-06,0.5,-8.0,-5.0,-1.7,20681,971.3,964.0,968.2,32.0,,,13.0,240.0,,,NW,2.3,4,47,10.0
-2001-08-07,-4.5,-12.9,-8.2,-1.8,62613,983.9,967.1,973.0,20.0,,,8.0,220.0,,,W,2.7,2,47,10.0
-2001-08-08,-12.4,-15.6,-13.5,-1.8,62613,995.0,983.9,992.0,16.0,,,8.0,270.0,,,W,1.3,2,49,10.0
-2001-08-09,-1.0,-12.4,-3.6,-1.8,62613,996.1,985.8,991.9,44.0,,,13.0,340.0,,,NW,4.2,4,53,10.0
-2001-08-10,-0.3,-4.3,-2.2,-1.8,62613,993.6,984.1,989.1,38.0,,,18.0,340.0,,,NW,4.1,3,52,10.0
-2001-08-11,0.5,-0.5,-0.1,-1.8,62613,985.4,978.0,982.0,49.0,,,29.0,350.0,,,NW,6.0,T,71,10.0
-2001-08-12,0.2,-6.2,-2.0,-1.8,62612,978.0,965.0,969.4,55.0,,,27.0,350.0,,,N,5.3,1,69,10.0
-2001-08-13,-3.3,-10.9,-6.3,-1.8,62783,971.8,958.5,965.6,47.0,,,20.0,250.0,,,N,0.5,T,70,10.0
-2001-08-14,0.3,-12.0,-7.5,-1.8,62783,964.0,949.7,957.7,89.0,,,30.0,20.0,,,N,1.1,T,66,1.0
-2001-08-15,-5.5,-16.9,-11.0,-1.7,62681,957.0,945.2,952.2,33.0,,,12.0,340.0,,,N,11.9,19,74,10.0
-2001-08-16,-11.6,-16.8,-14.5,-1.7,62813,978.5,954.6,969.6,28.0,,,8.0,230.0,,,SW,0.1,T,91,10.0
-2001-08-17,-1.7,-17.6,-8.9,-1.8,32681,978.5,943.0,958.4,69.0,,,20.0,50.0,,,NE,3.5,2,64,10.0
-2001-08-18,0.5,-14.8,-3.9,-1.6,32781,976.8,962.8,970.2,47.0,,,18.0,310.0,,,NW,1.1,T,63,9.0
-2001-08-19,0.4,-4.4,-1.9,-1.7,22610,978.2,963.5,971.1,68.0,,,33.0,10.0,,,N,1.4,T,64,10.0
-2001-08-20,-3.0,-10.6,-6.5,-1.7,32641,981.8,946.5,968.2,80.0,,,22.0,80.0,,,E,5.7,T,64,7.0
-2001-08-21,-2.1,-4.0,-3.1,-1.5,327/1,951.6,947.3,950.3,52.0,,,18.0,30.0,,,N,0.7,T,62,9.0
-2001-08-22,-1.2,-6.7,-3.5,-1.6,226/0,960.0,944.6,950.4,37.0,,,22.0,320.0,,,N,0.9,T,62,10.0
-2001-08-23,-5.8,-11.0,-9.7,-1.8,226/0,969.2,960.0,967.1,25.0,,,7.0,220.0,,,SW,2.7,4,70,10.0
-2001-08-24,-9.1,-13.7,-12.3,-1.8,326/3,983.0,968.9,975.4,24.0,,,10.0,250.0,,,SW,0.7,T,68,10.0
-2001-08-25,-4.2,-14.0,-10.0,-1.8,426/3,995.6,983.0,992.6,25.0,,,7.0,70.0,,,SW,0.5,T,67,10.0
-2001-08-26,-0.5,-7.3,-2.5,-1.6,426/1,995.3,990.2,993.6,35.0,,,16.0,20.0,,,N,0.6,T,67,10.0
-2001-08-27,-2.2,-10.5,-4.7,-1.6,427/2,990.2,977.7,981.6,42.0,,,18.0,20.0,,,N,1.5,1,64,9.0
-2001-08-28,-1.8,-12.5,-8.7,-1.8,427/3,977.7,967.2,973.3,47.0,,,17.0,230.0,,,N,0.7,T,60,9.0
-2001-08-29,-4.0,-13.2,-9.1,-1.8,427/1,984.0,966.0,978.7,52.0,,,15.0,20.0,,,SE,1.5,T,60,10.0
-2001-08-30,0.2,-5.9,-0.4,-1.7,22681,986.0,981.0,984.1,54.0,,,30.0,10.0,,,N,1.2,T,60,10.0
-2001-08-31,0.8,-3.2,-1.0,-1.6,225/1,981.0,975.2,979.3,64.0,,,33.0,10.0,,,N,1.5,T,60,10.0
-2001-09-01,-0.5,-8.5,-3.2,-1.8,226/1,980.8,971.8,976.9,54.0,,,24.0,20.0,,,N,2.4,2,62,10.0
-2001-09-02,-7.8,-12.5,-11.2,-1.8,226/1,979.3,974.3,976.8,34.0,,,13.0,220.0,,,SW,0.6,T,61,10.0
-2001-09-03,-10.4,-14.0,-11.8,-1.7,526/3,995.8,979.3,990.9,40.0,,,17.0,220.0,,,SW,1.0,T,61,10.0
-2001-09-04,-0.1,-13.6,-5.6,-1.7,426/1,995.4,967.9,979.2,52.0,,,14.0,20.0,,,N,3.8,2,62,10.0
-2001-09-05,0.0,-3.2,-1.4,-1.8,426/3,985.7,964.7,977.2,51.0,,,21.0,360.0,,,NW,5.9,4,70,10.0
-2001-09-06,0.6,-2.9,-1.0,-1.8,426/3,986.8,980.8,984.2,41.0,,,15.0,330.0,,,NW,0.1,T,71,10.0
-2001-09-07,2.8,-0.8,1.3,-1.8,32681,980.8,969.5,973.0,52.0,,,30.0,10.0,,,N,7.2,T,68,10.0
-2001-09-08,0.8,-5.3,-1.6,-1.8,22681,972.2,963.3,966.3,70.0,,,29.0,10.0,,,N,3.1,3,69,10.0
-2001-09-09,-4.4,-12.6,-11.0,-1.7,527/3,974.0,967.5,970.6,21.0,,,6.0,250.0,,,NE,0.4,T,68,6.0
-2001-09-10,-8.0,-15.8,-13.6,-1.8,526/3,992.0,967.5,982.1,33.0,,,12.0,220.0,,,SW,0.7,T,67,10.0
-2001-09-11,-2.2,-15.0,-8.7,-1.8,526/3,992.1,979.0,985.7,38.0,,,14.0,220.0,,,NW,2.0,2,74,7.0
-2001-09-12,-9.5,-14.3,-12.2,-1.8,525/2,997.8,989.2,996.2,14.0,,,4.0,240.0,,,NW,T,T,74,9.0
-2001-09-13,-3.5,-11.5,-6.6,-1.8,525/2,997.0,988.3,990.2,16.0,,,5.0,130.0,,,SW,1.0,1,74,10.0
-2001-09-14,-5.2,-11.9,-9.9,-1.7,526/3,1006.0,988.8,998.2,19.0,,,8.0,240.0,,,W,0.5,T,74,10.0
-2001-09-15,-1.2,-11.8,-6.0,-1.8,526/2,1005.9,968.9,986.5,55.0,,,16.0,40.0,,,NE,1.4,T,67,10.0
-2001-09-16,-0.8,-8.3,-4.1,-1.8,526/2,998.8,970.2,990.2,31.0,,,10.0,250.0,,,SW,0.1,T,67,9.0
-2001-09-17,0.8,-8.8,-4.0,-1.8,526/2,1000.7,997.8,999.4,15.0,,,3.0,360.0,,,SE,T,T,67,7.0
-2001-09-18,1.5,-2.2,-0.8,-1.7,526/2,997.8,974.5,981.8,51.0,,,25.0,20.0,,,N,0.3,T,66,10.0
-2001-09-19,0.5,-4.5,-1.8,-1.7,326/1,984.5,977.1,980.9,61.0,,,27.0,30.0,,,N,0.5,T,66,9.0
-2001-09-20,3.5,-2.5,-0.3,-1.7,22681,978.3,957.1,965.2,65.0,,,29.0,30.0,,,NE,2.1,T,66,10.0
-2001-09-21,-2.1,-15.0,-9.0,-1.7,32683,985.3,960.8,974.7,53.0,,,23.0,10.0,,,W,2.1,2,66,10.0
-2001-09-22,-11.2,-14.8,-13.3,-1.7,527/3,997.4,985.3,994.5,33.0,,,11.0,240.0,,,SW,0.0,0,65,9.0
-2001-09-23,1.2,-13.0,-4.0,-1.8,517/2,997.8,984.5,993.2,35.0,,,10.0,10.0,,,SE,16.1,28,76,10.0
-2001-09-24,-0.2,-7.8,-4.4,-1.8,527/3,1007.7,983.3,999.2,46.0,,,14.0,230.0,,,SW,2.8,3,77,5.0
-2001-09-25,0.2,-4.5,-1.7,-1.8,526/2,1009.5,1005.0,1007.0,19.0,,,8.0,310.0,,,NW,3.1,1,76,10.0
-2001-09-26,0.0,-2.5,-1.6,-1.8,527/2,1005.0,1002.0,1003.2,20.0,,,7.0,70.0,,,NW,0.4,T,77,10.0
-2001-09-27,3.8,-2.5,0.2,-1.7,526/2,1003.8,1001.8,1002.6,29.0,,,12.0,30.0,,,N,6.2,5,81,10.0
-2001-09-28,3.8,-0.5,0.7,-1.7,526/1,1008.5,1002.6,1006.6,34.0,,,7.0,20.0,,,SE,0.4,T,74,9.0
-2001-09-29,1.5,-3.7,0.0,-1.7,526/2,1005.4,985.8,992.5,51.0,,,22.0,350.0,,,N,5.2,1,73,10.0
-2001-09-30,0.7,-9.0,-5.6,-1.7,526/2,991.1,978.7,983.6,35.0,,,6.0,350.0,,,N,18.3,19,99,10.0
-2001-10-01,0.5,-9.5,-1.7,-1.7,526/2,997.8,980.0,991.2,53.0,,,22.0,340.0,,,NW,11.8,14,92,10.0
-2001-10-02,0.4,-11.3,-5.9,-1.8,526/2,1001.6,965.2,982.8,60.0,,,25.0,330.0,,,NW,9.0,6,90,10.0
-2001-10-03,-5.8,-17.5,-10.6,-1.8,526/2,1007.5,1001.6,1005.8,12.0,,,2.0,120.0,,,NE,0.0,0,88,8.0
-2001-10-04,2.0,-7.5,0.4,-1.8,526/2,1003.0,992.2,995.2,44.0,,,23.0,10.0,,,N,6.6,6,87,10.0
-2001-10-05,1.8,-0.1,0.6,-1.8,526/2,992.4,981.2,984.9,39.0,,,22.0,350.0,,,N,7.5,11,88,10.0
-2001-10-06,2.7,-1.2,-0.1,-1.7,52692,1007.1,984.0,1002.0,30.0,,,8.0,30.0,,,N,0.4,2,85,10.0
-2001-10-07,5.0,-0.9,1.6,-1.7,52651,1005.8,981.8,991.2,59.0,,,29.0,20.0,,,N,8.0,T,78,9.0
-2001-10-08,1.2,-0.5,0.5,-1.7,526/1,990.0,979.4,985.1,54.0,,,26.0,10.0,,,N,8.1,2,72,10.0
-2001-10-09,2.0,-4.3,-1.1,-1.8,526/2,982.8,976.5,979.2,61.0,,,20.0,10.0,,,N,16.2,4,80,9.0
-2001-10-10,2.5,-4.0,-0.6,-1.8,526/1,977.5,954.9,960.1,75.0,,,25.0,30.0,,,NW,2.7,T,80,10.0
-2001-10-11,0.0,-3.2,-2.0,-1.8,526/2,982.5,962.0,974.2,38.0,,,23.0,330.0,,,NW,5.0,8,95,10.0
-2001-10-12,1.0,-2.9,-0.2,-1.7,526/2,981.3,973.5,976.9,51.0,,,27.0,10.0,,,NW,5.9,7,102,10.0
-2001-10-13,0.8,-4.5,-1.8,-1.7,52692,983.9,972.3,977.5,51.0,,,17.0,330.0,,,NW,2.5,1,97,10.0
-2001-10-14,0.6,-11.1,-4.2,-1.7,52652,998.8,982.9,993.0,57.0,,,16.0,20.0,,,NW,2.9,6,98,10.0
-2001-10-15,2.5,-0.5,0.6,-1.7,526/2,982.9,968.5,975.5,73.0,,,33.0,20.0,,,NW,6.6,3,99,10.0
-2001-10-16,2.8,0.0,0.9,-1.7,526/2,978.0,969.3,975.3,53.0,,,21.0,330.0,,,NW,1.8,2,97,10.0
-2001-10-17,0.0,-6.5,-2.5,-1.7,526/2,980.8,962.0,970.9,36.0,,,11.0,250.0,,,W,8.0,6,96,10.0
-2001-10-18,2.5,-8.9,-2.5,-1.7,526/2,981.1,970.6,975.5,35.0,,,10.0,20.0,,,E,0.2,T,94,10.0
-2001-10-19,1.3,-4.6,-1.5,-1.7,52652,973.3,962.2,969.5,55.0,,,11.0,40.0,,,NE,1.6,T,97,10.0
-2001-10-20,0.0,-3.2,-1.1,-1.7,526/2,962.2,954.7,956.5,66.0,,,25.0,20.0,,,N,4.9,5,97,10.0
-2001-10-21,-1.9,-8.7,-4.0,-1.7,52692,968.8,951.5,962.7,46.0,,,14.0,230.0,,,NW,4.4,5,95,10.0
-2001-10-22,1.2,-5.1,-2.1,-1.6,526/3,967.8,953.8,957.2,36.0,,,14.0,30.0,,,N,3.4,4,95,10.0
-2001-10-23,-2.2,-7.6,-5.6,-1.7,52692,964.2,956.2,961.9,21.0,,,5.0,240.0,,,NW,2.4,7,103,9.0
-2001-10-24,-4.5,-14.9,-10.1,-1.7,52793,982.7,964.2,975.6,15.0,,,2.0,330.0,,,NW,0.0,0,100,4.0
-2001-10-25,0.5,-10.5,-3.1,-1.7,52692,982.7,970.0,972.6,52.0,,,14.0,20.0,,,NW,2.7,T,97,10.0
-2001-10-26,-0.5,-4.2,-2.6,-1.7,52692,970.9,944.1,953.7,45.0,,,20.0,30.0,,,N,12.6,7,96,9.0
-2001-10-27,-3.1,-10.0,-6.0,-1.7,52692,980.8,943.3,964.0,28.0,,,10.0,240.0,,,SW,4.2,6,127,8.0
-2001-10-28,0.5,-9.0,-2.3,-1.7,526/3,982.8,966.0,973.7,43.0,,,17.0,350.0,,,N,72.9,36,167,10.0
-2001-10-29,0.2,-3.2,-1.6,-1.7,966/2,978.9,967.8,975.4,39.0,,,12.0,20.0,,,N,7.2,2,167,10.0
-2001-10-30,0.8,-2.1,-0.8,-1.7,966/7,977.0,970.0,973.5,50.0,,,23.0,10.0,,,NW,5.2,T,156,10.0
-2001-10-31,0.4,-2.0,-1.4,-1.7,86695,996.1,965.5,979.7,35.0,,,16.0,280.0,,,W,10.6,4,158,9.0
-2001-11-01,0.5,-7.5,-3.3,-1.7,96695,997.8,971.0,987.7,40.0,,,12.0,20.0,,,E,5.9,1,151,8.0
-2001-11-02,0.5,-2.5,-1.3,-1.7,96695,972.6,955.9,964.3,39.0,,,14.0,70.0,,,NW,8.0,12,157,10.0
-2001-11-03,0.8,-5.2,-1.6,-1.7,96694,971.8,964.6,968.1,52.0,,,14.0,30.0,,,N,15.6,8,159,9.0
-2001-11-04,0.5,-8.2,-2.9,-1.7,96695,981.2,970.0,975.8,32.0,,,14.0,20.0,,,N,3.9,1,161,7.0
-2001-11-05,1.8,-7.4,-3.3,-1.7,86691,985.0,981.0,982.2,29.0,,,9.0,30.0,,,NE,1.2,0,164,3.0
-2001-11-06,2.5,-10.5,-3.8,-1.7,86692,995.0,985.0,990.9,9.0,,,2.0,70.0,,,NE,0.0,0,161,2.0
-2001-11-07,1.0,-10.7,-5.4,-1.7,86792,997.2,994.5,996.1,12.0,,,2.0,250.0,,,W,0.0,0,160,7.0
-2001-11-08,2.4,-6.4,-2.4,-1.7,86691,994.5,979.4,983.7,16.0,,,4.0,140.0,,,E,0.0,0,158,8.0
-2001-11-09,2.3,-5.1,-1.5,-1.6,/////,979.4,974.5,977.2,18.0,,,3.0,70.0,,,E,0.0,0,156,10.0
-2001-11-10,2.0,-1.1,0.5,-1.7,66671,974.5,955.0,960.8,51.0,,,25.0,20.0,,,NW,8.0,1,156,10.0
-2001-11-11,1.7,-0.3,0.5,-1.6,36641,972.8,965.0,969.3,61.0,,,28.0,30.0,,,N,5.4,1,154,10.0
-2001-11-12,2.5,-0.1,1.1,-1.5,26450,972.3,964.0,969.6,67.0,,,27.0,20.0,,,N,13.6,T,148,10.0
-2001-11-13,3.0,-1.5,0.3,-1.5,46653,984.0,972.3,981.6,39.0,,,17.0,20.0,,,N,1.3,2,146,10.0
-2001-11-14,2.5,0.0,1.1,-1.2,26650,982.3,976.2,979.9,39.0,,,18.0,20.0,,,N,1.0,T,143,10.0
-2001-11-15,3.3,-1.8,-0.7,-1.5,46561,985.1,981.5,983.8,32.0,,,9.0,30.0,,,NW,0.2,T,142,10.0
-2001-11-16,2.8,-1.9,1.1,-1.2,26590,981.5,956.9,968.0,49.0,,,20.0,30.0,,,E,1.4,T,140,9.0
-2001-11-17,1.4,-3.0,-2.1,-1.6,26490,959.8,954.0,957.6,46.0,,,23.0,10.0,,,N,12.6,12,142,10.0
-2001-11-18,-1.2,-4.5,-3.0,-1.7,26490,966.3,959.0,962.7,22.0,,,10.0,350.0,,,N,5.3,7,146,10.0
-2001-11-19,1.0,-4.3,-2.7,-1.4,26490,969.5,966.3,968.3,34.0,,,10.0,10.0,,,N,2.2,3,150,7.0
-2001-11-20,2.5,-5.5,1.0,-0.9,2/690,968.5,956.7,961.0,37.0,,,15.0,100.0,,,E,T,0,147,9.0
-2001-11-21,1.7,-3.9,-0.7,-0.7,2/690,986.0,962.8,977.9,27.0,,,8.0,110.0,,,NW,0.0,0,145,6.0
-2001-11-22,0.3,-2.5,-1.7,-0.9,/////,996.2,986.0,993.3,12.0,,,5.0,250.0,,,SW,T,T,142,10.0
-2001-11-23,1.0,-3.0,-1.0,-1.3,564/2,995.9,991.1,993.5,24.0,,,8.0,360.0,,,N,2.4,T,142,9.0
-2001-11-24,3.8,-1.9,0.1,-1.0,264/0,991.1,977.4,982.0,38.0,,,11.0,110.0,,,N,0.9,T,143,10.0
-2001-11-25,3.5,-2.8,0.0,-1.2,/64/0,977.4,970.7,973.8,19.0,,,4.0,360.0,,,E,0.0,0,141,9.0
-2001-11-26,2.2,-4.0,-0.3,-0.9,2/690,972.5,967.0,969.1,37.0,,,13.0,30.0,,,N,0.0,0,138,7.0
-2001-11-27,5.5,-1.0,1.8,-0.7,2/690,968.8,948.9,952.5,54.0,,,21.0,30.0,,,NW,1.7,T,135,9.0
-2001-11-28,1.5,-1.0,-0.6,-1.1,2/690,982.5,948.9,970.1,29.0,,,18.0,350.0,,,NW,8.7,6,145,10.0
-2001-11-29,2.0,-2.1,0.3,-0.6,0/0//,982.6,950.3,959.7,48.0,,,25.0,30.0,,,N,12.7,2,141,10.0
-2001-11-30,0.9,-2.0,-1.3,-0.9,0/6/0,977.8,950.3,964.8,33.0,,,15.0,360.0,,,NW,16.0,12,149,10.0
-2001-12-01,1.0,-2.2,-0.7,-0.6,0/4/0,984.8,974.7,980.9,51.0,,,16.0,30.0,,,N,1.6,T,147,10.0
-2001-12-02,2.0,-0.8,0.6,-1.3,2/5/0,981.5,974.5,978.0,39.0,,,14.0,10.0,,,NW,2.1,2,145,10.0
-2001-12-03,3.4,0.5,1.0,-0.5,0/4/0,974.5,958.0,962.4,44.0,,,23.0,20.0,,,N,3.3,T,142,10.0
-2001-12-04,2.8,-0.1,0.7,-0.4,0/6/0,964.2,955.2,958.7,39.0,,,10.0,340.0,,,N,5.2,2,141,10.0
-2001-12-05,3.5,-2.4,-0.3,-0.3,0/6/0,971.5,960.3,969.0,27.0,,,8.0,240.0,,,SW,4.3,5,140,8.0
-2001-12-06,3.0,-1.5,-0.1,-0.4,2/5/0,988.2,971.5,979.9,11.0,,,3.0,210.0,,,SW,0.0,0,138,9.0
-2001-12-07,3.4,-4.0,0.2,-1.1,5/5/2,998.5,988.2,996.2,22.0,,,5.0,20.0,,,NW,T,T,138,9.0
-2001-12-08,2.0,-1.0,-0.1,-0.3,//5/0,995.0,966.3,974.1,50.0,,,24.0,30.0,,,N,6.0,T,134,10.0
-2001-12-09,2.0,-2.0,-0.6,-0.8,0/4/0,974.5,968.0,971.6,32.0,,,14.0,350.0,,,W,2.8,2,137,9.0
-2001-12-10,6.0,-1.5,0.6,-0.4,/////,977.0,969.0,973.1,21.0,,,8.0,30.0,,,W,0.0,0,134,7.0
-2001-12-11,3.4,-2.3,0.8,-1.0,46492,985.0,970.8,980.9,42.0,,,8.0,30.0,,,NW,0.0,0,133,8.0
-2001-12-12,3.1,0.4,1.4,-1.0,0/6/0,986.0,978.7,983.7,51.0,,,16.0,20.0,,,N,16.2,T,127,10.0
-2001-12-13,4.6,1.2,3.3,-0.7,0/1/0,985.5,971.2,977.0,58.0,,,31.0,360.0,,,N,9.8,0,114,10.0
-2001-12-14,3.4,0.7,1.4,-0.3,0/4/0,981.2,970.8,976.0,51.0,,,27.0,350.0,,,NW,0.1,T,110,10.0
-2001-12-15,2.0,-0.2,0.8,-0.5,0/6/0,986.2,976.2,982.1,33.0,,,16.0,300.0,,,NW,1.4,T,109,10.0
-2001-12-16,2.0,-1.0,0.1,-0.2,0/4/0,989.0,981.0,984.9,24.0,,,8.0,250.0,,,W,0.4,T,108,10.0
-2001-12-17,2.0,-1.0,0.1,-0.5,0/4/0,989.0,982.0,983.7,34.0,,,10.0,350.0,,,NW,4.1,5,112,10.0
-2001-12-18,3.5,-1.6,0.6,0.2,2/6/0,982.0,971.6,975.6,10.0,,,2.0,40.0,,,N,T,T,110,9.0
-2001-12-19,3.0,-1.8,0.6,-0.2,0/6/0,971.6,968.6,969.9,14.0,,,4.0,240.0,,,W,T,T,109,10.0
-2001-12-20,4.5,-0.9,0.7,-0.1,0/6/0,970.0,964.0,966.3,13.0,,,3.0,70.0,,,NW,2.6,T,110,10.0
-2001-12-21,2.0,-1.0,0.3,-0.1,/////,972.7,959.0,965.1,56.0,,,15.0,20.0,,,NW,2.6,1,108,10.0
-2001-12-22,4.0,0.2,1.3,-0.1,0/5/0,969.0,957.0,961.3,29.0,,,11.0,20.0,,,NW,0.0,0,106,10.0
-2001-12-23,4.0,-2.4,0.8,0.2,0/4/0,982.3,969.0,978.0,32.0,,,13.0,230.0,,,W,1.3,1,108,7.0
-2001-12-24,4.2,0.3,1.5,0.0,0/4/0,979.7,967.2,972.0,50.0,,,23.0,20.0,,,N,9.5,T,100,10.0
-2001-12-25,3.5,-1.0,1.4,0.1,0/0//,982.2,971.0,976.2,56.0,,,19.0,20.0,,,N,0.6,T,100,9.0
-2001-12-26,2.8,-1.6,0.6,-0.4,0/6/0,985.6,969.7,979.8,33.0,,,9.0,30.0,,,SW,5.3,T,97,8.0
-2001-12-27,6.1,-2.8,1.6,0.2,0/6/0,985.2,976.5,978.9,28.0,,,9.0,20.0,,,E,0.0,0,97,9.0
-2001-12-28,5.0,0.3,1.2,0.4,0/4/0,988.5,977.5,983.3,19.0,,,3.0,360.0,,,SE,0.3,T,96,10.0
-2001-12-29,3.9,0.2,1.7,0.5,0/6/0,989.3,975.3,981.6,48.0,,,12.0,70.0,,,E,0.3,T,94,10.0
-2001-12-30,6.5,1.5,3.7,1.0,0/6/0,996.2,975.5,986.2,30.0,,,8.0,60.0,,,E,0.0,0,91,6.0
-2001-12-31,7.0,-1.3,2.9,1.2,0/5/0,1000.7,996.2,999.2,53.0,,,11.0,20.0,,,NE,0.5,0,89,10.0
-2002-01-01,6.2,2.5,4.3,0.7,0/6/0,997.3,985.5,990.0,45.0,,,14.0,30.0,,,SE,13.6,0,78,10.0
-2002-01-02,8.0,1.1,3.7,0.6,0/5/0,998.0,993.8,996.8,33.0,,,17.0,10.0,,,N,0.7,0,73,7.0
-2002-01-03,4.6,1.4,2.8,1.3,/////,996.6,993.5,995.1,44.0,,,25.0,360.0,,,N,2.0,T,68,7.0
-2002-01-04,4.1,1.0,2.1,1.2,0/6/0,995.0,983.5,989.1,44.0,,,19.0,20.0,,,N,4.4,T,53,8.0
-2002-01-05,5.2,1.3,2.8,1.1,0/6/0,983.5,970.2,972.2,26.0,,,9.0,80.0,,,E,0.6,0,51,10.0
-2002-01-06,6.0,-0.1,2.0,1.0,0/6/0,977.8,969.9,973.1,19.0,,,4.0,100.0,,,E,6.6,2,50,7.0
-2002-01-07,5.5,-0.1,2.2,1.4,0/5/0,983.9,977.8,981.9,19.0,,,3.0,10.0,,,N,0.0,0,45,9.0
-2002-01-08,8.2,0.4,3.6,1.2,0/6/0,979.8,971.9,974.2,22.0,,,6.0,110.0,,,SE,0.0,0,39,7.0
-2002-01-09,4.0,0.5,1.5,2.2,0/6/0,984.3,977.2,982.8,11.0,,,4.0,290.0,,,W,0.5,T,32,9.0
-2002-01-10,3.5,0.0,2.1,1.7,0/4/0,984.0,974.0,978.2,40.0,,,11.0,20.0,,,E,1.7,1,30,10.0
-2002-01-11,3.7,0.5,1.6,1.7,0/6/0,989.2,975.9,984.5,32.0,,,15.0,330.0,,,NW,6.6,T,22,10.0
-2002-01-12,4.0,0.9,1.5,1.7,0/6/0,989.0,986.0,987.1,12.0,,,1.0,90.0,,,E,2.3,T,24,10.0
-2002-01-13,3.0,0.4,1.3,1.7,0/5/0,990.8,986.8,988.6,17.0,,,3.0,310.0,,,NW,5.1,0,17,9.0
-2002-01-14,3.0,0.0,0.9,1.4,0/4/0,987.7,971.0,976.8,53.0,,,23.0,30.0,,,SW,7.9,T,13,10.0
-2002-01-15,5.5,-1.0,1.0,2.0,0/5/0,989.0,979.8,986.0,22.0,,,6.0,220.0,,,SW,0.4,1,10,4.0
-2002-01-16,4.0,0.1,1.6,1.4,0/5/0,988.3,982.4,983.7,23.0,,,6.0,360.0,,,SE,6.7,T,7,10.0
-2002-01-17,8.5,1.1,3.3,0.9,0/5/0,983.5,972.5,978.7,44.0,,,12.0,20.0,,,N,2.3,0,3,9.0
-2002-01-18,4.0,1.0,1.7,1.2,0/5/0,984.4,977.0,983.0,27.0,,,10.0,330.0,,,NW,4.8,T,0,10.0
-2002-01-19,4.2,0.0,1.8,0.9,0/4/0,987.8,983.0,985.2,30.0,,,10.0,20.0,,,NW,4.0,1,0,10.0
-2002-01-20,4.5,2.0,3.0,1.1,0/6/0,983.0,964.7,971.0,42.0,,,21.0,20.0,,,N,5.3,T,0,10.0
-2002-01-21,5.8,0.5,1.9,1.3,0/6/0,972.0,965.5,968.6,16.0,,,5.0,300.0,,,NW,1.0,T,0,10.0
-2002-01-22,4.0,-3.9,0.8,1.7,0/6/0,987.8,972.0,981.2,20.0,,,4.0,240.0,,,SW,0.0,0,0,6.0
-2002-01-23,3.2,-0.3,1.1,1.5,0/4/0,989.1,987.0,987.7,15.0,,,5.0,240.0,,,NW,2.0,T,0,10.0
-2002-01-24,5.2,1.0,3.1,1.2,0/6/0,987.5,980.7,983.9,30.0,,,8.0,10.0,,,SE,1.3,T,0,10.0
-2002-01-25,5.0,1.0,2.5,1.3,0/4/0,980.7,973.9,975.8,13.0,,,2.0,100.0,,,SE,T,0,0,10.0
-2002-01-26,7.5,0.5,3.4,1.8,0/5/0,986.2,975.5,982.1,6.0,,,1.0,120.0,,,E,0.0,0,0,8.0
-2002-01-27,5.0,0.5,2.4,1.8,0/4/0,988.0,986.2,987.4,7.0,,,1.0,100.0,,,E,0.0,0,0,10.0
-2002-01-28,2.5,-1.0,-0.1,2.1,0/4/0,989.2,986.5,987.3,9.0,,,3.0,180.0,,,SW,0.2,T,0,10.0
-2002-01-29,2.4,-1.8,0.1,1.9,0/6/0,993.4,989.2,991.9,10.0,,,3.0,110.0,,,SE,T,T,0,10.0
-2002-01-30,2.4,-0.8,0.6,1.6,0/5/0,997.8,993.4,995.5,7.0,,,2.0,290.0,,,NW,0.0,0,0,10.0
-2002-01-31,5.0,0.0,2.3,1.9,0/6/0,1001.2,997.8,999.9,15.0,,,2.0,10.0,,,SE,0.0,0,0,7.0
-2002-02-01,7.0,0.2,3.3,1.3,0/5/0,1000.6,984.7,991.6,34.0,,,7.0,60.0,,,E,1.0,T,0,10.0
-2002-02-02,5.3,1.4,3.3,0.9,0/5/0,991.9,983.8,988.6,46.0,,,14.0,30.0,,,N,0.1,0,0,9.0
-2002-02-03,5.5,1.3,2.5,0.8,0/5/0,991.9,989.8,991.1,11.0,,,3.0,130.0,,,SE,1.0,0,0,10.0
-2002-02-04,6.0,1.4,3.6,0.8,0/5/0,991.5,986.5,989.3,29.0,,,8.0,10.0,,,N,1.3,0,0,10.0
-2002-02-05,4.5,1.7,2.5,0.8,0/4/0,986.5,977.1,981.1,54.0,,,19.0,30.0,,,NW,8.2,0,0,10.0
-2002-02-06,4.0,0.7,1.1,0.7,0/1/0,985.1,977.5,980.5,18.0,,,7.0,320.0,,,SW,3.1,T,0,10.0
-2002-02-07,5.2,0.2,1.5,0.5,0/4/0,984.5,975.5,980.4,47.0,,,18.0,350.0,,,N,8.0,T,0,10.0
-2002-02-08,4.5,1.0,2.5,0.6,0/6/0,979.0,969.0,974.0,48.0,,,16.0,350.0,,,N,4.0,T,0,10.0
-2002-02-09,2.5,-0.5,0.6,0.3,0/6/0,981.8,969.0,976.1,32.0,,,12.0,320.0,,,NW,3.7,T,0,10.0
-2002-02-10,2.7,-0.5,1.0,0.5,0/4/0,983.0,978.8,980.7,40.0,,,19.0,360.0,,,N,5.5,T,0,10.0
-2002-02-11,4.5,1.3,2.1,0.3,0/4/0,980.0,965.6,970.4,54.0,,,30.0,20.0,,,N,31.8,0,0,10.0
-2002-02-12,2.0,-1.2,0.3,0.7,0/4/0,977.2,969.7,975.3,38.0,,,13.0,20.0,,,NW,4.1,1,0,9.0
-2002-02-13,2.1,-1.0,0.1,0.3,0/4/0,972.8,968.4,969.8,30.0,,,7.0,10.0,,,W,7.5,8,5,10.0
-2002-02-14,1.5,-1.2,-0.3,0.7,0/6/0,986.4,970.2,978.2,20.0,,,6.0,240.0,,,SW,1.9,2,2,9.0
-2002-02-15,3.1,-1.5,0.0,0.5,0/4/0,990.3,984.8,987.8,21.0,,,6.0,200.0,,,SW,1.7,T,0,10.0
-2002-02-16,1.9,0.0,1.0,-0.8,0/4/0,990.0,984.1,986.2,21.0,,,12.0,310.0,,,NW,5.5,T,0,10.0
-2002-02-17,4.9,-0.1,1.4,-0.6,0/4/0,998.8,989.8,995.7,16.0,,,4.0,220.0,,,SE,1.1,T,0,10.0
-2002-02-18,4.2,-0.2,2.0,0.2,0/5/0,991.2,981.9,986.0,10.0,,,2.0,150.0,,,SE,17.6,1,0,10.0
-2002-02-19,6.1,-1.7,0.9,-0.1,0/4/0,996.4,986.8,992.5,50.0,,,7.0,30.0,,,NW,2.6,0,0,10.0
-2002-02-20,3.9,0.8,1.7,0.5,0/4/0,989.9,980.2,984.2,23.0,,,4.0,330.0,,,NW,0.9,T,0,10.0
-2002-02-21,3.8,0.5,2.4,0.6,0/4/0,981.9,969.1,975.4,37.0,,,13.0,20.0,,,N,1.3,T,0,10.0
-2002-02-22,3.6,-0.1,1.0,0.7,0/4/0,984.4,969.1,977.8,28.0,,,6.0,350.0,,,NW,3.4,1,0,8.0
-2002-02-23,2.1,-0.5,0.6,0.7,0/4/0,992.6,984.4,990.7,16.0,,,5.0,210.0,,,N,0.1,T,0,10.0
-2002-02-24,5.7,0.0,2.5,0.6,0/4/0,989.6,962.0,976.6,62.0,,,17.0,50.0,,,NE,0.8,0,0,10.0
-2002-02-25,6.5,3.4,5.1,0.9,0/4/0,965.7,960.7,964.8,62.0,,,32.0,30.0,,,NE,10.0,0,0,10.0
-2002-02-26,5.5,1.1,2.0,1.0,0/4/0,972.1,964.2,966.8,19.0,,,4.0,350.0,,,N,9.1,0,0,10.0
-2002-02-27,1.7,-0.1,0.6,0.8,0/4/0,988.4,972.1,982.8,8.0,,,2.0,200.0,,,NW,5.6,T,0,10.0
-2002-02-28,1.8,-1.6,0.3,0.6,0/4/0,990.9,988.4,990.3,9.0,,,1.0,190.0,,,N,T,T,0,9.0
-2002-03-01,5.4,0.8,1.7,0.9,0/4/0,991.1,984.1,987.8,13.0,,,3.0,50.0,,,NE,0.0,0,0,8.0
-2002-03-02,5.0,0.3,2.1,0.1,0/4/0,986.7,981.3,984.4,34.0,,,7.0,60.0,,,NW,T,T,0,10.0
-2002-03-03,8.1,0.0,3.2,0.6,0/5/0,986.9,983.1,984.2,32.0,,,8.0,70.0,,,E,1.7,2,0,9.0
-2002-03-04,7.6,0.7,2.7,0.9,0/6/0,987.0,981.9,984.0,20.0,,,4.0,110.0,,,E,T,T,0,6.0
-2002-03-05,4.1,-1.9,0.3,0.8,0/6/0,988.6,985.6,987.3,8.0,,,3.0,300.0,,,E,0.0,0,0,0.0
-2002-03-06,1.3,-2.3,-0.6,0.5,0/4/0,985.6,982.2,982.8,7.0,,,3.0,140.0,,,NE,0.0,0,0,8.0
-2002-03-07,0.7,-1.7,-0.7,0.9,0/4/0,982.6,981.2,981.9,22.0,,,5.0,250.0,,,SW,T,T,0,10.0
-2002-03-08,2.0,-1.2,0.0,0.8,0/4/0,981.5,974.5,977.1,25.0,,,11.0,10.0,,,N,0.3,T,0,10.0
-2002-03-09,4.8,-0.2,2.3,1.0,0/4/0,974.5,968.2,970.3,35.0,,,13.0,40.0,,,NE,1.8,0,0,9.0
-2002-03-10,2.8,-4.0,-2.8,0.8,0/4/0,973.4,970.1,972.1,31.0,,,14.0,210.0,,,S,1.6,2,3,9.0
-2002-03-11,-2.1,-5.1,-3.9,0.5,0/6/0,976.8,970.7,972.6,17.0,,,6.0,220.0,,,SW,0.1,T,1,9.0
-2002-03-12,5.4,-4.8,0.4,1.2,0/4/0,997.6,976.8,988.9,43.0,,,7.0,120.0,,,E,0.0,0,1,8.0
-2002-03-13,1.0,-2.0,-0.9,0.3,0/6/0,999.9,995.7,998.1,13.0,,,6.0,350.0,,,N,0.0,0,0,10.0
-2002-03-14,0.1,-2.0,-0.9,0.3,0/6/0,995.7,994.2,994.7,11.0,,,3.0,230.0,,,SW,T,T,0,10.0
-2002-03-15,0.3,-1.1,-0.7,0.3,20660,997.4,994.8,996.9,16.0,,,4.0,230.0,,,SW,T,T,0,10.0
-2002-03-16,1.8,-2.1,-0.2,0.7,0/6/0,1007.2,997.2,1001.3,11.0,,,3.0,160.0,,,SW,0.2,T,0,8.0
-2002-03-17,2.5,-2.8,-1.0,0.2,0/6/0,1017.2,1007.2,1015.1,18.0,,,4.0,10.0,,,NE,0.0,0,0,8.0
-2002-03-18,2.7,-2.8,-1.2,0.2,0/6/0,1016.8,1011.4,1012.7,5.0,,,1.0,300.0,,,NE,0.0,0,0,7.0
-2002-03-19,1.3,-1.0,0.2,0.4,0/4/0,1011.4,1008.2,1009.0,7.0,,,1.0,120.0,,,SE,2.5,T,0,10.0
-2002-03-20,3.7,0.3,1.7,0.2,0/4/0,1008.2,1004.9,1006.7,21.0,,,5.0,360.0,,,SE,4.3,T,0,10.0
-2002-03-21,3.4,0.3,1.8,0.5,0/5/0,1005.1,989.7,997.4,25.0,,,4.0,30.0,,,NE,1.2,T,0,10.0
-2002-03-22,3.7,-0.1,1.5,0.8,0/6/0,989.7,981.1,982.4,31.0,,,6.0,70.0,,,NE,6.4,1,0,10.0
-2002-03-23,4.1,-0.4,2.0,0.8,0/6/0,991.1,982.3,986.9,27.0,,,4.0,60.0,,,E,T,T,0,10.0
-2002-03-24,1.0,-0.6,0.4,0.4,0/4/0,996.7,991.1,995.0,8.0,,,3.0,220.0,,,SW,1.5,T,0,10.0
-2002-03-25,0.3,-2.0,-1.2,0.1,0/5/0,996.5,987.1,991.9,26.0,,,7.0,220.0,,,SW,1.7,2,3,10.0
-2002-03-26,-0.4,-3.6,-2.0,0.5,0/5/0,987.6,981.1,983.3,21.0,,,5.0,200.0,,,SW,0.0,0,1,10.0
-2002-03-27,-2.1,-6.1,-3.6,0.2,0/8/0,981.2,974.9,976.1,31.0,,,9.0,230.0,,,SW,2.0,1,6,9.0
-2002-03-28,-2.3,-6.0,-4.3,-0.1,207/0,983.6,975.7,980.7,21.0,,,8.0,180.0,,,SW,T,T,5,9.0
-2002-03-29,-2.3,-4.6,-3.6,-0.1,0/8/0,993.7,983.5,988.6,17.0,,,6.0,220.0,,,SW,0.0,0,5,10.0
-2002-03-30,-0.2,-5.4,-3.4,0.1,0/8/0,996.3,976.3,990.6,35.0,,,6.0,90.0,,,E,0.2,T,4,10.0
-2002-03-31,2.9,-2.6,1.8,0.4,0/8/0,981.9,968.5,975.8,40.0,,,21.0,130.0,,,NW,8.4,T,0,10.0
-2002-04-01,5.0,0.6,3.1,0.2,0/8/0,981.9,967.4,971.3,33.0,,,10.0,360.0,,,N,0.6,0,0,10.0
-2002-04-02,5.2,-0.4,2.2,0.7,0/6/0,969.9,953.6,959.1,46.0,,,20.0,30.0,,,NE,8.4,2,0,10.0
-2002-04-03,0.6,-2.0,-0.4,-0.2,0/6/0,980.3,967.2,976.9,27.0,,,11.0,300.0,,,N,1.4,2,9,6.0
-2002-04-04,2.3,-1.3,0.4,0.9,0/1/0,979.8,955.9,962.3,55.0,,,22.0,90.0,,,E,4.0,4,7,10.0
-2002-04-05,1.6,-1.3,0.6,0.2,0/4/0,983.2,955.7,973.4,34.0,,,17.0,50.0,,,N,4.6,3,10,9.0
-2002-04-06,1.1,-2.4,-0.2,0.5,0/6/0,991.9,983.2,990.0,26.0,,,9.0,350.0,,,N,4.3,5,10,6.0
-2002-04-07,0.9,-1.4,-0.5,0.2,0/0/0,990.2,978.1,981.7,26.0,,,10.0,220.0,,,SW,3.0,1,17,9.0
-2002-04-08,1.8,-2.0,-0.4,0.1,0/4/0,984.4,978.1,982.7,30.0,,,10.0,220.0,,,SW,0.6,T,14,10.0
-2002-04-09,2.3,-1.3,0.6,0.5,0/4/0,980.4,955.5,961.7,44.0,,,23.0,20.0,,,NE,5.1,4,13,10.0
-2002-04-10,-1.2,-3.3,-2.2,0.2,0/4/0,984.3,959.8,976.2,42.0,,,21.0,230.0,,,SW,0.4,T,20,10.0
-2002-04-11,-2.3,-6.7,-4.1,-0.5,0/1/0,1002.6,984.3,998.2,21.0,,,8.0,110.0,,,SW,0.0,0,18,5.0
-2002-04-12,0.3,-2.6,-0.9,-0.5,0/4/0,1002.9,996.8,1000.2,16.0,,,4.0,240.0,,,W,0.2,0,16,10.0
-2002-04-13,-0.8,-2.4,-1.7,-0.7,0/4/0,996.8,985.9,992.0,11.0,,,3.0,180.0,,,SW,0.4,T,16,10.0
-2002-04-14,1.1,-2.3,0.4,-0.3,0/4/0,990.3,982.9,987.6,32.0,,,16.0,240.0,,,W,3.8,3,22,10.0
-2002-04-15,1.2,-1.2,-0.2,-0.4,0/4/0,990.0,982.0,985.5,19.0,,,5.0,250.0,,,W,0.6,T,22,10.0
-2002-04-16,1.3,-1.1,0.0,-0.2,0/0/0,982.0,975.6,977.7,13.0,,,1.0,110.0,,,E,7.7,10,27,10.0
-2002-04-17,1.0,-4.1,-1.1,0.8,0/6/0,983.3,979.1,981.4,22.0,,,4.0,340.0,,,N,0.3,T,29,8.0
-2002-04-18,2.0,-2.5,-0.2,-0.2,0/6/0,985.4,978.3,981.7,29.0,,,8.0,80.0,,,E,0.0,0,27,10.0
-2002-04-19,0.0,-3.5,-1.5,-0.6,0/6/0,998.2,985.4,993.6,13.0,,,5.0,320.0,,,N,0.0,0,26,5.0
-2002-04-20,1.1,-3.8,-1.0,-0.6,0/4/0,1001.3,998.2,1000.7,14.0,,,4.0,210.0,,,SW,T,T,26,4.0
-2002-04-21,1.2,-4.1,-0.2,-0.1,0/4/0,1001.0,981.8,991.0,41.0,,,12.0,30.0,,,NE,T,T,25,10.0
-2002-04-22,1.2,-1.5,-0.4,0.2,0/5/0,981.8,978.3,979.5,49.0,,,12.0,20.0,,,N,1.0,1,24,10.0
-2002-04-23,2.6,-3.4,-0.6,0.2,0/4/0,984.0,975.2,980.6,49.0,,,13.0,20.0,,,E,0.7,0,25,10.0
-2002-04-24,3.9,1.1,2.5,0.3,0/4/0,991.5,974.7,986.2,54.0,,,20.0,20.0,,,N,0.8,T,20,10.0
-2002-04-25,4.7,1.3,3.2,-0.2,0/4/0,991.8,985.7,988.2,42.0,,,15.0,20.0,,,N,1.6,0,13,10.0
-2002-04-26,4.5,1.9,3.0,0.5,0/0/0,985.9,973.1,977.3,54.0,,,27.0,60.0,,,NE,0.7,0,0,10.0
-2002-04-27,4.9,0.0,2.5,0.4,0/4/0,990.1,972.7,981.6,44.0,,,10.0,60.0,,,NE,0.0,0,0,4.0
-2002-04-28,1.4,-1.2,0.3,0.2,0/4/0,994.8,990.1,992.9,24.0,,,3.0,20.0,,,E,0.0,0,0,10.0
-2002-04-29,3.2,0.5,1.3,0.2,0/4/0,995.0,991.5,993.5,36.0,,,9.0,30.0,,,E,0.0,0,0,10.0
-2002-04-30,4.9,-0.6,1.4,0.2,0/4/0,992.5,987.7,988.9,26.0,,,7.0,80.0,,,E,0.0,0,0,9.0
-2002-05-01,5.1,0.4,2.6,0.2,0/4/0,991.5,986.1,988.7,32.0,,,9.0,70.0,,,NE,T,T,0,10.0
-2002-05-02,1.9,-0.1,0.6,-0.2,0/4/0,1005.1,991.5,999.4,14.0,,,2.0,60.0,,,NW,T,T,0,10.0
-2002-05-03,0.4,-2.2,-0.8,-0.5,0/5/0,1008.9,1005.1,1007.8,12.0,,,4.0,220.0,,,NE,0.9,T,0,10.0
-2002-05-04,-0.8,-4.7,-3.3,-0.7,0/4/0,1006.4,998.3,1000.0,28.0,,,8.0,210.0,,,S,4.9,9,14,9.0
-2002-05-05,-3.2,-4.6,-3.9,-1.0,21563,998.3,988.0,992.8,17.0,,,4.0,240.0,,,SW,0.2,1,10,10.0
-2002-05-06,-2.6,-5.6,-3.8,-1.0,0/4/0,997.9,986.7,992.4,25.0,,,7.0,60.0,,,E,0.1,T,9,1.0
-2002-05-07,-2.4,-4.5,-3.4,-0.4,0/4/0,998.6,984.5,993.7,17.0,,,7.0,230.0,,,SW,2.3,3,8,10.0
-2002-05-08,-1.8,-5.2,-3.2,-0.7,0/5/0,984.5,978.0,980.6,23.0,,,7.0,20.0,,,SW,0.8,1,10,10.0
-2002-05-09,-4.9,-8.6,-7.0,-0.7,0/6/0,983.5,980.6,982.2,37.0,,,8.0,110.0,,,E,0.5,T,10,10.0
-2002-05-10,-6.7,-10.7,-8.0,-0.7,0/6/0,986.3,982.0,983.8,45.0,,,10.0,120.0,,,E,0.5,T,10,10.0
-2002-05-11,-2.9,-10.0,-5.6,-0.3,0/6/0,997.4,986.3,993.5,40.0,,,14.0,120.0,,,E,0.0,0,9,0.0
-2002-05-12,-2.8,-5.7,-3.8,-1.0,0/6/0,1004.6,997.4,1002.7,16.0,,,8.0,220.0,,,SW,0.0,0,8,10.0
-2002-05-13,-3.2,-9.8,-5.6,-1.1,0/6/0,1004.5,995.4,1001.0,44.0,,,14.0,110.0,,,SW,3.4,4,10,10.0
-2002-05-14,-5.8,-10.0,-7.8,-0.8,0/6/0,1013.1,1001.7,1010.8,30.0,,,7.0,120.0,,,NE,0.0,0,13,2.0
-2002-05-15,-3.5,-5.8,-4.5,-0.9,0/6/0,1011.7,1005.9,1008.1,17.0,,,4.0,220.0,,,SW,0.0,0,12,9.0
-2002-05-16,-0.7,-3.7,-2.2,-0.8,20672,1005.9,996.8,1000.2,22.0,,,7.0,240.0,,,SW,3.1,2,14,10.0
-2002-05-17,-0.7,-2.5,-1.7,-1.3,20660,997.0,981.6,988.3,23.0,,,9.0,230.0,,,SW,4.6,6,21,10.0
-2002-05-18,-2.0,-5.0,-3.4,-1.3,21661,983.3,977.8,980.2,23.0,,,9.0,230.0,,,SW,4.7,7,28,10.0
-2002-05-19,-3.3,-8.4,-5.8,-1.1,21760,984.2,982.4,983.6,14.0,,,4.0,130.0,,,NE,0.2,1,27,10.0
-2002-05-20,-3.0,-5.4,-4.2,-1.5,21660,986.4,981.9,983.4,23.0,,,7.0,160.0,,,SW,1.6,2,27,10.0
-2002-05-21,-4.2,-7.0,-5.0,-1.4,21762,1000.4,986.4,994.1,12.0,,,5.0,20.0,,,N,2.4,4,30,10.0
-2002-05-22,-3.6,-5.5,-4.5,-1.6,21761,1008.4,1000.4,1006.7,13.0,,,4.0,10.0,,,S,0.2,T,28,10.0
-2002-05-23,-4.9,-7.0,-6.0,-1.7,21762,1008.4,1002.4,1005.1,14.0,,,5.0,30.0,,,SW,0.0,0,27,10.0
-2002-05-24,-3.4,-7.6,-4.7,-1.0,20761,1002.4,999.4,999.9,10.0,,,1.0,190.0,,,S,T,T,27,10.0
-2002-05-25,1.2,-7.0,-3.2,-0.9,0/8/0,1000.1,981.5,989.6,52.0,,,14.0,20.0,,,SW,3.5,3,27,10.0
-2002-05-26,-3.0,-8.9,-6.6,-1.2,20670,981.5,971.2,972.2,49.0,,,18.0,30.0,,,SW,1.8,3,28,9.0
-2002-05-27,-8.6,-11.3,-10.2,-1.6,20660,979.3,974.1,978.0,22.0,,,10.0,220.0,,,SW,3.6,6,32,10.0
-2002-05-28,-5.4,-12.7,-8.1,-0.9,21661,982.1,978.5,980.0,23.0,,,7.0,200.0,,,NE,0.6,1,29,10.0
-2002-05-29,-5.2,-8.8,-7.1,-1.2,0/0/0,982.4,977.1,980.6,23.0,,,10.0,240.0,,,W,0.1,T,28,10.0
-2002-05-30,-6.1,-9.0,-8.1,-1.5,30662,977.3,973.9,975.4,20.0,,,6.0,190.0,,,S,0.1,T,26,10.0
-2002-05-31,-6.1,-12.0,-8.9,-0.3,0/8/0,991.5,977.3,984.8,38.0,,,13.0,100.0,,,E,4.6,2,25,10.0
-2002-06-01,-5.2,-9.4,-6.5,-1.0,0/8/0,997.5,991.5,996.0,16.0,,,5.0,240.0,,,NE,0.0,0,24,4.0
-2002-06-02,-5.9,-9.4,-8.5,-1.1,32871,996.8,986.6,991.6,24.0,,,9.0,30.0,,,W,1.2,3,25,10.0
-2002-06-03,-8.6,-12.3,-11.1,-1.2,0/8/0,989.1,985.1,986.8,22.0,,,11.0,110.0,,,E,1.8,3,33,10.0
-2002-06-04,-8.4,-12.6,-10.0,-1.4,0/8/0,991.3,989.1,990.4,22.0,,,8.0,120.0,,,E,0.0,0,28,0.0
-2002-06-05,-7.2,-10.2,-8.8,-1.4,0/9/0,993.2,990.7,992.4,14.0,,,6.0,20.0,,,NE,0.0,0,26,3.0
-2002-06-06,-7.5,-10.4,-9.6,-1.5,22963,992.6,984.1,988.2,18.0,,,10.0,360.0,,,N,1.5,4,25,10.0
-2002-06-07,-9.6,-13.3,-10.7,-1.6,22961,984.1,978.4,979.9,21.0,,,8.0,320.0,,,NW,0.5,T,30,10.0
-2002-06-08,-10.1,-12.4,-11.4,-1.6,22860,989.8,981.2,987.3,18.0,,,10.0,190.0,,,SW,T,T,28,10.0
-2002-06-09,-9.2,-12.1,-10.6,-1.6,22861,990.9,989.0,990.0,14.0,,,4.0,230.0,,,NE,T,T,27,10.0
-2002-06-10,-6.5,-11.1,-8.9,-1.5,22860,993.4,987.7,991.0,23.0,,,7.0,170.0,,,S,T,T,26,10.0
-2002-06-11,-6.5,-9.8,-7.9,-1.6,20890,994.8,992.1,993.5,19.0,,,4.0,90.0,,,NE,0.0,0,26,10.0
-2002-06-12,-6.8,-10.6,-8.9,-1.6,22962,992.1,983.6,985.8,24.0,,,8.0,230.0,,,SW,4.3,11,35,10.0
-2002-06-13,-10.2,-13.7,-12.3,-1.6,22962,986.8,983.0,984.6,32.0,,,13.0,240.0,,,SW,1.5,2,31,10.0
-2002-06-14,-12.5,-17.5,-15.8,-1.6,22961,987.2,979.1,983.8,25.0,,,10.0,240.0,,,NE,0.2,1,29,10.0
-2002-06-15,-12.5,-16.1,-13.4,-1.6,22963,981.1,977.8,980.0,23.0,,,9.0,120.0,,,E,2.3,2,28,10.0
-2002-06-16,-9.6,-16.3,-12.9,-1.6,22961,989.8,981.1,986.2,40.0,,,13.0,90.0,,,E,2.6,2,27,10.0
-2002-06-17,-7.2,-11.1,-8.4,-1.6,22960,991.8,989.4,990.6,35.0,,,10.0,100.0,,,SW,0.0,0,25,10.0
-2002-06-18,-6.4,-12.3,-8.0,-1.4,22960,1005.4,989.6,999.7,31.0,,,13.0,90.0,,,E,0.0,0,24,10.0
-2002-06-19,-6.0,-8.3,-7.2,-1.7,0/9/0,1005.4,1000.1,1001.7,22.0,,,10.0,210.0,,,SW,0.0,0,24,10.0
-2002-06-20,-5.4,-7.1,-6.2,-1.8,0/9/0,1002.9,999.8,1001.2,22.0,,,8.0,230.0,,,SW,0.6,1,24,10.0
-2002-06-21,-4.6,-5.7,-5.2,-1.8,22960,1009.1,1000.9,1006.4,23.0,,,9.0,220.0,,,SW,0.2,T,24,10.0
-2002-06-22,-1.0,-5.6,-1.8,-1.7,22961,1003.8,994.3,998.0,19.0,,,7.0,220.0,,,SW,4.5,5,32,10.0
-2002-06-23,2.6,-3.8,-0.3,-1.6,22971,1005.1,984.3,994.6,63.0,,,20.0,20.0,,,N,2.1,T,29,10.0
-2002-06-24,1.7,-2.4,-1.0,-1.5,22980,984.3,975.6,977.8,57.0,,,30.0,360.0,,,NW,5.2,T,28,10.0
-2002-06-25,-1.7,-6.7,-4.4,-1.5,42963,986.7,974.2,981.4,34.0,,,18.0,260.0,,,W,0.8,T,28,10.0
-2002-06-26,-0.2,-5.6,-2.6,-1.5,22961,984.8,973.2,975.4,32.0,,,15.0,20.0,,,N,1.2,1,28,10.0
-2002-06-27,-5.5,-14.3,-12.5,-1.7,22961,981.0,974.7,977.8,36.0,,,17.0,250.0,,,SW,1.2,1,28,10.0
-2002-06-28,-10.5,-15.2,-12.5,-1.6,32962,983.7,969.4,978.0,37.0,,,13.0,250.0,,,SW,1.1,1,28,10.0
-2002-06-29,-5.3,-12.6,-10.0,-1.7,22963,980.9,964.5,973.2,45.0,,,13.0,230.0,,,W,4.2,9,30,10.0
-2002-06-30,-7.4,-13.8,-12.4,-1.8,22960,994.1,966.6,985.9,44.0,,,19.0,220.0,,,SW,1.0,T,28,10.0
-2002-07-01,-0.3,-13.8,-2.9,-1.7,22980,990.7,964.1,966.7,71.0,,,21.0,30.0,,,NW,10.0,3,34,10.0
-2002-07-02,-3.7,-14.4,-12.6,-1.7,22970,998.1,969.2,988.4,45.0,,,19.0,230.0,,,SW,0.4,T,34,10.0
-2002-07-03,-1.0,-14.7,-8.1,-1.7,32963,999.1,982.0,992.0,51.0,,,10.0,20.0,,,E,T,T,34,10.0
-2002-07-04,-0.3,-6.2,-3.0,-1.7,32962,982.0,970.0,972.0,54.0,,,22.0,20.0,,,N,13.7,19,51,10.0
-2002-07-05,-5.7,-9.8,-8.5,-1.6,52963,977.8,972.9,976.1,34.0,,,16.0,230.0,,,SW,0.1,T,45,10.0
-2002-07-06,-1.8,-8.6,-4.8,-1.7,42961,1000.4,975.8,988.7,44.0,,,16.0,110.0,,,SE,6.8,4,49,10.0
-2002-07-07,-3.4,-7.5,-5.4,-1.7,52963,1004.3,1000.0,1003.3,34.0,,,6.0,110.0,,,E,0.0,0,48,10.0
-2002-07-08,-5.5,-14.2,-8.3,-1.7,52962,1001.6,979.6,988.3,45.0,,,10.0,220.0,,,SW,4.0,3,47,10.0
-2002-07-09,-6.7,-9.5,-8.3,-1.7,52962,1004.7,981.9,994.4,28.0,,,9.0,220.0,,,S,0.2,T,43,10.0
-2002-07-10,-3.2,-9.5,-5.8,-1.7,52962,1007.7,995.5,1003.4,25.0,,,11.0,20.0,,,N,0.1,T,42,10.0
-2002-07-11,0.9,-3.4,-0.2,-1.6,52962,995.5,967.0,978.2,39.0,,,15.0,20.0,,,N,1.2,T,42,10.0
-2002-07-12,0.0,-17.9,-9.1,-1.5,/296/,976.2,963.0,971.5,50.0,,,18.0,20.0,,,W,3.7,4,42,10.0
-2002-07-13,-9.2,-19.7,-16.0,-1.6,42962,976.5,958.4,966.4,69.0,,,21.0,10.0,,,W,2.8,3,42,10.0
-2002-07-14,-18.3,-21.6,-20.3,-1.8,52962,974.8,965.4,970.5,41.0,,,21.0,240.0,,,W,0.4,T,33,10.0
-2002-07-15,-13.6,-21.1,-16.0,-1.7,52962,989.2,973.9,982.6,25.0,,,11.0,270.0,,,S,1.3,2,35,10.0
-2002-07-16,-8.0,-16.3,-12.2,-1.7,52962,993.5,989.1,991.7,16.0,,,3.0,20.0,,,W,1.7,8,34,10.0
-2002-07-17,-5.3,-10.1,-7.7,-1.7,52962,993.8,991.0,992.8,22.0,,,2.0,30.0,,,E,1.9,3,38,10.0
-2002-07-18,0.2,-6.2,-3.0,-1.6,92962,994.7,988.5,991.7,43.0,,,12.0,20.0,,,SE,13.8,13,34,10.0
-2002-07-19,1.6,-3.5,-1.1,-1.6,/2993,988.5,983.1,985.4,30.0,,,8.0,130.0,,,SE,39.1,21,47,10.0
-2002-07-20,-3.4,-5.4,-4.2,-1.6,82962,989.5,987.0,987.8,14.0,,,3.0,180.0,,,S,11.3,11,63,10.0
-2002-07-21,-4.5,-11.6,-7.2,-1.7,52961,1004.0,989.5,999.3,9.0,,,1.0,80.0,,,NE,0.2,T,62,10.0
-2002-07-22,-5.6,-10.4,-7.1,-1.7,52962,1004.7,1002.1,1003.5,13.0,,,3.0,30.0,,,NE,0.0,0,62,10.0
-2002-07-23,-4.8,-9.6,-6.0,-1.7,42961,1007.4,1002.1,1004.4,6.0,,,2.0,350.0,,,NE,0.0,0,61,10.0
-2002-07-24,-4.7,-10.4,-7.5,-1.7,42962,1009.1,1007.4,1008.6,6.0,,,3.0,80.0,,,NE,0.0,0,61,10.0
-2002-07-25,-7.7,-12.1,-9.8,-1.8,42962,1007.9,1002.9,1005.1,10.0,,,3.0,80.0,,,NE,0.0,0,61,10.0
-2002-07-26,-4.8,-11.2,-7.6,-1.7,42962,1003.2,1000.2,1001.2,10.0,,,2.0,130.0,,,SE,0.0,0,60,10.0
-2002-07-27,-3.7,-6.4,-4.9,-1.8,42962,1000.8,1000.1,1000.4,7.0,,,2.0,140.0,,,SE,0.4,T,59,10.0
-2002-07-28,-4.8,-11.8,-8.2,-1.7,42962,1005.8,1000.1,1003.4,9.0,,,2.0,190.0,,,NE,0.0,0,59,1.0
-2002-07-29,-9.5,-13.3,-10.9,-1.8,52962,1009.8,1005.8,1008.8,6.0,,,1.0,60.0,,,NE,0.0,0,59,1.0
-2002-07-30,-5.4,-14.7,-8.6,-1.8,82962,1009.7,1003.1,1005.2,22.0,,,3.0,70.0,,,E,0.0,0,59,1.0
-2002-07-31,1.6,-5.7,-1.0,-1.7,22961,1004.0,985.4,994.9,68.0,,,24.0,20.0,,,N,6.4,1,55,10.0
-2002-08-01,1.1,-5.3,-1.7,-1.6,42963,991.0,983.1,986.4,48.0,,,20.0,10.0,,,NW,0.5,T,54,10.0
-2002-08-02,-1.3,-5.4,-1.9,-1.6,0/9/0,987.1,976.5,978.9,22.0,,,6.0,130.0,,,SE,4.5,7,58,10.0
-2002-08-03,-2.0,-5.6,-3.5,-1.6,22962,988.5,981.3,986.0,22.0,,,8.0,10.0,,,NW,2.9,3,61,10.0
-2002-08-04,-2.3,-7.2,-4.6,-1.6,0/9/0,1017.9,987.7,1008.8,21.0,,,5.0,220.0,,,SW,0.1,T,61,10.0
-2002-08-05,-4.0,-8.6,-5.9,-1.7,22962,1022.2,1017.9,1021.1,8.0,,,3.0,350.0,,,N,0.1,0,59,10.0
-2002-08-06,-3.2,-5.7,-3.8,-1.7,52963,1020.4,1016.5,1017.8,5.0,,,1.0,300.0,,,NW,0.5,T,59,10.0
-2002-08-07,-4.5,-8.7,-6.9,-1.7,52962,1016.5,1013.0,1014.2,9.0,,,2.0,100.0,,,NE,0.0,0,59,2.0
-2002-08-08,-1.2,-9.5,-3.7,-1.8,0/9/0,1013.3,1005.7,1009.2,25.0,,,12.0,20.0,,,NE,0.0,0,58,5.0
-2002-08-09,-1.5,-6.6,-3.5,-1.7,30963,1005.7,984.4,991.6,24.0,,,4.0,50.0,,,NE,0.1,T,58,10.0
-2002-08-10,-1.9,-3.1,-2.5,-1.7,40963,984.4,979.3,980.8,13.0,,,5.0,220.0,,,SW,4.0,2,60,10.0
-2002-08-11,-2.6,-7.7,-5.9,-1.8,0/9/0,987.5,981.1,985.0,23.0,,,13.0,220.0,,,SW,1.0,T,61,2.0
-2002-08-12,-6.6,-10.7,-9.1,-1.8,21962,989.6,986.3,988.2,25.0,,,9.0,220.0,,,SW,T,T,60,10.0
-2002-08-13,-6.1,-8.0,-7.6,-1.8,21962,990.2,985.1,988.8,20.0,,,7.0,230.0,,,SW,0.1,1,59,10.0
-2002-08-14,-2.5,-12.7,-7.6,-1.8,41963,988.6,977.7,980.5,51.0,,,20.0,220.0,,,SW,3.7,2,58,10.0
-2002-08-15,-9.7,-12.7,-10.6,-1.7,51963,998.3,978.1,992.7,43.0,,,17.0,210.0,,,SW,0.0,0,58,10.0
-2002-08-16,-6.0,-9.8,-7.8,-1.7,51962,1007.5,998.2,1003.5,22.0,,,6.0,220.0,,,SW,0.1,0,58,9.0
-2002-08-17,-5.1,-9.3,-6.5,-1.7,51962,1009.5,1006.1,1008.2,10.0,,,3.0,140.0,,,NE,0.0,0,58,10.0
-2002-08-18,-2.9,-6.7,-4.1,-1.7,51962,1006.2,993.2,999.6,12.0,,,4.0,110.0,,,E,0.1,T,58,10.0
-2002-08-19,-0.9,-13.3,-4.7,-1.7,51962,993.2,974.1,982.7,47.0,,,20.0,240.0,,,N,1.6,T,58,10.0
-2002-08-20,-11.8,-17.2,-14.3,-1.8,52963,993.9,980.3,989.8,49.0,,,13.0,220.0,,,SW,1.4,1,58,10.0
-2002-08-21,-6.9,-18.6,-11.4,-1.8,52963,985.0,970.9,973.2,24.0,,,7.0,240.0,,,SW,4.5,4,62,10.0
-2002-08-22,-9.9,-18.7,-12.7,-1.8,52963,984.6,972.8,979.0,27.0,,,8.0,260.0,,,S,1.5,1,61,5.0
-2002-08-23,-11.6,-16.3,-12.9,-1.7,52962,990.2,984.6,989.1,13.0,,,5.0,260.0,,,N,T,T,60,10.0
-2002-08-24,-12.3,-14.8,-13.1,-1.8,52962,999.6,989.7,995.5,13.0,,,5.0,230.0,,,SW,0.0,0,59,10.0
-2002-08-25,-7.8,-12.4,-10.8,-1.7,52962,1002.6,996.9,1000.0,31.0,,,7.0,230.0,,,SW,1.1,4,62,10.0
-2002-08-26,-8.1,-11.6,-9.9,-1.7,52962,1011.9,1002.0,1007.6,35.0,,,11.0,240.0,,,SW,1.7,2,59,10.0
-2002-08-27,-3.4,-8.6,-4.6,-1.7,52962,1011.9,1002.3,1006.1,17.0,,,10.0,320.0,,,NW,5.8,11,69,10.0
-2002-08-28,-3.1,-6.1,-5.1,-1.8,52962,1011.8,999.9,1004.8,25.0,,,10.0,240.0,,,SW,4.6,7,72,10.0
-2002-08-29,-5.2,-11.4,-8.9,-1.7,92962,1018.6,1011.1,1016.2,10.0,,,4.0,350.0,,,N,0.0,0,70,9.0
-2002-08-30,-0.4,-13.7,-4.4,-1.8,92962,1018.0,1005.5,1013.3,44.0,,,10.0,50.0,,,N,2.4,T,69,10.0
-2002-08-31,2.5,-1.0,0.8,-1.6,22060,1005.5,983.5,990.6,61.0,,,37.0,40.0,,,NE,7.7,T,56,10.0
-2002-09-01,2.9,-0.9,0.2,-1.5,32963,984.0,964.8,969.8,31.0,,,6.0,60.0,,,E,5.6,4,59,10.0
-2002-09-02,1.2,-5.2,-3.3,-1.5,52963,993.5,967.5,984.0,18.0,,,7.0,180.0,,,SW,2.5,3,59,10.0
-2002-09-03,-3.0,-7.3,-5.4,-1.5,42961,1000.5,993.0,998.9,14.0,,,5.0,230.0,,,SW,0.0,0,59,10.0
-2002-09-04,-4.2,-8.6,-5.6,-1.4,32961,1001.4,998.7,1000.0,15.0,,,5.0,340.0,,,NE,0.0,0,58,9.0
-2002-09-05,-4.7,-7.9,-6.2,-1.6,52963,1010.8,1001.4,1007.0,17.0,,,6.0,240.0,,,SW,0.2,T,58,10.0
-2002-09-06,-6.0,-10.3,-8.4,-1.7,32961,1012.2,1008.3,1010.3,14.0,,,6.0,180.0,,,N,0.0,0,58,10.0
-2002-09-07,-6.8,-10.6,-8.2,-1.5,32962,1014.1,1011.2,1012.6,11.0,,,4.0,40.0,,,NE,0.0,0,58,10.0
-2002-09-08,-5.1,-8.6,-7.0,-1.5,32962,1015.4,1010.1,1012.5,7.0,,,3.0,70.0,,,NE,0.0,0,58,10.0
-2002-09-09,-1.2,-8.5,-4.1,-1.4,32962,1016.9,1013.4,1015.5,18.0,,,5.0,120.0,,,E,0.2,T,58,10.0
-2002-09-10,3.1,-3.1,-0.3,-1.6,42962,1013.4,1010.6,1011.4,21.0,,,6.0,10.0,,,W,6.5,3,59,10.0
-2002-09-11,0.5,-0.7,-0.2,-1.4,32962,1017.7,1010.5,1014.2,16.0,,,10.0,310.0,,,NW,4.6,4,64,10.0
-2002-09-12,4.4,-2.1,0.1,-1.4,32962,1018.2,1016.4,1017.3,15.0,,,5.0,120.0,,,E,0.2,T,62,9.0
-2002-09-13,2.9,-5.3,-1.7,-1.3,22961,1016.4,1010.2,1012.7,27.0,,,6.0,110.0,,,SE,0.0,0,61,7.0
-2002-09-14,2.9,0.6,1.9,-1.3,0/9/0,1010.2,1001.9,1004.4,45.0,,,20.0,20.0,,,NW,2.2,T,55,10.0
-2002-09-15,2.1,-4.0,-0.3,-1.1,0/8/0,1007.9,1004.5,1006.3,8.0,,,2.0,110.0,,,NW,3.0,3,56,10.0
-2002-09-16,0.5,-2.2,-1.1,-1.0,22892,1009.9,1006.2,1007.8,14.0,,,4.0,120.0,,,SE,0.2,T,55,10.0
-2002-09-17,1.5,-3.5,-1.3,-1.0,0/3/0,1010.6,1004.6,1008.5,14.0,,,5.0,70.0,,,SE,1.1,T,55,10.0
-2002-09-18,5.6,-1.1,1.0,-1.1,0/8/0,1004.6,990.5,994.5,17.0,,,5.0,120.0,,,NW,7.9,0,54,10.0
-2002-09-19,4.9,-1.9,0.3,-0.8,0/8/0,995.3,990.1,992.9,10.0,,,4.0,160.0,,,E,0.0,0,53,10.0
-2002-09-20,-1.8,-5.6,-4.2,-1.0,0/8/0,998.6,995.3,997.5,7.0,,,3.0,130.0,,,W,0.0,0,53,10.0
-2002-09-21,-1.2,-6.1,-3.8,-1.3,0/7/0,998.8,997.1,997.7,12.0,,,3.0,130.0,,,NW,0.0,0,52,9.0
-2002-09-22,4.2,-3.1,1.1,-1.1,0/8/0,998.1,984.6,992.3,52.0,,,14.0,40.0,,,NE,2.1,0,52,10.0
-2002-09-23,4.7,-0.4,2.2,-0.9,0/8/0,988.2,981.7,985.2,57.0,,,22.0,30.0,,,N,7.7,0,40,10.0
-2002-09-24,3.0,-1.2,1.2,-0.8,0/8/0,988.4,980.8,985.5,45.0,,,6.0,90.0,,,N,0.0,0,39,6.0
-2002-09-25,2.6,-3.1,-1.1,-0.9,0/8/0,984.2,979.3,982.5,45.0,,,12.0,90.0,,,E,0.2,T,39,10.0
-2002-09-26,-0.9,-6.4,-4.3,-0.9,0/8/0,986.5,984.2,985.7,10.0,,,3.0,300.0,,,NE,2.5,3,40,10.0
-2002-09-27,-0.7,-4.4,-3.8,-1.1,52962,988.0,985.7,986.7,12.0,,,4.0,250.0,,,W,0.2,T,42,10.0
-2002-09-28,-4.1,-8.8,-6.6,-1.3,52962,994.4,986.9,991.0,19.0,,,10.0,210.0,,,SW,1.9,3,45,10.0
-2002-09-29,-4.6,-9.6,-7.1,-1.2,52962,995.0,993.6,994.3,18.0,,,7.0,230.0,,,SW,0.0,0,45,10.0
-2002-09-30,-4.9,-6.5,-5.6,-1.2,52962,994.0,993.0,990.5,24.0,,,10.0,230.0,,,S,0.0,0,44,8.0
-2002-10-01,-1.3,-6.9,-5.6,-1.3,52962,992.9,989.6,991.0,11.0,,,5.0,220.0,,,SW,0.0,0,44,9.0
-2002-10-02,-2.6,-7.5,-4.6,-1.3,52962,993.4,989.5,991.1,8.0,,,3.0,20.0,,,NE,1.9,2,44,10.0
-2002-10-03,-4.4,-6.5,-5.1,-1.3,52962,995.5,993.4,994.7,26.0,,,13.0,10.0,,,N,0.9,2,50,10.0
-2002-10-04,-2.5,-5.6,-3.6,-1.5,0/4/0,995.5,981.2,987.0,62.0,,,24.0,30.0,,,N,1.3,T,44,10.0
-2002-10-05,-1.4,-6.1,-3.8,-1.2,0/8/0,983.0,975.5,976.9,40.0,,,15.0,20.0,,,N,2.0,1,42,7.0
-2002-10-06,-5.1,-9.0,-6.5,-1.5,12861,980.3,978.2,979.4,21.0,,,10.0,10.0,,,SW,0.6,2,42,10.0
-2002-10-07,-6.8,-10.1,-9.6,-1.6,52962,983.6,979.5,981.4,20.0,,,6.0,240.0,,,W,0.0,0,43,9.0
-2002-10-08,-2.6,-10.0,-5.9,-1.6,42862,985.6,979.0,982.8,25.0,,,8.0,130.0,,,N,4.2,4,43,10.0
-2002-10-09,0.5,-3.8,-1.3,-1.6,0/8/0,981.7,976.0,979.2,34.0,,,14.0,20.0,,,N,3.0,2,42,9.0
-2002-10-10,-0.7,-3.0,-2.1,-1.5,42868,976.2,969.8,970.8,20.0,,,4.0,120.0,,,NW,1.3,2,44,10.0
-2002-10-11,-2.5,-5.4,-3.8,-1.3,0/8/0,985.3,971.3,978.0,35.0,,,16.0,30.0,,,N,0.1,T,43,10.0
-2002-10-12,-1.8,-6.6,-3.5,-1.3,0/8/0,994.6,985.0,992.2,36.0,,,6.0,120.0,,,E,0.2,T,42,10.0
-2002-10-13,0.7,-4.0,-1.8,-1.4,0/8/0,995.6,992.4,994.3,35.0,,,11.0,20.0,,,E,0.0,0,41,10.0
-2002-10-14,1.9,-2.3,0.1,-1.4,0/8/0,992.4,982.1,986.7,51.0,,,19.0,40.0,,,E,0.5,T,40,10.0
-2002-10-15,2.1,-4.1,-1.9,-1.5,31762,992.4,983.8,987.4,22.0,,,5.0,240.0,,,W,15.5,16,57,10.0
-2002-10-16,-1.8,-6.9,-5.4,-1.6,21361,999.1,992.4,997.9,17.0,,,9.0,250.0,,,SW,0.2,T,55,10.0
-2002-10-17,-2.0,-6.4,-4.7,-1.4,0/8/0,998.3,993.9,995.7,19.0,,,6.0,220.0,,,SW,0.2,1,53,10.0
-2002-10-18,-5.1,-9.2,-8.3,-1.6,0/8/0,997.0,993.9,995.4,29.0,,,13.0,200.0,,,SW,0.1,T,51,10.0
-2002-10-19,-1.0,-12.4,-6.5,-1.4,019/0,996.2,975.4,982.3,24.0,,,9.0,150.0,,,SE,T,T,50,10.0
-2002-10-20,-1.5,-6.0,-4.2,-1.4,229/0,978.5,974.5,976.0,14.0,,,5.0,220.0,,,S,T,T,49,10.0
-2002-10-21,-4.7,-11.8,-9.6,-1.7,219/2,979.9,974.5,977.7,32.0,,,18.0,230.0,,,SW,1.3,1,47,10.0
-2002-10-22,-7.8,-13.1,-10.4,-1.5,729/3,978.0,974.5,975.4,27.0,,,10.0,250.0,,,SW,0.6,T,46,6.0
-2002-10-23,-4.1,-14.5,-8.6,-1.5,829/2,981.9,976.2,979.9,18.0,,,7.0,180.0,,,S,0.2,T,46,6.0
-2002-10-24,-4.5,-12.4,-7.8,-1.6,829/2,987.8,981.9,986.4,17.0,,,7.0,240.0,,,W,T,T,45,10.0
-2002-10-25,0.6,-7.5,-4.1,-1.6,839/1,990.5,987.8,989.5,19.0,,,5.0,200.0,,,NE,0.0,0,44,5.0
-2002-10-26,-0.7,-6.0,-3.3,-1.6,839/1,991.7,983.5,988.6,49.0,,,16.0,20.0,,,N,0.2,T,43,10.0
-2002-10-27,2.8,-1.5,1.3,-1.7,83751,983.5,978.7,980.6,58.0,,,33.0,350.0,,,N,11.8,T,43,10.0
-2002-10-28,2.9,-1.4,1.4,-1.4,236/1,980.8,972.0,976.3,67.0,,,42.0,10.0,,,N,10.4,T,37,10.0
-2002-10-29,1.5,-5.2,-2.9,-1.4,239/0,982.7,972.5,979.6,53.0,,,16.0,10.0,,,W,0.5,T,38,9.0
-2002-10-30,2.0,-6.1,-3.1,-1.2,239/0,983.1,981.6,982.2,21.0,,,8.0,20.0,,,N,T,T,38,7.0
-2002-10-31,-1.6,-6.2,-5.1,-1.1,539/2,983.5,982.3,982.8,12.0,,,4.0,270.0,,,SW,1.4,1,41,9.0
-2002-11-01,2.1,-7.2,-3.0,-0.8,33751,983.5,982.0,982.7,21.0,,,5.0,100.0,,,E,0.0,0,39,4.0
-2002-11-02,3.6,-5.0,-2.2,-0.9,249/0,993.2,983.0,988.6,20.0,,,8.0,90.0,,,E,0.0,0,39,8.0
-2002-11-03,-0.9,-6.2,-4.2,-0.9,349/0,998.8,993.2,997.4,13.0,,,7.0,240.0,,,W,0.0,0,39,9.0
-2002-11-04,0.8,-6.8,-1.7,-0.9,339/0,998.8,990.6,995.1,28.0,,,4.0,20.0,,,NE,T,T,39,10.0
-2002-11-05,2.0,-1.4,0.2,-0.9,339/0,990.6,971.6,976.0,34.0,,,10.0,40.0,,,NW,8.3,1,43,10.0
-2002-11-06,-0.9,-5.7,-4.4,-1.5,549/3,991.0,977.4,986.7,29.0,,,12.0,250.0,,,W,0.6,1,45,10.0
-2002-11-07,-2.9,-7.2,-6.4,-1.5,949/2,997.2,991.0,995.1,20.0,,,9.0,240.0,,,SW,0.0,0,45,8.0
-2002-11-08,-0.4,-8.4,-4.9,-1.4,549/2,1004.6,997.2,1002.3,14.0,,,5.0,220.0,,,S,0.0,0,44,10.0
-2002-11-09,2.9,-4.5,0.2,-1.4,849/1,1004.6,996.0,998.2,17.0,,,6.0,10.0,,,SE,7.3,1,48,10.0
-2002-11-10,2.4,-1.5,-0.2,-1.5,528/2,996.0,989.9,991.9,8.0,,,3.0,130.0,,,SE,0.3,T,46,10.0
-2002-11-11,4.1,-1.7,0.4,-1.2,549/1,990.4,985.3,988.5,12.0,,,3.0,180.0,,,SE,0.5,T,44,10.0
-2002-11-12,5.4,-2.0,2.0,-0.9,439/1,985.3,977.6,979.6,17.0,,,6.0,130.0,,,SE,0.6,T,42,7.0
-2002-11-13,0.5,-1.8,-0.8,-1.0,539/2,989.6,981.3,986.9,8.0,,,5.0,320.0,,,W,1.3,T,42,10.0
-2002-11-14,2.8,-2.4,-0.9,-1.2,549/2,993.2,989.6,992.0,6.0,,,3.0,230.0,,,W,0.6,1,42,10.0
-2002-11-15,1.9,-3.7,-0.5,-1.0,449/0,993.4,991.5,992.4,10.0,,,4.0,90.0,,,SE,0.0,0,40,10.0
-2002-11-16,3.7,-2.8,0.4,-0.8,349/1,991.5,987.4,989.3,20.0,,,5.0,10.0,,,N,0.0,0,40,9.0
-2002-11-17,4.7,-2.0,0.8,-0.7,249/0,987.4,984.0,984.5,21.0,,,6.0,80.0,,,E,0.0,0,38,10.0
-2002-11-18,3.3,-0.9,1.0,-0.9,249/0,984.0,976.0,977.9,26.0,,,7.0,80.0,,,E,0.9,T,40,10.0
-2002-11-19,2.7,-0.7,0.3,-0.7,0/9/0,982.4,978.1,980.5,34.0,,,12.0,20.0,,,NE,0.0,0,37,9.0
-2002-11-20,0.2,-1.5,-0.9,-0.6,0/9/0,985.3,982.4,984.1,20.0,,,4.0,20.0,,,SW,0.0,0,37,10.0
-2002-11-21,1.3,-2.7,-0.8,-0.5,0/9/0,985.2,976.4,980.9,13.0,,,5.0,10.0,,,W,0.0,0,36,10.0
-2002-11-22,1.5,-2.0,-0.3,-0.8,0/9/0,976.4,970.0,971.1,34.0,,,9.0,60.0,,,NE,T,T,36,10.0
-2002-11-23,1.0,-2.4,-1.1,-0.5,0/9/0,976.9,970.2,974.1,19.0,,,7.0,70.0,,,W,1.8,T,36,10.0
-2002-11-24,0.0,-4.3,-2.5,-0.8,0/9/0,981.6,976.9,980.1,15.0,,,5.0,250.0,,,SW,T,T,36,10.0
-2002-11-25,2.8,-5.0,-1.3,0.0,0/9/0,986.2,981.6,984.0,6.0,,,3.0,30.0,,,E,0.0,0,32,4.0
-2002-11-26,1.9,-3.5,-0.8,0.2,0/9/0,991.8,986.2,990.6,11.0,,,4.0,10.0,,,N,0.0,0,30,8.0
-2002-11-27,-1.1,-2.6,-2.1,0.1,0/9/0,992.2,991.2,991.7,15.0,,,8.0,220.0,,,SW,0.0,0,30,10.0
-2002-11-28,1.0,-3.0,-1.2,0.0,0/8/0,991.2,982.6,986.1,14.0,,,7.0,220.0,,,NW,0.7,T,29,10.0
-2002-11-29,0.6,-1.5,-0.9,0.4,0/9/0,982.6,979.0,980.5,14.0,,,6.0,250.0,,,W,2.9,1,32,10.0
-2002-11-30,0.6,-1.8,-0.5,0.0,0/9/0,987.1,979.5,983.7,15.0,,,8.0,220.0,,,SW,1.1,T,31,10.0
-2002-12-01,1.2,-2.2,-1.0,0.0,0/9/0,989.3,984.0,987.1,20.0,,,8.0,230.0,,,SW,0.0,0,30,9.0
-2002-12-02,1.4,-3.7,-0.8,-0.3,0/9/0,984.0,965.7,971.9,33.0,,,10.0,90.0,,,E,1.0,T,31,9.0
-2002-12-03,3.5,-0.7,0.8,-0.1,0/9/0,982.8,965.7,976.6,25.0,,,10.0,100.0,,,E,0.0,0,28,9.0
-2002-12-04,1.5,-0.8,0.2,-0.4,0/9/0,989.2,982.8,987.6,26.0,,,7.0,20.0,,,N,0.0,0,26,9.0
-2002-12-05,2.7,-3.0,0.2,-0.3,0/9/0,989.2,983.5,986.2,9.0,,,3.0,310.0,,,E,T,T,26,9.0
-2002-12-06,4.3,-1.1,1.5,-0.1,0/9/0,983.5,974.5,978.5,32.0,,,8.0,30.0,,,E,6.3,4,27,9.0
-2002-12-07,3.5,-1.5,0.4,-0.3,0/9/0,991.5,981.7,987.4,43.0,,,12.0,10.0,,,NW,2.6,1,26,10.0
-2002-12-08,5.3,-1.0,1.8,-0.2,0/9/0,993.4,978.3,986.5,32.0,,,8.0,10.0,,,N,1.2,T,23,10.0
-2002-12-09,4.0,-0.9,0.7,-0.2,0/9/0,979.4,965.0,972.7,25.0,,,10.0,260.0,,,W,3.6,T,20,10.0
-2002-12-10,4.6,-1.9,1.0,-0.7,0/9/0,989.5,978.1,984.4,25.0,,,7.0,350.0,,,NW,1.0,T,18,10.0
-2002-12-11,5.1,-0.8,2.1,-0.3,0/9/0,981.8,960.8,968.8,32.0,,,12.0,120.0,,,E,6.1,T,12,10.0
-2002-12-12,3.0,-2.5,0.9,-0.4,0/9/0,988.1,976.8,983.6,25.0,,,5.0,270.0,,,W,0.7,T,12,9.0
-2002-12-13,4.5,0.6,3.8,-0.4,0/9/0,988.2,968.0,977.5,53.0,,,24.0,20.0,,,N,34.9,0,3,10.0
-2002-12-14,3.0,-0.1,1.9,-0.3,0/9/0,975.4,967.1,973.0,62.0,,,32.0,240.0,,,N,6.8,T,0,10.0
-2002-12-15,2.0,-1.2,-0.3,-1.2,0/8/0,985.3,975.4,980.3,47.0,,,15.0,340.0,,,NW,2.2,1,0,10.0
-2002-12-16,1.4,-1.7,-0.1,-0.9,0/9/0,988.0,985.3,986.5,18.0,,,8.0,290.0,,,W,1.8,T,0,10.0
-2002-12-17,3.0,-0.9,0.4,-0.6,0/9/0,985.5,980.5,981.8,17.0,,,4.0,120.0,,,SE,3.4,1,0,10.0
-2002-12-18,4.9,-0.6,1.3,-0.4,0/9/0,984.7,981.6,983.4,8.0,,,3.0,110.0,,,SE,T,0,0,10.0
-2002-12-19,5.5,-0.2,2.3,-0.1,0/9/0,981.6,978.2,978.9,17.0,,,4.0,40.0,,,W,1.9,0,0,9.0
-2002-12-20,3.1,0.0,1.5,0.4,0/9/0,981.0,977.9,979.0,11.0,,,3.0,300.0,,,SE,2.0,T,0,10.0
-2002-12-21,3.1,-0.1,1.6,0.1,0/9/0,986.0,981.0,983.9,14.0,,,3.0,20.0,,,SE,1.7,T,0,10.0
-2002-12-22,4.1,0.0,2.2,0.1,0/9/0,988.4,986.0,988.0,14.0,,,4.0,140.0,,,E,0.0,0,0,10.0
-2002-12-23,5.2,-0.4,1.4,0.4,0/9/0,988.4,985.8,986.6,17.0,,,4.0,150.0,,,SE,1.6,T,0,9.0
-2002-12-24,6.8,0.2,2.1,1.2,0/9/0,987.7,985.9,986.9,8.0,,,3.0,320.0,,,W,0.0,0,0,8.0
-2002-12-25,4.0,1.2,2.4,0.8,0/9/0,989.8,987.7,989.0,13.0,,,4.0,100.0,,,E,0.5,T,0,10.0
-2002-12-26,6.0,0.7,4.8,1.1,0/9/0,990.9,988.2,989.2,37.0,,,15.0,20.0,,,N,0.0,0,0,9.0
-2002-12-27,5.4,1.0,2.9,0.9,0/9/0,992.8,990.0,991.3,29.0,,,5.0,30.0,,,E,0.0,0,0,10.0
-2002-12-28,4.6,0.3,2.1,1.0,0/9/0,1001.6,992.7,998.1,8.0,,,3.0,250.0,,,W,0.2,0,0,10.0
-2002-12-29,8.1,0.4,3.0,1.3,0/9/0,1005.9,1001.6,1004.6,24.0,,,3.0,30.0,,,SE,0.0,0,0,9.0
-2002-12-30,6.7,1.9,4.1,1.2,0/9/0,1004.4,997.8,1000.8,29.0,,,7.0,30.0,,,SE,1.0,0,0,10.0
-2002-12-31,5.6,0.9,3.0,1.3,0/9/0,997.8,996.1,996.4,22.0,,,5.0,30.0,,,SE,0.4,0,0,10.0
-2003-01-01,6.1,0.7,2.9,1.3,0/9/0,997.2,993.4,994.7,21.0,,,7.0,240.0,,,SE,0.0,0,0,9.0
-2003-01-02,7.7,1.5,3.9,1.3,0/9/0,993.4,987.0,989.5,20.0,,,4.0,20.0,,,E,0.4,0,0,9.0
-2003-01-03,7.9,0.0,3.2,0.6,0/9/0,987.3,985.9,986.3,12.0,,,3.0,110.0,,,SE,7.4,0,0,9.0
-2003-01-04,8.2,1.4,4.5,0.4,0/9/0,993.7,985.9,990.5,13.0,,,4.0,130.0,,,SE,0.0,0,0,8.0
-2003-01-05,5.5,-2.0,1.1,0.5,0/9/0,994.0,990.3,992.2,8.0,,,3.0,310.0,,,SE,0.0,0,0,9.0
-2003-01-06,7.7,1.0,2.8,0.7,0/9/0,994.6,990.1,993.1,9.0,,,3.0,120.0,,,E,0.0,0,0,10.0
-2003-01-07,5.2,1.2,2.9,1.1,0/9/0,996.0,994.6,995.6,7.0,,,2.0,130.0,,,S,0.4,0,0,10.0
-2003-01-08,6.1,1.1,2.3,0.8,0/9/0,995.7,991.1,993.4,7.0,,,2.0,190.0,,,S,0.0,0,0,8.0
-2003-01-09,4.4,-0.4,1.9,0.7,0/9/0,991.1,987.2,988.5,9.0,,,4.0,310.0,,,NW,0.0,0,0,9.0
-2003-01-10,5.9,-0.2,2.2,0.6,0/9/0,987.2,985.1,985.6,9.0,,,3.0,350.0,,,NW,0.0,0,0,8.0
-2003-01-11,7.7,0.5,3.0,0.9,0/9/0,985.9,975.1,982.4,31.0,,,5.0,70.0,,,N,0.0,0,0,9.0
-2003-01-12,7.1,1.1,3.9,0.5,0/9/0,975.1,964.2,968.5,51.0,,,19.0,70.0,,,E,1.0,0,0,10.0
-2003-01-13,7.3,2.6,4.8,0.5,0/9/0,974.6,969.9,972.7,38.0,,,14.0,10.0,,,N,0.3,0,0,9.0
-2003-01-14,6.5,0.7,2.5,0.6,0/9/0,980.7,974.4,977.6,24.0,,,7.0,360.0,,,NW,3.1,0,0,9.0
-2003-01-15,3.1,0.4,1.5,0.5,0/9/0,982.5,980.7,981.8,11.0,,,3.0,340.0,,,NW,1.1,T,0,10.0
-2003-01-16,5.4,-1.0,1.7,0.5,0/9/0,988.0,982.5,985.9,17.0,,,3.0,360.0,,,SE,T,T,0,10.0
-2003-01-17,4.5,0.5,1.8,0.5,0/9/0,992.3,988.0,990.4,23.0,,,4.0,10.0,,,N,1.1,T,0,10.0
-2003-01-18,5.2,-0.2,1.7,1.6,0/9/0,994.9,988.0,994.4,10.0,,,3.0,30.0,,,N,0.1,T,0,4.0
-2003-01-19,6.9,-1.0,2.9,1.8,0/9/0,996.4,994.8,995.9,14.0,,,3.0,10.0,,,NE,0.0,0,0,2.0
-2003-01-20,8.4,-0.6,4.0,2.0,0/9/0,997.6,994.9,996.9,6.0,,,3.0,100.0,,,E,0.0,0,0,1.0
-2003-01-21,8.3,0.5,3.9,1.9,0/9/0,997.2,995.1,996.6,12.0,,,3.0,80.0,,,E,0.0,0,0,1.0
-2003-01-22,5.3,0.0,1.9,1.9,0/9/0,995.2,993.9,994.5,12.0,,,6.0,290.0,,,NE,0.0,0,0,9.0
-2003-01-23,9.0,-0.5,3.7,2.5,0/9/0,995.3,990.2,993.1,23.0,,,6.0,60.0,,,N,0.0,0,0,8.0
-2003-01-24,9.0,3.0,5.9,1.9,0/9/0,990.2,981.7,983.8,28.0,,,5.0,20.0,,,SE,0.0,0,0,7.0
-2003-01-25,7.5,1.9,4.0,1.6,0/9/0,985.8,981.3,983.3,18.0,,,5.0,50.0,,,W,0.0,0,0,5.0
-2003-01-26,5.9,1.4,3.0,1.5,0/9/0,990.3,985.8,989.4,14.0,,,3.0,100.0,,,E,0.0,0,0,9.0
-2003-01-27,5.0,2.0,3.0,1.2,0/9/0,995.6,989.9,993.2,8.0,,,2.0,240.0,,,NE,0.7,0,0,10.0
-2003-01-28,8.2,2.0,4.5,1.3,0/9/0,998.0,994.3,996.2,28.0,,,6.0,360.0,,,E,T,T,0,9.0
-2003-01-29,4.8,1.7,3.1,1.2,0/9/0,994.3,986.3,988.9,11.0,,,3.0,130.0,,,N,1.0,0,0,10.0
-2003-01-30,3.6,0.8,2.7,1.2,0/9/0,991.0,986.4,989.3,6.0,,,3.0,300.0,,,SW,4.1,T,0,8.0
-2003-01-31,4.4,0.5,1.6,1.6,0/9/0,991.2,988.1,989.7,11.0,,,3.0,190.0,,,S,0.6,T,0,10.0
-2003-02-01,2.5,-0.5,0.9,1.1,0/9/0,988.1,987.2,987.6,10.0,,,3.0,190.0,,,S,0.9,T,0,10.0
-2003-02-02,2.5,-0.5,0.6,1.3,0/8/0,991.3,987.9,990.2,11.0,,,3.0,230.0,,,S,0.2,0,0,10.0
-2003-02-03,5.1,0.3,2.3,1.1,0/9/0,991.3,980.6,986.0,13.0,,,4.0,130.0,,,SE,1.5,T,0,10.0
-2003-02-04,4.9,0.5,2.4,0.5,0/9/0,980.6,978.6,979.6,15.0,,,4.0,340.0,,,NW,9.8,T,0,8.0
-2003-02-05,3.0,-0.8,0.8,1.0,0/9/0,983.9,980.0,982.4,7.0,,,3.0,110.0,,,E,0.0,0,0,10.0
-2003-02-06,3.7,0.2,1.9,1.0,0/9/0,984.4,982.2,983.5,15.0,,,4.0,10.0,,,E,T,T,0,10.0
-2003-02-07,4.4,0.2,1.6,0.8,0/9/0,982.2,973.3,975.1,17.0,,,6.0,300.0,,,SE,3.9,1,0,9.0
-2003-02-08,3.3,-1.2,1.0,0.8,0/9/0,973.3,966.1,968.8,17.0,,,6.0,180.0,,,S,3.3,1,0,10.0
-2003-02-09,3.1,-0.2,1.3,0.4,0/9/0,982.7,970.9,978.8,21.0,,,12.0,210.0,,,SW,2.2,1,0,4.0
-2003-02-10,5.8,-0.6,1.9,0.9,0/9/0,986.4,976.6,982.9,20.0,,,8.0,230.0,,,SW,T,T,0,7.0
-2003-02-11,5.6,-0.9,4.8,1.1,0/9/0,976.6,965.7,969.4,55.0,,,17.0,30.0,,,N,0.7,0,0,9.0
-2003-02-12,6.3,1.2,2.9,1.2,0/9/0,973.5,970.6,972.5,11.0,,,3.0,330.0,,,SE,1.1,0,0,10.0
-2003-02-13,4.9,0.4,2.4,0.9,0/9/0,979.8,973.5,976.3,16.0,,,3.0,90.0,,,E,0.9,0,0,10.0
-2003-02-14,4.3,-0.1,1.2,0.6,0/9/0,995.0,979.8,990.1,23.0,,,8.0,20.0,,,NW,6.1,2,0,10.0
-2003-02-15,4.4,1.5,3.4,1.1,0/8/0,993.8,973.2,979.7,56.0,,,25.0,20.0,,,N,10.8,0,0,10.0
-2003-02-16,4.7,1.3,2.6,0.9,0/8/0,994.3,971.2,984.2,40.0,,,18.0,340.0,,,NW,15.1,0,0,7.0
-2003-02-17,5.9,-0.9,2.9,0.5,0/9/0,998.0,993.8,996.1,42.0,,,10.0,30.0,,,NE,T,T,0,10.0
-2003-02-18,6.1,2.1,4.4,1.2,0/9/0,1000.6,993.8,996.3,43.0,,,16.0,30.0,,,N,2.3,0,0,10.0
-2003-02-19,4.7,1.8,3.2,0.9,0/9/0,1005.1,993.2,1000.8,47.0,,,19.0,40.0,,,N,0.5,0,0,10.0
-2003-02-20,7.4,2.0,3.5,1.3,0/9/0,993.2,973.9,980.3,62.0,,,22.0,40.0,,,N,1.5,0,0,10.0
-2003-02-21,3.1,0.4,1.8,1.1,0/9/0,980.9,968.7,972.5,36.0,,,16.0,340.0,,,N,7.9,T,0,9.0
-2003-02-22,4.0,-1.0,1.7,0.8,0/9/0,975.0,972.7,974.0,31.0,,,15.0,20.0,,,N,0.1,0,0,10.0
-2003-02-23,4.5,1.8,3.3,1.0,0/9/0,975.7,970.4,972.5,25.0,,,7.0,140.0,,,SE,1.2,0,0,10.0
-2003-02-24,6.5,1.1,2.6,0.9,0/9/0,990.1,975.7,987.6,11.0,,,5.0,350.0,,,N,0.6,0,0,10.0
-2003-02-25,5.3,-0.4,2.8,1.2,0/9/0,990.2,974.3,980.4,47.0,,,9.0,90.0,,,E,0.1,0,0,10.0
-2003-02-26,5.0,1.4,3.0,1.4,0/9/0,981.2,974.3,977.8,32.0,,,11.0,100.0,,,E,0.0,0,0,9.0
-2003-02-27,2.7,0.5,1.2,1.3,0/9/0,981.3,974.8,977.0,43.0,,,19.0,90.0,,,E,0.0,0,0,10.0
-2003-02-28,4.2,-0.1,1.8,1.3,0/9/0,983.3,974.8,979.3,42.0,,,13.0,90.0,,,E,0.0,0,0,9.0
-2003-03-01,2.6,-0.8,0.3,1.2,0/9/0,988.8,983.3,988.1,22.0,,,6.0,20.0,,,E,3.0,3,0,10.0
-2003-03-02,3.1,-1.0,0.2,0.7,0/9/0,987.2,985.7,986.1,23.0,,,8.0,340.0,,,N,T,T,0,10.0
-2003-03-03,3.6,-1.0,-0.3,1.1,0/9/0,989.9,987.0,987.7,24.0,,,7.0,30.0,,,NE,0.0,0,0,10.0
-2003-03-04,2.2,-2.5,-0.3,1.0,0/9/0,995.0,988.9,993.3,10.0,,,5.0,15.0,,,N,0.0,0,0,9.0
-2003-03-05,2.8,-2.1,-0.9,1.1,0/9/0,1000.4,995.0,998.8,23.0,,,6.0,80.0,,,E,0.0,0,0,9.0
-2003-03-06,0.7,-2.3,-1.2,1.4,0/9/0,998.1,969.5,981.7,57.0,,,22.0,90.0,,,E,3.2,3,0,10.0
-2003-03-07,2.4,-2.6,0.0,1.4,0/9/0,978.9,968.0,972.2,46.0,,,18.0,100.0,,,E,0.6,0,0,10.0
-2003-03-08,4.9,-3.2,-0.2,1.0,0/9/0,996.2,979.0,990.6,30.0,,,10.0,90.0,,,NE,0.0,0,0,4.0
-2003-03-09,4.4,-3.0,0.6,1.6,0/9/0,999.5,982.5,989.5,41.0,,,13.0,30.0,,,NE,1.1,1,0,8.0
-2003-03-10,3.0,-1.0,0.1,0.6,0/9/0,983.5,980.6,981.7,13.0,,,3.0,230.0,,,SW,7.1,2,0,9.0
-2003-03-11,2.6,-3.1,-0.1,0.6,0/9/0,985.2,981.7,983.4,21.0,,,6.0,220.0,,,SW,0.0,0,0,6.0
-2003-03-12,1.1,-0.8,0.2,0.5,0/9/0,992.7,986.1,990.1,26.0,,,12.0,20.0,,,N,1.0,T,T,10.0
-2003-03-13,2.1,-1.9,-0.7,0.4,0/9/0,993.2,992.2,992.8,22.0,,,10.0,10.0,,,N,0.0,0,0,9.0
-2003-03-14,1.2,-3.4,-0.2,0.5,0/9/0,993.3,992.9,993.1,32.0,,,8.0,60.0,,,E,T,T,0,10.0
-2003-03-15,3.8,0.6,1.4,0.9,0/9/0,993.5,988.8,990.7,44.0,,,19.0,30.0,,,NE,0.0,0,0,10.0
-2003-03-16,5.3,1.0,2.7,1.0,0/9/0,991.5,987.2,990.3,41.0,,,20.0,20.0,,,N,T,T,0,8.0
-2003-03-17,3.9,-0.6,0.3,0.8,0/8/0,992.4,985.2,988.3,18.0,,,4.0,270.0,,,W,T,0,0,8.0
-2003-03-18,1.6,-0.7,0.1,0.7,0/8/0,996.2,993.8,994.7,23.0,,,10.0,220.0,,,SW,0.9,T,0,9.0
-2003-03-19,1.7,-1.5,-0.2,0.6,0/8/0,993.8,979.0,985.4,28.0,,,18.0,240.0,,,W,3.0,3,3,10.0
-2003-03-20,1.0,-3.2,-1.5,0.2,0/8/0,988.3,978.4,984.6,28.0,,,13.0,200.0,,,S,0.8,T,5,10.0
-2003-03-21,-0.1,-2.7,-1.5,0.3,0/8/0,992.0,988.3,991.0,13.0,,,5.0,205.0,,,SW,0.1,2,1,10.0
-2003-03-22,0.8,-1.8,0.3,0.8,0/8/0,1001.7,991.9,998.1,20.0,,,9.0,210.0,,,W,0.9,T,1,10.0
-2003-03-23,1.3,-0.3,0.4,0.6,0/8/0,1011.8,1001.7,1008.0,16.0,,,5.0,270.0,,,W,1.1,0,0,10.0
-2003-03-24,9.4,-1.2,2.9,-0.1,0/9/0,1011.8,1004.6,1007.5,31.0,,,5.0,270.0,,,W,3.0,0,0,10.0
-2003-03-25,4.5,0.5,2.0,-0.7,0/8/0,1004.6,1001.8,1002.6,6.0,,,4.0,330.0,,,SE,4.2,0,0,10.0
-2003-03-26,2.0,-0.2,0.9,-1.0,0/8/0,1009.1,1003.5,1006.9,11.0,,,3.0,300.0,,,NW,6.4,0,0,10.0
-2003-03-27,1.6,-0.1,0.7,-1.0,0/7/0,1010.6,1003.8,1007.2,27.0,,,8.0,330.0,,,NW,14.0,1,0,10.0
-2003-03-28,1.5,-0.4,0.7,-1.1,0/7/0,1014.5,1010.6,1012.3,14.0,,,8.0,320.0,,,NW,2.8,0,0,10.0
-2003-03-29,4.0,0.0,1.7,-1.2,0/7/0,1014.7,1004.4,1009.4,26.0,,,10.0,300.0,,,NW,23.3,0,0,10.0
-2003-03-30,2.6,0.0,0.7,-0.6,0/8/0,1006.4,1002.9,1005.0,26.0,,,12.0,220.0,,,SW,2.2,0,0,9.0
-2003-03-31,3.9,-1.8,0.9,0.0,0/8/0,1005.5,980.3,992.0,46.0,,,16.0,0.0,,,N,3.9,0,0,10.0
-2003-04-01,2.4,-0.2,0.6,0.2,0/8/0,991.9,976.9,984.0,47.0,,,14.0,0.0,,,NW,17.0,1,0,7.0
-2003-04-02,2.9,-0.6,1.2,-0.8,0/8/0,995.0,991.9,993.6,27.0,,,9.0,330.0,,,NW,2.5,0,0,10.0
-2003-04-03,4.9,0.8,3.2,0.1,0/7/0,994.9,984.2,990.3,54.0,,,17.0,30.0,,,NW,4.0,0,0,10.0
-2003-04-04,3.8,1.6,2.3,-0.2,0/8/0,990.4,982.7,986.5,43.0,,,21.0,350.0,,,NW,4.5,0,0,10.0
-2003-04-05,4.5,1.2,2.4,0.2,0/8/0,995.1,990.4,992.9,33.0,,,12.0,110.0,,,NW,8.9,0,0,10.0
-2003-04-06,6.2,1.1,3.1,0.3,0/8/0,994.3,992.0,993.6,29.0,,,7.0,20.0,,,SE,6.6,0,0,10.0
-2003-04-07,5.1,0.4,1.1,0.3,0/8/0,1000.0,994.3,997.5,10.0,,,3.0,120.0,,,W,2.1,0,0,10.0
-2003-04-08,1.7,-2.2,-0.8,1.4,0/7/0,1013.5,1000.0,1008.7,12.0,,,4.0,10.0,,,N,0.3,T,0,3.0
-2003-04-09,1.9,-2.5,-0.9,0.3,0/7/0,1019.2,1013.5,1017.5,9.0,,,4.0,30.0,,,NE,0.0,0,0,5.0
-2003-04-10,4.7,-1.0,2.4,0.4,0/7/0,1018.9,989.7,1000.9,50.0,,,18.0,0.0,,,N,T,T,0,10.0
-2003-04-11,3.4,-0.2,0.7,0.4,0/8/0,994.2,983.6,989.3,26.0,,,8.0,330.0,,,NW,T,0,0,9.0
-2003-04-12,1.0,-1.8,-0.9,0.0,0/8/0,995.2,988.9,992.3,27.0,,,10.0,210.0,,,SW,1.3,3,3,10.0
-2003-04-13,0.4,-1.8,-0.7,0.0,0/8/0,995.9,992.6,993.8,15.0,,,4.0,210.0,,,S,0.1,T,0,10.0
-2003-04-14,2.2,-2.2,-1.3,0.2,0/8/0,1006.8,995.9,1003.5,16.0,,,3.0,0.0,,,S,0.0,0,0,7.0
-2003-04-15,-0.4,-1.8,-1.1,-0.2,0/8/0,1006.8,1002.1,1003.2,10.0,,,4.0,0.0,,,S,0.9,T,T,10.0
-2003-04-16,-1.7,-3.5,-3.0,0.2,0/8/0,1004.1,1002.1,1003.3,11.0,,,3.0,50.0,,,NE,0.3,T,T,10.0
-2003-04-17,-0.7,-4.3,-2.4,-0.6,0/8/0,1002.1,996.2,997.2,11.0,,,2.0,200.0,,,NE,0.4,T,T,10.0
-2003-04-18,0.8,-1.6,-0.4,-0.7,0/7/0,1002.3,995.4,998.7,12.0,,,2.0,160.0,,,S,0.0,0,T,10.0
-2003-04-19,-0.2,-3.2,-2.2,-0.7,0/7/0,1005.3,1002.3,1003.8,8.0,,,1.0,280.0,,,S,0.4,T,T,10.0
-2003-04-20,0.3,-4.7,-1.9,-0.5,0/8/0,1002.7,994.9,998.1,16.0,,,4.0,350.0,,,N,0.2,T,T,10.0
-2003-04-21,2.6,-1.0,0.5,-0.4,0/8/0,997.3,991.4,994.9,26.0,,,9.0,350.0,,,SW,2.9,1,1,10.0
-2003-04-22,1.8,-1.0,0.4,-0.3,0/8/0,997.3,978.8,984.6,42.0,,,10.0,0.0,,,N,6.3,2,4,10.0
-2003-04-23,0.6,-0.3,0.0,-0.6,0/8/0,980.2,978.9,979.5,25.0,,,14.0,280.0,,,W,7.9,4,11,10.0
-2003-04-24,0.2,-1.6,-0.7,-0.7,0/8/0,980.5,974.0,976.3,25.0,,,8.0,270.0,,,NW,3.5,7,17,10.0
-2003-04-25,0.0,-2.1,-0.9,-0.3,0/8/0,971.6,966.1,968.4,18.0,,,6.0,230.0,,,W,0.4,1,21,10.0
-2003-04-26,-0.6,-3.8,-3.1,-0.5,0/7/0,968.1,955.7,960.4,45.0,,,12.0,30.0,,,NE,0.1,T,18,10.0
-2003-04-27,-1.0,-5.3,-3.6,-0.6,0/7/0,978.9,956.7,971.7,40.0,,,14.0,20.0,,,N,2.4,4,16,10.0
-2003-04-28,-3.5,-6.0,-5.0,-0.7,0/7/0,983.0,978.9,980.5,32.0,,,11.0,150.0,,,SW,0.8,1,27,5.0
-2003-04-29,-0.1,-6.3,-2.8,-0.6,0/7/0,978.9,951.6,959.6,67.0,,,25.0,20.0,,,N,4.2,2,24,10.0
-2003-04-30,-0.4,-6.2,-4.5,-0.6,0/6/0,973.1,954.4,965.9,35.0,,,13.0,120.0,,,E,3.7,2,23,10.0
-2003-05-01,2.5,-6.2,-2.3,-0.8,0/8/0,965.1,949.9,959.3,46.0,,,20.0,20.0,,,SW,1.9,1,27,10.0
-2003-05-02,-3.0,-5.1,-4.2,-0.9,0/8/0,980.4,964.8,975.0,34.0,,,13.0,30.0,,,SW,0.7,1,27,10.0
-2003-05-03,2.5,0.2,1.2,-0.2,0/8/0,979.2,970.5,972.0,56.0,,,25.0,20.0,,,N,3.5,0,24,10.0
-2003-05-04,2.4,-3.9,-1.1,-0.4,0/8/0,983.6,965.8,976.4,51.0,,,17.0,360.0,,,W,6.2,2,24,9.0
-2003-05-05,-2.6,-4.0,-2.9,-0.9,0/8/0,992.0,980.0,986.9,34.0,,,13.0,240.0,,,W,0.6,T,23,10.0
-2003-05-06,3.1,-3.7,2.0,-0.3,0/7/0,980.0,961.3,964.4,56.0,,,19.0,360.0,,,N,7.2,T,20,9.0
-2003-05-07,1.5,-6.4,-4.6,-1.0,0/7/0,982.2,961.3,975.1,17.0,,,9.0,227.0,,,W,1.3,1,25,10.0
-2003-05-08,-2.3,-6.0,-3.7,-1.0,0/6/0,996.9,982.2,991.3,27.0,,,7.0,200.0,,,S,0.0,0,23,10.0
-2003-05-09,1.9,-2.3,0.0,-0.6,0/6/0,998.2,994.5,995.8,23.0,,,10.0,360.0,,,E,4.7,4,26,10.0
-2003-05-10,1.0,-0.7,0.3,-1.2,0/6/0,994.5,989.4,990.3,20.0,,,7.0,360.0,,,N,8.7,10,35,10.0
-2003-05-11,-0.4,-1.8,-0.9,-1.5,60692,1000.7,989.7,995.1,16.0,,,2.0,10.0,,,N,1.6,2,38,10.0
-2003-05-12,2.9,-0.6,0.3,-0.6,0/6/0,1004.8,974.6,987.8,58.0,,,27.0,20.0,,,N,7.5,T,36,10.0
-2003-05-13,0.5,-1.8,-1.0,-1.1,0/7/0,984.4,973.9,979.9,40.0,,,17.0,210.0,,,SW,2.9,1,37,7.0
-2003-05-14,-0.5,-2.6,-1.1,-0.7,0/7/0,984.4,967.8,972.5,40.0,,,18.0,360.0,,,SW,2.5,1,39,10.0
-2003-05-15,-0.7,-8.0,-5.6,-1.2,0/6/0,974.6,969.3,972.3,45.0,,,18.0,250.0,,,SW,0.8,T,35,6.0
-2003-05-16,-5.9,-8.9,-7.1,-1.4,0/6/0,984.5,972.1,980.0,36.0,,,14.0,220.0,,,S,0.3,T,34,9.0
-2003-05-17,-5.0,-7.2,-5.4,-1.1,0/6/0,991.2,986.6,986.9,23.0,,,8.0,250.0,,,SW,T,T,33,10.0
-2003-05-18,0.0,-5.1,-1.9,-0.6,0/8/0,986.9,970.2,977.4,40.0,,,8.0,150.0,,,E,3.1,1,35,1.0
-2003-05-19,-0.2,-9.8,-4.3,-1.5,0/8/0,998.1,986.7,990.3,52.0,,,13.0,90.0,,,N,4.2,T,35,8.0
-2003-05-20,-3.0,-9.2,-4.2,-1.2,0/8/0,1014.7,998.1,1012.1,46.0,,,10.0,150.0,,,NE,0.6,0,33,1.0
-2003-05-21,-2.8,-5.4,-3.4,-1.1,0/6/0,1019.0,1014.6,1017.2,14.0,,,4.0,280.0,,,W,0.0,0,33,10.0
-2003-05-22,-2.6,-4.5,-3.4,-1.5,0/6/0,1021.2,1018.9,1020.7,15.0,,,4.0,220.0,,,S,0.2,0,33,10.0
-2003-05-23,-1.2,-4.5,-2.2,-1.3,0/7/0,1020.9,1013.9,1015.8,9.0,,,2.0,140.0,,,NW,1.2,T,33,
-2003-05-24,0.5,-4.5,-2.8,-1.2,0/7/0,1014.4,1010.8,1013.3,31.0,,,4.0,20.0,,,NE,0.0,0,33,6.0
-2003-05-25,-1.2,-5.3,-3.7,-1.2,0/7/0,1010.8,997.2,1001.6,15.0,,,3.0,360.0,,,E,0.0,0,33,10.0
-2003-05-26,-1.3,-7.7,-4.8,-1.5,20792,997.0,986.9,991.8,11.0,,,3.0,110.0,,,E,0.2,0,33,9.0
-2003-05-27,2.1,-7.4,0.0,-1.5,0/7/0,989.1,983.9,986.2,22.0,,,4.0,30.0,,,E,1.0,1,34,6.0
-2003-05-28,0.2,-1.7,-1.0,-1.4,0/7/0,988.9,986.5,988.1,11.0,,,1.0,360.0,,,N,1.3,T,35,10.0
-2003-05-29,0.2,-6.6,-3.0,-1.6,0/7/0,988.3,981.8,985.7,25.0,,,5.0,110.0,,,E,0.4,T,35,7.0
-2003-05-30,0.4,-2.8,-1.0,-1.4,0/7/0,982.0,975.9,977.9,42.0,,,14.0,90.0,,,E,1.9,T,34,8.0
-2003-05-31,0.1,-5.7,-3.7,-1.1,0/2/0,982.0,978.7,980.8,27.0,,,8.0,20.0,,,NE,0.2,T,34,8.0
-2003-06-01,-3.0,-4.3,-3.6,-0.9,0/6/0,983.9,981.8,982.8,20.0,,,6.0,180.0,,,S,0.8,T,34,9.0
-2003-06-02,-3.6,-6.3,-5.0,-1.2,0/7/0,987.0,983.9,985.8,23.0,,,8.0,20.0,,,N,0.0,0,34,8.0
-2003-06-03,-3.8,-6.1,-4.6,-1.0,0/7/0,990.6,986.9,989.4,17.0,,,4.0,60.0,,,E,1.3,1,34,10.0
-2003-06-04,-4.2,-8.7,-6.7,-1.1,0/7/0,991.6,990.1,990.7,18.0,,,8.0,70.0,,,E,2.6,4,39,7.0
-2003-06-05,-5.7,-7.3,-5.9,-1.3,20790,990.5,988.1,988.8,17.0,,,5.0,60.0,,,E,0.0,0,37,10.0
-2003-06-06,-4.6,-6.7,-5.4,-1.4,20790,999.8,989.2,994.7,20.0,,,4.0,100.0,,,NE,0.0,0,39,9.0
-2003-06-07,-3.0,-6.3,-4.5,-1.7,0/7/0,1001.2,997.2,999.6,22.0,,,11.0,110.0,,,N,0.0,0,39,8.0
-2003-06-08,-3.6,-7.3,-5.5,-1.1,0/7/0,1002.5,995.8,998.4,13.0,,,5.0,20.0,,,NE,0.0,0,37,7.0
-2003-06-09,-4.2,-7.1,-5.6,-1.4,0/7/0,1012.2,1002.5,1009.2,13.0,,,5.0,270.0,,,N,1.7,4,37,10.0
-2003-06-10,-4.4,-7.9,-6.0,-1.5,0/7/0,1024.4,1012.7,1019.1,13.0,,,4.0,170.0,,,E,0.0,0,39,1.0
-2003-06-11,-3.4,-6.6,-3.8,-1.6,0/7/0,1024.9,1017.1,1021.7,20.0,,,8.0,360.0,,,N,0.0,0,37,10.0
-2003-06-12,-2.0,-5.2,-2.4,-1.7,0/7/0,1017.1,1000.4,1005.3,13.0,,,4.0,200.0,,,W,0.0,0,37,10.0
-2003-06-13,-1.8,-3.5,-2.6,-1.5,0/7/0,1000.7,999.5,1000.0,21.0,,,9.0,210.0,,,S,0.2,T,37,9.0
-2003-06-14,-1.1,-5.6,-2.3,-1.8,0/7/0,1003.0,997.6,999.6,16.0,,,5.0,240.0,,,W,1.8,2,37,10.0
-2003-06-15,-1.4,-7.6,-5.3,-1.2,0/7/0,1008.7,1002.4,1007.7,21.0,,,6.0,20.0,,,NE,0.0,0,37,10.0
-2003-06-16,-7.3,-10.4,-8.2,-1.6,0/7/0,1008.6,1006.4,1007.4,18.0,,,5.0,360.0,,,N,0.0,0,37,9.0
-2003-06-17,-7.4,-10.5,-8.7,-1.7,20791,1010.9,1008.6,1010.0,11.0,,,4.0,10.0,,,NE,0.0,0,37,1.0
-2003-06-18,-7.0,-9.8,-7.7,-1.7,20791,1010.8,999.6,1004.4,19.0,,,6.0,10.0,,,N,0.0,0,37,8.0
-2003-06-19,1.4,-7.5,-1.8,-1.4,0/7/0,999.6,985.0,987.6,36.0,,,8.0,50.0,,,NE,0.0,0,36,10.0
-2003-06-20,-0.1,-4.5,-2.9,-1.4,0/7/0,986.0,983.2,984.3,26.0,,,7.0,350.0,,,N,1.6,1.2,37,1.0
-2003-06-21,-4.4,-5.8,-5.0,-1.6,0/7/0,985.4,984.2,984.4,25.0,,,9.0,350.0,,,N,10.8,10,36,10.0
-2003-06-22,-0.7,-4.7,-2.2,-1.4,0/7/0,985.4,984.2,984.8,32.0,,,6.0,90.0,,,E,1.0,T,53,10.0
-2003-06-23,-2.3,-10.0,-6.6,-2.1,0/7/0,990.5,982.7,985.7,26.0,,,1.0,210.0,,,S,1.3,1,53,10.0
-2003-06-24,-1.7,-9.2,-5.8,-1.7,0/7/0,996.9,990.3,995.6,26.0,,,8.0,110.0,,,SW,7.1,6,53,10.0
-2003-06-25,2.1,-2.0,-0.8,-1.6,0/7/0,1002.1,995.6,999.8,43.0,,,19.0,340.0,,,NW,10.7,5,71,10.0
-2003-06-26,1.5,-1.7,0.3,-1.8,0/7/0,1002.6,993.9,998.0,55.0,,,26.0,340.0,,,N,7.7,T,66,10.0
-2003-06-27,0.1,-6.8,-4.6,-1.7,0/7/0,998.6,987.8,995.2,38.0,,,12.0,360.0,,,W,9.9,9,72,10.0
-2003-06-28,-2.4,-7.0,-5.2,-1.8,0/6/0,997.2,984.8,989.9,37.0,,,14.0,10.0,,,N,1.8,2,64,10.0
-2003-06-29,-3.5,-9.0,-6.1,-1.7,0/6/0,989.9,980.9,987.1,39.0,,,8.0,120.0,,,NE,2.6,4,65,10.0
-2003-06-30,0.3,-4.2,-1.6,-1.6,0/6/0,987.1,978.2,981.8,44.0,,,16.0,10.0,,,N,2.9,3,61,10.0
-2003-07-01,-1.0,-5.4,-3.4,-1.6,0/6/0,991.0,971.2,983.6,70.0,,,21.0,10.0,,,N,1.3,T,61,10.0
-2003-07-02,-0.9,-3.9,-2.3,-1.6,0/6/0,979.8,960.2,973.0,74.0,,,34.0,20.0,,,N,1.2,T,59,10.0
-2003-07-03,-0.5,-5.2,-3.0,-1.6,0/6/0,970.0,959.2,965.8,70.0,,,20.0,20.0,,,NW,3.6,0,62,4.0
-2003-07-04,-4.2,-5.3,-4.6,-1.8,0/6/0,977.7,970.0,974.6,23.0,,,12.0,350.0,,,W,4.0,8,65,10.0
-2003-07-05,-3.6,-6.8,-4.8,-1.9,0/6/0,976.8,959.5,964.8,27.0,,,9.0,350.0,,,E,2.1,2,65,10.0
-2003-07-06,-4.0,-7.2,-5.3,-1.8,0/6/0,974.4,960.5,967.0,24.0,,,9.0,10.0,,,NW,9.1,21,85,10.0
-2003-07-07,-5.0,-8.0,-6.6,-1.5,0/6/0,983.0,974.4,981.3,38.0,,,16.0,90.0,,,E,5.0,T,61,10.0
-2003-07-08,-6.1,-10.2,-8.2,-1.4,0/6/0,984.1,981.9,983.2,31.0,,,14.0,100.0,,,E,0.0,0,61,3.0
-2003-07-09,-4.4,-9.7,-5.5,-2.0,0/6/0,995.0,982.9,989.6,44.0,,,14.0,110.0,,,E,3.5,T,60,10.0
-2003-07-10,-3.5,-5.4,-4.5,-1.7,0/6/0,998.3,995.0,997.5,30.0,,,13.0,10.0,,,NE,0.0,0,60,8.0
-2003-07-11,-4.6,-6.3,-5.3,-1.7,0/6/0,1005.0,997.1,1001.5,16.0,,,4.0,20.0,,,E,0.0,0,63,9.0
-2003-07-12,-3.5,-8.1,-5.3,-1.7,0/6/0,1006.8,1001.6,1005.1,16.0,,,6.0,100.0,,,E,T,T,61,9.0
-2003-07-13,2.9,-3.9,0.7,-1.7,0/6/0,1001.6,988.5,992.8,45.0,,,16.0,360.0,,,N,5.4,2,61,9.0
-2003-07-14,2.3,-0.8,0.6,-1.6,0/6/0,1006.1,995.3,1003.6,34.0,,,14.0,350.0,,,N,0.5,T,62,10.0
-2003-07-15,3.4,0.5,1.7,-1.5,0/6/0,1006.6,990.4,1000.8,53.0,,,21.0,10.0,,,N,0.0,0,62,10.0
-2003-07-16,1.5,-4.6,-1.7,-1.4,0/6/0,993.9,981.1,989.5,61.0,,,17.0,360.0,,,N,1.4,T,60,10.0
-2003-07-17,2.5,-1.4,2.1,-1.3,0/6/0,981.2,960.2,967.0,55.0,,,30.0,10.0,,,N,20.1,0,54,10.0
-2003-07-18,1.3,-2.2,-0.3,-1.4,0/6/0,965.7,951.4,957.4,55.0,,,27.0,10.0,,,N,14.2,5,54,10.0
-2003-07-19,-1.2,-3.3,-2.6,-1.6,0/6/0,969.1,965.7,968.3,39.0,,,10.0,310.0,,,S,2.3,4,64,10.0
-2003-07-20,-3.2,-6.4,-4.2,-1.7,0/6/0,975.8,966.4,970.9,20.0,,,7.0,180.0,,,S,T,T,63,5.0
-2003-07-21,-4.1,-7.8,-6.2,-1.7,0/6/0,976.5,974.0,975.5,34.0,,,15.0,50.0,,,N,0.0,0,58,9.0
-2003-07-22,-7.6,-11.0,-9.0,-1.8,20692,979.0,974.6,976.1,20.0,,,6.0,10.0,,,NE,0.0,0,57,1.0
-2003-07-23,-5.3,-9.6,-6.0,-1.8,0/6/0,983.1,973.1,980.0,49.0,,,15.0,100.0,,,N,0.5,T,56,10.0
-2003-07-24,-0.7,-5.4,-3.2,-1.9,0/6/0,983.0,971.0,977.5,59.0,,,17.0,10.0,,,N,1.3,1,54,10.0
-2003-07-25,0.5,-2.0,-0.5,-1.8,0/6/0,971.3,966.0,968.6,57.0,,,13.0,10.0,,,N,5.0,6,57,10.0
-2003-07-26,0.3,-2.3,-1.3,-1.8,0/6/0,977.0,960.8,968.2,56.0,,,17.0,320.0,,,N,0.9,T,54,9.0
-2003-07-27,-1.8,-6.0,-3.5,-1.8,0/6/0,990.4,977.0,984.3,30.0,,,7.0,280.0,,,N,0.1,T,33,2.0
-2003-07-28,0.5,-7.4,-1.6,-1.8,0/6/0,990.5,975.2,982.4,48.0,,,14.0,10.0,,,E,0.1,T,53,10.0
-2003-07-29,0.8,-1.3,-0.1,-1.8,0/6/0,987.5,965.6,976.1,63.0,,,30.0,10.0,,,N,5.2,T,52,10.0
-2003-07-30,-0.7,-2.7,-1.4,-1.8,0/6/0,991.3,968.9,980.9,40.0,,,18.0,330.0,,,W,1.8,1,54,10.0
-2003-07-31,1.0,-2.7,0.1,-1.8,0/6/0,992.6,989.5,991.5,42.0,,,24.0,340.0,,,N,1.6,0,56,10.0
-2003-08-01,0.6,-3.6,-1.0,-1.9,0/6/0,989.4,972.5,977.4,47.0,,,23.0,360.0,,,N,3.4,2,57,3.0
-2003-08-02,-1.0,-4.9,-3.0,-1.8,0/6/0,984.6,978.1,982.1,46.0,,,20.0,250.0,,,W,2.0,4,55,10.0
-2003-08-03,-0.8,-5.5,-2.5,-1.8,0/6/0,1000.4,982.5,991.5,49.0,,,26.0,250.0,,,W,1.9,2,56,9.0
-2003-08-04,-1.1,-6.9,-2.7,-1.8,51692,1010.5,1000.4,1008.1,27.0,,,8.0,210.0,,,SW,4.9,9,56,10.0
-2003-08-05,0.5,-2.0,-0.4,-1.9,0/6/0,1009.7,999.5,1002.8,46.0,,,22.0,350.0,,,N,2.4,T,61,10.0
-2003-08-06,3.1,-2.0,0.8,-1.8,0/6/0,1000.8,987.3,994.2,37.0,,,14.0,30.0,,,E,1.2,1,61,10.0
-2003-08-07,2.1,0.5,1.6,-1.8,0/6/0,987.3,975.2,978.6,53.0,,,21.0,20.0,,,N,0.6,T,62,10.0
-2003-08-08,2.2,-2.1,0.3,-1.7,0/6/0,981.5,969.9,975.5,53.0,,,16.0,10.0,,,N,4.2,T,62,9.0
-2003-08-09,3.0,-2.1,2.3,-1.7,0/6/0,974.4,949.7,955.0,57.0,,,23.0,10.0,,,N,16.8,4,56,10.0
-2003-08-10,0.0,-3.5,-1.5,-1.8,0/6/0,972.0,951.5,967.1,45.0,,,17.0,350.0,,,N,1.7,3,55,10.0
-2003-08-11,-0.1,-2.1,-1.8,-1.8,0/6/0,973.3,959.5,967.6,72.0,,,26.0,10.0,,,NW,1.3,T,56,10.0
-2003-08-12,-2.0,-6.1,-3.8,-1.8,0/6/0,971.6,963.6,969.9,37.0,,,14.0,330.0,,,W,0.6,T,57,9.0
-2003-08-13,-1.5,-8.7,-5.1,-1.9,0/6/0,988.0,971.6,981.7,50.0,,,21.0,220.0,,,SW,1.3,T,56,10.0
-2003-08-14,-0.4,-4.9,-2.0,-1.8,0/6/0,990.2,983.7,986.3,49.0,,,16.0,320.0,,,NW,4.1,6,57,10.0
-2003-08-15,0.5,-3.0,-0.7,-1.9,0/6/0,990.1,982.1,986.6,48.0,,,23.0,300.0,,,NW,2.3,1.5,63,10.0
-2003-08-16,1.0,-0.7,0.2,-1.8,0/6/0,987.9,946.7,967.9,70.0,,,29.0,10.0,,,N,10.5,T,61,10.0
-2003-08-17,0.0,-5.0,-2.3,-1.8,0/6/0,965.5,944.5,958.5,60.0,,,24.0,360.0,,,NW,15.2,T,63,10.0
-2003-08-18,0.0,-4.3,-2.1,-1.8,0/6/0,962.4,954.3,957.5,57.0,,,20.0,20.0,,,N,1.7,T,64,10.0
-2003-08-19,0.8,-1.1,-0.2,-1.7,0/6/0,964.9,957.5,963.1,53.0,,,27.0,350.0,,,N,3.4,T,65,10.0
-2003-08-20,2.4,-0.8,0.5,-1.5,0/6/0,966.2,962.9,965.1,56.0,,,17.0,20.0,,,NE,0.7,1.5,63,10.0
-2003-08-21,-0.7,-9.5,-5.2,-1.8,0/6/0,980.8,966.2,975.1,25.0,,,10.0,230.0,,,SW,1.5,2,62,10.0
-2003-08-22,-4.3,-10.6,-7.1,-1.7,0/6/0,981.1,964.3,971.0,36.0,,,8.0,200.0,,,E,4.0,22,64,10.0
-2003-08-23,-6.1,-8.1,-7.0,-1.8,20690,996.8,966.5,985.4,36.0,,,12.0,210.0,,,S,2.0,11,64,10.0
-2003-08-24,-5.5,-10.2,-7.0,-1.8,20692,1009.2,996.8,1005.2,24.0,,,8.0,210.0,,,SW,0.0,0,64,8.0
-2003-08-25,-6.5,-7.6,-7.0,-1.7,41693,1016.3,1008.9,1012.9,13.0,,,5.0,350.0,,,N,0.2,T,64,10.0
-2003-08-26,1.5,-7.8,-2.9,-1.7,31691,1016.4,993.2,1005.5,53.0,,,14.0,20.0,,,E,0.2,T,63,10.0
-2003-08-27,2.5,-1.3,0.0,-1.6,0/6/0,1003.4,993.3,1000.6,16.0,,,3.0,10.0,,,NW,6.2,3,64,10.0
-2003-08-28,2.2,-0.5,-0.1,-1.6,0/6/0,1005.0,996.7,1001.7,24.0,,,9.0,360.0,,,SE,9.4,0,66,10.0
-2003-08-29,5.7,0.9,2.0,-1.5,0/6/0,996.8,981.9,986.3,60.0,,,30.0,340.0,,,N,2.4,0,61,10.0
-2003-08-30,1.6,-0.5,0.5,-1.3,0/6/0,987.4,977.7,981.9,54.0,,,28.0,350.0,,,N,2.7,T,61,10.0
-2003-08-31,1.2,-1.3,-0.1,-1.5,0/6/0,989.8,980.4,986.8,32.0,,,13.0,360.0,,,NW,2.1,1,64,10.0
-2003-09-01,2.1,-2.6,-0.2,-1.4,0/6/0,994.5,984.5,990.6,29.0,,,12.0,10.0,,,NW,1.5,T,66,10.0
-2003-09-02,1.7,-2.6,-0.2,-1.3,0/6/0,993.0,967.3,973.8,33.0,,,10.0,20.0,,,E,4.2,8,65,9.0
-2003-09-03,-1.3,-7.2,-4.0,-1.6,0/6/0,981.7,971.0,977.1,44.0,,,19.0,350.0,,,N,3.2,3,65,10.0
-2003-09-04,-1.4,-11.9,-6.3,-1.8,0/6/0,973.9,963.0,967.4,40.0,,,17.0,220.0,,,SW,3.5,T,70,10.0
-2003-09-05,-11.8,-19.7,-18.3,-1.8,71693,981.0,969.5,976.5,30.0,,,14.0,210.0,,,SW,0.2,T,70,10.0
-2003-09-06,-15.1,-18.4,-16.8,-1.7,71693,980.5,975.6,977.9,16.0,,,7.0,190.0,,,S,0.0,0,69,9.0
-2003-09-07,-4.7,-18.1,-9.0,-1.7,71693,979.6,958.5,964.5,24.0,,,8.0,90.0,,,E,1.4,2,73,10.0
-2003-09-08,-5.8,-18.0,-16.7,-1.7,51693,998.0,960.6,993.9,40.0,,,11.0,210.0,,,SW,1.3,3,68,10.0
-2003-09-09,0.2,-16.7,-3.8,-1.7,51693,997.8,990.8,992.8,45.0,,,17.0,10.0,,,N,2.0,4,70,10.0
-2003-09-10,-1.3,-12.3,-6.1,-1.8,51693,994.0,992.1,992.9,24.0,,,9.0,210.0,,,NW,2.9,6.5,72,10.0
-2003-09-11,-11.8,-14.8,-13.1,-1.8,51693,1001.9,992.3,995.9,20.0,,,10.0,240.0,,,SW,0.1,T,70,10.0
-2003-09-12,-9.1,-16.0,-12.4,-1.8,51693,1020.0,1001.9,1014.8,16.0,,,4.0,220.0,,,N,0.0,0,70,4.0
-2003-09-13,-2.4,-12.0,-7.1,-1.8,51695,1021.9,1019.9,1021.4,12.0,,,3.0,80.0,,,N,0.0,0,70,10.0
-2003-09-14,-3.2,-10.8,-6.6,-1.8,51695,1022.7,1021.3,1022.1,9.0,,,3.0,210.0,,,NE,0.0,0,70,9.0
-2003-09-15,-0.7,-11.9,-5.3,-1.8,51695,1021.7,1012.0,1016.8,37.0,,,6.0,360.0,,,N,1.4,T,70,10.0
-2003-09-16,4.6,-3.0,1.6,-1.8,51695,1012.3,1005.1,1008.1,47.0,,,16.0,360.0,,,N,7.9,6,66,10.0
-2003-09-17,5.3,1.9,3.7,-1.6,51691,1005.9,993.2,997.5,54.0,,,28.0,10.0,,,N,1.3,0,58,10.0
-2003-09-18,3.9,-0.8,1.2,-1.5,41691,995.3,991.0,993.2,50.0,,,14.0,10.0,,,N,11.9,T,52,10.0
-2003-09-19,3.5,-1.1,0.6,-1.6,31691,990.9,983.0,987.2,36.0,,,6.0,30.0,,,SE,5.7,6,58,10.0
-2003-09-20,3.0,-3.4,-1.7,-1.5,21191,985.1,977.0,982.6,60.0,,,24.0,40.0,,,N,3.6,T,52,10.0
-2003-09-21,1.3,-6.3,-1.7,-1.4,0/6/0,989.1,981.6,985.5,52.0,,,22.0,20.0,,,N,1.6,T,54,10.0
-2003-09-22,2.2,0.7,1.0,-1.2,0/6/0,983.3,971.9,978.2,58.0,,,39.0,20.0,,,N,11.5,T,60,10.0
-2003-09-23,2.2,-0.3,0.4,-1.1,0/6/0,979.8,972.3,978.3,51.0,,,24.0,10.0,,,N,1.3,T,63,10.0
-2003-09-24,2.5,-0.1,1.3,-1.1,0/6/0,983.7,975.9,979.5,57.0,,,23.0,10.0,,,N,T,0,62,10.0
-2003-09-25,2.9,0.8,1.8,-1.1,0/6/0,983.7,979.5,981.5,63.0,,,34.0,360.0,,,N,14.5,0,59,10.0
-2003-09-26,3.8,-0.3,0.7,-1.2,0/6/0,984.6,976.5,982.2,62.0,,,31.0,360.0,,,N,6.1,0,52,8.0
-2003-09-27,1.3,-5.7,-1.6,-1.2,0/6/0,984.5,981.3,982.2,44.0,,,12.0,360.0,,,N,0.6,T,54,10.0
-2003-09-28,-0.9,-7.4,-2.8,-1.1,406/2,981.4,973.0,973.6,9.0,,,2.0,220.0,,,SW,0.7,T,52,8.0
-2003-09-29,-1.3,-3.7,-2.6,-1.2,0/6/0,975.2,971.5,973.2,22.0,,,7.0,360.0,,,N,T,T,53,9.0
-2003-09-30,-0.8,-5.3,-3.3,-1.3,20690,977.1,970.9,973.5,38.0,,,10.0,10.0,,,N,1.1,T,56,9.0
-2003-10-01,-5.3,-10.5,-8.8,-1.5,71693,996.4,977.1,987.7,,22.0,19.0,9.0,,,231.0,W,T,T,54,10.0
-2003-10-02,-9.5,-12.7,-11.3,-1.4,71692,997.9,995.6,996.8,,16.0,14.0,5.0,,,233.0,SW,0.2,T,53,10.0
-2003-10-03,-3.9,-13.1,-9.3,-1.4,71692,995.6,992.8,993.9,,10.0,9.0,4.0,,,73.0,SE,T,T,53,10.0
-2003-10-04,0.0,-8.7,-5.1,-1.5,736/1,992.9,987.9,989.8,,9.0,7.0,3.0,,,142.0,N,0.0,0,53,10.0
-2003-10-05,1.6,-4.7,-3.1,-1.5,736/1,993.8,988.6,992.1,,18.0,14.0,4.0,,,233.0,N,5.7,10,68,10.0
-2003-10-06,0.3,-5.1,-2.8,-1.5,52691,991.9,985.6,987.5,,22.0,18.0,6.0,,,76.0,E,0.2,T,66,10.0
-2003-10-07,-0.2,-8.8,-4.6,-1.6,737/2,995.1,987.0,990.4,,12.0,10.0,3.0,,,108.0,NE,0.0,0,64,10.0
-2003-10-08,-4.5,-11.6,-7.6,-1.6,736/3,1002.6,995.1,998.8,,13.0,12.0,5.0,,,238.0,SW,T,T,64,9.0
-2003-10-09,-0.4,-10.5,-5.5,-1.6,737/2,1005.3,1002.6,1004.2,,11.0,8.0,4.0,,,218.0,N,0.4,0,63,10.0
-2003-10-10,-1.4,-7.1,-3.5,-1.6,736/2,1003.6,1002.3,1003.0,,23.0,19.0,9.0,,,245.0,SW,0.1,T,62,10.0
-2003-10-11,5.4,-4.3,-1.9,-1.7,736/2,1005.1,1002.3,1003.5,,13.0,12.0,5.0,,,273.0,NW,1.2,1,61,10.0
-2003-10-12,4.4,-3.5,0.7,-1.7,636/1,1004.9,984.3,994.7,,52.0,43.0,17.0,,,30.0,NE,2.6,0,58,10.0
-2003-10-13,2.4,-6.2,0.0,-1.6,436/1,987.6,978.1,982.3,,38.0,30.0,21.0,,,4.0,N,18.2,1,51,10.0
-2003-10-14,-2.6,-8.6,-6.2,-1.6,436/1,995.7,987.6,993.5,,30.0,26.0,9.0,,,231.0,SW,0.0,0,50,5.0
-2003-10-15,-0.4,-3.4,-1.4,-1.7,336/2,995.2,989.3,993.2,,27.0,24.0,13.0,,,337.0,NW,3.6,3,60,10.0
-2003-10-16,-0.6,-6.2,-3.1,-1.5,736/2,989.9,985.6,988.3,,25.0,21.0,8.0,,,338.0,NW,2.4,1,63,10.0
-2003-10-17,0.9,-4.8,-0.1,-1.5,336/1,985.7,977.4,981.0,,26.0,24.0,13.0,,,3.0,N,5.3,3,73,10.0
-2003-10-18,3.4,-4.3,0.0,,,986.2,970.2,979.5,,45.0,40.0,13.0,,,32.0,NE,0.5,0,,10.0
-2003-10-19,1.5,-3.3,-1.8,-1.5,546/3,981.0,968.2,973.5,,40.0,33.0,18.0,,,28.0,NW,2.5,2,66,10.0
-2003-10-20,3.2,-5.1,-1.3,-1.5,746/2,985.2,975.2,982.2,,26.0,19.0,6.0,,,119.0,SE,0.0,0,65,10.0
-2003-10-21,4.4,-1.0,0.6,-1.4,546/1,975.8,970.5,974.2,,34.0,27.0,8.0,,,18.0,N,1.7,1,68,9.0
-2003-10-22,3.0,-3.4,0.0,-1.5,446/1,970.4,962.0,964.5,,21.0,18.0,4.0,,,19.0,SE,0.7,1,68,10.0
-2003-10-23,4.1,-3.4,-0.8,-1.6,546/2,966.6,961.2,964.3,,27.0,23.0,5.0,,,5.0,NW,0.8,1,66,9.0
-2003-10-24,1.4,-2.6,-0.8,-1.4,246/0,961.4,956.9,958.9,,37.0,30.0,11.0,,,73.0,E,0.0,0,66,10.0
-2003-10-25,0.7,-3.0,-1.5,-1.4,0/6/0,962.6,958.3,960.5,,39.0,34.0,16.0,,,72.0,E,0.0,0,65,10.0
-2003-10-26,3.0,-2.6,-0.6,-1.4,0/6/0,969.7,961.0,966.4,,40.0,34.0,16.0,,,45.0,N,0.2,T,64,9.0
-2003-10-27,1.6,-3.0,-1.1,-1.5,0/6/0,981.1,961.7,968.6,,31.0,25.0,12.0,,,17.0,N,0.0,0,65,9.0
-2003-10-28,3.2,-1.8,0.4,-1.4,0/6/0,983.1,962.6,974.3,,62.0,50.0,26.0,,,48.0,NE,3.9,T,64,10.0
-2003-10-29,1.6,-1.9,0.2,-1.2,0/6/0,975.8,962.1,969.1,,48.0,39.0,24.0,,,2.0,N,3.2,1,63,9.0
-2003-10-30,1.2,-2.9,-1.7,-1.2,0/6/0,973.1,969.1,971.9,,25.0,21.0,8.0,,,195.0,W,0.4,T,63,9.0
-2003-10-31,-2.4,-5.5,-4.3,-1.6,0/6/0,987.2,971.8,978.4,,33.0,28.0,20.0,,,206.0,SW,0.0,0,63,10.0
-2003-11-01,-0.5,-6.0,-4.5,,,995.1,987.1,992.2,,21.0,18.0,8.0,,,214.0,SW,0.0,0,62,10.0
-2003-11-02,2.2,-2.1,0.6,-1.0,0/6/0,991.2,980.4,984.2,,61.0,53.0,23.0,,,24.0,N,0.7,T,62,10.0
-2003-11-03,2.0,-3.7,-0.5,-1.0,0/6/0,988.7,974.1,983.6,,45.0,40.0,12.0,,,31.0,NE,2.2,1,61,10.0
-2003-11-04,2.6,-2.7,0.1,-0.9,0/6/0,980.0,974.3,978.3,,32.0,27.0,9.0,,,32.0,NE,0.5,1,63,10.0
-2003-11-05,2.0,-0.5,0.8,-0.9,0/6/0,978.8,975.7,976.9,,32.0,26.0,17.0,,,34.0,N,0.8,T,63,10.0
-2003-11-06,-0.3,-1.9,-1.1,-0.8,0/6/0,983.9,978.0,982.1,,25.0,20.0,11.0,,,359.0,N,0.3,T,63,10.0
-2003-11-07,0.3,-2.4,-1.2,-0.6,0/6/0,982.7,976.0,978.5,,22.0,18.0,7.0,,,14.0,SE,0.1,T,63,9.0
-2003-11-08,2.2,-5.1,-1.6,-0.7,0/6/0,985.0,976.6,980.6,,17.0,14.0,5.0,,,41.0,E,0.0,0,62,4.0
-2003-11-09,2.2,-4.5,-2.2,-0.3,0/6/0,994.5,985.0,990.0,,17.0,11.0,5.0,,,75.0,E,0.0,0,61,3.0
-2003-11-10,-2.9,-6.6,-5.5,-0.3,0/6/0,995.9,994.5,995.4,,18.0,15.0,9.0,,,230.0,SW,0.0,0,60,10.0
-2003-11-11,0.3,-3.3,-1.6,-1.7,0/6/0,1000.8,995.5,999.1,,16.0,13.0,7.0,,,326.0,NW,0.9,T,60,10.0
-2003-11-12,-0.7,-4.7,-2.2,-1.3,0/6/0,995.5,989.1,992.0,,27.0,23.0,13.0,,,235.0,SW,2.5,2,60,9.0
-2003-11-13,0.3,-4.7,-3.4,-1.4,746/2,990.9,988.6,989.9,,21.0,17.0,5.0,,,226.0,SW,0.4,1,62,10.0
-2003-11-14,1.0,-5.7,-3.4,-1.1,746/2,992.8,990.8,992.1,,10.0,8.0,3.0,,,217.0,SW,0.0,0,60,6.0
-2003-11-15,-1.9,-7.0,-4.7,-1.4,54661,995.1,992.6,993.8,,13.0,11.0,5.0,,,214.0,SW,T,T,60,9.0
-2003-11-16,1.2,-4.9,-2.6,-0.9,236/0,994.9,988.9,992.8,,12.0,10.0,4.0,,,42.0,SE,T,T,60,9.0
-2003-11-17,2.2,-3.8,-0.9,-0.9,0//00,988.9,971.8,978.2,,27.0,22.0,8.0,,,19.0,E,2.1,1,63,10.0
-2003-11-18,3.3,-0.3,0.7,-0.9,0/6/0,972.1,968.4,969.7,,23.0,19.0,5.0,,,142.0,SE,2.0,T,63,10.0
-2003-11-19,4.5,-1.6,0.4,-0.8,21690,976.5,971.3,974.3,,10.0,9.0,2.0,,,15.0,N,3.7,4,64,8.0
-2003-11-20,3.7,-3.4,-0.4,-0.2,20690,979.0,976.4,978.2,,25.0,19.0,5.0,,,51.0,NE,0.0,0,60,5.0
-2003-11-21,0.9,-1.3,-0.1,-0.6,0/6/0,977.8,975.4,976.3,,29.0,23.0,12.0,,,41.0,E,0.0,0,59,10.0
-2003-11-22,3.8,0.2,1.5,-0.7,116/0,978.8,976.7,978.0,,24.0,19.0,9.0,,,57.0,SE,0.0,0,59,10.0
-2003-11-23,4.9,0.6,2.7,-0.7,0/6/0,979.9,973.8,978.2,,47.0,38.0,14.0,,,13.0,N,0.1,T,58,8.0
-2003-11-24,2.4,-1.2,0.7,-0.7,0/6/0,974.9,965.2,969.3,,42.0,37.0,20.0,,,45.0,E,0.0,0,55,10.0
-2003-11-25,2.6,-1.2,0.4,-0.4,0/6/0,971.3,967.4,970.0,,29.0,23.0,11.0,,,65.0,E,0.0,0,53,9.0
-2003-11-26,1.7,-1.9,-0.2,-0.5,0/1/0,975.0,969.1,971.2,,53.0,40.0,18.0,,,120.0,E,0.0,0,50,10.0
-2003-11-27,5.7,-2.2,0.8,-0.3,0/1/0,988.2,974.4,981.2,,46.0,32.0,14.0,,,109.0,E,0.0,0,48,9.0
-2003-11-28,5.2,-1.9,1.5,-0.3,0/1/0,995.0,988.1,992.5,,21.0,16.0,6.0,,,157.0,W,0.0,0,46,3.0
-2003-11-29,3.5,-2.4,-0.9,-0.2,0/1/0,994.9,990.7,992.6,,12.0,10.0,4.0,,,255.0,W,0.0,0,42,10.0
-2003-11-30,1.8,-3.7,-0.6,-0.1,0/1/0,995.4,991.3,993.7,,19.0,16.0,6.0,,,33.0,NE,0.0,0,40,8.0
-2003-12-01,2.7,-0.8,0.8,-0.0,0/6/0,996.6,995.3,995.9,,10.0,8.0,3.0,,,333.0,SE,0.0,0,38,10.0
-2003-12-02,2.9,-1.0,0.5,0.1,0/6/0,996.1,989.0,992.6,,21.0,18.0,8.0,,,36.0,NE,0.0,0,36,10.0
-2003-12-03,-0.1,-4.1,-1.7,-0.9,0/6/0,989.0,981.5,984.1,,26.0,22.0,13.0,,,241.0,SW,2.6,2,39,7.0
-2003-12-04,-1.1,-4.2,-3.2,-0.5,0/6/0,989.9,984.5,987.3,,22.0,16.0,10.0,,,236.0,SW,0.0,0,38,6.0
-2003-12-05,1.8,-3.5,-2.3,-0.4,0/6/0,992.2,989.7,990.4,,15.0,13.0,6.0,,,210.0,S,0.0,0,36,1.0
-2003-12-06,2.4,-5.2,-1.4,0.2,0/6/0,993.8,992.1,993.0,,14.0,11.0,5.0,,,150.0,NE,0.0,0,36,1.0
-2003-12-07,3.2,-4.0,-0.6,0.9,0/6/0,992.3,986.2,988.9,,11.0,9.0,4.0,,,155.0,NE,0.0,0,34,5.0
-2003-12-08,3.9,-2.6,-0.2,1.0,0/6/0,988.3,985.5,986.5,,9.0,6.0,3.0,,,246.0,SW,0.0,0,30,4.0
-2003-12-09,3.9,-2.4,0.1,0.8,0/6/0,993.2,988.3,990.4,,8.0,6.0,3.0,,,19.0,S,0.0,0,25,6.0
-2003-12-10,3.6,-1.9,-0.1,1.1,0/6/0,998.9,993.3,996.2,,9.0,7.0,3.0,,,210.0,SW,0.0,0,25,10.0
-2003-12-11,2.9,-0.9,0.9,1.5,0/6/0,1000.9,998.9,1000.3,,7.0,5.0,3.0,,,179.0,NE,0.0,0,21,10.0
-2003-12-12,2.0,-1.6,0.1,1.0,0/6/0,999.8,997.9,998.5,,14.0,11.0,3.0,,,120.0,W,0.3,T,18,10.0
-2003-12-13,2.9,-2.2,-0.1,0.7,0/6/0,1001.0,998.2,999.4,,20.0,16.0,4.0,,,100.0,E,0.2,T,8,8.0
-2003-12-14,3.9,-1.3,0.3,1.0,0/6/0,1003.9,1000.9,1002.6,,14.0,12.0,3.0,,,319.0,E,0.9,0,9,8.0
-2003-12-15,4.1,-1.5,0.5,0.8,0/6/0,1003.7,999.4,1002.2,,10.0,8.0,4.0,,,219.0,SW,0.0,0,6,7.0
-2003-12-16,2.6,-1.9,0.2,1.2,0/6/0,999.4,986.3,992.8,,36.0,25.0,9.0,,,75.0,E,0.0,0,0,10.0
-2003-12-17,4.0,-1.0,1.2,0.4,0/6/0,986.4,980.7,983.3,,27.0,19.0,8.0,,,74.0,E,0.0,0,0,10.0
-2003-12-18,4.9,0.1,2.0,0.4,0/6/0,986.3,980.4,982.3,,24.0,18.0,10.0,,,123.0,SE,0.0,0,0,7.0
-2003-12-19,6.1,-0.2,2.4,0.4,0/6/0,994.4,986.3,991.2,,8.0,7.0,3.0,,,122.0,NE,0.0,0,0,0.0
-2003-12-20,3.0,-0.7,0.5,1.3,0/6/0,998.3,994.3,996.1,,15.0,13.0,5.0,,,240.0,SW,0.0,0,0,6.0
-2003-12-21,1.9,-1.3,0.1,1.0,0/6/0,1004.1,998.2,1000.4,,19.0,16.0,9.0,,,240.0,SW,0.0,0,0,8.0
-2003-12-22,5.7,-1.0,1.7,1.0,0/6/0,1006.3,1003.8,1005.2,,9.0,7.0,3.0,,,224.0,NE,0.0,0,0,3.0
-2003-12-23,5.9,-1.7,2.0,2.4,0/6/0,1003.7,984.5,995.2,,33.0,24.0,4.0,,,69.0,NE,0.0,0,0,0.0
-2003-12-24,3.1,-0.2,1.2,0.3,0/6/0,991.8,981.7,985.7,,41.0,29.0,12.0,,,76.0,E,0.0,0,0,6.0
-2003-12-25,5.4,1.2,2.5,1.6,0/6/0,995.1,991.9,994.1,,13.0,10.0,4.0,,,119.0,N,0.0,0,0,6.0
-2003-12-26,4.7,1.1,2.4,1.2,0/6/0,1001.0,993.8,997.6,,8.0,6.0,3.0,,,247.0,NW,0.0,0,0,9.0
-2003-12-27,5.4,0.3,2.5,1.5,0/6/0,1001.1,993.7,998.3,,10.0,8.0,3.0,,,322.0,NW,0.0,0,0,5.0
-2003-12-28,5.9,-0.3,2.2,1.5,0/6/0,997.8,992.3,994.1,,10.0,7.0,3.0,,,121.0,NE,0.0,0,0,3.0
-2003-12-29,5.0,0.9,2.5,1.6,0/6/0,1008.2,997.8,1004.0,,9.0,7.0,3.0,,,155.0,SE,0.0,0,0,10.0
-2003-12-30,5.1,1.6,2.5,1.4,0/6/0,1008.2,1001.2,1006.3,,15.0,7.0,4.0,,,62.0,W,0.0,0,0,9.0
-2003-12-31,5.1,0.6,2.8,1.8,0/6/0,1001.2,994.3,997.1,,35.0,27.0,11.0,,,13.0,W,0.3,0,0,5.0
-2004-01-01,2.1,-0.1,1.3,2.4,0/1/0,1001.5,998.7,1000.3,,21.0,19.0,12.0,,,244.0,SW,0.0,0,0,9.0
-2004-01-02,5.0,0.6,2.0,2.1,0/1/0,1000.8,992.4,997.1,,17.0,14.0,6.0,,,213.0,SW,0.0,0,0,6.0
-2004-01-03,6.0,-0.1,2.0,1.6,0/6/0,992.4,982.3,986.5,,15.0,12.0,4.0,,,78.0,NW,0.0,0,0,7.0
-2004-01-04,3.6,0.4,1.9,1.4,0/6/0,990.0,982.2,985.1,,26.0,21.0,10.0,,,17.0,N,0.0,0,0,1.0
-2004-01-05,5.1,1.1,2.8,2.0,0/1/0,991.2,984.9,988.4,,36.0,23.0,11.0,,,35.0,SE,0.0,1,0,5.0
-2004-01-06,6.2,2.7,4.0,2.2,0/6/0,993.4,985.6,991.0,,39.0,30.0,15.0,,,29.0,N,0.0,0,0,5.0
-2004-01-07,6.4,2.8,4.3,1.8,0/6/0,993.7,987.1,990.9,,27.0,23.0,7.0,,,30.0,NE,0.3,0,0,6.0
-2004-01-08,7.8,-0.3,3.5,2.0,0/6/0,987.2,972.6,978.5,,35.0,25.0,8.0,,,46.0,E,0.3,0,0,3.0
-2004-01-09,5.4,2.3,3.4,1.8,0/6/0,979.6,972.3,975.9,,22.0,17.0,6.0,,,101.0,N,0.0,0,0,6.0
-2004-01-10,6.0,0.6,2.5,2.6,0/1/0,979.6,973.1,976.4,,13.0,11.0,4.0,,,350.0,NW,1.5,0,0,5.0
-2004-01-11,6.2,1.3,3.0,3.0,0/1/0,980.0,973.0,976.8,,10.0,9.0,4.0,,,242.0,SW,0.0,0,0,10.0
-2004-01-12,7.3,0.1,3.0,2.3,0/1/0,985.0,977.0,980.3,,11.0,9.0,4.0,,,335.0,NE,0.0,0,0,2.0
-2004-01-13,3.4,1.2,2.4,2.1,0/1/0,993.1,985.0,988.9,,19.0,15.0,7.0,,,226.0,SW,0.0,0,0,10.0
-2004-01-14,2.8,0.5,1.7,2.1,0/1/0,994.5,990.4,993.1,,23.0,18.0,11.0,,,240.0,W,0.0,0,0,8.0
-2004-01-15,2.4,-1.1,0.5,2.0,0/6/0,990.4,972.3,984.6,,18.0,15.0,6.0,,,305.0,N,1.3,0,0,6.0
-2004-01-16,2.8,0.6,1.7,1.2,0/1/0,972.3,963.7,966.2,,32.0,23.0,14.0,,,115.0,E,0.0,0,0,0.0
-2004-01-17,5.2,-0.7,1.6,1.2,0/1/0,986.0,969.2,977.9,,21.0,16.0,8.0,,,240.0,SW,0.0,0,0,3.0
-2004-01-18,1.8,-1.5,0.5,0.9,0/2/0,994.4,986.0,990.5,,55.0,21.0,12.0,,,227.0,SW,2.0,2,3,7.0
-2004-01-19,5.5,0.7,2.5,1.0,0/6/0,994.1,964.1,982.9,,36.0,26.0,14.0,,,33.0,E,0.0,0,0,4.0
-2004-01-20,6.5,1.2,3.0,1.3,0/1/0,980.3,960.8,967.6,,36.0,28.0,13.0,,,101.0,E,0.0,0,0,1.0
-2004-01-21,5.2,0.3,2.1,1.5,0/1/0,988.2,980.2,985.8,,20.0,18.0,7.0,,,271.0,W,0.0,0,0,10.0
-2004-01-22,6.5,2.3,4.7,1.2,0/6/0,983.6,968.3,973.9,,52.0,41.0,17.0,,,35.0,NE,1.8,0,0,3.0
-2004-01-23,5.8,1.4,3.9,1.3,0/1/0,988.2,974.0,983.9,,46.0,34.0,17.0,,,33.0,NE,9.1,0,0,4.0
-2004-01-24,6.6,1.9,4.0,1.1,0/6/0,990.0,981.3,986.7,,45.0,35.0,11.0,,,32.0,NE,0.5,0,0,5.0
-2004-01-25,4.9,0.9,2.5,1.1,0/6/0,985.8,980.3,982.4,,17.0,15.0,6.0,,,259.0,NW,5.1,0,0,6.0
-2004-01-26,8.2,1.7,3.9,1.4,0/6/0,986.2,982.8,984.2,,10.0,8.0,3.0,,,129.0,SE,0.3,0,0,6.0
-2004-01-27,3.0,-1.1,1.0,1.3,0/6/0,987.5,983.4,986.3,,9.0,7.0,2.0,,,315.0,NE,0.0,0,0,8.0
-2004-01-28,4.5,0.8,2.2,1.1,0/6/0,997.0,987.5,993.1,,15.0,12.0,5.0,,,18.0,SE,0.5,0,0,6.0
-2004-01-29,4.8,2.5,3.9,1.3,0/6/0,999.2,996.9,998.1,,29.0,24.0,11.0,,,32.0,NE,0.0,0,0,10.0
-2004-01-30,6.2,1.5,3.5,1.6,0/6/0,999.1,988.0,994.9,,29.0,23.0,8.0,,,32.0,NE,0.0,0,0,9.0
-2004-01-31,7.0,2.7,4.2,2.0,0/6/0,988.1,984.5,986.0,,46.0,33.0,11.0,,,23.0,NE,0.0,0,0,8.0
-2004-02-01,5.3,3.2,4.0,1.5,0/6/0,987.5,982.8,984.0,,23.0,20.0,5.0,,,30.0,N,0.0,0,0,6.0
-2004-02-02,5.5,0.8,3.0,1.6,0/6/0,992.7,978.1,987.8,,53.0,38.0,7.0,,,26.0,N,0.0,0,0,6.0
-2004-02-03,5.3,1.3,2.9,1.4,0/6/0,987.3,977.3,980.6,,34.0,27.0,8.0,,,18.0,N,0.0,0,0,4.0
-2004-02-04,4.9,0.7,2.2,1.5,0/6/0,997.8,987.4,993.2,,13.0,11.0,4.0,,,320.0,N,2.3,0,0,5.0
-2004-02-05,4.3,0.6,2.4,1.5,0/6/0,997.6,982.9,989.5,,48.0,39.0,11.0,,,18.0,N,4.1,0,0,4.0
-2004-02-06,6.0,-0.2,2.6,1.5,0/6/0,1002.9,985.1,995.9,,26.0,23.0,4.0,,,22.0,SE,0.3,0,0,0.0
-2004-02-07,5.5,1.9,3.6,1.4,0/6/0,1001.7,991.9,995.5,,38.0,31.0,9.0,,,31.0,N,0.8,0,0,8.0
-2004-02-08,5.9,1.7,3.8,1.4,0/6/0,997.0,977.2,987.9,,53.0,43.0,12.0,,,36.0,SE,0.3,0,0,2.0
-2004-02-09,4.5,1.7,3.1,0.5,0/6/0,987.3,983.0,984.6,,40.0,18.0,11.0,,,354.0,N,4.6,0,0,8.0
-2004-02-10,3.8,0.4,1.5,0.4,0/6/0,998.6,987.3,992.9,,25.0,21.0,11.0,,,236.0,SW,3.1,0,0,7.0
-2004-02-11,3.4,1.1,1.9,0.8,0/6/0,1012.2,998.5,1004.9,,24.0,20.0,9.0,,,232.0,SW,0.0,0,0,6.0
-2004-02-12,4.1,0.4,1.9,0.6,0/6/0,1017.0,1012.1,1015.4,,13.0,11.0,5.0,,,357.0,NW,5.1,0,0,6.0
-2004-02-13,3.9,2.1,2.8,-0.5,0/6/0,1014.0,1009.5,1011.7,,20.0,16.0,13.0,,,352.0,NW,9.7,0,0,3.0
-2004-02-14,3.5,1.2,2.7,-0.2,0/6/0,1009.5,993.7,1001.1,,24.0,19.0,12.0,,,6.0,N,18.8,0,0,2.0
-2004-02-15,2.1,0.0,0.9,0.0,0/6/0,995.9,993.6,995.4,,23.0,20.0,13.0,,,233.0,SW,1.5,0,0,7.0
-2004-02-16,0.6,-1.2,-0.2,0.5,0/6/0,995.3,988.0,991.4,,22.0,18.0,10.0,,,306.0,N,1.5,0,0,7.0
-2004-02-17,0.7,-1.3,-0.1,0.5,0/6/0,999.1,989.1,993.2,,23.0,19.0,10.0,,,233.0,SW,0.0,0,0,10.0
-2004-02-18,0.9,-0.2,0.2,1.0,0/6/0,1010.3,999.1,1005.8,,19.0,16.0,9.0,,,237.0,SW,0.0,0,0,7.0
-2004-02-19,1.9,-1.5,-0.2,1.0,0/6/0,1010.3,993.7,1002.3,,22.0,18.0,8.0,,,123.0,NE,1.3,0,0,8.0
-2004-02-20,5.2,0.0,1.7,1.5,0/5/0,993.9,991.6,992.9,,21.0,18.0,4.0,,,29.0,SE,0.8,0,0,6.0
-2004-02-21,5.4,2.1,4.0,1.1,0/5/0,992.2,988.6,989.9,,33.0,26.0,17.0,,,24.0,N,9.9,0,0,6.0
-2004-02-22,3.3,1.1,2.4,0.5,0/5/0,990.2,987.3,988.8,,28.0,21.0,13.0,,,353.0,N,6.1,0,0,3.0
-2004-02-23,2.0,0.2,0.9,1.0,0/5/0,1004.7,989.7,996.3,,23.0,19.0,13.0,,,224.0,SW,0.0,0,0,7.0
-2004-02-24,3.7,-0.2,1.7,1.0,0/4/0,1012.8,1004.7,1009.4,,17.0,14.0,7.0,,,234.0,SW,0.0,0,0,8.0
-2004-02-25,4.6,0.5,2.0,1.1,0/5/0,1014.4,1011.3,1013.4,,10.0,9.0,3.0,,,226.0,SW,0.0,0,0,2.0
-2004-02-26,4.6,-1.5,1.1,0.7,0/6/0,1011.3,999.7,1006.7,,10.0,8.0,3.0,,,120.0,N,0.0,0,0,2.0
-2004-02-27,7.1,1.5,3.1,0.9,0/6/0,999.7,992.8,995.3,,32.0,12.0,4.0,,,356.0,SE,9.1,0,0,6.0
-2004-02-28,2.9,0.0,1.1,1.0,0/5/0,995.6,982.1,987.4,,16.0,12.0,5.0,,,47.0,NW,6.1,5,4,5.0
-2004-02-29,3.0,0.2,1.3,0.4,0/5/0,991.5,980.5,984.1,,28.0,22.0,7.0,,,20.0,NW,3.6,1,0,4.0
-2004-03-01,3.2,0.7,1.9,-0.4,0/5/0,997.1,991.5,995.8,,22.0,18.0,10.0,,,28.0,N,0.0,0,0,9.0
-2004-03-02,3.2,0.5,1.6,0.0,0/5/0,995.6,985.4,990.1,,13.0,11.0,3.0,,,125.0,SE,0.0,0,0,10.0
-2004-03-03,3.5,-1.6,0.8,0.7,0/6/0,985.5,978.7,983.9,,33.0,30.0,5.0,,,44.0,E,0.0,0,0,6.0
-2004-03-04,3.3,0.8,2.0,1.1,0/6/0,978.7,971.6,973.6,,35.0,24.0,10.0,,,75.0,E,0.0,0,0,1.0
-2004-03-05,4.7,0.6,1.9,1.1,0/6/0,983.5,973.6,979.9,,22.0,20.0,5.0,,,54.0,NE,0.3,0,0,2.0
-2004-03-06,6.0,1.0,3.4,1.1,0/6/0,984.2,981.2,983.2,,33.0,26.0,8.0,,,26.0,SE,1.0,0,0,8.0
-2004-03-07,4.7,0.4,2.6,1.2,0/6/0,981.2,967.3,976.5,,47.0,37.0,12.0,,,30.0,NE,4.6,0,0,5.0
-2004-03-08,4.2,0.3,1.6,1.0,0/5/0,978.0,965.8,970.6,,39.0,32.0,17.0,,,20.0,N,12.2,T,0,4.0
-2004-03-09,1.5,0.7,1.1,0.8,0/5/0,1004.9,978.0,1000.3,,30.0,24.0,15.0,,,226.0,SW,0.0,0,0,
-2004-03-10,3.2,-0.4,1.3,1.0,0/5/0,1005.9,997.1,1003.9,,11.0,9.0,3.0,,,127.0,SE,0.8,0,0,2.0
-2004-03-11,6.9,1.4,4.0,1.2,0/5/0,997.1,977.8,984.3,,38.0,29.0,15.0,,,338.0,N,22.1,0,0,4.0
-2004-03-12,3.1,0.6,1.9,0.9,0/5/0,991.4,976.6,983.3,,38.0,30.0,19.0,,,318.0,NW,2.3,0,0,3.0
-2004-03-13,6.0,0.6,4.1,0.8,0/5/0,989.8,976.6,982.1,,57.0,41.0,26.0,,,348.0,N,11.2,0,0,4.0
-2004-03-14,2.8,1.3,2.0,0.3,0/5/0,996.4,980.9,987.6,,34.0,26.0,17.0,,,337.0,NW,0.0,0,0,6.0
-2004-03-15,2.8,-0.5,0.9,-0.1,0/6/0,1002.4,996.4,1000.4,,16.0,13.0,6.0,,,313.0,N,0.0,0,0,4.0
-2004-03-16,3.0,-1.4,0.5,0.6,0/6/0,1006.5,1002.2,1005.0,,13.0,10.0,3.0,,,122.0,NE,0.5,1,1,0.0
-2004-03-17,6.3,0.5,2.8,1.0,0/6/0,1004.5,987.0,996.1,,31.0,23.0,5.0,,,69.0,N,3.1,0,0,1.0
-2004-03-18,3.8,0.2,1.4,0.4,0/6/0,987.8,981.7,983.8,,25.0,18.0,6.0,,,73.0,N,5.8,2,2,7.0
-2004-03-19,5.9,1.1,3.9,0.8,0/6/0,989.6,986.9,988.1,,39.0,30.0,12.0,,,35.0,NE,1.5,0,0,8.0
-2004-03-20,3.1,-0.3,1.3,1.0,0/5/0,992.3,988.6,991.2,,11.0,10.0,3.0,,,291.0,N,1.0,0,0,5.0
-2004-03-21,2.0,-2.7,-0.6,1.3,0/5/0,998.9,991.8,995.3,,11.0,9.0,3.0,,,119.0,SE,0.0,0,0,7.0
-2004-03-22,1.8,-1.3,0.2,1.2,0/6/0,998.9,990.7,994.6,,11.0,9.0,3.0,,,343.0,NE,0.0,0,0,9.0
-2004-03-23,1.4,-0.7,0.1,0.5,0/5/0,993.2,987.6,991.3,,27.0,18.0,6.0,,,118.0,SE,2.3,3,2,7.0
-2004-03-24,6.4,0.2,3.3,1.5,0/6/0,987.8,974.3,978.2,,45.0,37.0,18.0,,,42.0,NE,0.3,0,0,5.0
-2004-03-25,3.8,-0.4,1.6,1.4,0/5/0,979.3,972.3,974.5,,26.0,21.0,9.0,,,65.0,E,0.8,0,0,7.0
-2004-03-26,1.1,-1.8,-0.5,1.1,0/5/0,982.6,979.2,981.4,,21.0,17.0,5.0,,,318.0,NE,1.8,1,0,6.0
-2004-03-27,0.9,-2.6,-0.7,1.1,0/5/0,979.6,967.2,971.0,,41.0,33.0,16.0,,,38.0,E,1.0,2,6,0.0
-2004-03-28,-0.7,-3.2,-1.8,0.9,0/5/0,979.7,972.0,977.1,,21.0,15.0,6.0,,,232.0,E,0.0,0,4,9.0
-2004-03-29,-0.8,-5.0,-2.7,0.4,0/5/0,986.8,969.9,976.0,,56.0,39.0,23.0,,,246.0,SW,0.5,0,9,0.0
-2004-03-30,4.0,-3.1,-1.2,0.3,0/5/0,991.8,986.8,990.4,,28.0,22.0,9.0,,,220.0,SW,0.0,0,7,0.0
-2004-03-31,7.1,1.6,4.2,1.2,0/5/0,988.8,975.8,980.2,,44.0,33.0,15.0,,,44.0,NE,0.3,0,4,7.0
-2004-04-01,5.3,1.1,3.6,0.3,0/5/0,980.2,975.5,978.0,,28.0,22.0,6.0,,,26.0,N,0.5,0,0,5.0
-2004-04-02,5.0,1.1,2.6,0.6,0/5/0,978.1,973.5,975.0,,15.0,9.0,3.0,,,127.0,SE,7.1,0,0,8.0
-2004-04-03,7.0,1.1,3.5,0.9,0/5/0,978.7,973.9,975.5,,29.0,22.0,6.0,,,25.0,NE,0.0,0,0,8.0
-2004-04-04,2.9,0.4,1.6,0.7,0/5/0,991.1,978.6,984.4,,9.0,7.0,2.0,,,220.0,N,3.6,0,0,7.0
-2004-04-05,1.2,-1.0,0.2,0.1,0/5/0,999.7,991.1,996.8,,10.0,9.0,4.0,,,348.0,NW,0.3,T,0,9.0
-2004-04-06,1.2,-2.3,-1.1,0.5,0/5/0,999.7,993.8,997.0,,11.0,9.0,4.0,,,119.0,NE,0.0,0,0,8.0
-2004-04-07,-0.7,-2.8,-1.5,-0.7,0/5/0,993.8,990.2,991.4,,14.0,12.0,5.0,,,240.0,N,0.0,0,0,8.0
-2004-04-08,1.1,-2.1,-0.4,-0.2,0/5/0,999.8,989.0,995.9,,35.0,27.0,13.0,,,239.0,SW,0.3,1,1,3.0
-2004-04-09,1.3,-1.9,0.1,0.1,0/5/0,1008.1,993.6,1000.1,,24.0,17.0,6.0,,,49.0,SE,1.0,2,3,3.0
-2004-04-10,3.2,-3.4,-1.4,-0.3,0/5/0,1010.1,1004.1,1008.5,,25.0,22.0,4.0,,,49.0,NE,0.0,0,2,0.0
-2004-04-11,7.3,0.2,2.9,0.6,0/5/0,1004.3,987.0,996.5,,44.0,35.0,14.0,,,49.0,E,0.0,0,0,8.0
-2004-04-12,6.9,1.2,3.5,1.0,0/5/0,990.6,985.0,988.3,,51.0,40.0,14.0,,,44.0,NE,17.3,0,0,1.0
-2004-04-13,1.4,-0.3,0.5,0.8,0/5/0,985.1,977.9,981.5,,16.0,13.0,3.0,,,117.0,N,18.5,12,3,0.0
-2004-04-14,0.2,-1.1,-0.2,0.1,0/5/0,981.6,977.1,978.6,,13.0,11.0,5.0,,,217.0,W,3.6,7,18,4.0
-2004-04-15,-0.1,-1.4,-0.7,-0.2,0/5/0,981.8,980.7,981.1,,15.0,12.0,5.0,,,219.0,N,2.5,2,20,9.0
-2004-04-16,1.3,-2.9,-1.5,0.4,0/5/0,992.2,980.9,984.9,,23.0,20.0,9.0,,,232.0,SW,0.0,2,23,5.0
-2004-04-17,-1.0,-2.4,-1.7,0.3,0/5/0,1002.1,992.2,996.9,,16.0,12.0,6.0,,,236.0,SW,0.0,0,19,10.0
-2004-04-18,-0.1,-3.3,-2.1,-0.2,0/5/0,1005.7,1002.2,1004.1,,23.0,18.0,8.0,,,28.0,NE,0.0,0,17,5.0
-2004-04-19,-0.4,-4.2,-2.5,-0.7,0/5/0,1010.8,1005.7,1009.2,,11.0,9.0,3.0,,,123.0,NE,0.0,0,16,6.0
-2004-04-20,0.3,-1.7,-0.8,0.0,0/5/0,1009.5,1008.1,1008.6,,12.0,8.0,3.0,,,160.0,SE,0.0,T,16,6.0
-2004-04-21,1.9,-1.1,0.0,0.4,0/5/0,1009.1,994.6,1002.7,,41.0,31.0,10.0,,,35.0,SE,0.8,1,16,3.0
-2004-04-22,0.9,-2.4,-0.7,-0.3,0/5/0,1012.5,997.3,1006.7,,17.0,13.0,5.0,,,153.0,N,0.0,0,15,1.0
-2004-04-23,4.9,-1.7,0.0,-0.3,0/5/0,1012.9,990.4,1004.7,,43.0,33.0,6.0,,,18.0,N,0.5,0,14,3.0
-2004-04-24,2.9,0.3,0.8,-0.9,0/5/0,994.1,978.2,988.1,,24.0,18.0,10.0,,,347.0,N,4.6,4,14,3.0
-2004-04-25,1.1,-2.1,-0.4,-1.0,0/5/0,978.2,974.0,975.4,,16.0,13.0,6.0,,,335.0,N,4.1,9,23,1.0
-2004-04-26,-1.1,-5.7,-2.8,-0.9,0/5/0,978.1,973.9,975.8,,22.0,19.0,6.0,,,29.0,NE,0.3,T,23,3.0
-2004-04-27,-3.0,-6.1,-4.1,-0.9,0/5/0,980.8,977.8,979.1,,15.0,12.0,4.0,,,52.0,NE,0.0,T,21,3.0
-2004-04-28,0.6,-5.2,-2.3,0.0,0/5/0,980.8,975.9,978.4,,26.0,19.0,9.0,,,63.0,E,0.0,0,20,3.0
-2004-04-29,0.3,-3.0,-1.5,-0.4,0/5/0,990.9,976.1,982.0,,30.0,22.0,6.0,,,102.0,N,0.0,T,19,3.0
-2004-04-30,-1.7,-3.6,-2.9,-1.1,0/5/0,999.1,990.9,996.3,,17.0,14.0,9.0,,,356.0,N,1.8,7,20,2.0
-2004-05-01,1.5,-2.2,-1.1,-0.8,0/5/0,999.8,986.7,995.7,,55.0,44.0,15.0,,,35.0,N,2.5,1,30,
-2004-05-02,1.1,-0.4,0.1,-0.2,0/5/0,1000.3,990.4,995.8,,18.0,15.0,7.0,,,273.0,NW,3.1,3,29,
-2004-05-03,3.6,0.5,1.5,-0.5,0/5/0,1005.1,998.9,1003.4,,37.0,29.0,10.0,,,15.0,N,7.1,0,27,
-2004-05-04,5.8,1.4,3.6,0.0,0/5/0,999.2,960.6,982.0,,71.0,52.0,27.0,,,20.0,N,36.3,0,10,
-2004-05-05,3.3,-2.1,0.5,-0.4,0/5/0,971.4,947.7,959.7,,60.0,37.0,19.0,,,4.0,N,2.5,1,4,
-2004-05-06,-0.7,-3.1,-1.9,-0.9,0/5/0,968.9,966.0,967.8,,19.0,16.0,7.0,,,304.0,NW,5.1,12,5,
-2004-05-07,-1.4,-6.4,-3.9,-0.5,0/5/0,966.9,943.8,959.6,,36.0,28.0,14.0,,,235.0,SE,0.0,0,18,
-2004-05-08,-0.8,-7.4,-5.1,-0.6,0/5/0,959.3,943.0,952.3,,44.0,35.0,18.0,,,230.0,SW,1.0,1,19,
-2004-05-09,-5.6,-9.1,-7.8,-1.2,0/5/0,967.2,959.0,962.7,,28.0,18.0,6.0,,,219.0,NE,1.3,1,20,
-2004-05-10,-3.7,-7.6,-5.9,-0.6,0/5/0,975.6,966.7,970.4,,37.0,30.0,8.0,,,282.0,NE,0.3,0,18,
-2004-05-11,-2.9,-6.2,-4.6,-1.1,0/5/0,987.8,975.4,981.7,,31.0,24.0,12.0,,,249.0,SW,0.0,0,17,
-2004-05-12,-0.4,-5.4,-2.4,-0.8,0/5/0,999.0,972.0,984.6,,41.0,31.0,16.0,,,226.0,SW,3.1,2,17,
-2004-05-13,-0.1,-2.8,-2.0,-0.8,0/5/0,1006.2,998.8,1002.6,,20.0,16.0,5.0,,,240.0,SW,2.5,5,15,
-2004-05-14,0.0,-2.9,-1.2,-1.1,0/5/0,1015.6,999.1,1005.9,,26.0,20.0,10.0,,,232.0,SW,1.3,2,22,
-2004-05-15,-2.1,-4.2,-2.9,-1.0,0/5/0,1022.6,1015.7,1019.4,,16.0,14.0,5.0,,,27.0,NE,0.0,0,22,
-2004-05-16,-1.8,-4.7,-3.0,-1.2,0/5/0,1024.6,1022.5,1023.7,,12.0,10.0,4.0,,,18.0,N,0.0,0,22,
-2004-05-17,-1.1,-2.5,-1.8,-1.2,0/5/0,1023.4,1017.0,1019.7,,6.0,5.0,2.0,,,348.0,N,0.0,0,21,
-2004-05-18,-1.9,-5.2,-3.5,-1.1,0/5/0,1018.6,1016.3,1017.2,,8.0,6.0,2.0,,,229.0,N,0.0,0,20,
-2004-05-19,4.3,-4.0,0.4,-0.9,0/5/0,1018.3,1011.8,1014.2,,24.0,19.0,5.0,,,16.0,SE,8.6,2,21,
-2004-05-20,1.1,-0.3,0.3,-0.9,0/5/0,1015.7,1012.5,1014.2,,12.0,10.0,3.0,,,140.0,SE,4.3,0,20,
-2004-05-21,3.4,-1.1,0.6,-1.2,0/5/0,1013.0,1007.2,1010.6,,34.0,26.0,12.0,,,1.0,N,4.1,0,16,
-2004-05-22,3.0,-1.4,0.5,-1.0,0/5/0,1007.3,977.4,988.2,,44.0,36.0,16.0,,,25.0,N,1.5,0,16,
-2004-05-23,-1.4,-5.8,-3.6,-1.1,0/5/0,1005.0,981.0,998.3,,45.0,36.0,19.0,,,231.0,SW,0.0,0,16,
-2004-05-24,2.5,-6.1,-1.6,-0.3,0/6/0,1002.4,964.2,982.2,,77.0,50.0,16.0,,,45.0,E,0.5,0,16,
-2004-05-25,2.8,-3.3,-0.9,-0.4,0/6/0,980.0,964.2,970.6,,25.0,20.0,6.0,,,271.0,W,5.6,2,26,
-2004-05-26,-3.2,-5.3,-4.3,-0.7,0/6/0,985.4,979.9,982.9,,31.0,24.0,11.0,,,234.0,SW,0.0,0,26,
-2004-05-27,-3.7,-6.3,-4.8,-0.5,0/6/0,983.7,977.2,979.5,,15.0,11.0,5.0,,,156.0,E,0.0,0,25,
-2004-05-28,-3.8,-8.2,-6.2,-1.0,0/6/0,998.9,983.7,990.1,,17.0,14.0,6.0,,,240.0,E,0.0,0,25,
-2004-05-29,-4.0,-7.9,-5.4,-1.2,0/6/0,1014.7,998.9,1008.1,,23.0,20.0,10.0,,,28.0,NE,0.0,0,24,
-2004-05-30,-1.3,-4.6,-2.6,-1.0,0/6/0,1014.4,1007.0,1009.7,,25.0,19.0,6.0,,,39.0,SE,1.0,2,25,
-2004-05-31,-0.6,-4.1,-2.8,-1.0,20610,1009.7,1004.4,1008.0,,10.0,8.0,3.0,,,122.0,SE,0.0,0,25,
-2004-06-01,4.7,-1.1,0.3,-1.3,0/6/0,1004.6,985.8,996.5,,25.0,21.0,4.0,,,44.0,SE,0.8,0,25,
-2004-06-02,3.9,0.7,1.8,-0.9,0/6/0,987.6,980.5,984.4,,44.0,33.0,13.0,,,19.0,N,0.0,0,23,
-2004-06-03,4.3,-1.2,2.0,-0.8,0/6/0,985.0,975.9,980.8,,46.0,39.0,12.0,,,21.0,NE,0.0,0,22,
-2004-06-04,6.1,-0.3,2.7,-0.5,0/6/0,976.0,970.5,972.2,,34.0,25.0,9.0,,,74.0,E,0.0,0,22,
-2004-06-05,1.1,-2.6,-1.0,-0.9,20690,977.5,970.4,972.9,,15.0,12.0,4.0,,,119.0,N,0.3,0,22,
-2004-06-06,-1.8,-4.1,-3.0,-1.1,0/6/0,979.4,977.4,978.6,,17.0,13.0,7.0,,,237.0,W,0.0,1,23,
-2004-06-07,-2.1,-4.4,-3.3,-0.9,0/6/0,980.6,976.4,978.2,,23.0,19.0,8.0,,,232.0,SW,1.0,2,24,
-2004-06-08,-1.8,-4.7,-3.7,-1.3,0/6/0,980.5,971.8,976.8,,27.0,21.0,7.0,,,313.0,N,0.0,0,24,
-2004-06-09,-2.3,-5.0,-2.9,-1.0,0/6/0,974.2,962.0,968.9,,55.0,44.0,14.0,,,32.0,N,1.0,1,28,
-2004-06-10,-0.1,-3.2,-1.6,-1.6,0/6/0,985.2,965.9,976.1,,40.0,32.0,18.0,,,247.0,SW,3.8,2,24,
-2004-06-11,1.3,-2.9,-0.8,-0.8,0/6/0,983.2,966.6,973.1,,37.0,30.0,11.0,,,50.0,SE,3.1,2,25,
-2004-06-12,0.8,-2.2,-0.6,-1.1,0/6/0,986.4,975.0,982.2,,48.0,40.0,18.0,,,32.0,N,0.8,0,25,
-2004-06-13,0.8,-7.6,-4.7,-1.6,0/6/0,990.6,971.9,983.7,,48.0,36.0,19.0,,,232.0,SW,0.8,1,28,
-2004-06-14,-1.0,-5.6,-3.8,-1.6,0/6/0,999.9,984.4,990.5,,45.0,36.0,22.0,,,226.0,SW,0.3,1,28,
-2004-06-15,-1.2,-4.8,-3.1,-1.6,0/6/0,1003.9,998.6,1001.6,,27.0,21.0,11.0,,,212.0,SW,0.0,0,28,
-2004-06-16,-4.2,-9.3,-6.8,-0.9,0/6/0,1016.7,998.8,1008.8,,49.0,38.0,15.0,,,119.0,E,0.0,0,28,
-2004-06-17,-5.3,-6.3,-5.7,-1.2,0/6/0,1019.8,1015.1,1018.3,,23.0,19.0,7.0,,,233.0,SW,0.0,0,28,
-2004-06-18,-5.5,-6.5,-6.0,-1.2,0/6/0,1015.0,1008.2,1010.5,,18.0,14.0,8.0,,,232.0,SW,0.0,0,27,
-2004-06-19,-5.2,-6.5,-5.9,-1.1,0/6/0,1008.4,1007.0,1007.8,,15.0,13.0,5.0,,,240.0,SW,0.0,0,27,
-2004-06-20,-6.0,-7.8,-6.9,-1.1,0/6/0,1009.0,1007.0,1008.1,,10.0,7.0,3.0,,,241.0,E,0.0,0,27,
-2004-06-21,-0.1,-7.7,-3.9,-1.3,0/6/0,1007.4,1000.4,1004.2,,11.0,9.0,3.0,,,98.0,E,0.0,0,27,
-2004-06-22,0.9,-1.2,-0.3,-1.0,20690,1000.6,993.5,996.1,,11.0,9.0,3.0,,,138.0,N,0.0,0,27,
-2004-06-23,-0.2,-4.1,-2.4,-1.4,0/6/0,993.6,984.5,989.6,,11.0,9.0,3.0,,,18.0,NE,0.0,0,26,
-2004-06-24,-1.6,-3.9,-2.3,-1.3,0/6/0,984.5,976.7,979.9,,7.0,6.0,2.0,,,356.0,NE,1.0,2,27,
-2004-06-25,-0.8,-2.8,-1.7,-1.3,0/6/0,982.3,977.4,980.5,,9.0,8.0,3.0,,,356.0,N,0.3,1,29,
-2004-06-26,-2.1,-7.4,-5.0,-1.7,0/6/0,984.6,982.0,983.1,,11.0,9.0,4.0,,,4.0,NE,0.0,0,28,
-2004-06-27,-3.3,-7.9,-5.4,-1.7,60660,985.0,983.0,983.8,,13.0,12.0,4.0,,,24.0,NE,0.0,0,28,
-2004-06-28,-2.7,-4.4,-3.4,-1.6,60660,984.0,982.4,983.4,,12.0,11.0,3.0,,,11.0,NE,0.0,0,28,
-2004-06-29,-2.9,-4.1,-3.5,-1.7,50663,983.9,980.9,981.9,,6.0,5.0,2.0,,,24.0,NE,0.8,6,32,
-2004-06-30,-2.6,-5.6,-3.5,-1.7,60660,984.6,983.4,984.1,,23.0,19.0,6.0,,,24.0,NE,0.8,3,36,
-2004-07-01,-3.3,-6.0,-4.6,-1.7,60690,989.8,982.9,985.1,,19.0,16.0,5.0,,,31.0,NE,0.0,0,35,
-2004-07-02,-3.4,-6.7,-4.6,-1.7,61690,1000.3,989.8,996.1,,10.0,9.0,4.0,,,268.0,NE,0.0,0,33,
-2004-07-03,-3.6,-5.8,-5.0,-1.7,21690,1002.4,1000.1,1001.4,,18.0,15.0,7.0,,,230.0,SW,0.0,0,32,
-2004-07-04,-0.8,-6.5,-3.2,-1.7,61692,1000.1,991.0,995.1,,28.0,21.0,9.0,,,351.0,N,1.0,1,33,
-2004-07-05,0.0,-1.5,-0.9,-1.6,61691,990.9,971.2,980.8,,40.0,34.0,18.0,,,32.0,N,0.5,1,28,
-2004-07-06,-0.3,-4.4,-2.4,-1.7,61691,986.9,970.8,977.7,,30.0,26.0,6.0,,,28.0,NE,0.0,0,28,
-2004-07-07,0.9,-3.8,-1.9,-1.5,0/6/0,987.9,978.0,984.4,,37.0,27.0,10.0,,,28.0,NE,0.0,0,27,
-2004-07-08,2.1,-1.0,0.5,-1.1,0/6/0,992.9,973.8,979.2,,39.0,33.0,14.0,,,43.0,NE,0.0,0,26,
-2004-07-09,5.8,-5.0,-3.4,-1.4,0/6/0,1002.6,992.9,1000.1,,21.0,18.0,10.0,,,26.0,N,0.0,0,26,
-2004-07-10,-0.3,-4.7,-3.1,-1.7,0/6/0,999.4,990.6,993.5,,18.0,15.0,4.0,,,24.0,E,0.0,0,26,
-2004-07-11,-1.2,-3.4,-2.1,-1.7,60690,996.5,991.1,993.8,,15.0,12.0,4.0,,,5.0,N,0.0,0,26,
-2004-07-12,-2.1,-5.4,-4.0,-1.6,0/6/0,996.4,992.4,994.2,,17.0,15.0,7.0,,,225.0,SW,0.3,1,26,
-2004-07-13,-3.9,-6.8,-5.2,-1.7,0/6/0,1006.7,993.0,999.6,,27.0,23.0,9.0,,,27.0,NE,0.0,0,26,
-2004-07-14,-2.3,-5.4,-3.7,-1.5,0/6/0,1014.4,1006.7,1011.7,,18.0,15.0,7.0,,,242.0,SW,0.0,0,26,
-2004-07-15,-1.3,-2.9,-2.2,-1.7,51662,1013.9,1009.9,1011.8,,17.0,15.0,9.0,,,240.0,W,0.0,0,27,
-2004-07-16,-0.6,-2.0,-1.3,-1.7,51662,1010.4,1006.1,1007.9,,12.0,9.0,6.0,,,245.0,NW,1.8,1,28,
-2004-07-17,0.5,-0.7,-0.2,-1.7,51662,1009.5,1004.8,1008.0,,4.0,3.0,2.0,,,327.0,NW,0.5,0,29,
-2004-07-18,1.8,-3.5,-0.3,-1.7,0/6/0,1004.8,983.0,991.4,,51.0,42.0,14.0,,,36.0,N,1.0,0,29,
-2004-07-19,3.4,-0.2,1.4,-1.6,0/6/0,996.0,981.1,991.4,,49.0,38.0,19.0,,,25.0,N,0.3,0,29,
-2004-07-20,5.2,-1.7,0.4,-1.4,0/6/0,994.8,971.2,980.7,,49.0,41.0,16.0,,,36.0,NE,9.1,4,31,
-2004-07-21,1.9,-1.2,0.9,-1.5,0/6/0,994.9,986.1,990.4,,51.0,33.0,23.0,,,28.0,N,3.1,0,32,
-2004-07-22,1.5,-5.0,-1.0,-1.5,0/6/0,986.2,974.4,979.9,,57.0,39.0,20.0,,,19.0,N,3.1,2,36,
-2004-07-23,-0.6,-8.5,-3.6,-1.5,0/6/0,985.6,971.1,975.9,,30.0,25.0,15.0,,,238.0,NW,0.0,0,35,
-2004-07-24,0.0,-9.1,-4.8,-1.5,0/6/0,988.0,977.0,983.6,,52.0,41.0,17.0,,,35.0,NE,0.0,0,35,
-2004-07-25,-0.9,-7.3,-4.2,-1.6,0/6/0,990.5,979.1,985.7,,33.0,26.0,14.0,,,225.0,SW,0.0,0,35,
-2004-07-26,1.9,-6.4,-3.1,-1.5,0/6/0,991.7,965.9,984.9,,56.0,47.0,17.0,,,35.0,NE,0.0,0,34,
-2004-07-27,1.9,-6.9,-0.8,-1.5,0/6/0,967.6,949.7,961.8,,57.0,47.0,24.0,,,34.0,N,3.1,3,37,
-2004-07-28,-4.1,-7.3,-5.9,-1.5,0/6/0,966.9,952.3,958.0,,30.0,24.0,12.0,,,17.0,N,0.8,4,46,
-2004-07-29,-6.4,-13.8,-8.7,-1.7,0/6/0,974.6,953.4,959.9,,35.0,30.0,14.0,,,246.0,W,0.3,1,40,
-2004-07-30,-11.3,-16.1,-13.6,-1.8,51663,979.4,973.1,976.5,,25.0,21.0,9.0,,,258.0,W,0.0,0,38,
-2004-07-31,-6.5,-19.1,-14.8,-1.7,51663,993.8,979.1,989.4,,32.0,25.0,9.0,,,222.0,SW,0.5,2,38,
-2004-08-01,-1.1,-6.5,-3.6,-1.7,52663,992.0,985.9,989.6,,54.0,43.0,16.0,,,33.0,N,1.3,3,42,
-2004-08-02,-5.5,-9.4,-7.6,-1.6,82692,1005.1,992.0,1000.1,,25.0,22.0,8.0,,,231.0,SW,0.0,0,41,
-2004-08-03,-0.2,-9.4,-3.0,-1.6,82661,1007.8,994.2,1001.5,,47.0,36.0,17.0,,,354.0,N,0.5,1,43,
-2004-08-04,0.2,-11.6,-5.1,-1.6,62661,1008.1,986.5,996.0,,60.0,46.0,23.0,,,21.0,N,0.3,0,46,
-2004-08-05,-1.0,-7.3,-3.0,-1.7,52662,996.5,987.6,992.2,,46.0,35.0,22.0,,,331.0,NW,2.3,3,45,
-2004-08-06,-0.4,-11.6,-2.0,-1.7,52663,995.2,980.0,989.2,,45.0,34.0,23.0,,,329.0,NW,1.0,2,67,
-2004-08-07,-11.3,-22.0,-17.8,-1.7,92693,1011.4,985.9,998.2,,44.0,32.0,20.0,,,231.0,SW,0.0,0,62,
-2004-08-08,-11.3,-21.3,-18.2,-1.8,92692,1013.1,1006.0,1010.7,,24.0,20.0,6.0,,,260.0,SE,0.0,0,61,
-2004-08-09,-0.8,-11.2,-4.8,-1.7,92692,1006.0,989.5,995.9,,36.0,28.0,9.0,,,104.0,SE,2.3,4,63,
-2004-08-10,1.4,-6.6,-0.4,-1.8,92692,999.0,973.0,990.3,,50.0,39.0,21.0,,,37.0,NE,0.3,0,59,
-2004-08-11,1.1,-1.6,0.0,-1.7,92661,982.4,969.5,977.7,,42.0,31.0,17.0,,,16.0,N,1.3,0,58,
-2004-08-12,-0.8,-2.2,-1.4,-1.7,62661,984.3,971.7,978.4,,52.0,39.0,18.0,,,35.0,N,0.0,0,58,
-2004-08-13,-0.8,-7.2,-4.5,-1.7,22691,972.7,969.9,971.5,,23.0,19.0,9.0,,,25.0,N,0.3,3,63,
-2004-08-14,-4.8,-10.4,-7.9,-1.7,51692,977.8,966.5,969.7,,20.0,16.0,7.0,,,209.0,SW,0.0,0,60,
-2004-08-15,-9.9,-15.3,-14.0,-1.7,91693,992.0,977.7,985.4,,25.0,20.0,10.0,,,217.0,SW,0.0,0,60,
-2004-08-16,-7.9,-15.5,-12.3,-1.6,92693,999.4,980.7,991.1,,29.0,23.0,7.0,,,235.0,SE,1.3,4,63,
-2004-08-17,-8.1,-12.4,-10.3,-1.6,92692,994.7,987.0,990.2,,31.0,25.0,8.0,,,236.0,NW,0.0,0,60,
-2004-08-18,-0.4,-10.6,-6.2,-1.6,92692,996.1,980.9,989.6,,41.0,27.0,8.0,,,20.0,NW,2.3,3,60,
-2004-08-19,-2.1,-9.4,-7.3,-1.7,92692,995.6,982.0,989.9,,26.0,22.0,11.0,,,243.0,SW,1.0,1,59,
-2004-08-20,1.4,-4.9,-1.5,-1.7,92692,994.7,969.1,986.0,,68.0,39.0,19.0,,,13.0,N,7.1,2,60,
-2004-08-21,0.8,-13.5,-7.3,-1.6,92692,986.3,966.9,976.8,,32.0,26.0,14.0,,,336.0,W,0.8,1,61,
-2004-08-22,-9.7,-13.8,-12.4,-1.6,92692,995.5,986.3,991.3,,22.0,19.0,7.0,,,227.0,SW,0.0,0,60,
-2004-08-23,-5.5,-12.4,-7.5,-1.7,82662,995.2,980.8,987.8,,30.0,25.0,9.0,,,52.0,E,0.0,0,60,
-2004-08-24,-4.5,-8.2,-6.8,-1.6,82662,988.5,981.1,984.8,,30.0,22.0,10.0,,,117.0,E,0.0,0,60,
-2004-08-25,-7.9,-13.1,-11.2,-1.6,82663,989.5,984.2,986.3,,23.0,19.0,5.0,,,229.0,SW,0.0,0,60,
-2004-08-26,-8.7,-15.5,-12.6,-1.6,92693,1002.9,989.6,998.1,,21.0,17.0,6.0,,,227.0,SW,0.0,0,60,
-2004-08-27,-1.9,-9.5,-4.3,-1.6,92692,1003.2,996.1,1000.7,,30.0,23.0,9.0,,,16.0,NE,0.0,0,60,
-2004-08-28,0.6,-2.7,-0.9,-1.6,82661,996.2,988.5,992.0,,49.0,37.0,14.0,,,30.0,NE,1.8,2,61,
-2004-08-29,-0.5,-6.6,-3.0,-1.5,82662,992.0,986.7,990.0,,31.0,23.0,7.0,,,18.0,N,0.0,0,62,
-2004-08-30,-0.4,-7.2,-3.4,-1.6,82661,987.0,971.7,980.2,,75.0,53.0,22.0,,,21.0,NW,0.3,0,62,
-2004-08-31,-5.7,-16.5,-13.7,-1.5,92663,1003.9,979.7,995.0,,40.0,32.0,13.0,,,236.0,SW,0.0,0,63,
-2004-09-01,0.1,-14.8,-4.5,-1.5,82661,1000.2,965.8,980.7,,68.0,55.0,23.0,,,22.0,N,4.1,3,65,
-2004-09-02,-14.0,-22.2,-19.0,-1.6,92693,994.1,971.0,980.2,,34.0,28.0,16.0,,,234.0,W,0.0,0,59,
-2004-09-03,-11.0,-20.4,-16.9,-1.7,94693,1004.2,994.1,1001.3,,20.0,16.0,6.0,,,264.0,W,0.0,0,59,
-2004-09-04,5.5,-11.5,-3.8,-1.6,94692,999.7,964.2,980.2,,42.0,30.0,13.0,,,75.0,E,0.0,0,58,
-2004-09-05,5.0,-5.4,-0.5,-1.6,94692,977.3,963.8,969.6,,39.0,31.0,11.0,,,37.0,NW,3.3,0,57,
-2004-09-06,-5.5,-22.9,-10.4,-1.6,94692,977.9,974.2,976.1,,13.0,11.0,5.0,,,302.0,NW,1.0,13,71,
-2004-09-07,-16.8,-22.5,-19.4,-1.7,94692,975.6,971.0,973.7,,19.0,16.0,7.0,,,264.0,W,0.3,0,65,
-2004-09-08,-13.0,-20.8,-15.6,-1.7,95692,975.9,962.0,967.0,,23.0,19.0,8.0,,,225.0,SW,0.0,0,63,
-2004-09-09,-7.7,-17.8,-12.9,-1.7,95692,1000.2,975.8,989.4,,17.0,12.0,5.0,,,330.0,N,0.8,0,62,
-2004-09-10,-4.0,-16.6,-10.5,-1.7,95692,1008.8,1000.3,1005.5,,13.0,8.0,4.0,,,341.0,N,0.0,0,61,
-2004-09-11,2.8,-10.8,-5.0,-1.7,95692,1008.4,981.0,998.1,,41.0,33.0,6.0,,,29.0,NE,0.0,0,61,
-2004-09-12,3.7,-0.2,1.3,-1.7,95692,981.2,972.1,975.1,,33.0,23.0,6.0,,,66.0,SE,3.6,1,57,
-2004-09-13,0.0,-4.0,-2.3,-1.7,85692,988.0,976.1,982.0,,11.0,10.0,4.0,,,327.0,NW,0.5,0,57,
-2004-09-14,2.4,-3.3,0.1,-1.7,85692,988.0,978.3,983.5,,54.0,38.0,16.0,,,5.0,N,2.0,4,61,
-2004-09-15,0.5,-3.1,-1.7,-1.7,85661,978.4,971.8,975.6,,37.0,28.0,15.0,,,337.0,N,1.3,1,57,
-2004-09-16,0.6,-5.2,-1.8,-1.6,0/6/0,977.2,963.0,972.2,,52.0,40.0,23.0,,,29.0,NE,0.3,0,56,
-2004-09-17,3.4,-0.2,1.1,-1.4,0/6/0,964.7,946.4,958.5,,42.0,32.0,16.0,,,21.0,N,0.5,1,59,
-2004-09-18,2.9,-7.3,-0.9,-1.4,0/6/0,948.6,936.5,940.5,,59.0,48.0,19.0,,,36.0,NE,1.3,2,60,
-2004-09-19,-7.4,-10.8,-9.0,-1.6,54693,959.6,948.6,955.2,,35.0,28.0,10.0,,,335.0,SW,0.8,5,90,
-2004-09-20,-6.8,-12.4,-10.0,-1.6,54693,965.8,959.6,963.9,,25.0,19.0,9.0,,,242.0,W,0.0,0,75,
-2004-09-21,-2.2,-7.6,-4.6,-1.6,54462,964.3,954.0,958.6,,33.0,25.0,13.0,,,72.0,E,0.0,0,63,
-2004-09-22,-2.3,-8.0,-5.3,-1.6,84662,970.6,964.3,968.1,,24.0,18.0,9.0,,,119.0,E,0.0,0,62,
-2004-09-23,-6.0,-12.0,-8.8,-1.6,84662,973.9,970.5,972.3,,14.0,12.0,5.0,,,73.0,NE,0.0,0,62,
-2004-09-24,-4.7,-13.3,-9.3,-1.7,84662,973.7,964.8,968.3,,20.0,15.0,7.0,,,115.0,NE,0.0,1,63,
-2004-09-25,-3.6,-10.3,-7.6,-1.6,84662,985.0,967.4,976.8,,27.0,21.0,12.0,,,234.0,E,0.0,0,62,
-2004-09-26,-5.6,-12.5,-9.8,-1.6,94663,988.2,985.0,987.1,,24.0,19.0,8.0,,,246.0,W,0.3,0,62,
-2004-09-27,-1.6,-8.4,-4.9,-1.7,94692,995.7,984.5,987.2,,24.0,20.0,9.0,,,241.0,W,1.8,6,68,
-2004-09-28,-3.6,-9.7,-8.0,-1.7,94692,1007.9,995.7,1004.1,,17.0,14.0,5.0,,,260.0,W,0.0,0,60,
-2004-09-29,1.0,-8.1,-4.8,-1.7,94692,1007.3,994.1,1002.4,,25.0,20.0,3.0,,,24.0,NE,0.0,0,60,
-2004-09-30,1.6,-2.6,-0.2,-1.7,94692,994.3,985.9,988.6,,46.0,37.0,12.0,,,30.0,NE,4.3,4,63,
-2004-10-01,2.3,-5.0,-1.6,-1.8,84662,997.2,977.0,991.6,,66.0,53.0,15.0,,,32.0,NE,4.3,0,60,
-2004-10-02,3.0,-7.2,1.7,-1.5,84661,980.5,970.3,973.9,,60.0,51.0,31.0,,,33.0,N,9.4,0,52,
-2004-10-03,-7.1,-17.7,-13.7,-1.6,94693,1010.9,980.5,1001.5,,23.0,19.0,7.0,,,271.0,W,0.0,0,52,
-2004-10-04,-0.5,-12.1,-8.6,-1.6,94692,1012.5,992.5,1005.4,,20.0,12.0,4.0,,,50.0,E,1.0,0,52,
-2004-10-05,1.2,-3.3,0.1,-1.5,94692,992.6,983.5,987.6,,43.0,31.0,16.0,,,6.0,N,8.1,0,50,
-2004-10-06,3.1,0.9,1.8,-1.5,84662,993.3,987.9,991.7,,36.0,27.0,15.0,,,4.0,N,4.3,1,50,
-2004-10-07,5.2,0.3,3.3,-1.5,84662,987.9,959.4,970.6,,55.0,42.0,31.0,,,32.0,NE,2.0,0,47,
-2004-10-08,0.4,-11.3,-8.3,-1.4,84663,979.0,960.1,972.3,,31.0,25.0,14.0,,,321.0,W,3.1,1,50,
-2004-10-09,-10.0,-13.9,-11.8,-1.5,94692,988.4,979.0,984.5,,27.0,22.0,11.0,,,255.0,W,0.0,0,55,
-2004-10-10,-2.7,-12.8,-8.5,-1.5,94692,1009.9,988.0,1000.1,,14.0,10.0,4.0,,,351.0,NW,0.0,0,54,
-2004-10-11,4.1,-6.8,-3.2,-1.5,94692,1010.2,1007.6,1009.5,,9.0,7.0,3.0,,,148.0,SE,0.0,0,52,
-2004-10-12,1.5,-1.7,0.9,-1.5,94692,1007.7,979.6,996.1,,51.0,42.0,24.0,,,27.0,N,3.1,1,52,
-2004-10-13,1.0,-3.3,-1.3,-1.6,94692,979.7,970.3,976.1,,54.0,43.0,22.0,,,26.0,NW,3.3,1,60,
-2004-10-14,1.9,0.1,0.9,-1.5,84691,970.3,962.2,966.0,,45.0,34.0,24.0,,,26.0,NE,1.0,0,60,
-2004-10-15,3.0,-4.4,-1.0,-1.6,84692,968.4,964.4,966.6,,33.0,27.0,10.0,,,20.0,NW,4.3,8,68,
-2004-10-16,-4.3,-9.6,-6.9,-1.7,84692,975.7,968.4,971.8,,19.0,16.0,11.0,,,332.0,NW,0.0,0,68,
-2004-10-17,-9.4,-14.0,-11.3,-1.7,94962,979.8,975.6,976.6,,23.0,19.0,11.0,,,249.0,W,0.0,0,67,
-2004-10-18,-4.6,-14.3,-10.6,-1.6,94962,984.6,979.7,983.0,,12.0,9.0,4.0,,,243.0,SW,0.0,0,66,
-2004-10-19,0.7,-13.9,-6.8,-1.6,94692,984.7,980.9,982.9,,18.0,13.0,3.0,,,128.0,SE,0.5,1,65,
-2004-10-20,4.3,-3.6,0.3,-1.5,94692,982.2,970.1,976.3,,39.0,31.0,12.0,,,69.0,E,1.8,4,65,
-2004-10-21,2.6,-0.6,0.8,-1.6,94692,980.3,971.0,975.5,,40.0,33.0,14.0,,,23.0,N,0.0,0,62,
-2004-10-22,1.6,-2.0,-0.5,-1.5,84662,990.8,980.3,987.9,,34.0,29.0,12.0,,,25.0,N,0.5,0,61,
-2004-10-23,0.5,-3.0,-1.0,-1.5,84662,990.8,988.5,989.9,,36.0,31.0,16.0,,,26.0,N,4.3,6,69,
-2004-10-24,3.4,-4.5,-1.6,-1.4,64662,988.7,987.0,987.4,,18.0,14.0,5.0,,,353.0,N,0.3,2,68,
-2004-10-25,-2.0,-9.5,-6.6,-1.5,64662,992.4,987.6,988.9,,8.0,6.0,3.0,,,219.0,SW,0.0,0,65,
-2004-10-26,-1.3,-8.9,-7.3,-1.6,44692,1001.2,992.4,997.3,,10.0,8.0,3.0,,,34.0,SW,0.0,0,65,
-2004-10-27,-4.4,-10.7,-8.2,-1.6,54692,1002.2,999.3,1001.1,,8.0,6.0,3.0,,,57.0,NE,0.0,0,65,
-2004-10-28,-0.8,-11.1,-7.2,-1.6,54692,999.3,995.4,996.7,,8.0,7.0,2.0,,,71.0,NE,0.0,0,64,
-2004-10-29,0.5,-8.8,-5.0,-1.7,54692,1001.7,996.9,999.8,,7.0,6.0,2.0,,,39.0,NE,0.0,0,64,
-2004-10-30,-1.9,-9.0,-6.3,-1.7,94692,1002.8,1001.5,1002.2,,7.0,5.0,2.0,,,208.0,NE,0.0,0,64,
-2004-10-31,2.4,-8.1,-3.7,-1.7,94692,1002.9,999.4,1001.5,,7.0,6.0,2.0,,,28.0,NE,0.0,0,64,
-2004-11-01,0.7,-3.3,-2.0,-1.6,94692,999.4,990.9,993.3,,22.0,18.0,7.0,,,226.0,SW,2.0,2,66,
-2004-11-02,-0.2,-5.3,-3.7,-1.6,94692,991.5,987.6,988.6,,20.0,16.0,7.0,,,247.0,SW,0.0,1,67,
-2004-11-03,0.2,-5.2,-3.3,-1.5,94692,988.0,973.4,978.8,,34.0,24.0,9.0,,,247.0,SW,1.0,2,67,
-2004-11-04,1.8,-4.9,-3.1,-1.5,94692,985.6,977.5,983.4,,22.0,17.0,6.0,,,207.0,SW,0.0,0,62,
-2004-11-05,0.0,-4.2,-1.8,-1.4,94692,986.3,980.3,983.9,,38.0,30.0,9.0,,,19.0,SE,1.5,4,66,
-2004-11-06,0.7,-5.8,-2.2,-1.4,93691,983.8,976.3,979.4,,31.0,23.0,13.0,,,358.0,NW,1.5,2,68,
-2004-11-07,0.5,-5.7,-2.4,-1.5,83691,983.6,963.7,974.9,,41.0,34.0,14.0,,,24.0,N,0.0,1,66,
-2004-11-08,0.1,-3.2,-2.2,-1.6,83692,989.0,963.9,974.5,,35.0,27.0,14.0,,,21.0,N,10.9,14,84,
-2004-11-09,2.3,-3.4,-1.1,-1.6,93692,1005.7,989.1,1001.3,,26.0,21.0,9.0,,,7.0,NW,0.0,0,84,
-2004-11-10,4.7,0.0,1.5,-1.6,92691,1020.3,1004.5,1014.1,,17.0,14.0,5.0,,,338.0,NW,0.3,0,76,
-2004-11-11,7.1,-3.2,1.3,-1.5,92692,1021.7,1016.3,1020.0,,8.0,7.0,2.0,,,119.0,SE,0.0,0,71,
-2004-11-12,5.1,-1.2,1.6,-1.5,82692,1016.5,1005.6,1009.9,,13.0,10.0,4.0,,,131.0,SE,0.0,0,68,
-2004-11-13,6.7,0.7,1.9,-1.2,82692,1006.0,1000.1,1003.6,,19.0,13.0,4.0,,,2.0,SE,5.6,0,65,
-2004-11-14,2.5,-1.0,0.1,-1.1,92692,1005.4,997.4,1000.6,,20.0,16.0,7.0,,,258.0,W,6.1,3,67,
-2004-11-15,3.4,-5.5,-0.1,-1.1,92692,1013.6,1000.7,1007.7,,34.0,25.0,9.0,,,2.0,NW,0.8,0,66,
-2004-11-16,5.1,-1.7,2.3,-1.3,82691,1013.6,996.7,1004.1,,46.0,38.0,19.0,,,28.0,NE,3.1,0,56,
-2004-11-17,4.2,-2.3,1.1,-1.3,24961,1003.3,988.2,995.7,,48.0,40.0,15.0,,,21.0,N,2.5,0,54,
-2004-11-18,6.5,0.4,2.4,-1.3,24961,998.4,972.1,987.6,,59.0,46.0,21.0,,,22.0,N,5.8,0,50,
-2004-11-19,2.0,-0.8,0.4,-1.2,44692,997.4,973.3,989.5,,46.0,36.0,16.0,,,325.0,N,0.5,0,45,
-2004-11-20,4.3,-2.5,1.1,-0.9,24691,998.3,979.8,990.3,,46.0,36.0,12.0,,,46.0,E,2.3,0,42,
-2004-11-21,1.6,-1.6,-0.4,-0.9,64692,986.2,979.3,982.8,,26.0,22.0,11.0,,,13.0,NW,0.3,1,40,
-2004-11-22,2.8,-0.1,1.8,-0.8,0/6/0,980.9,973.3,975.4,,45.0,32.0,20.0,,,30.0,NE,2.5,0,38,
-2004-11-23,3.3,0.9,2.1,-0.5,24692,975.4,970.6,972.6,,48.0,34.0,21.0,,,18.0,N,1.3,0,36,
-2004-11-24,3.5,-1.3,0.9,-0.3,24692,979.6,971.3,975.8,,32.0,27.0,8.0,,,20.0,N,0.0,0,34,
-2004-11-25,1.2,-1.7,-0.2,-0.2,24692,986.7,979.6,983.2,,12.0,11.0,4.0,,,313.0,NW,0.0,0,33,
-2004-11-26,2.2,-1.8,-0.6,0.2,44692,992.6,986.7,990.0,,12.0,10.0,5.0,,,303.0,NW,0.0,0,32,
-2004-11-27,4.1,-2.3,-0.5,0.4,24692,1001.7,992.6,996.2,,11.0,9.0,3.0,,,248.0,W,1.0,1,31,
-2004-11-28,5.1,-4.5,-0.4,0.9,54692,1005.8,1001.7,1004.1,,12.0,9.0,3.0,,,13.0,SE,0.0,0,31,
-2004-11-29,6.6,-1.5,2.2,0.6,34692,1006.0,999.2,1004.3,,23.0,17.0,4.0,,,70.0,SE,0.0,0,25,
-2004-11-30,6.3,1.3,3.7,0.3,24692,999.2,989.7,993.0,,33.0,26.0,13.0,,,30.0,E,0.0,0,21,
-2004-12-01,6.2,0.4,1.7,-0.7,0/6/0,989.8,964.9,976.6,,32.0,20.0,6.0,,,104.0,NW,0.3,0,16,
-2004-12-02,4.1,-0.5,0.8,-0.5,44692,967.6,964.3,965.1,,10.0,8.0,3.0,,,311.0,NW,9.9,11,24,
-2004-12-03,4.3,-0.9,0.8,-0.5,44692,974.4,967.6,971.3,,10.0,8.0,4.0,,,344.0,W,0.0,0,16,
-2004-12-04,3.3,-0.6,0.7,-0.5,54692,976.8,974.4,975.7,,7.0,6.0,2.0,,,337.0,NW,4.1,0,14,
-2004-12-05,5.2,-1.2,0.6,-0.4,54692,979.3,976.8,978.4,,12.0,10.0,2.0,,,323.0,NW,1.5,3,16,
-2004-12-06,2.7,-1.4,0.2,-0.8,24691,978.9,969.3,973.1,,35.0,25.0,10.0,,,121.0,SE,3.1,3,14,
-2004-12-07,3.6,-1.4,0.2,-1.0,54693,991.8,973.4,982.9,,14.0,11.0,6.0,,,330.0,NW,3.1,2,16,
-2004-12-08,6.7,-0.6,1.3,-0.9,54792,1002.0,991.9,998.7,,14.0,11.0,5.0,,,119.0,NW,0.0,0,10,
-2004-12-09,5.6,0.5,2.8,-0.6,24791,999.7,988.0,993.1,,36.0,27.0,10.0,,,15.0,N,0.5,0,0,
-2004-12-10,5.6,-1.1,1.5,-0.6,44792,999.1,993.4,996.7,,17.0,13.0,4.0,,,313.0,NW,3.1,1,0,
-2004-12-11,7.9,-4.4,2.0,-0.3,64791,997.4,993.4,994.9,,17.0,12.0,3.0,,,130.0,SE,0.0,0,0,
-2004-12-12,7.8,-2.3,0.7,1.1,64791,1004.8,997.4,1001.4,,19.0,16.0,5.0,,,323.0,NW,0.0,0,0,
-2004-12-13,2.2,-2.0,-0.8,-0.8,54792,1005.9,1004.7,1005.3,,9.0,8.0,4.0,,,267.0,W,0.0,0,0,
-2004-12-14,3.5,-1.7,0.5,-1.2,54792,1005.0,1001.7,1003.2,,12.0,10.0,3.0,,,37.0,SW,0.0,0,0,
-2004-12-15,3.9,-1.9,0.8,-0.1,44792,1004.6,1000.7,1001.9,,13.0,10.0,4.0,,,338.0,W,0.0,0,0,
-2004-12-16,1.0,-1.3,-0.5,-0.8,54792,1006.3,1003.4,1005.4,,10.0,8.0,4.0,,,326.0,NW,1.3,0,0,
-2004-12-17,5.6,-1.4,0.8,-0.6,44792,1003.3,998.1,999.8,,7.0,6.0,2.0,,,253.0,W,0.8,0,0,
-2004-12-18,3.0,-0.8,0.7,-0.7,44792,999.2,997.7,998.3,,5.0,4.0,1.0,,,137.0,S,0.0,0,0,
-2004-12-19,0.7,-1.1,-0.3,-0.5,44792,999.3,989.1,996.1,,25.0,19.0,7.0,,,3.0,N,1.0,1,0,
-2004-12-20,3.1,-2.2,-0.3,-0.5,44792,990.7,987.8,988.7,,17.0,13.0,6.0,,,322.0,NW,1.3,1,0,
-2004-12-21,6.7,-5.4,1.1,-0.6,44792,993.6,990.7,992.2,,12.0,8.0,3.0,,,120.0,NE,0.0,0,0,
-2004-12-22,5.5,-2.7,1.9,-0.8,0/7/0,993.8,986.5,989.8,,34.0,24.0,12.0,,,101.0,E,0.0,0,0,
-2004-12-23,6.3,1.1,3.2,-0.4,0/7/0,993.8,986.4,988.9,,30.0,22.0,11.0,,,101.0,E,0.0,0,0,
-2004-12-24,4.4,0.1,1.8,-0.7,0/7/0,1002.7,993.8,999.0,,14.0,11.0,5.0,,,331.0,N,0.0,0,0,
-2004-12-25,4.5,-2.0,1.0,-0.3,24792,1003.9,995.9,1002.0,,8.0,7.0,2.0,,,318.0,W,0.8,0,0,
-2004-12-26,7.5,1.0,4.5,-0.2,24791,996.0,980.4,986.3,,48.0,37.0,20.0,,,36.0,NE,1.5,0,0,
-2004-12-27,3.7,0.6,2.2,-0.5,0/7/0,988.2,980.1,983.4,,38.0,30.0,18.0,,,30.0,N,2.3,1,0,
-2004-12-28,3.7,-0.6,0.8,-0.3,0/7/0,989.9,980.9,986.8,,32.0,26.0,9.0,,,347.0,SE,1.3,0,0,
-2004-12-29,6.7,0.7,2.9,0.4,0/7/0,990.2,985.6,988.3,,14.0,12.0,3.0,,,142.0,SE,0.3,0,0,
-2004-12-30,9.8,1.7,4.9,0.6,0/7/0,986.5,983.1,984.2,,19.0,13.0,4.0,,,123.0,N,0.0,0,0,
-2004-12-31,4.8,0.8,1.4,0.6,0/7/0,989.7,986.5,988.6,,26.0,22.0,13.0,,,16.0,N,0.0,0,0,
-2005-01-01,3.3,0.2,1.2,0.5,0/7/0,987.7,982.6,985.0,,26.0,20.0,3.0,,,125.0,N,0.5,0,0,
-2005-01-02,4.9,-0.1,2.3,0.4,0/7/0,990.0,983.0,986.6,,42.0,33.0,8.0,,,19.0,SE,2.5,2,0,
-2005-01-03,5.8,3.2,4.4,0.2,0/7/0,993.9,990.0,992.4,,37.0,31.0,20.0,,,32.0,NE,3.1,0,0,
-2005-01-04,5.3,1.7,3.8,0.4,0/7/0,993.0,986.9,990.8,,39.0,31.0,14.0,,,26.0,SE,9.9,0,0,
-2005-01-05,6.2,-0.5,2.3,-0.3,0/7/0,986.9,981.7,983.4,,25.0,19.0,6.0,,,27.0,W,2.0,0,0,
-2005-01-06,1.8,-1.6,-0.2,-0.3,0/7/0,984.5,980.6,983.0,,11.0,10.0,4.0,,,264.0,NW,0.0,0,0,
-2005-01-07,1.5,-0.8,0.1,0.1,0/7/0,980.6,977.3,978.9,,8.0,6.0,3.0,,,330.0,SW,0.0,0,0,
-2005-01-08,1.0,-1.2,-0.5,0.2,0/7/0,977.5,974.4,976.1,,9.0,7.0,4.0,,,19.0,SW,0.0,0,0,
-2005-01-09,1.1,-1.7,-0.5,-0.3,24793,981.8,974.4,977.9,,11.0,9.0,4.0,,,326.0,NW,0.3,0,0,
-2005-01-10,5.3,-0.3,1.8,0.3,24791,982.7,970.5,978.4,,32.0,26.0,8.0,,,63.0,E,3.8,0,0,
-2005-01-11,4.9,1.6,3.3,0.2,0/7/0,974.2,969.7,971.4,,26.0,20.0,8.0,,,120.0,E,5.3,0,0,
-2005-01-12,6.7,0.7,2.9,0.6,0/7/0,985.5,974.2,979.7,,20.0,14.0,3.0,,,102.0,NW,0.0,0,0,
-2005-01-13,4.6,-0.1,2.0,0.7,0/8/0,986.7,985.5,986.1,,9.0,8.0,3.0,,,352.0,N,0.0,0,0,
-2005-01-14,4.9,0.4,2.4,1.0,0/8/0,987.6,984.7,985.5,,20.0,16.0,6.0,,,156.0,SE,0.0,0,0,
-2005-01-15,6.3,-1.2,2.3,1.0,0/8/0,988.1,982.4,986.0,,7.0,6.0,3.0,,,304.0,N,0.0,0,0,
-2005-01-16,3.6,-0.7,1.6,1.6,0/8/0,985.3,982.3,983.9,,14.0,12.0,3.0,,,33.0,NE,0.0,0,0,
-2005-01-17,5.1,0.3,1.8,1.6,0/8/0,993.6,985.1,989.3,,14.0,11.0,4.0,,,204.0,NW,0.0,0,0,
-2005-01-18,2.7,-1.7,-0.1,1.3,0/8/0,998.9,993.6,996.3,,11.0,10.0,4.0,,,238.0,NW,0.0,0,0,
-2005-01-19,1.6,-1.0,-0.3,0.6,24893,1000.1,996.8,999.1,,8.0,7.0,4.0,,,271.0,NW,0.3,0,0,
-2005-01-20,8.2,-1.7,2.3,1.0,24892,996.8,981.1,987.9,,22.0,17.0,5.0,,,120.0,SE,0.0,0,0,
-2005-01-21,6.9,1.9,3.3,0.6,0/8/0,983.4,978.7,981.6,,20.0,15.0,4.0,,,71.0,NW,0.0,0,0,
-2005-01-22,6.2,1.7,2.9,0.2,0/8/0,978.7,973.6,975.3,,19.0,12.0,6.0,,,230.0,N,0.0,0,0,
-2005-01-23,3.9,1.3,2.5,-0.3,0/8/0,987.9,976.8,982.3,,12.0,9.0,3.0,,,295.0,NW,0.0,0,0,
-2005-01-24,2.4,0.3,1.2,0.3,24893,993.0,987.9,991.6,,9.0,7.0,4.0,,,357.0,W,0.0,0,0,
-2005-01-25,3.5,-0.1,0.9,0.2,0/8/0,992.7,984.3,989.7,,10.0,8.0,3.0,,,262.0,W,0.0,0,0,
-2005-01-26,2.2,-0.2,0.7,0.7,0/8/0,984.3,978.9,981.2,,19.0,15.0,5.0,,,225.0,SE,8.4,5,0,
-2005-01-27,3.0,-0.6,0.6,-0.1,0/8/0,991.6,984.2,988.0,,13.0,12.0,5.0,,,15.0,N,0.0,2,0,
-2005-01-28,5.3,-2.1,0.9,0.2,0/8/0,991.9,981.7,987.3,,37.0,32.0,8.0,,,48.0,NE,1.5,0,0,
-2005-01-29,4.3,0.5,2.1,0.6,0/8/0,990.9,982.8,987.0,,34.0,26.0,5.0,,,35.0,NW,3.1,0,0,
-2005-01-30,1.0,-1.4,-0.5,0.7,0/8/0,996.4,990.9,994.3,,19.0,15.0,8.0,,,232.0,SW,0.0,0,0,
-2005-01-31,2.1,-0.9,0.6,0.4,0/8/0,994.9,990.5,993.1,,14.0,12.0,7.0,,,338.0,N,6.1,1,0,
-2005-02-01,1.8,-0.2,0.8,-0.3,0/8/0,993.1,983.4,988.2,,12.0,10.0,5.0,,,305.0,N,9.4,0,0,
-2005-02-02,1.1,-0.3,0.4,-0.6,24892,983.4,979.3,980.9,,16.0,13.0,5.0,,,260.0,NW,0.0,1,0,
-2005-02-03,1.9,-0.8,0.5,-0.7,24892,983.8,978.8,981.0,,15.0,12.0,5.0,,,245.0,NW,0.8,0,0,
-2005-02-04,3.9,-0.1,2.5,0.0,0/8/0,983.5,967.5,973.8,,42.0,33.0,13.0,,,23.0,NE,2.8,0,0,
-2005-02-05,4.9,0.8,1.9,0.4,0/8/0,975.6,965.4,969.3,,26.0,20.0,7.0,,,350.0,N,2.3,0,0,
-2005-02-06,2.3,-2.2,0.3,0.4,0/8/0,994.0,975.7,986.6,,30.0,23.0,9.0,,,238.0,NW,2.3,2,0,
-2005-02-07,5.1,0.4,2.2,0.3,0/8/0,999.9,986.5,995.4,,52.0,41.0,13.0,,,48.0,N,1.0,0,0,
-2005-02-08,5.0,1.6,3.7,0.6,0/8/0,991.8,983.8,988.7,,48.0,36.0,16.0,,,23.0,N,4.8,0,0,
-2005-02-09,5.5,1.5,2.6,1.1,0/7/0,1007.2,989.8,1002.2,,16.0,13.0,6.0,,,262.0,NW,0.5,0,0,
-2005-02-10,9.8,2.7,5.3,1.1,0/7/0,1005.3,984.3,994.0,,64.0,50.0,17.0,,,28.0,NE,10.7,0,0,
-2005-02-11,3.7,1.6,2.8,0.8,0/7/0,993.2,982.5,990.7,,50.0,35.0,22.0,,,9.0,N,4.1,0,0,
-2005-02-12,3.6,0.6,2.4,-0.5,0/7/0,982.3,975.4,978.5,,49.0,36.0,18.0,,,16.0,N,6.6,0,0,
-2005-02-13,1.2,-0.3,0.5,0.5,0/7/0,994.2,970.2,978.4,,40.0,31.0,16.0,,,228.0,SW,7.6,6,4,
-2005-02-14,3.6,0.0,2.1,0.6,0/7/0,995.0,987.7,990.6,,38.0,29.0,16.0,,,20.0,N,18.5,0,0,
-2005-02-15,3.5,0.6,2.2,0.3,0/7/0,987.8,965.2,975.5,,42.0,32.0,22.0,,,36.0,N,11.9,0,0,
-2005-02-16,4.4,-0.1,2.5,0.6,0/7/0,984.4,971.5,979.3,,48.0,39.0,20.0,,,30.0,N,5.8,0,0,
-2005-02-17,3.9,1.5,2.2,-0.9,0/7/0,976.9,969.3,973.6,,35.0,27.0,18.0,,,335.0,N,5.1,0,0,
-2005-02-18,2.0,-0.8,0.6,0.5,0/7/0,981.5,968.8,973.7,,72.0,26.0,12.0,,,257.0,W,1.0,1,0,
-2005-02-19,1.1,-1.3,0.2,0.6,0/7/0,989.3,981.6,986.4,,79.0,28.0,14.0,,,257.0,W,0.8,0,0,
-2005-02-20,1.8,-1.4,0.2,0.5,0/7/0,988.9,983.0,986.1,,23.0,18.0,7.0,,,345.0,SE,14.7,2,0,
-2005-02-21,2.2,-1.3,-0.1,-0.5,0/7/0,994.7,983.0,990.2,,27.0,24.0,10.0,,,242.0,SW,0.8,0,0,
-2005-02-22,2.3,-1.7,0.1,-0.3,0/7/0,993.8,978.9,986.8,,19.0,13.0,5.0,,,150.0,N,0.0,0,0,
-2005-02-23,2.4,-0.4,0.7,0.0,0/7/0,979.4,975.8,977.3,,18.0,11.0,4.0,,,352.0,N,2.3,0,0,
-2005-02-24,5.0,1.0,2.3,0.7,0/7/3,983.7,979.5,982.7,,30.0,24.0,6.0,,,355.0,N,0.0,0,0,
-2005-02-25,4.2,0.9,1.8,0.6,0/7/0,982.0,973.5,977.6,,20.0,17.0,5.0,,,359.0,N,0.0,0,0,
-2005-02-26,3.2,-0.1,0.9,0.4,0/7/0,980.9,970.9,973.4,,8.0,6.0,2.0,,,192.0,SE,0.0,0,0,
-2005-02-27,1.1,-0.4,0.6,0.8,0/7/0,997.0,980.9,991.2,,13.0,12.0,6.0,,,244.0,SW,0.0,0,0,
-2005-02-28,3.5,-0.1,1.2,0.8,0/7/0,999.4,994.2,997.1,,23.0,17.0,6.0,,,247.0,W,0.3,0,0,
-2005-03-01,5.3,0.3,2.7,0.8,0/7/0,997.0,984.9,991.1,,35.0,25.0,7.0,,,5.0,SE,31.8,0,0,
-2005-03-02,5.6,-1.5,0.8,0.1,0/7/0,992.9,985.0,989.2,,38.0,31.0,15.0,,,320.0,W,2.5,0,0,
-2005-03-03,0.7,-1.7,-0.8,0.7,0/7/0,997.1,986.7,990.9,,33.0,26.0,13.0,,,284.0,SW,0.3,0,0,
-2005-03-04,4.2,-0.5,0.8,0.6,0/7/0,997.7,990.6,995.5,,19.0,15.0,7.0,,,320.0,N,0.3,0,0,
-2005-03-05,3.2,-2.0,0.2,0.7,0/7/0,990.6,986.2,988.0,,24.0,20.0,4.0,,,23.0,NE,0.0,0,0,
-2005-03-06,3.1,-0.2,1.4,0.6,0/7/0,991.8,989.6,991.0,,35.0,28.0,7.0,,,33.0,SE,0.3,0,0,
-2005-03-07,3.0,-0.6,1.1,0.9,0/7/0,991.4,989.2,990.4,,20.0,14.0,5.0,,,77.0,SW,0.0,2,0,
-2005-03-08,-0.6,-2.6,-1.6,0.9,0/7/0,991.1,986.4,990.1,,15.0,11.0,5.0,,,229.0,SW,0.0,0,0,
-2005-03-09,0.8,-2.1,-0.6,0.7,0/7/0,986.4,972.8,977.3,,28.0,22.0,8.0,,,28.0,E,0.0,0,0,
-2005-03-10,-0.5,-2.8,-2.1,0.1,0/7/0,982.2,975.6,978.9,,18.0,15.0,5.0,,,346.0,N,2.0,4,3,
-2005-03-11,0.0,-5.0,-2.4,-0.1,0/7/0,988.0,982.2,985.0,,13.0,9.0,4.0,,,246.0,W,0.0,0,2,
-2005-03-12,0.8,-5.3,-2.9,0.1,0/7/0,991.5,987.2,988.9,,9.0,8.0,3.0,,,41.0,NE,0.0,0,0,
-2005-03-13,-1.1,-4.9,-3.1,0.0,0/6/0,994.1,991.5,993.0,,10.0,8.0,4.0,,,34.0,NE,0.0,0,0,
-2005-03-14,-0.8,-5.0,-3.3,-0.1,0/6/0,994.4,991.1,993.3,,9.0,8.0,4.0,,,242.0,NE,0.0,0,0,
-2005-03-15,0.5,-3.4,-1.5,-0.1,0/6/0,1001.1,989.9,995.0,,20.0,15.0,6.0,,,226.0,SW,0.0,0,0,
-2005-03-16,1.8,-0.6,0.7,-0.7,0/6/0,1009.2,1001.1,1005.6,,22.0,19.0,9.0,,,30.0,N,1.5,2,0,
-2005-03-17,4.7,0.5,2.3,-0.2,0/6/0,1009.8,1007.8,1009.0,,22.0,17.0,7.0,,,39.0,SE,0.0,0,0,
-2005-03-18,5.3,0.6,2.3,0.0,0/6/0,1008.1,998.1,1004.4,,31.0,25.0,7.0,,,45.0,SE,0.3,0,0,
-2005-03-19,5.5,2.3,4.1,0.8,0/6/0,998.0,989.6,991.9,,47.0,37.0,26.0,,,35.0,NE,0.0,0,0,
-2005-03-20,5.5,0.8,3.1,0.6,0/6/0,994.8,983.0,990.3,,59.0,45.0,21.0,,,28.0,N,2.5,0,0,
-2005-03-21,4.4,-0.5,1.7,0.6,0/6/0,994.5,974.8,983.7,,27.0,19.0,5.0,,,50.0,E,0.0,0,0,
-2005-03-22,2.9,0.2,1.1,0.8,0/6/0,983.7,971.8,979.6,,34.0,20.0,5.0,,,87.0,W,0.0,0,0,
-2005-03-23,3.2,0.8,2.0,0.8,0/6/0,974.7,963.4,968.2,,45.0,33.0,19.0,,,52.0,E,1.3,0,0,
-2005-03-24,3.5,0.2,1.9,0.5,0/6/0,984.7,974.6,980.7,,27.0,21.0,9.0,,,18.0,N,2.0,1,0,
-2005-03-25,2.4,-1.0,0.8,0.4,0/6/0,983.9,977.4,979.4,,15.0,11.0,3.0,,,26.0,NE,0.0,0,0,
-2005-03-26,3.1,-1.0,0.8,0.6,0/6/0,985.8,977.2,981.8,,54.0,44.0,15.0,,,43.0,NE,0.3,0,0,
-2005-03-27,3.4,0.8,1.9,0.6,0/6/0,982.0,973.9,979.0,,64.0,33.0,18.0,,,47.0,N,5.1,0,0,
-2005-03-28,3.5,-0.9,1.1,0.6,0/6/0,988.2,974.7,980.9,,53.0,43.0,12.0,,,27.0,N,4.1,1,0,
-2005-03-29,2.3,-0.6,0.8,0.1,0/6/0,993.8,985.1,989.7,,52.0,40.0,20.0,,,33.0,NE,0.0,0,0,
-2005-03-30,3.3,-0.1,1.7,0.7,0/6/0,985.4,972.6,982.4,,53.0,42.0,14.0,,,30.0,NE,7.1,6,6,
-2005-03-31,0.7,-0.9,0.1,0.3,0/6/0,988.1,970.6,980.1,,26.0,22.0,12.0,,,246.0,W,7.9,16,26,
-2005-04-01,1.0,-1.3,-0.3,0.2,0/6/0,998.9,988.1,994.8,,35.0,20.0,6.0,,,265.0,NE,1.5,4,30,
-2005-04-02,4.3,-0.4,1.3,0.3,0/6/0,1000.3,993.5,997.6,,33.0,28.0,9.0,,,25.0,SE,2.3,0,18,
-2005-04-03,2.5,-1.6,0.1,0.4,0/6/0,1001.0,996.4,998.7,,16.0,13.0,3.0,,,228.0,E,0.0,0,17,
-2005-04-04,1.6,0.0,0.7,0.4,0/6/0,1002.1,999.2,1000.8,,7.0,6.0,2.0,,,123.0,SE,1.8,0,15,
-2005-04-05,3.1,-0.9,0.1,0.0,0/6/0,999.2,981.7,990.6,,12.0,10.0,3.0,,,336.0,N,0.0,0,15,
-2005-04-06,1.1,-1.0,0.0,0.2,0/6/0,981.7,963.8,972.9,,9.0,8.0,2.0,,,30.0,SE,1.5,2,14,
-2005-04-07,1.6,-0.9,0.1,-0.2,0/6/0,967.9,961.1,963.6,,10.0,9.0,3.0,,,237.0,N,1.0,1,15,
-2005-04-08,-0.7,-1.9,-1.5,-0.5,0/6/0,972.9,967.3,968.6,,16.0,15.0,7.0,,,239.0,SW,0.3,1,17,
-2005-04-09,1.5,-4.3,-1.5,0.2,0/6/0,986.1,973.0,978.4,,35.0,25.0,8.0,,,117.0,E,0.0,0,15,
-2005-04-10,2.2,-2.8,-0.7,0.4,0/6/0,999.2,986.1,993.5,,23.0,16.0,5.0,,,86.0,E,0.0,0,15,
-2005-04-11,-1.0,-2.2,-1.7,-0.1,0/6/0,1000.2,995.6,998.8,,16.0,12.0,5.0,,,250.0,W,0.0,0,15,
-2005-04-12,1.1,-1.7,-0.2,0.1,0/6/0,997.3,988.3,994.0,,19.0,16.0,5.0,,,326.0,SE,0.3,1,16,
-2005-04-13,-0.3,-1.8,-0.9,-0.2,0/6/0,989.4,986.5,987.8,,23.0,20.0,8.0,,,231.0,SW,0.0,0,16,
-2005-04-14,2.2,-4.7,-0.9,0.4,0/6/0,989.1,970.2,980.7,,27.0,22.0,10.0,,,128.0,SE,0.5,1,17,
-2005-04-15,5.8,1.4,2.8,0.1,0/6/0,970.5,955.2,962.5,,34.0,28.0,12.0,,,32.0,SE,0.0,0,14,
-2005-04-16,3.4,0.1,1.3,0.3,0/6/0,955.2,944.7,948.5,,44.0,34.0,18.0,,,32.0,N,2.8,4,15,
-2005-04-17,0.7,-2.2,-0.4,-0.2,0/6/0,963.4,951.3,957.9,,25.0,19.0,11.0,,,4.0,N,2.3,5,23,
-2005-04-18,-1.0,-4.1,-2.6,-0.4,0/6/0,982.6,963.3,972.5,,28.0,21.0,10.0,,,142.0,SE,0.3,1,24,
-2005-04-19,-0.6,-4.7,-2.6,-0.6,0/6/0,983.7,968.0,978.9,,32.0,26.0,12.0,,,28.0,N,0.3,0,23,
-2005-04-20,-1.8,-5.6,-3.6,0.1,0/6/0,981.3,965.0,971.6,,35.0,26.0,11.0,,,120.0,E,0.0,0,22,
-2005-04-21,-2.9,-6.0,-4.2,-0.3,21690,983.1,981.3,982.6,,18.0,16.0,9.0,,,30.0,NE,0.0,0,22,
-2005-04-22,-2.5,-5.3,-3.5,-0.4,0/6/0,1004.5,982.5,993.0,,26.0,22.0,9.0,,,48.0,SW,0.0,0,20,
-2005-04-23,1.9,-3.4,-1.6,,0/6/0,1011.2,995.4,1006.5,,44.0,31.0,12.0,,,19.0,N,1.5,1,21,
-2005-04-24,1.5,-4.6,-0.1,,0/6/0,995.5,974.4,982.2,,41.0,32.0,21.0,,,263.0,N,12.7,4,31,
-2005-04-25,-3.5,-6.0,-4.7,,0/6/0,991.5,984.1,989.6,,33.0,28.0,6.0,,,230.0,SW,0.0,0,30,
-2005-04-26,-2.8,-5.4,-4.4,-1.0,0/6/0,996.4,988.8,993.2,,22.0,17.0,9.0,,,219.0,SW,0.0,0,29,
-2005-04-27,0.7,-6.0,-3.1,-0.5,21690,992.3,971.3,981.9,,20.0,15.0,5.0,,,128.0,E,0.3,1,30,
-2005-04-28,3.2,0.5,2.1,0.1,0/6/0,971.2,963.8,966.3,,43.0,34.0,19.0,,,31.0,NE,0.0,0,28,
-2005-04-29,1.4,-1.3,-0.3,-0.8,21790,982.0,968.2,977.4,,24.0,20.0,9.0,,,46.0,N,1.0,4,33,
-2005-04-30,1.0,-4.8,-1.2,-0.3,20790,982.4,975.3,979.8,,43.0,36.0,11.0,,,29.0,NE,0.0,1,32,
-2005-05-01,-0.3,-6.0,-4.3,-0.3,20790,982.0,976.7,978.8,,10.0,9.0,4.0,,,39.0,NE,0.0,0,31,
-2005-05-02,-3.4,-6.9,-5.7,-0.5,0/7/0,981.3,977.3,979.9,,17.0,14.0,4.0,,,5.0,NE,0.0,1,32,
-2005-05-03,-3.5,-5.9,-4.8,-0.8,0/8/0,984.5,979.0,981.8,,25.0,20.0,11.0,,,223.0,SW,1.3,2,35,
-2005-05-04,-3.1,-6.8,-5.5,-0.8,0/8/0,985.9,981.2,983.7,,23.0,19.0,6.0,,,218.0,SW,0.0,0,36,
-2005-05-05,-1.2,-5.4,-3.3,-0.8,0/8/0,991.2,977.3,982.2,,26.0,22.0,12.0,,,281.0,SW,2.3,3,37,
-2005-05-06,-5.3,-6.6,-5.9,-0.7,0/7/0,1001.4,991.3,997.0,,22.0,17.0,7.0,,,228.0,SW,0.0,0,35,
-2005-05-07,-4.0,-8.9,-6.6,-0.8,20890,1001.5,994.6,999.5,,19.0,17.0,7.0,,,27.0,NE,0.0,0,34,
-2005-05-08,-0.3,-4.4,-1.8,-1.1,21790,994.7,991.6,992.8,,8.0,6.0,2.0,,,330.0,N,5.3,5,38,
-2005-05-09,1.7,-1.2,-0.4,-1.0,21790,996.3,993.8,994.6,,14.0,11.0,1.0,,,152.0,SE,7.1,5,43,
-2005-05-10,1.6,-0.6,0.3,-0.7,21790,998.4,995.9,997.3,,13.0,11.0,3.0,,,141.0,SE,0.0,0,41,
-2005-05-11,-0.1,-4.1,-1.7,-0.9,21790,995.9,988.7,992.3,,9.0,6.0,2.0,,,83.0,E,0.0,0,41,
-2005-05-12,-1.8,-4.1,-3.1,-0.8,21690,988.7,985.7,986.6,,8.0,6.0,3.0,,,220.0,NE,0.0,0,41,
-2005-05-13,1.8,-3.0,-1.4,-0.7,21690,989.7,986.4,987.8,,23.0,20.0,4.0,,,40.0,NE,0.0,0,41,
-2005-05-14,2.0,-0.9,0.5,-0.3,21690,992.1,989.6,990.7,,32.0,25.0,7.0,,,44.0,E,0.0,0,41,
-2005-05-15,1.4,-1.2,-0.2,-0.5,21690,999.5,989.8,993.7,,21.0,16.0,9.0,,,77.0,E,0.0,1,41,
-2005-05-16,1.2,-4.1,-1.9,-0.9,21690,1003.8,999.4,1002.4,,18.0,14.0,4.0,,,122.0,NE,0.0,0,41,
-2005-05-17,-1.3,-4.8,-2.8,-1.0,21690,1007.9,1003.7,1006.0,,9.0,8.0,4.0,,,351.0,NE,0.0,0,40,
-2005-05-18,-1.5,-4.3,-3.0,-1.4,21690,1006.9,1000.8,1003.2,,9.0,8.0,3.0,,,356.0,N,0.0,0,40,
-2005-05-19,0.6,-2.9,-1.4,-1.5,21690,1001.1,997.8,999.2,,15.0,11.0,5.0,,,350.0,N,0.3,0,40,
-2005-05-20,1.7,0.0,1.0,-1.4,21690,998.0,992.6,994.9,,32.0,23.0,14.0,,,3.0,N,4.3,1,42,
-2005-05-21,3.1,-1.7,0.2,-1.1,21690,1006.0,995.5,1000.6,,26.0,17.0,5.0,,,26.0,SE,3.1,0,42,
-2005-05-22,-0.6,-2.7,-1.7,-1.1,21790,1007.2,1004.3,1006.3,,11.0,9.0,3.0,,,195.0,N,0.8,1,42,
-2005-05-23,-2.5,-5.9,-4.1,-1.2,21790,1004.5,998.6,1001.5,,7.0,6.0,3.0,,,75.0,NE,0.0,0,42,
-2005-05-24,-2.6,-6.6,-4.2,-1.0,21790,1001.0,997.8,999.9,,21.0,15.0,4.0,,,28.0,E,0.0,0,42,
-2005-05-25,-2.3,-6.4,-3.5,-1.0,21790,1001.0,994.6,998.6,,16.0,13.0,3.0,,,29.0,NE,1.5,3,46,
-2005-05-26,-4.9,-7.6,-6.3,-1.4,21790,994.6,989.9,991.8,,10.0,9.0,4.0,,,41.0,NE,0.0,0,46,
-2005-05-27,-3.2,-7.5,-5.2,-1.3,21790,991.0,989.3,990.1,,8.0,6.0,3.0,,,9.0,NE,0.0,0,46,
-2005-05-28,-3.2,-5.4,-4.1,-1.4,21790,997.5,990.8,994.0,,14.0,12.0,4.0,,,12.0,N,0.8,4,48,
-2005-05-29,-2.3,-7.8,-5.1,-1.2,21790,1000.6,994.0,998.6,,18.0,14.0,4.0,,,129.0,NE,0.0,1,48,
-2005-05-30,4.3,-2.3,0.0,-0.9,21790,993.9,986.8,989.5,,46.0,36.0,8.0,,,26.0,NE,0.8,0,48,
-2005-05-31,2.8,-2.5,0.5,-0.9,21790,986.8,972.5,980.1,,35.0,28.0,7.0,,,36.0,E,0.0,0,47,
-2005-06-01,2.6,-3.3,-0.3,-0.9,21690,972.8,968.8,970.7,,32.0,25.0,11.0,,,37.0,NE,0.0,0,48,
-2005-06-02,-2.6,-5.1,-3.7,-1.1,21690,987.2,971.2,979.1,,28.0,23.0,10.0,,,27.0,NE,0.0,0,46,
-2005-06-03,-3.8,-6.9,-5.0,-1.4,21690,990.0,986.9,989.1,,19.0,14.0,4.0,,,49.0,NE,0.0,0,45,
-2005-06-04,0.4,-4.8,-2.1,-0.8,21690,988.4,975.1,980.8,,47.0,36.0,10.0,,,75.0,E,0.0,0,44,
-2005-06-05,1.6,-2.0,-0.1,-0.7,0/6/0,976.9,966.0,971.5,,38.0,31.0,15.0,,,34.0,NE,0.3,0,44,
-2005-06-06,-0.1,-3.7,-1.7,-1.0,0/6/0,969.9,964.4,967.4,,28.0,24.0,11.0,,,31.0,N,2.3,3,48,
-2005-06-07,-2.3,-8.6,-6.5,-1.4,21690,974.5,969.8,972.7,,25.0,20.0,10.0,,,40.0,W,1.5,5,46,
-2005-06-08,-6.2,-10.8,-8.5,-1.7,21690,975.0,968.1,972.4,,29.0,24.0,10.0,,,41.0,N,0.5,1,47,
-2005-06-09,-7.0,-10.9,-9.3,-1.5,21690,971.6,967.2,968.3,,20.0,17.0,8.0,,,36.0,E,0.0,0,44,
-2005-06-10,-8.3,-11.2,-9.9,-1.5,21790,989.0,971.6,981.0,,21.0,17.0,7.0,,,70.0,E,0.0,0,44,
-2005-06-11,-4.7,-9.1,-6.9,-1.5,21790,993.2,989.0,991.4,,11.0,9.0,4.0,,,160.0,NE,0.0,0,44,
-2005-06-12,-4.1,-6.9,-5.9,-1.6,21790,997.9,992.4,993.4,,14.0,13.0,5.0,,,237.0,SW,0.0,0,43,
-2005-06-13,-4.8,-8.1,-6.2,-1.5,21790,1009.7,998.0,1006.6,,16.0,12.0,7.0,,,261.0,N,0.0,0,43,
-2005-06-14,-1.2,-5.2,-2.5,-1.6,21790,1007.5,997.3,1001.0,,22.0,17.0,10.0,,,304.0,W,1.8,3,47,
-2005-06-15,-0.6,-5.3,-3.2,-1.6,21790,1012.3,1003.7,1006.2,,33.0,27.0,10.0,,,235.0,SW,1.8,3,48,
-2005-06-16,-5.0,-6.7,-6.1,-1.5,21990,1014.2,1011.7,1013.0,,24.0,20.0,11.0,,,227.0,SW,0.0,0,48,
-2005-06-17,-4.3,-7.8,-6.2,-1.5,21990,1018.2,1011.9,1013.8,,21.0,17.0,4.0,,,35.0,SW,0.0,0,48,
-2005-06-18,-4.2,-6.1,-5.1,-1.4,21990,1026.8,1017.9,1024.2,,26.0,22.0,10.0,,,24.0,NE,0.0,0,47,
-2005-06-19,-4.3,-7.5,-5.9,-1.6,21990,1026.3,1021.6,1024.4,,13.0,11.0,4.0,,,226.0,SW,0.0,0,47,
-2005-06-20,-4.8,-8.3,-6.5,-1.6,21993,1021.6,1014.9,1018.4,,12.0,9.0,4.0,,,334.0,NE,0.0,0,47,
-2005-06-21,-3.7,-5.5,-4.5,-1.6,21993,1015.2,1013.8,1014.3,,10.0,9.0,4.0,,,258.0,W,0.0,0,47,
-2005-06-22,-3.4,-5.0,-4.1,-1.5,21996,1014.2,1009.7,1012.1,,14.0,11.0,6.0,,,259.0,W,0.0,0,46,
-2005-06-23,-2.5,-6.1,-3.6,-1.4,21996,1010.0,1005.4,1006.9,,18.0,15.0,7.0,,,301.0,NW,0.0,0,47,
-2005-06-24,-5.8,-9.4,-7.2,-1.5,21996,1010.4,1005.8,1008.0,,12.0,10.0,2.0,,,41.0,NE,0.0,0,47,
-2005-06-25,-5.3,-8.3,-6.8,-1.4,21996,1010.0,1001.4,1005.8,,12.0,10.0,5.0,,,231.0,NE,0.0,0,47,
-2005-06-26,-7.1,-10.2,-9.2,-1.6,21996,1001.7,997.5,998.8,,17.0,14.0,4.0,,,57.0,SW,1.0,6,53,
-2005-06-27,-6.1,-7.5,-6.8,-1.6,21996,1002.0,998.3,999.2,,26.0,21.0,6.0,,,51.0,E,0.3,1,47,
-2005-06-28,-5.4,-8.7,-7.4,-1.4,21996,1005.1,997.0,1002.7,,24.0,21.0,12.0,,,23.0,N,1.0,4,48,
-2005-06-29,-5.3,-12.5,-8.2,-1.4,21996,996.9,982.6,987.4,,29.0,21.0,10.0,,,119.0,SE,3.6,20,64,
-2005-06-30,-10.5,-14.0,-12.6,-1.6,21990,995.0,989.6,993.4,,19.0,17.0,6.0,,,35.0,NE,0.0,0,60,
-2005-07-01,-7.7,-13.7,-11.7,-1.6,21990,999.6,994.2,996.5,,21.0,18.0,8.0,,,21.0,NE,0.0,0,57,
-2005-07-02,-7.5,-8.9,-8.2,-1.6,21990,1002.2,999.5,1000.7,,23.0,18.0,11.0,,,208.0,SW,0.0,0,56,
-2005-07-03,-1.4,-9.0,-6.5,-1.5,21990,1002.8,986.1,997.9,,49.0,37.0,10.0,,,27.0,E,0.0,0,54,
-2005-07-04,-1.5,-11.5,-8.1,-1.5,21990,992.8,985.4,988.6,,29.0,25.0,12.0,,,245.0,W,1.0,0,53,
-2005-07-05,-2.5,-12.8,-8.6,-1.6,21990,995.5,983.5,988.3,,38.0,31.0,19.0,,,241.0,W,0.3,0,53,
-2005-07-06,-11.2,-13.4,-12.2,-1.6,22996,1007.3,995.3,1003.7,,26.0,20.0,7.0,,,241.0,SW,0.0,0,53,
-2005-07-07,-2.5,-12.7,-6.9,-1.6,22996,1007.2,1005.6,1006.5,,8.0,7.0,3.0,,,123.0,N,0.0,0,52,
-2005-07-08,3.2,-2.4,-0.7,-1.4,22996,1006.0,995.1,1001.2,,29.0,19.0,5.0,,,357.0,SE,0.0,0,52,
-2005-07-09,0.5,-2.3,-1.2,-1.4,22996,999.1,994.2,996.5,,23.0,18.0,4.0,,,15.0,N,0.0,0,52,
-2005-07-10,-1.5,-5.5,-4.0,-1.6,22990,1002.0,999.1,1001.0,,16.0,13.0,3.0,,,34.0,NE,0.0,0,52,
-2005-07-11,0.5,-4.2,-2.5,-1.4,22990,1002.1,993.7,998.9,,23.0,16.0,6.0,,,127.0,SE,11.2,10,63,
-2005-07-12,2.6,-0.4,1.2,-1.4,22991,993.7,989.4,992.0,,42.0,34.0,19.0,,,28.0,N,3.1,2,62,
-2005-07-13,2.2,-1.7,0.3,-1.5,22990,996.1,990.7,992.4,,26.0,20.0,6.0,,,19.0,NE,2.8,6,69,
-2005-07-14,-1.5,-6.2,-3.8,-1.6,22990,1001.5,996.1,999.2,,17.0,11.0,3.0,,,8.0,NE,0.0,0,66,
-2005-07-15,0.0,-3.9,-1.4,-1.6,20990,996.4,984.3,988.6,,30.0,23.0,8.0,,,70.0,SE,0.0,0,63,
-2005-07-16,-1.6,-5.7,-3.8,-1.5,20990,1003.7,987.3,995.2,,17.0,12.0,5.0,,,138.0,N,0.0,0,63,
-2005-07-17,-4.7,-6.7,-5.3,-1.6,21990,1006.3,998.1,1003.6,,12.0,9.0,3.0,,,277.0,W,0.0,0,63,
-2005-07-18,-4.8,-8.4,-6.4,-1.6,21990,1008.4,997.7,1002.4,,10.0,8.0,4.0,,,358.0,N,0.0,0,63,
-2005-07-19,-7.1,-9.2,-8.5,-1.7,21990,1009.3,1007.4,1008.3,,9.0,7.0,4.0,,,45.0,NE,0.0,0,63,
-2005-07-20,-3.4,-9.1,-6.6,-1.6,21996,1007.5,1000.0,1005.3,,23.0,19.0,6.0,,,38.0,NE,0.0,0,63,
-2005-07-21,1.6,-5.0,-0.3,-1.4,21996,1000.2,984.9,990.8,,37.0,31.0,13.0,,,22.0,SE,0.0,0,63,
-2005-07-22,2.4,0.2,0.9,-1.1,21990,986.3,967.0,975.3,,56.0,43.0,20.0,,,36.0,N,1.5,1,62,
-2005-07-23,1.4,-1.9,-0.6,-1.6,21990,984.5,963.9,974.2,,31.0,26.0,10.0,,,28.0,N,5.8,5,68,
-2005-07-24,-1.0,-7.1,-3.6,,34896,1007.8,984.3,995.0,,33.0,26.0,11.0,,,38.0,N,0.8,2,67,
-2005-07-25,-7.1,-11.1,-10.0,,34896,1014.4,1007.7,1011.7,,18.0,14.0,5.0,,,275.0,W,0.0,3,70,
-2005-07-26,-7.8,-13.8,-10.3,,23896,1015.0,1004.4,1012.1,,14.0,12.0,5.0,,,18.0,N,0.0,1,68,
-2005-07-27,-2.9,-9.1,-5.8,,23896,1004.4,993.4,996.4,,25.0,21.0,11.0,,,239.0,W,0.8,3,68,
-2005-07-28,-4.3,-11.0,-9.3,,23896,996.3,985.9,993.7,,53.0,39.0,12.0,,,22.0,SW,0.0,1,68,
-2005-07-29,-2.0,-13.2,-4.6,-1.7,23896,986.8,980.8,983.1,,44.0,36.0,13.0,,,31.0,N,3.8,6,70,
-2005-07-30,-12.5,-15.3,-14.0,-1.6,23896,988.0,980.2,983.1,,18.0,15.0,8.0,,,241.0,W,0.0,4,72,
-2005-07-31,-13.0,-16.6,-15.2,-1.6,34896,996.8,988.0,992.0,,16.0,13.0,5.0,,,255.0,W,0.0,1,70,
-2005-08-01,-7.4,-16.1,-12.4,-1.6,44896,1002.8,996.9,1000.5,,9.0,8.0,3.0,,,120.0,NE,0.0,0,69,
-2005-08-02,0.3,-10.8,-4.5,-1.6,44896,1003.3,988.5,998.8,,33.0,27.0,7.0,,,48.0,NE,0.0,0,68,
-2005-08-03,0.7,-5.4,-1.3,-1.7,44896,988.7,982.1,986.0,,40.0,33.0,15.0,,,26.0,NE,0.0,0,65,
-2005-08-04,-0.7,-6.8,-3.3,-1.7,34890,982.2,976.8,979.1,,33.0,27.0,10.0,,,35.0,NE,0.8,2,65,
-2005-08-05,0.2,-4.2,-1.3,-1.7,34890,978.6,971.0,975.4,,56.0,45.0,19.0,,,32.0,N,3.1,0,65,
-2005-08-06,-3.3,-7.4,-5.5,-1.7,34890,997.4,978.6,989.1,,15.0,13.0,8.0,,,342.0,NW,0.3,1,65,
-2005-08-07,0.2,-4.8,-1.4,-1.7,24790,999.0,996.0,997.4,,29.0,23.0,12.0,,,331.0,NW,6.6,8,76,
-2005-08-08,1.5,-0.2,0.7,-1.7,24790,998.9,980.8,991.5,,41.0,32.0,21.0,,,34.0,N,7.1,3,69,
-2005-08-09,2.0,0.5,1.3,-1.7,24690,980.8,968.5,972.5,,56.0,43.0,22.0,,,39.0,N,4.1,0,69,
-2005-08-10,0.6,-2.9,-0.7,-1.6,54692,975.5,958.7,968.5,,31.0,25.0,8.0,,,351.0,N,0.5,1,69,
-2005-08-11,-1.3,-13.3,-7.5,-1.7,54692,981.8,959.1,971.6,,65.0,49.0,16.0,,,23.0,NW,0.8,2,68,
-2005-08-12,-4.2,-13.2,-9.5,-1.7,54692,981.7,970.9,977.7,,34.0,29.0,7.0,,,336.0,NE,0.0,0,69,
-2005-08-13,-5.2,-13.1,-10.0,-1.7,54692,983.9,965.2,971.5,,25.0,20.0,6.0,,,255.0,W,1.3,3,72,
-2005-08-14,0.7,-13.1,-3.3,-1.7,44692,984.7,972.0,978.0,,49.0,36.0,20.0,,,18.0,N,0.8,0,68,
-2005-08-15,1.4,-5.2,-2.3,-1.7,44692,979.3,967.9,974.4,,58.0,44.0,22.0,,,21.0,N,0.5,0,68,
-2005-08-16,-0.7,-4.2,-2.3,-1.7,34692,981.2,975.3,978.6,,54.0,39.0,23.0,,,8.0,N,0.3,0,68,
-2005-08-17,-2.7,-10.4,-6.6,-1.7,54693,981.1,976.4,978.6,,29.0,23.0,9.0,,,314.0,N,1.3,2,68,
-2005-08-18,-9.6,-19.9,-15.9,-1.7,14796,986.2,980.9,984.0,,14.0,12.0,6.0,,,271.0,W,0.0,2,69,
-2005-08-19,-13.3,-19.7,-16.8,-1.7,14796,998.2,986.2,993.5,,10.0,8.0,3.0,,,331.0,NW,0.0,0,69,
-2005-08-20,-1.2,-14.1,-8.0,-1.7,14796,1003.0,997.7,999.5,,24.0,17.0,5.0,,,266.0,NW,0.5,0,69,
-2005-08-21,-2.0,-3.7,-2.8,-1.6,14796,1008.1,1002.8,1006.6,,15.0,11.0,5.0,,,251.0,NW,1.5,1,70,
-2005-08-22,-1.9,-5.7,-4.1,-1.7,14796,1010.9,1007.2,1009.4,,14.0,10.0,4.0,,,291.0,NW,0.0,0,70,
-2005-08-23,-4.9,-8.7,-6.2,-1.7,14796,1011.4,1010.3,1010.8,,6.0,5.0,2.0,,,335.0,NE,0.0,0,70,
-2005-08-24,-2.8,-10.6,-6.7,-1.7,14796,1011.5,1009.5,1010.8,,5.0,4.0,1.0,,,150.0,NE,0.0,0,70,
-2005-08-25,-4.4,-8.3,-5.9,-1.7,14796,1009.5,1002.0,1006.2,,9.0,7.0,1.0,,,150.0,SE,0.0,0,70,
-2005-08-26,-3.0,-10.6,-6.7,-1.7,14796,1002.2,996.9,999.0,,17.0,12.0,5.0,,,245.0,N,1.3,2,73,
-2005-08-27,-6.5,-15.5,-11.3,-1.7,14796,1012.2,1002.2,1009.0,,,,,,,,,0.0,0,73,
-2005-08-28,-5.4,-11.7,-9.7,-1.7,14796,1011.7,992.0,1005.6,,,,,,,,,0.0,0,73,
-2005-08-29,-3.0,-14.6,-9.6,-1.7,14796,994.7,985.1,988.4,,32.0,25.0,11.0,,,254.0,W,0.3,0,73,
-2005-08-30,-7.0,-14.6,-11.0,-1.7,44796,1002.1,994.6,998.2,,11.0,8.0,3.0,,,357.0,NW,0.0,0,72,
-2005-08-31,-2.0,-7.5,-4.0,-1.7,44796,1008.5,1002.1,1006.3,,12.0,10.0,5.0,,,336.0,N,0.0,0,72,
-2005-09-01,-0.4,-3.4,-1.8,-1.7,44796,1009.8,1004.4,1006.4,,28.0,23.0,11.0,,,15.0,N,2.0,3,77,
-2005-09-02,2.1,-6.9,-2.3,-1.8,44791,1013.7,1009.0,1011.8,,28.0,24.0,6.0,,,21.0,SE,0.0,0,77,
-2005-09-03,3.1,-3.3,1.3,-1.7,44791,1009.0,999.9,1003.8,,48.0,38.0,17.0,,,28.0,NE,0.5,0,72,
-2005-09-04,-3.0,-11.3,-7.3,-1.7,44796,1021.6,1008.7,1016.0,,12.0,11.0,4.0,,,339.0,NW,0.8,1,72,
-2005-09-05,-4.3,-13.9,-10.0,-1.7,44796,1023.4,1021.5,1022.6,,5.0,4.0,1.0,,,245.0,NE,0.0,0,73,
-2005-09-06,-4.7,-14.3,-10.6,-1.7,44796,1021.5,1012.7,1017.2,,8.0,6.0,1.0,,,354.0,SE,0.0,0,72,
-2005-09-07,4.2,-5.8,0.7,-1.7,44791,1013.1,1008.5,1011.0,,32.0,19.0,6.0,,,70.0,E,0.0,0,72,
-2005-09-08,3.9,-0.7,1.9,-1.7,44791,1008.5,1006.2,1007.0,,35.0,29.0,10.0,,,58.0,NE,2.8,0,71,
-2005-09-09,2.0,-2.1,-0.8,-1.7,44791,1006.2,1001.5,1003.0,,10.0,8.0,2.0,,,332.0,NW,0.0,0,71,
-2005-09-10,-1.4,-7.1,-4.2,-1.6,44896,1012.4,1001.5,1005.4,,30.0,23.0,6.0,,,241.0,W,0.0,0,71,
-2005-09-11,-1.8,-11.8,-6.6,-1.7,44896,1016.0,1012.3,1014.6,,11.0,8.0,3.0,,,340.0,NE,0.0,0,71,
-2005-09-12,1.7,-9.2,-3.5,-1.7,44856,1016.0,1000.0,1011.0,,14.0,11.0,3.0,,,157.0,N,0.0,0,71,
-2005-09-13,2.8,-3.3,-0.4,-1.7,44851,1000.0,980.3,987.5,,22.0,16.0,4.0,,,52.0,SE,2.8,2,73,
-2005-09-14,1.7,-2.9,-0.6,-1.7,44852,988.8,979.7,983.2,,22.0,16.0,5.0,,,354.0,NW,1.3,1,77,
-2005-09-15,1.4,-4.5,-0.9,-1.6,44791,989.1,979.3,985.0,,53.0,41.0,21.0,,,21.0,N,0.5,0,73,
-2005-09-16,1.2,-4.7,-0.9,-1.7,44791,992.0,984.0,987.3,,40.0,30.0,11.0,,,355.0,N,1.0,1,74,
-2005-09-17,-0.5,-8.2,-4.7,-1.7,54791,993.3,975.2,986.3,,13.0,12.0,3.0,,,41.0,N,0.0,0,74,
-2005-09-18,0.7,-6.3,-2.9,-1.7,54791,984.3,974.8,979.0,,18.0,15.0,5.0,,,17.0,SE,1.3,1,75,
-2005-09-19,2.4,-5.3,-1.5,-1.7,54791,993.3,983.8,986.8,,18.0,15.0,5.0,,,49.0,NE,0.0,0,75,
-2005-09-20,1.9,-6.7,-2.6,-1.6,44791,1004.2,993.3,1000.1,,11.0,10.0,3.0,,,26.0,E,0.0,0,75,
-2005-09-21,-0.5,-4.3,-2.6,-1.7,44796,1004.5,1002.1,1003.4,,13.0,11.0,4.0,,,231.0,SE,0.0,0,75,
-2005-09-22,0.5,-7.2,-3.7,-1.6,44792,1002.4,990.3,997.8,,7.0,5.0,2.0,,,119.0,NE,0.0,0,75,
-2005-09-23,2.8,-7.2,-2.5,-1.7,44792,990.3,982.1,985.5,,28.0,23.0,6.0,,,72.0,NE,0.0,0,75,
-2005-09-24,0.0,-2.3,-1.1,-1.6,34791,984.8,979.6,981.0,,35.0,29.0,15.0,,,72.0,E,0.3,1,75,
-2005-09-25,0.0,-7.5,-3.9,-1.5,33791,988.0,980.1,984.4,,13.0,11.0,4.0,,,144.0,N,0.0,0,74,
-2005-09-26,-2.3,-5.6,-3.9,-1.5,33791,991.7,979.8,985.5,,14.0,12.0,6.0,,,307.0,NW,0.0,0,74,
-2005-09-27,0.9,-3.8,-1.5,-1.4,23891,992.2,987.1,990.7,,34.0,28.0,13.0,,,29.0,NE,0.0,0,73,
-2005-09-28,1.0,-2.5,-1.2,-1.5,23891,991.1,985.5,988.2,,44.0,33.0,9.0,,,30.0,NE,0.0,0,72,
-2005-09-29,-0.8,-3.5,-2.2,-1.4,23891,1008.7,991.1,999.9,,14.0,12.0,5.0,,,330.0,NW,0.8,2,75,
-2005-09-30,1.4,-2.7,-0.2,-1.4,23891,1009.1,999.1,1004.9,,49.0,41.0,18.0,,,32.0,N,6.1,2,75,
-2005-10-01,2.4,0.0,1.2,-1.3,23890,1000.5,996.8,999.1,,35.0,27.0,18.0,,,3.0,N,1.8,0,75,
-2005-10-02,4.9,-1.4,0.7,-1.2,23890,1010.7,999.5,1004.1,,19.0,17.0,5.0,,,37.0,N,0.0,0,74,
-2005-10-03,5.1,-0.4,1.8,-1.3,23791,1011.8,995.4,1006.1,,50.0,42.0,20.0,,,28.0,N,0.8,0,72,
-2005-10-04,2.3,0.3,1.1,-1.3,23791,997.5,992.5,994.9,,60.0,44.0,29.0,,,24.0,N,0.8,0,68,
-2005-10-05,1.2,0.3,0.7,-1.4,23790,993.9,976.1,983.8,,57.0,44.0,29.0,,,20.0,N,5.3,0,68,
-2005-10-06,0.9,-1.8,-0.5,-1.4,23790,978.3,969.9,975.8,,51.0,35.0,20.0,,,22.0,N,0.8,1,68,
-2005-10-07,1.2,-1.6,0.0,-1.4,23790,976.7,955.6,966.5,,66.0,44.0,30.0,,,356.0,N,4.6,3,72,
-2005-10-08,-0.1,-9.2,-2.8,-1.4,53793,968.7,955.6,959.2,,47.0,35.0,18.0,,,3.0,N,1.0,4,73,
-2005-10-09,-0.2,-10.1,-3.7,-1.5,14793,970.5,951.9,962.9,,38.0,24.0,12.0,,,358.0,N,2.0,2,73,
-2005-10-10,-1.6,-11.3,-5.6,-1.5,54892,966.9,950.8,956.1,,17.0,14.0,6.0,,,268.0,NW,0.5,2,74,
-2005-10-11,0.8,-12.1,-5.6,-1.5,44891,967.3,952.3,960.3,,45.0,35.0,11.0,,,35.0,NE,1.5,3,74,
-2005-10-12,0.2,-9.9,-6.0,-1.5,44892,977.1,959.7,966.4,,16.0,13.0,5.0,,,311.0,N,0.3,0,74,
-2005-10-13,-2.3,-12.5,-8.2,-1.5,54892,996.5,977.1,987.5,,10.0,9.0,4.0,,,331.0,NW,0.0,0,74,
-2005-10-14,-1.9,-10.6,-7.7,-1.6,54893,1002.2,996.5,1000.5,,8.0,6.0,3.0,,,344.0,N,0.0,0,74,
-2005-10-15,0.9,-8.7,-5.5,-1.6,54892,1006.1,1002.0,1003.8,,9.0,8.0,3.0,,,134.0,SE,0.0,0,74,
-2005-10-16,1.8,-8.0,-2.8,-1.6,54893,1006.8,992.3,1001.4,,22.0,19.0,4.0,,,33.0,SE,2.3,6,79,
-2005-10-17,3.9,-2.4,-0.4,-1.7,54892,992.3,984.5,986.8,,16.0,12.0,4.0,,,127.0,SE,3.8,1,80,
-2005-10-18,2.1,-2.1,-0.4,-1.6,54891,990.7,986.1,988.2,,9.0,8.0,3.0,,,3.0,NW,0.0,0,77,
-2005-10-19,1.2,-3.2,-1.3,-0.7,44891,996.2,990.6,993.3,,11.0,9.0,5.0,,,19.0,NW,0.0,0,76,
-2005-10-20,1.9,-2.9,0.0,-1.4,44891,1002.5,995.8,999.4,,21.0,18.0,10.0,,,18.0,N,0.8,1,77,
-2005-10-21,1.2,-3.7,-0.6,-1.7,34991,1004.3,999.9,1002.1,,34.0,27.0,14.0,,,20.0,N,0.3,0,76,
-2005-10-22,4.3,-7.9,-2.6,-1.6,34991,1005.6,1002.2,1004.4,,26.0,20.0,5.0,,,46.0,NE,0.0,0,76,
-2005-10-23,2.9,-2.6,0.8,-1.6,34993,1002.5,994.2,997.9,,44.0,35.0,15.0,,,19.0,NE,0.0,0,76,
-2005-10-24,4.3,-5.0,-1.3,-1.7,44993,1000.6,999.4,1000.2,,19.0,15.0,3.0,,,26.0,SE,0.0,0,76,
-2005-10-25,4.0,-1.6,0.0,-1.6,54991,1006.7,998.5,1001.7,,15.0,12.0,4.0,,,178.0,SE,5.1,9,86,
-2005-10-26,3.4,-3.0,-0.5,-1.6,54992,1009.7,1006.7,1008.7,,11.0,8.0,3.0,,,320.0,NW,0.0,1,77,
-2005-10-27,3.8,-1.5,0.4,,44992,1007.8,1001.5,1004.4,,47.0,38.0,12.0,,,26.0,SE,2.5,1,81,
-2005-10-28,6.3,-4.7,-0.1,,54992,1011.6,1007.8,1010.0,,14.0,11.0,4.0,,,240.0,NW,1.0,0,80,
-2005-10-29,2.5,-0.1,1.2,-1.6,34891,1009.0,988.8,1001.6,,46.0,38.0,16.0,,,29.0,N,1.5,0,79,
-2005-10-30,3.8,0.7,1.8,-1.3,24891,989.1,980.1,986.7,,40.0,32.0,20.0,,,31.0,N,2.5,0,74,
-2005-10-31,6.6,0.1,1.8,-1.1,24891,980.2,973.6,975.7,,44.0,35.0,15.0,,,35.0,NE,4.1,0,71,
-2005-11-01,3.3,-2.4,0.0,-0.5,34993,987.2,972.5,977.6,,18.0,14.0,5.0,,,233.0,N,0.0,0,70,
-2005-11-02,4.2,-2.3,-0.2,-0.7,54993,991.5,987.2,990.4,,13.0,10.0,3.0,,,239.0,W,0.0,0,70,
-2005-11-03,4.3,-5.2,-1.0,-0.1,54992,992.4,988.6,989.7,,9.0,8.0,2.0,,,359.0,NW,0.0,0,69,
-2005-11-04,-0.6,-5.9,-3.4,0.1,54992,1003.3,992.4,998.9,,13.0,10.0,5.0,,,329.0,NW,0.0,0,69,
-2005-11-05,0.6,-1.6,-0.8,-0.4,54992,1002.2,993.9,996.8,,15.0,13.0,7.0,,,342.0,W,1.0,1,70,
-2005-11-06,4.0,-1.4,-0.2,-0.6,54992,1002.1,995.2,999.0,,19.0,14.0,5.0,,,243.0,W,0.0,0,70,
-2005-11-07,1.9,-0.8,-0.1,-0.8,54992,1008.1,1002.0,1005.5,,15.0,12.0,5.0,,,232.0,W,0.0,1,71,
-2005-11-08,6.0,-0.6,1.1,-0.4,54992,1008.0,999.2,1005.0,,15.0,12.0,3.0,,,136.0,NW,0.0,0,66,
-2005-11-09,2.0,-0.9,0.7,-0.6,54991,999.3,994.3,996.5,,17.0,14.0,6.0,,,328.0,SE,2.0,0,65,
-2005-11-10,1.9,-2.6,-0.2,-0.9,54993,1002.9,999.2,1000.6,,19.0,14.0,7.0,,,325.0,NW,0.0,0,64,
-2005-11-11,1.4,-1.7,-0.4,-1.0,54992,1003.8,993.9,1001.1,,13.0,10.0,6.0,,,261.0,NW,0.3,0,64,
-2005-11-12,2.9,-2.2,-0.5,-1.0,54992,993.9,975.3,981.2,,31.0,24.0,8.0,,,229.0,SW,3.1,6,70,
-2005-11-13,3.9,-3.8,-1.8,-1.1,54992,994.8,982.4,991.0,,41.0,32.0,13.0,,,229.0,SW,0.0,0,66,
-2005-11-14,3.4,-2.2,-0.1,-0.9,54992,995.4,989.2,992.6,,19.0,14.0,6.0,,,248.0,W,0.3,1,66,
-2005-11-15,5.9,-3.5,0.2,-1.3,54992,995.3,992.1,994.3,,8.0,6.0,2.0,,,122.0,NE,0.0,0,64,
-2005-11-16,3.9,-0.7,1.6,-1.1,54991,992.1,977.2,983.6,,40.0,30.0,7.0,,,31.0,SE,4.6,0,62,
-2005-11-17,4.9,0.9,2.6,-1.0,24891,981.3,974.0,977.2,,37.0,30.0,13.0,,,38.0,NE,0.0,0,61,
-2005-11-18,6.6,0.5,3.1,-0.8,24892,984.0,981.2,983.0,,25.0,20.0,3.0,,,41.0,NW,0.0,0,58,
-2005-11-19,8.1,1.3,3.4,0.3,34893,983.9,981.7,982.9,,13.0,10.0,3.0,,,102.0,NW,0.0,0,53,
-2005-11-20,7.9,-0.4,3.1,0.6,34892,983.6,981.9,982.6,,20.0,15.0,4.0,,,100.0,E,0.0,0,49,
-2005-11-21,7.2,1.3,3.8,-0.2,24891,988.8,982.5,984.6,,23.0,17.0,7.0,,,101.0,SE,0.0,0,48,
-2005-11-22,1.6,-2.6,-0.6,0.6,34892,997.5,988.8,993.1,,8.0,7.0,2.0,,,250.0,NW,0.0,0,39,
-2005-11-23,0.4,-3.5,-1.8,0.4,24791,1001.3,997.4,1000.1,,7.0,5.0,3.0,,,340.0,SW,0.0,0,37,
-2005-11-24,2.3,-1.3,0.1,0.4,24792,1000.7,994.0,997.7,,5.0,4.0,2.0,,,227.0,W,0.0,0,37,
-2005-11-25,-0.2,-2.0,-1.0,0.6,34793,994.0,990.8,992.4,,15.0,12.0,6.0,,,228.0,SW,0.0,0,35,
-2005-11-26,2.6,-2.2,-0.5,-0.3,34792,990.8,989.8,990.2,,8.0,7.0,3.0,,,265.0,W,0.0,0,35,
-2005-11-27,1.5,-1.5,-0.5,-0.1,34791,990.2,985.0,988.2,,10.0,8.0,3.0,,,276.0,SE,0.3,0,34,
-2005-11-28,0.7,-1.9,-0.8,0.0,34792,987.4,983.4,984.5,,12.0,10.0,4.0,,,203.0,SE,0.3,2,36,
-2005-11-29,0.7,-3.7,-1.6,-0.2,24291,995.9,987.4,992.1,,24.0,21.0,9.0,,,240.0,SW,0.0,0,35,
-2005-11-30,1.9,-1.2,0.5,-0.5,24292,995.9,976.1,985.8,,40.0,32.0,17.0,,,33.0,N,2.0,2,35,
-2005-12-01,0.0,-3.8,-1.5,-0.9,24792,976.5,969.4,973.0,,28.0,21.0,11.0,,,224.0,NW,0.5,1,34,
-2005-12-02,-3.8,-5.3,-4.7,-1.0,44893,977.2,971.0,972.9,,24.0,20.0,11.0,,,231.0,SW,0.0,1,35,
-2005-12-03,2.8,-5.4,-0.8,-0.8,24791,990.5,977.1,983.3,,23.0,18.0,9.0,,,102.0,E,0.0,0,33,
-2005-12-04,4.8,-3.0,0.3,1.2,24792,1000.9,990.5,996.5,,18.0,13.0,5.0,,,124.0,E,0.0,0,32,
-2005-12-05,1.9,-3.4,-1.2,0.0,24791,1004.8,1000.9,1002.8,,22.0,18.0,6.0,,,118.0,SW,0.0,0,28,
-2005-12-06,1.3,-4.0,-1.1,0.3,24892,1005.0,997.0,1002.0,,30.0,23.0,8.0,,,120.0,E,0.0,0,27,
-2005-12-07,0.5,-4.6,-1.9,0.6,24892,997.0,987.8,991.8,,14.0,11.0,6.0,,,74.0,E,0.0,0,24,
-2005-12-08,0.9,-4.1,-1.4,0.7,24792,991.8,987.3,988.9,,14.0,12.0,5.0,,,226.0,SW,0.0,0,20,
-2005-12-09,3.2,-2.9,-0.9,0.6,34893,992.1,977.7,988.0,,19.0,14.0,6.0,,,152.0,SE,0.0,0,15,
-2005-12-10,1.2,-1.0,0.2,0.6,24792,978.6,972.3,975.7,,32.0,25.0,11.0,,,16.0,NW,2.0,2,16,
-2005-12-11,4.1,-0.2,1.0,0.5,24792,986.9,978.0,980.7,,19.0,14.0,8.0,,,333.0,N,1.8,6,20,
-2005-12-12,3.9,0.2,2.4,0.5,24791,987.4,977.8,983.1,,45.0,36.0,19.0,,,37.0,NE,3.6,0,0,
-2005-12-13,2.6,0.2,1.6,-0.3,24793,994.1,984.1,988.9,,30.0,23.0,18.0,,,348.0,N,0.8,0,0,
-2005-12-14,1.9,-0.7,0.6,-1.0,44793,999.3,994.1,996.8,,20.0,17.0,8.0,,,332.0,NW,1.0,2,0,
-2005-12-15,5.1,-1.0,0.9,-0.3,54892,999.7,992.2,996.6,,13.0,10.0,4.0,,,262.0,NW,0.0,0,0,
-2005-12-16,4.8,-3.1,0.5,-1.0,54892,993.9,991.6,992.4,,6.0,5.0,2.0,,,359.0,W,0.0,0,0,
-2005-12-17,3.2,-2.0,0.1,-1.0,54892,999.0,993.8,995.2,,14.0,11.0,4.0,,,227.0,S,0.0,0,0,
-2005-12-18,2.9,-2.5,-1.0,-0.8,54892,1004.1,999.0,1002.7,,12.0,10.0,5.0,,,15.0,NW,0.0,0,0,
-2005-12-19,4.0,-2.7,0.1,-0.9,54892,1003.4,997.4,999.8,,17.0,12.0,4.0,,,121.0,W,0.0,0,0,
-2005-12-20,4.9,-3.9,0.9,-0.5,54892,1001.8,1000.6,1001.4,,9.0,7.0,2.0,,,208.0,NW,0.0,0,0,
-2005-12-21,4.7,-3.7,0.6,-0.1,54892,1001.5,1001.5,1001.5,,7.0,6.0,2.0,,,227.0,NE,0.0,0,0,
-2005-12-22,2.4,-3.5,-1.1,-0.4,54892,1001.5,1001.5,1001.5,,9.0,8.0,3.0,,,232.0,SW,0.0,0,0,
-2005-12-23,4.0,-2.8,0.2,-0.1,44891,1002.7,0.0,527.7,,8.0,7.0,2.0,,,120.0,SE,0.0,0,0,
-2005-12-24,3.7,0.3,1.7,-0.1,34892,1002.7,987.4,997.4,,30.0,24.0,8.0,,,32.0,SE,0.0,0,0,
-2005-12-25,3.2,0.4,1.7,-0.3,34891,994.7,984.4,988.0,,27.0,19.0,7.0,,,77.0,E,0.0,0,0,
-2005-12-26,5.1,-0.3,1.7,0.3,24892,1002.3,994.7,999.8,,7.0,6.0,2.0,,,318.0,SE,0.0,0,0,
-2005-12-27,6.4,0.3,2.7,-0.5,24891,1002.2,996.0,999.2,,39.0,32.0,10.0,,,30.0,SE,4.3,0,0,
-2005-12-28,5.0,-0.1,1.2,0.1,29392,1008.6,1001.4,1005.9,,15.0,12.0,6.0,,,229.0,W,0.0,0,0,
-2005-12-29,8.6,-1.0,2.3,-0.3,29392,1008.0,999.2,1005.2,,48.0,38.0,4.0,,,31.0,SE,4.6,0,0,
-2005-12-30,8.6,3.9,5.8,0.3,29392,1002.2,997.9,1000.4,,58.0,46.0,23.0,,,29.0,NE,1.3,0,0,
-2005-12-31,5.1,-0.4,2.6,0.6,29392,1002.1,998.9,1000.3,,31.0,27.0,10.0,,,29.0,NW,1.0,0,0,
-2006-01-01,3.3,-0.1,1.5,0.5,29392,1009.0,1000.0,1004.8,,19.0,16.0,8.0,,,267.0,W,0.5,0,0,
-2006-01-02,6.7,1.0,3.2,1.0,29391,1009.1,1004.5,1007.7,,20.0,17.0,6.0,,,14.0,N,1.8,0,0,
-2006-01-03,5.5,2.2,3.7,0.5,29390,1004.5,999.5,1001.1,,20.0,16.0,5.0,,,22.0,SE,8.9,0,0,
-2006-01-04,8.3,0.9,3.6,0.8,29390,1001.1,994.5,998.6,,11.0,10.0,3.0,,,135.0,SE,0.0,0,0,
-2006-01-05,6.3,-0.3,1.6,1.2,29390,995.1,992.7,993.6,,9.0,6.0,3.0,,,5.0,NW,0.0,0,0,
-2006-01-06,2.1,-1.2,0.0,1.4,29390,995.8,992.4,994.6,,9.0,6.0,3.0,,,347.0,NW,0.0,0,0,
-2006-01-07,1.2,-1.2,-0.3,1.1,29390,992.4,985.7,988.5,,10.0,8.0,3.0,,,208.0,SW,0.0,0,0,
-2006-01-08,1.1,-1.4,-0.4,1.1,29390,985.7,980.6,982.5,,11.0,9.0,3.0,,,237.0,S,0.0,1,0,
-2006-01-09,0.0,-1.4,-0.6,0.8,29390,984.4,980.3,981.7,,12.0,9.0,5.0,,,248.0,W,0.0,0,0,
-2006-01-10,4.0,-0.8,1.0,0.6,29390,988.1,984.4,986.2,,11.0,9.0,2.0,,,235.0,N,0.0,0,0,
-2006-01-11,2.0,-0.1,0.6,0.8,29390,992.4,988.0,990.2,,17.0,12.0,6.0,,,263.0,SW,0.0,0,0,
-2006-01-12,4.8,-0.1,1.8,1.0,29390,993.5,989.6,992.3,,11.0,9.0,3.0,,,230.0,W,0.0,0,0,
-2006-01-13,4.7,0.2,2.1,0.9,29390,989.6,979.9,983.6,,10.0,8.0,2.0,,,337.0,NW,0.3,0,0,
-2006-01-14,3.7,1.3,2.2,1.5,29390,993.9,979.8,985.6,,14.0,11.0,4.0,,,132.0,W,1.0,0,0,
-2006-01-15,4.0,1.0,2.2,1.5,29390,997.6,993.9,996.1,,14.0,12.0,6.0,,,306.0,N,0.0,0,0,
-2006-01-16,4.6,-0.3,2.5,1.5,29390,997.5,988.0,993.5,,39.0,32.0,10.0,,,21.0,N,0.0,0,0,
-2006-01-17,4.5,1.7,3.1,1.2,29390,991.4,989.4,990.7,,29.0,23.0,7.0,,,21.0,SE,3.6,0,0,
-2006-01-18,7.2,0.8,3.6,1.7,29390,990.6,977.8,982.5,,36.0,30.0,7.0,,,30.0,NE,1.3,0,0,
-2006-01-19,3.9,0.2,2.0,1.3,29390,995.8,979.5,988.1,,20.0,15.0,6.0,,,245.0,SW,1.0,0,0,
-2006-01-20,5.8,-1.0,1.9,1.7,29390,998.5,995.6,997.3,,11.0,8.0,3.0,,,120.0,NE,0.0,0,0,
-2006-01-21,8.4,2.9,5.4,1.1,29390,998.5,995.4,997.0,,39.0,31.0,14.0,,,32.0,NE,1.0,0,0,
-2006-01-22,10.6,4.6,7.4,1.4,29390,996.0,981.0,991.4,,49.0,40.0,18.0,,,46.0,NE,0.8,0,0,
-2006-01-23,9.3,1.8,4.2,1.2,29390,989.4,973.4,983.8,,64.0,53.0,23.0,,,30.0,N,4.1,0,0,
-2006-01-24,4.4,1.7,2.7,0.7,29390,990.3,988.6,989.4,,23.0,18.0,9.0,,,339.0,N,0.5,0,0,
-2006-01-25,4.4,1.9,3.4,1.2,29390,990.1,984.2,987.4,,23.0,20.0,5.0,,,32.0,NE,0.0,0,0,
-2006-01-26,5.9,0.6,2.0,1.3,29390,984.2,981.1,982.2,,9.0,7.0,2.0,,,214.0,N,0.0,0,0,
-2006-01-27,2.1,-0.4,0.6,1.4,29390,985.3,981.1,982.9,,9.0,8.0,3.0,,,257.0,SW,0.0,0,0,
-2006-01-28,5.4,-0.7,1.0,1.5,29390,985.4,984.0,984.6,,11.0,9.0,3.0,,,234.0,S,0.0,0,0,
-2006-01-29,7.3,-0.5,2.7,1.5,29390,989.7,984.9,986.8,,11.0,9.0,3.0,,,359.0,N,0.0,0,0,
-2006-01-30,7.0,1.2,4.1,1.9,29390,996.7,989.6,993.2,,18.0,12.0,3.0,,,83.0,N,0.0,0,0,
-2006-01-31,6.6,1.6,3.9,2.4,29390,1000.7,996.7,999.4,,11.0,9.0,3.0,,,38.0,NE,0.0,0,0,
-2006-02-01,3.2,0.7,1.8,1.9,29390,1000.2,991.3,995.5,,12.0,10.0,4.0,,,34.0,NE,0.0,0,0,
-2006-02-02,5.1,0.5,2.0,1.7,29390,1000.3,991.3,995.6,,10.0,8.0,3.0,,,353.0,N,0.0,0,0,
-2006-02-03,2.8,0.7,1.6,1.9,29390,1002.3,1000.3,1001.6,,18.0,15.0,7.0,,,230.0,SW,0.0,0,0,
-2006-02-04,2.2,-1.2,0.3,1.8,29390,1003.6,1001.7,1002.7,,10.0,8.0,2.0,,,218.0,W,0.0,0,0,
-2006-02-05,3.0,-0.4,0.8,2.2,29390,1004.6,1002.6,1003.4,,12.0,10.0,3.0,,,122.0,N,0.0,0,0,
-2006-02-06,7.5,1.7,5.3,1.8,59390,1003.6,990.2,998.5,,52.0,42.0,16.0,,,33.0,NE,0.3,0,0,
-2006-02-07,7.0,3.3,4.8,1.2,29390,998.6,986.0,993.2,,55.0,42.0,22.0,,,31.0,N,2.0,0,0,
-2006-02-08,5.4,0.8,3.6,0.9,29390,1007.3,998.6,1004.3,,30.0,23.0,14.0,,,18.0,N,11.9,0,0,
-2006-02-09,5.6,4.1,4.9,1.5,29390,1006.8,996.6,1001.4,,54.0,44.0,24.0,,,31.0,N,2.0,0,0,
-2006-02-10,4.3,2.5,3.6,0.3,39393,1006.2,1001.0,1003.6,,24.0,19.0,13.0,,,329.0,N,3.3,0,0,
-2006-02-11,6.0,1.8,4.5,1.1,29390,1006.6,983.0,997.6,,27.0,20.0,10.0,,,73.0,SE,0.0,0,0,
-2006-02-12,6.3,2.4,4.0,1.5,29390,983.7,978.2,981.8,,27.0,22.0,4.0,,,35.0,SE,2.0,0,0,
-2006-02-13,3.2,1.6,2.4,1.4,29390,978.2,974.9,976.0,,17.0,13.0,4.0,,,194.0,N,1.5,0,0,
-2006-02-14,2.6,0.4,1.3,1.5,29390,978.9,973.5,975.8,,14.0,10.0,4.0,,,345.0,NW,1.0,0,0,
-2006-02-15,4.6,0.7,2.3,1.2,39393,986.9,974.9,980.3,,17.0,10.0,3.0,,,87.0,N,0.0,0,0,
-2006-02-16,4.9,0.3,2.0,1.5,29390,991.1,985.8,989.4,,33.0,23.0,7.0,,,71.0,E,0.0,0,0,
-2006-02-17,5.8,2.1,4.3,1.9,29390,986.9,983.5,985.4,,48.0,40.0,19.0,,,33.0,NE,0.0,0,0,
-2006-02-18,6.7,3.6,4.7,2.0,29390,986.2,978.2,983.2,,37.0,27.0,10.0,,,31.0,NE,0.0,0,0,
-2006-02-19,5.5,2.6,3.5,1.9,29390,993.4,978.6,985.0,,18.0,13.0,5.0,,,103.0,SE,0.0,0,0,
-2006-02-20,2.7,-0.1,0.7,0.8,29390,1004.2,993.4,999.8,,20.0,17.0,7.0,,,234.0,N,0.0,0,0,
-2006-02-21,2.8,-0.1,1.1,1.3,29390,1009.6,1004.2,1007.5,,26.0,20.0,8.0,,,240.0,SW,0.0,0,0,
-2006-02-22,2.9,1.2,2.2,0.8,29390,1015.2,1008.6,1010.4,,24.0,18.0,7.0,,,244.0,SW,0.3,0,0,
-2006-02-23,3.5,1.0,2.0,0.7,29390,1018.0,1014.4,1016.9,,9.0,7.0,2.0,,,314.0,NW,0.0,0,0,
-2006-02-24,7.3,0.6,2.5,1.1,29390,1014.4,998.2,1006.8,,38.0,31.0,6.0,,,33.0,SE,1.5,0,0,
-2006-02-25,7.2,2.5,4.8,1.3,29390,999.3,990.2,996.4,,39.0,30.0,10.0,,,27.0,NE,0.0,0,0,
-2006-02-26,4.2,1.7,2.5,1.3,29390,990.2,985.0,987.3,,11.0,10.0,3.0,,,353.0,N,6.6,0,0,
-2006-02-27,6.1,0.5,2.4,1.5,29390,990.8,974.6,984.7,,29.0,23.0,3.0,,,117.0,SE,0.0,0,0,
-2006-02-28,6.6,1.7,4.0,2.1,29390,977.1,973.7,975.4,,27.0,20.0,7.0,,,102.0,E,0.0,0,0,
-2006-03-01,2.8,0.0,1.2,1.4,29390,978.8,976.7,977.4,,13.0,11.0,4.0,,,257.0,W,0.0,0,0,
-2006-03-02,4.7,1.1,2.9,1.5,29390,978.2,964.6,970.1,,54.0,44.0,15.0,,,32.0,N,1.8,0,0,
-2006-03-03,5.4,2.8,3.9,1.5,29390,966.8,960.6,963.3,,33.0,27.0,9.0,,,28.0,SE,1.8,0,0,
-2006-03-04,3.4,-0.1,1.2,0.6,29390,979.6,962.6,971.8,,27.0,22.0,8.0,,,354.0,N,14.5,2,0,
-2006-03-05,5.0,0.6,2.6,0.8,29390,979.9,972.9,977.6,,33.0,27.0,12.0,,,34.0,N,0.0,0,0,
-2006-03-06,4.5,0.0,2.1,1.0,29390,973.1,969.3,972.0,,32.0,21.0,4.0,,,79.0,E,0.0,0,0,
-2006-03-07,5.1,1.5,3.0,1.5,29390,971.9,954.9,965.3,,44.0,35.0,17.0,,,46.0,E,3.8,0,0,
-2006-03-08,4.7,1.0,3.3,1.3,29390,974.8,955.2,966.5,,60.0,45.0,13.0,,,28.0,NE,6.4,0,0,
-2006-03-09,1.1,-0.5,0.5,0.6,29390,988.0,974.8,983.0,,18.0,15.0,8.0,,,241.0,SW,4.8,1,0,
-2006-03-10,4.9,-0.7,1.4,1.3,29390,988.0,966.8,978.5,,33.0,21.0,11.0,,,44.0,E,0.0,0,0,
-2006-03-11,5.6,2.4,3.6,1.4,29390,970.3,966.8,967.6,,34.0,23.0,7.0,,,28.0,N,3.3,0,0,
-2006-03-12,2.6,1.2,2.0,0.5,29390,982.9,970.3,975.7,,33.0,27.0,13.0,,,28.0,N,1.5,0,0,
-2006-03-13,4.6,1.3,2.5,1.2,29390,986.9,980.2,984.4,,29.0,24.0,7.0,,,29.0,N,1.8,0,0,
-2006-03-14,3.0,0.7,1.8,1.0,29390,980.8,976.8,978.6,,18.0,13.0,3.0,,,111.0,N,9.4,0,0,
-2006-03-15,5.2,0.4,2.5,1.0,29390,985.6,980.7,983.4,,31.0,24.0,8.0,,,23.0,N,0.0,0,0,
-2006-03-16,6.7,2.5,5.0,1.5,29390,984.5,975.4,978.4,,50.0,39.0,20.0,,,37.0,NE,3.1,0,0,
-2006-03-17,5.8,3.2,4.5,1.7,29390,975.8,970.6,973.3,,45.0,34.0,17.0,,,32.0,NE,4.8,0,0,
-2006-03-18,3.3,0.7,2.1,1.2,29390,977.4,973.2,975.2,,17.0,13.0,5.0,,,332.0,N,3.3,0,0,
-2006-03-19,1.2,-0.9,0.0,1.3,29390,992.6,977.4,985.7,,26.0,23.0,10.0,,,237.0,SW,1.5,2,0,
-2006-03-20,4.6,-2.3,1.9,1.2,29390,992.6,974.0,984.5,,48.0,39.0,18.0,,,33.0,NE,1.0,0,0,
-2006-03-21,4.2,2.3,3.2,0.9,29390,974.2,963.9,968.5,,36.0,29.0,19.0,,,26.0,N,5.6,0,0,
-2006-03-22,3.3,0.5,2.3,-0.3,29390,980.9,964.7,972.6,,32.0,25.0,18.0,,,352.0,N,6.4,0,0,
-2006-03-23,4.2,0.6,2.1,1.2,29290,982.7,980.8,981.9,,17.0,13.0,5.0,,,344.0,SE,2.0,0,0,
-2006-03-24,4.3,-0.1,1.5,1.2,29290,981.5,974.5,977.6,,25.0,19.0,6.0,,,223.0,SW,0.3,0,0,
-2006-03-25,4.0,-0.6,0.6,1.3,29290,986.8,979.4,984.5,,25.0,21.0,7.0,,,26.0,SW,2.8,0,0,
-2006-03-26,3.9,0.6,2.3,-0.5,29190,995.5,983.9,989.5,,30.0,24.0,11.0,,,25.0,N,6.4,0,0,
-2006-03-27,6.1,0.4,3.3,1.1,29190,995.5,978.5,987.6,,44.0,36.0,17.0,,,24.0,NE,2.0,0,0,
-2006-03-28,4.6,2.0,3.1,0.6,29190,980.3,958.7,975.1,,59.0,46.0,16.0,,,32.0,N,3.6,0,0,
-2006-03-29,3.5,-0.5,1.3,1.3,29190,981.3,957.9,973.1,,39.0,30.0,18.0,,,338.0,W,1.0,0,0,
-2006-03-30,3.5,0.7,2.5,1.0,29190,980.4,971.1,977.2,,50.0,40.0,21.0,,,31.0,N,2.8,0,0,
-2006-03-31,3.5,0.5,2.2,-0.4,29190,992.9,975.4,982.3,,54.0,24.0,16.0,,,339.0,N,2.3,0,0,
-2006-04-01,2.1,-0.1,0.7,0.3,29190,1002.9,992.9,998.7,,19.0,17.0,6.0,,,256.0,W,0.3,0,0,
-2006-04-02,4.4,0.5,2.6,1.2,29190,994.3,970.2,977.9,,65.0,47.0,23.0,,,51.0,NE,7.1,0,0,
-2006-04-03,3.5,-0.1,1.5,0.8,29190,993.9,969.5,984.4,,35.0,25.0,12.0,,,25.0,NW,3.1,0,0,
-2006-04-04,5.3,-1.2,0.7,1.1,29190,994.0,967.4,981.0,,37.0,24.0,9.0,,,99.0,E,0.0,0,0,
-2006-04-05,2.4,0.1,1.4,1.1,29190,972.9,965.5,967.0,,37.0,29.0,14.0,,,117.0,E,0.0,0,0,
-2006-04-06,,,,0.6,29190,,,,,,,,,,,,0.2,4,4,
-2006-04-07,,,,1.1,29190,,,,,,,,,,,,0.1,0,0,
-2006-04-08,,,,1.0,29190,,,,,,,,,,,,0.0,0,0,
-2006-04-09,,,,0.8,29290,,,,,,,,,,,,0.0,1,0,
-2006-04-10,,,,0.5,29290,,,,,,,,,,,,0.0,0,0,
-2006-04-11,,,,1.0,29290,,,,,,,,,,,,0.0,0,0,
-2006-04-12,,,,0.2,29290,,,,,,,,,,,,0.0,0,0,
-2006-04-13,,,,0.2,29290,,,,,,,,,,,,0.0,0,0,
-2006-04-14,1.3,-1.4,-0.3,-0.1,29290,1006.3,992.5,1002.8,,37.0,26.0,11.0,,,19.0,SW,0.8,1,0,
-2006-04-15,2.3,0.3,1.1,-0.7,29290,992.5,984.9,988.3,,33.0,26.0,11.0,,,346.0,N,5.1,2,0,
-2006-04-16,0.6,-1.2,-0.4,-0.4,29290,997.9,985.3,990.5,,18.0,14.0,8.0,,,223.0,SW,0.0,0,0,
-2006-04-17,4.8,-2.6,1.3,0.3,29290,997.7,969.0,984.1,,51.0,39.0,16.0,,,31.0,NE,3.6,0,0,
-2006-04-18,4.0,-3.4,0.1,0.3,29290,987.8,961.2,973.7,,54.0,38.0,21.0,,,26.0,N,7.4,1,1,
-2006-04-19,-1.6,-5.1,-3.4,-0.2,29290,999.2,987.7,993.4,,33.0,27.0,18.0,,,239.0,SW,0.0,2,3,
-2006-04-20,-0.6,-5.3,-2.6,0.4,29290,1004.5,999.0,1002.9,,27.0,22.0,9.0,,,214.0,SW,0.0,0,3,
-2006-04-21,-0.9,-4.5,-2.3,-0.4,29290,1004.6,998.1,1001.9,,14.0,11.0,5.0,,,220.0,NE,0.0,0,2,
-2006-04-22,1.6,-4.3,-2.1,-0.8,21790,998.1,994.3,995.7,,24.0,14.0,4.0,,,66.0,E,0.0,0,2,
-2006-04-23,4.4,-2.2,1.5,0.5,21790,995.5,991.5,992.9,,44.0,31.0,16.0,,,48.0,NE,0.0,0,0,
-2006-04-24,3.2,-0.8,0.7,0.0,21790,998.8,993.5,997.4,,49.0,39.0,6.0,,,42.0,N,0.0,0,0,
-2006-04-25,-0.1,-2.5,-1.2,0.0,21790,998.9,989.4,996.1,,17.0,15.0,3.0,,,22.0,N,0.3,2,2,
-2006-04-26,-0.5,-2.3,-1.3,-0.6,21790,989.3,982.1,984.0,,13.0,11.0,3.0,,,252.0,N,0.3,0,1,
-2006-04-27,1.2,-1.3,-0.5,-0.6,21790,1003.8,986.3,996.5,,9.0,7.0,2.0,,,356.0,N,0.0,0,1,
-2006-04-28,0.8,-2.7,-1.3,0.0,21790,1007.0,1003.8,1005.4,,13.0,11.0,3.0,,,17.0,NE,0.0,0,0,
-2006-04-29,3.4,-1.4,1.1,0.3,21790,1007.2,992.7,1002.9,,44.0,34.0,15.0,,,34.0,NE,0.8,0,0,
-2006-04-30,3.4,0.0,1.1,0.4,21790,995.3,981.5,989.8,,55.0,43.0,16.0,,,32.0,NW,4.6,0,0,
-2006-05-01,3.7,0.9,2.0,0.5,21790,987.9,974.1,982.0,,53.0,42.0,23.0,,,44.0,NW,12.2,0,0,
-2006-05-02,2.6,0.6,1.5,0.2,21790,995.3,985.5,990.8,,38.0,27.0,17.0,,,337.0,NW,1.0,0,0,
-2006-05-03,6.1,0.6,2.7,0.4,21790,991.3,954.9,967.2,,65.0,50.0,29.0,,,41.0,N,11.2,0,0,
-2006-05-04,1.1,-1.8,-0.1,-0.6,21790,984.2,955.1,964.9,,50.0,38.0,24.0,,,237.0,NW,1.0,2,11,
-2006-05-05,0.9,-2.8,-1.3,0.1,21790,989.0,983.0,986.5,,34.0,28.0,10.0,,,240.0,SW,0.0,1,10,
-2006-05-06,2.9,-0.7,0.8,-0.1,21690,987.8,972.6,979.6,,43.0,35.0,20.0,,,27.0,N,3.8,0,4,
-2006-05-07,0.3,-1.9,-0.6,0.3,21690,982.7,953.4,967.6,,43.0,30.0,15.0,,,71.0,E,0.0,0,4,
-2006-05-08,-0.1,-4.0,-2.4,-0.2,21690,983.8,972.5,979.9,,33.0,24.0,13.0,,,251.0,SW,0.0,1,8,
-2006-05-09,0.2,-3.8,-2.9,-0.6,21690,983.1,978.5,981.6,,31.0,26.0,10.0,,,45.0,NE,0.0,0,7,
-2006-05-10,2.0,-0.9,0.3,-0.2,21690,984.6,960.1,969.9,,59.0,45.0,28.0,,,35.0,NW,3.8,4,14,
-2006-05-11,2.7,0.1,1.3,-0.5,20690,987.6,978.2,984.4,,41.0,32.0,17.0,,,356.0,N,7.4,0,13,
-2006-05-12,2.8,-3.1,0.5,-0.6,20690,978.1,959.8,965.3,,61.0,44.0,28.0,,,0.0,NW,8.1,0,5,
-2006-05-13,1.2,-3.8,-0.8,-1.2,20690,967.6,959.4,963.0,,46.0,36.0,25.0,,,356.0,NW,2.0,1,8,
-2006-05-14,-0.5,-3.4,-1.8,-1.0,20690,967.3,962.5,964.9,,49.0,37.0,22.0,,,294.0,NW,0.0,0,9,
-2006-05-15,-1.7,-4.8,-2.8,-1.3,20690,980.1,963.0,969.0,,36.0,30.0,17.0,,,305.0,NW,0.0,1,13,
-2006-05-16,-2.9,-4.5,-3.7,-0.6,21690,982.2,971.9,978.0,,30.0,23.0,8.0,,,190.0,S,0.0,0,12,
-2006-05-17,-3.1,-5.6,-4.0,-0.6,21690,979.5,971.8,976.2,,31.0,22.0,10.0,,,119.0,SW,0.0,0,11,
-2006-05-18,-2.3,-5.2,-3.7,-0.5,21690,983.9,968.2,974.5,,33.0,27.0,16.0,,,45.0,SW,0.0,0,11,
-2006-05-19,-0.5,-5.7,-4.0,-0.8,21690,984.6,960.7,969.2,,54.0,44.0,18.0,,,25.0,W,0.0,5,17,
-2006-05-20,-4.1,-8.5,-6.3,-0.7,22690,988.1,961.5,975.7,,31.0,25.0,13.0,,,228.0,SW,0.0,0,16,
-2006-05-21,-2.0,-5.9,-4.4,-0.9,22690,1000.8,988.1,996.6,,26.0,21.0,9.0,,,230.0,SW,0.0,0,16,
-2006-05-22,0.2,-2.4,-1.1,-1.2,22690,1003.5,998.6,1001.1,,20.0,16.0,7.0,,,338.0,N,0.0,0,16,
-2006-05-23,6.1,-1.2,2.8,-0.5,22690,1002.9,982.6,993.2,,63.0,45.0,22.0,,,31.0,NE,3.8,0,0,
-2006-05-24,4.9,-1.3,2.4,-0.4,22690,994.5,977.7,983.7,,46.0,35.0,19.0,,,19.0,N,8.1,0,0,
-2006-05-25,-1.1,-3.3,-2.7,-0.3,22190,998.9,994.3,996.1,,17.0,14.0,10.0,,,202.0,SW,0.0,1,2,
-2006-05-26,-3.2,-5.6,-3.9,-0.3,22190,1014.6,999.0,1007.5,,20.0,16.0,7.0,,,230.0,SW,0.0,0,2,
-2006-05-27,-2.8,-6.0,-4.8,-0.4,22690,1021.1,1014.6,1018.5,,25.0,18.0,7.0,,,32.0,NE,0.0,0,2,
-2006-05-28,3.2,-6.3,-3.7,-0.9,22690,1019.9,1009.0,1013.6,,27.0,23.0,7.0,,,23.0,NE,2.0,2,3,
-2006-05-29,5.0,-1.1,0.6,-0.6,22690,1010.1,1005.9,1007.9,,32.0,24.0,7.0,,,32.0,SE,0.5,3,5,
-2006-05-30,2.2,-3.0,-0.4,-0.7,22690,1016.1,1005.4,1010.8,,37.0,31.0,6.0,,,35.0,NE,0.0,0,4,
-2006-05-31,-1.7,-4.7,-3.5,-1.0,22690,1017.5,1015.4,1016.6,,10.0,9.0,3.0,,,340.0,SE,0.0,0,4,
-2006-06-01,6.4,-2.3,2.6,-0.5,22690,1017.3,1000.4,1010.5,,47.0,39.0,15.0,,,51.0,NE,0.0,0,0,
-2006-06-02,5.5,-0.5,2.3,0.0,22690,1003.8,996.4,1000.3,,56.0,44.0,18.0,,,34.0,NE,0.8,0,0,
-2006-06-03,5.1,-0.4,1.5,-0.2,22690,1003.4,996.0,1000.6,,35.0,30.0,9.0,,,28.0,SE,0.0,0,0,
-2006-06-04,5.0,-1.9,1.8,-0.1,22690,1002.5,994.3,997.4,,41.0,35.0,18.0,,,44.0,NE,0.0,0,0,
-2006-06-05,0.1,-1.8,-0.6,-0.9,22690,1002.7,998.1,1000.1,,26.0,19.0,9.0,,,337.0,NW,3.3,5,10,
-2006-06-06,1.4,-1.6,0.5,-1.2,22690,998.5,987.8,994.3,,38.0,29.0,14.0,,,21.0,N,1.3,6,16,
-2006-06-07,0.9,-3.8,-1.3,-0.7,22690,988.0,980.1,982.2,,50.0,36.0,15.0,,,18.0,N,13.7,24,44,
-2006-06-08,-2.8,-6.1,-4.2,-0.9,22690,982.9,977.7,981.0,,27.0,19.0,7.0,,,206.0,SW,0.0,2,39,
-2006-06-09,-3.5,-7.9,-5.8,-0.7,21690,986.3,977.8,980.8,,22.0,16.0,8.0,,,204.0,E,0.0,0,36,
-2006-06-10,-4.8,-8.8,-6.3,-1.0,21690,992.0,986.3,990.2,,22.0,18.0,7.0,,,191.0,S,0.0,0,34,
-2006-06-11,-5.2,-11.1,-8.2,-1.0,21690,991.7,989.2,990.5,,31.0,23.0,10.0,,,122.0,E,0.0,0,32,
-2006-06-12,-2.7,-8.1,-6.1,-0.9,21690,993.6,989.5,991.8,,38.0,27.0,8.0,,,117.0,NE,0.0,0,31,
-2006-06-13,-2.9,-6.6,-4.8,-0.7,21790,1004.4,989.5,998.9,,59.0,45.0,11.0,,,119.0,NE,0.0,0,26,
-2006-06-14,-2.3,-5.3,-3.4,-0.8,21790,1007.8,1004.4,1006.5,,19.0,15.0,7.0,,,235.0,SW,0.0,0,26,
-2006-06-15,-3.7,-5.3,-4.4,-0.8,21790,1012.7,1007.8,1010.3,,15.0,12.0,4.0,,,26.0,NE,0.0,0,25,
-2006-06-16,2.5,-6.5,-2.3,-0.8,21690,1012.7,994.9,1003.4,,39.0,31.0,9.0,,,30.0,SE,2.5,0,26,
-2006-06-17,-0.2,-1.2,-0.6,-0.7,21690,996.2,989.3,993.8,,10.0,8.0,3.0,,,122.0,SE,11.4,9,36,
-2006-06-18,-0.9,-4.8,-2.4,-0.8,21690,989.3,983.2,985.3,,8.0,7.0,1.0,,,207.0,SW,0.3,1,37,
-2006-06-19,-3.5,-5.8,-4.7,-0.7,21690,983.5,981.7,982.3,,36.0,26.0,9.0,,,33.0,NE,0.0,0,37,
-2006-06-20,-5.4,-7.8,-7.0,-1.0,21690,988.9,982.6,985.4,,31.0,26.0,12.0,,,23.0,N,0.3,1,37,
-2006-06-21,-3.9,-7.2,-5.7,-1.5,21690,992.0,988.8,990.9,,26.0,22.0,13.0,,,31.0,N,1.8,2,37,
-2006-06-22,-3.9,-7.7,-6.4,-1.3,21690,991.5,978.3,984.3,,19.0,16.0,5.0,,,231.0,SE,0.0,2,38,
-2006-06-23,-3.8,-7.3,-5.9,-1.2,21690,991.2,979.0,986.3,,32.0,27.0,15.0,,,224.0,SW,0.0,1,34,
-2006-06-24,-5.7,-6.9,-6.3,-1.2,21690,1002.0,990.7,994.8,,29.0,22.0,12.0,,,225.0,SW,0.0,1,36,
-2006-06-25,-5.0,-7.2,-6.3,-1.5,21690,1013.3,1002.1,1010.2,,19.0,15.0,6.0,,,212.0,SW,0.0,0,35,
-2006-06-26,-3.3,-5.0,-4.1,-1.2,21690,1017.7,1012.8,1016.0,,16.0,14.0,6.0,,,231.0,SW,0.0,0,34,
-2006-06-27,-2.4,-4.3,-3.4,-1.4,22690,1017.4,1015.0,1016.3,,17.0,14.0,7.0,,,24.0,N,0.0,0,34,
-2006-06-28,1.4,-3.6,-0.8,-1.4,22690,1015.3,1012.4,1014.2,,33.0,28.0,14.0,,,30.0,NE,0.0,0,34,
-2006-06-29,5.3,-0.5,2.6,-0.9,22690,1013.5,1002.2,1007.8,,60.0,47.0,22.0,,,22.0,NE,1.3,0,27,
-2006-06-30,3.3,1.2,2.2,-0.6,21690,1003.1,982.3,994.7,,59.0,46.0,38.0,,,21.0,NE,10.9,0,19,
-2006-07-01,1.6,-1.9,-0.5,-0.7,21690,994.9,979.9,988.6,,51.0,42.0,17.0,,,35.0,NW,2.0,1,19,
-2006-07-02,0.3,-2.5,-1.2,-0.9,21690,999.6,992.5,997.1,,41.0,34.0,12.0,,,337.0,N,1.8,5,25,
-2006-07-03,2.2,-2.8,0.3,-0.6,21690,998.8,986.4,994.2,,42.0,36.0,15.0,,,34.0,NE,0.0,0,22,
-2006-07-04,3.4,0.6,2.0,-0.5,21690,986.6,972.6,978.5,,51.0,39.0,26.0,,,33.0,NE,3.3,0,18,
-2006-07-05,0.6,-7.7,-5.3,-1.1,21690,998.9,973.0,987.4,,34.0,26.0,20.0,,,18.0,SW,1.3,2,21,
-2006-07-06,-0.7,-7.4,-3.7,-1.4,21690,1002.7,998.7,1000.5,,29.0,23.0,14.0,,,222.0,NW,3.3,3,29,
-2006-07-07,-0.8,-2.1,-0.9,-1.5,21690,1007.5,998.8,1003.5,,22.0,18.0,13.0,,,308.0,NW,0.0,1,28,
-2006-07-08,0.6,-4.6,-1.7,-1.2,21690,1007.6,991.2,999.3,,53.0,43.0,19.0,,,32.0,NE,0.3,2,30,
-2006-07-09,-3.1,-5.7,-4.6,-1.1,21690,1002.0,983.6,995.9,,35.0,29.0,11.0,,,36.0,NE,0.0,0,27,
-2006-07-10,-0.7,-6.4,-3.2,-1.2,21690,983.5,966.7,973.5,,52.0,42.0,16.0,,,28.0,NE,2.3,4,34,
-2006-07-11,-5.5,-8.4,-7.2,-1.6,21690,966.7,963.8,964.6,,24.0,22.0,12.0,,,23.0,N,0.5,1,32,
-2006-07-12,-6.6,-9.7,-7.7,-1.7,21690,964.9,962.4,963.4,,21.0,17.0,9.0,,,210.0,SW,0.0,1,33,
-2006-07-13,-7.4,-8.8,-8.3,-1.5,21690,969.7,964.4,965.9,,21.0,16.0,9.0,,,256.0,SW,0.0,1,33,
-2006-07-14,-7.7,-9.3,-8.5,-1.5,22690,980.5,969.7,977.1,,26.0,22.0,10.0,,,230.0,SW,0.0,1,30,
-2006-07-15,-7.6,-10.5,-9.1,-1.8,22690,993.9,979.0,986.6,,31.0,24.0,13.0,,,246.0,SW,0.0,0,27,
-2006-07-16,-1.9,-10.3,-5.9,-1.7,22690,997.1,984.7,991.1,,36.0,28.0,12.0,,,227.0,SW,2.3,2,27,
-2006-07-17,-1.5,-4.8,-3.3,-1.6,22690,1002.0,997.0,1000.7,,32.0,25.0,8.0,,,227.0,N,0.8,3,27,
-2006-07-18,0.0,-2.5,-1.2,-1.7,22690,1001.4,991.7,996.9,,37.0,30.0,14.0,,,24.0,N,0.8,4,28,
-2006-07-19,-0.4,-6.9,-4.1,-1.5,22690,992.7,990.5,991.6,,16.0,13.0,6.0,,,0.0,NW,0.0,1,28,
-2006-07-20,-2.2,-5.8,-3.4,-1.6,21690,995.1,990.9,992.3,,23.0,20.0,10.0,,,17.0,N,0.0,0,27,
-2006-07-21,-3.3,-5.9,-4.7,-1.4,21690,996.2,990.8,994.6,,24.0,20.0,13.0,,,25.0,NE,0.0,0,26,
-2006-07-22,-0.1,-5.6,-2.7,-1.4,21690,992.1,985.8,988.5,,38.0,29.0,9.0,,,43.0,E,0.3,0,27,
-2006-07-23,-0.4,-4.3,-2.5,-1.2,21690,1007.6,992.1,998.9,,19.0,11.0,4.0,,,128.0,SE,7.6,19,44,
-2006-07-24,-2.1,-3.9,-3.0,-1.2,21690,1016.6,1007.6,1013.6,,24.0,20.0,10.0,,,23.0,N,0.3,1,38,
-2006-07-25,-2.3,-5.6,-3.9,-1.3,21690,1016.1,997.0,1006.2,,42.0,35.0,17.0,,,27.0,NE,1.3,1,27,
-2006-07-26,-0.9,-4.8,-2.6,-1.4,21690,1001.6,985.1,995.7,,39.0,32.0,18.0,,,337.0,NW,3.8,5,49,
-2006-07-27,-0.9,-15.2,-11.3,-1.7,21690,998.3,981.4,990.9,,40.0,31.0,21.0,,,333.0,SW,0.0,0,45,
-2006-07-28,-9.6,-12.7,-11.3,-1.7,22690,1009.0,998.0,1003.6,,37.0,28.0,13.0,,,239.0,SW,0.0,0,45,
-2006-07-29,-4.4,-9.6,-7.0,-1.6,22690,1010.0,1007.6,1008.7,,14.0,10.0,5.0,,,306.0,SW,0.0,0,44,
-2006-07-30,-3.4,-4.8,-4.1,-1.6,22690,1010.4,1007.7,1009.0,,11.0,9.0,3.0,,,249.0,S,0.0,0,43,
-2006-07-31,-2.1,-4.4,-3.1,-1.7,22690,1011.4,1005.2,1008.6,,21.0,18.0,6.0,,,231.0,SW,0.3,1,43,
-2006-08-01,-1.4,-3.4,-2.2,-1.7,22690,1011.3,1006.2,1008.3,,15.0,12.0,6.0,,,343.0,W,1.8,3,46,
-2006-08-02,-2.2,-3.0,-2.7,-1.6,22690,1016.7,1011.3,1014.4,,,,3.0,,,,N,0.0,0,45,
-2006-08-03,-2.7,-7.1,-4.7,-1.6,23690,1020.2,1015.9,1017.2,,,,3.0,,,,NE,0.0,2,46,
-2006-08-04,-3.4,-6.8,-4.6,-1.6,23690,1020.7,1016.8,1019.3,,,,3.0,,,,E,0.0,0,45,
-2006-08-05,-2.8,-7.3,-5.7,-1.5,33793,1016.9,1009.2,1013.2,,,,3.0,,,,NE,0.0,0,45,
-2006-08-06,-1.1,-5.3,-3.5,-1.5,43892,1009.3,1007.5,1008.4,,,,6.0,,,,NE,0.0,0,44,
-2006-08-07,-3.5,-6.7,-5.0,-1.5,33892,1010.6,1008.9,1009.8,,22.0,19.0,6.0,,,25.0,NE,0.0,0,44,
-2006-08-08,-6.2,-8.5,-7.4,-1.5,33892,1008.8,1000.8,1004.6,,13.0,10.0,5.0,,,202.0,SW,0.0,0,43,
-2006-08-09,-7.9,-9.1,-8.5,-1.5,33892,1000.9,997.7,998.6,,13.0,10.0,4.0,,,211.0,S,0.0,1,43,
-2006-08-10,-4.7,-9.9,-7.4,-1.3,23990,1004.4,998.8,1002.5,,11.0,9.0,4.0,,,41.0,NE,0.0,15,58,
-2006-08-11,-2.2,-5.7,-3.4,-1.1,23990,1003.6,1001.4,1002.2,,11.0,9.0,3.0,,,126.0,SE,5.8,8,60,
-2006-08-12,-2.5,-5.8,-4.2,-1.3,23990,1005.4,1001.8,1003.2,,17.0,14.0,7.0,,,20.0,N,1.0,0,59,
-2006-08-13,-4.2,-5.6,-4.7,-1.5,23990,1007.2,1005.4,1006.1,,15.0,12.0,8.0,,,207.0,SW,0.0,1,58,
-2006-08-14,-4.7,-8.7,-6.2,-1.5,23990,1007.0,999.6,1003.9,,13.0,12.0,5.0,,,72.0,NE,0.0,0,56,
-2006-08-15,-0.7,-9.0,-5.0,-0.9,23990,999.5,982.5,990.8,,46.0,37.0,10.0,,,25.0,NE,0.3,0,53,
-2006-08-16,-1.7,-5.8,-3.1,-1.1,23990,988.7,984.7,986.2,,15.0,13.0,6.0,,,55.0,NE,0.0,1,51,
-2006-08-17,-3.8,-5.9,-5.0,-1.2,23990,997.0,988.7,992.9,,18.0,14.0,5.0,,,220.0,NE,1.5,3,51,
-2006-08-18,-5.5,-9.0,-7.1,-1.5,23990,1004.5,996.9,1001.0,,24.0,19.0,10.0,,,18.0,SW,0.5,5,52,
-2006-08-19,-8.9,-13.3,-11.0,-1.4,53993,1010.6,1004.4,1007.0,,13.0,10.0,4.0,,,230.0,SW,0.0,1,52,
-2006-08-20,-8.3,-14.6,-12.7,-1.5,53993,1010.6,998.7,1005.7,,12.0,10.0,5.0,,,287.0,W,0.0,0,51,
-2006-08-21,-6.7,-12.5,-9.2,-1.4,53993,998.7,991.4,994.4,,18.0,15.0,6.0,,,37.0,NE,0.0,0,50,
-2006-08-22,-8.5,-10.5,-9.4,-1.3,43992,995.9,991.1,992.6,,19.0,16.0,8.0,,,20.0,NE,0.0,0,47,
-2006-08-23,-7.7,-12.6,-10.3,-1.5,43993,997.8,995.9,997.0,,34.0,28.0,11.0,,,19.0,NE,0.0,0,47,
-2006-08-24,-8.9,-12.5,-10.5,-1.2,23990,999.8,995.8,997.1,,17.0,14.0,6.0,,,22.0,NE,0.0,0,46,
-2006-08-25,-6.5,-14.4,-11.0,-1.4,23890,1000.6,990.7,998.2,,24.0,21.0,9.0,,,22.0,NE,0.0,0,46,
-2006-08-26,-0.6,-6.5,-3.2,-0.9,22890,990.7,972.5,979.6,,22.0,18.0,9.0,,,121.0,SE,0.0,1,45,
-2006-08-27,-0.4,-2.8,-2.0,-0.9,22890,986.5,972.4,977.3,,20.0,16.0,4.0,,,18.0,NE,7.1,21,64,
-2006-08-28,-1.4,-7.1,-3.6,-1.2,32890,989.8,981.5,987.6,,17.0,14.0,5.0,,,29.0,NE,0.3,3,62,
-2006-08-29,-3.4,-8.0,-6.0,-1.3,21790,983.5,974.6,977.7,,36.0,27.0,10.0,,,99.0,E,0.0,0,63,
-2006-08-30,-5.5,-8.1,-6.5,-1.6,21790,993.1,983.5,990.4,,33.0,27.0,15.0,,,23.0,N,0.0,0,62,
-2006-08-31,-3.6,-8.9,-6.6,-1.7,31793,992.3,986.0,988.5,,28.0,22.0,6.0,,,36.0,NE,0.0,0,59,
-2006-09-01,-5.3,-8.7,-6.8,-1.6,42793,999.0,988.6,993.9,,15.0,11.0,5.0,,,261.0,SW,0.0,0,59,
-2006-09-02,-4.3,-8.7,-6.2,-1.6,42793,1000.0,995.0,998.0,,17.0,14.0,6.0,,,231.0,SW,0.0,1,58,
-2006-09-03,0.7,-6.9,-2.7,-1.7,32790,999.4,976.6,988.3,,48.0,39.0,15.0,,,253.0,N,0.5,3,56,
-2006-09-04,-4.9,-9.4,-7.7,-1.7,23692,1001.6,981.8,993.8,,48.0,38.0,22.0,,,239.0,SW,0.0,0,55,
-2006-09-05,-0.2,-7.4,-3.1,-1.7,32692,1001.2,994.7,998.4,,17.0,13.0,5.0,,,360.0,N,1.3,3,58,
-2006-09-06,0.8,-0.4,0.2,-1.7,22690,994.7,972.9,983.3,,55.0,42.0,24.0,,,28.0,N,4.8,5,54,
-2006-09-07,0.4,-1.7,-0.3,-1.6,23690,983.4,964.3,975.2,,57.0,43.0,24.0,,,21.0,N,2.0,4,53,
-2006-09-08,-1.8,-8.3,-6.1,-1.7,33793,988.8,966.7,979.3,,37.0,30.0,15.0,,,290.0,W,0.0,0,52,
-2006-09-09,-1.6,-8.4,-3.5,-1.7,33690,988.7,950.6,976.2,,47.0,32.0,16.0,,,99.0,N,0.0,1,51,
-2006-09-10,0.0,-4.1,-1.8,-1.7,33792,972.4,949.1,963.3,,44.0,37.0,19.0,,,34.0,NW,0.0,0,51,
-2006-09-11,0.3,-3.1,-1.7,-1.7,/////,971.0,953.4,958.7,,63.0,49.0,32.0,,,30.0,NE,22.4,7,51,
-2006-09-12,-1.1,-5.5,-3.2,-1.7,20690,969.3,947.3,960.3,,60.0,48.0,18.0,,,47.0,NE,1.3,1,52,
-2006-09-13,-0.3,-3.2,-1.9,-1.7,21690,959.0,947.1,950.5,,28.0,22.0,10.0,,,17.0,N,0.3,1,52,
-2006-09-14,-2.7,-8.2,-6.4,-1.7,22693,971.3,959.1,965.6,,25.0,22.0,16.0,,,237.0,SW,0.0,2,51,
-2006-09-15,-6.9,-11.3,-9.6,-1.7,22693,978.2,971.3,976.2,,26.0,22.0,14.0,,,229.0,SW,0.0,1,51,
-2006-09-16,-5.9,-10.4,-8.7,-1.7,22690,986.3,976.8,980.0,,28.0,23.0,10.0,,,118.0,E,0.0,0,50,
-2006-09-17,-4.4,-12.3,-8.9,-1.8,22690,998.4,986.1,992.0,,32.0,25.0,8.0,,,124.0,E,0.0,0,50,
-2006-09-18,-6.7,-10.7,-8.6,-1.7,51793,1009.2,998.4,1004.4,,14.0,10.0,5.0,,,253.0,W,0.0,0,50,
-2006-09-19,-8.6,-10.0,-9.4,-1.7,12793,1012.9,1009.1,1011.2,,19.0,17.0,8.0,,,241.0,SW,0.0,0,50,
-2006-09-20,-9.0,-10.5,-9.7,-1.7,12793,1012.0,1003.5,1008.3,,18.0,16.0,9.0,,,239.0,SW,0.0,0,51,
-2006-09-21,-7.9,-10.4,-9.5,-1.7,52893,1006.5,999.8,1002.1,,23.0,17.0,10.0,,,236.0,SW,0.0,0,50,
-2006-09-22,-7.4,-9.2,-8.4,-1.7,52893,1017.7,1006.4,1011.7,,16.0,14.0,8.0,,,243.0,SW,0.0,0,50,
-2006-09-23,-4.4,-10.1,-8.0,-1.7,12793,1026.0,1017.7,1022.3,,15.0,11.0,3.0,,,22.0,NE,0.0,0,50,
-2006-09-24,-6.6,-10.6,-9.2,-1.7,12793,1025.6,1019.5,1023.0,,15.0,12.0,5.0,,,26.0,SW,0.0,2,51,
-2006-09-25,-2.4,-10.1,-6.5,-1.7,12793,1019.5,1001.0,1012.4,,16.0,13.0,4.0,,,124.0,SE,0.0,0,50,
-2006-09-26,1.9,-2.8,-0.2,-1.6,12792,1000.8,990.5,993.7,,30.0,16.0,7.0,,,135.0,SE,7.1,7,58,
-2006-09-27,3.3,-1.3,-0.1,-1.6,52792,991.2,987.8,989.6,,30.0,25.0,6.0,,,31.0,N,0.8,2,58,
-2006-09-28,3.2,-0.9,1.3,-1.5,32691,988.0,971.7,978.5,,46.0,39.0,14.0,,,25.0,NE,7.4,7,61,
-2006-09-29,0.2,-11.8,-6.2,-1.4,44793,992.8,971.1,979.7,,22.0,20.0,10.0,,,249.0,NW,3.8,5,66,
-2006-09-30,-9.2,-12.1,-10.6,-1.7,13693,1005.9,992.8,999.5,,19.0,14.0,8.0,,,222.0,SW,0.0,0,63,
-2006-10-01,-2.2,-10.6,-7.1,-1.6,43793,1013.9,1006.0,1010.9,,16.0,13.0,5.0,,,228.0,N,0.0,0,62,
-2006-10-02,-0.2,-8.8,-5.8,-1.6,53893,1013.8,1010.3,1012.5,,10.0,8.0,2.0,,,195.0,NW,0.0,0,61,
-2006-10-03,-2.3,-10.5,-7.4,-1.6,53893,1011.0,1009.4,1010.1,,8.0,7.0,3.0,,,34.0,NE,0.0,0,61,
-2006-10-04,2.7,-10.2,-3.4,-1.5,53892,1012.2,1007.9,1010.5,,36.0,27.0,6.0,,,40.0,NE,0.0,0,60,
-2006-10-05,4.2,-0.1,2.0,-1.4,53891,1008.0,1001.1,1003.2,,46.0,39.0,17.0,,,33.0,NE,0.0,0,52,
-2006-10-06,4.4,-3.6,0.5,-1.4,53891,1002.5,993.5,998.4,,13.0,11.0,3.0,,,13.0,SE,0.0,0,52,
-2006-10-07,2.6,-5.0,-1.5,-1.4,53891,993.4,986.8,990.3,,21.0,14.0,3.0,,,97.0,SE,0.0,0,51,
-2006-10-08,2.9,-3.2,-0.4,-1.6,53891,988.1,985.5,986.4,,27.0,18.0,4.0,,,59.0,SE,0.0,0,50,
-2006-10-09,3.8,-4.2,-1.4,-1.6,53891,997.0,987.7,992.0,,13.0,11.0,3.0,,,356.0,N,0.0,0,50,
-2006-10-10,-1.6,-5.3,-3.5,-1.6,53892,1005.6,997.0,1001.8,,10.0,9.0,5.0,,,336.0,NW,0.0,0,50,
-2006-10-11,0.0,-3.1,-2.0,-1.5,53891,1006.9,1005.5,1006.4,,11.0,9.0,4.0,,,121.0,SE,0.0,0,50,
-2006-10-12,4.6,-1.7,1.7,-1.3,33891,1005.6,995.8,1000.7,,45.0,35.0,10.0,,,20.0,SE,0.0,0,49,
-2006-10-13,5.6,0.9,3.5,-1.3,33890,996.8,975.4,985.5,,38.0,31.0,10.0,,,28.0,SE,0.0,0,36,
-2006-10-14,3.9,-0.2,2.0,-1.3,23890,983.6,975.5,980.0,,36.0,31.0,14.0,,,28.0,NE,0.0,0,33,
-2006-10-15,4.7,-1.0,1.1,-1.1,1/990,987.4,983.3,985.4,,16.0,12.0,3.0,,,151.0,NW,0.0,0,31,
-2006-10-16,-0.9,-3.2,-2.3,-1.3,1/990,1001.5,987.4,993.5,,12.0,10.0,5.0,,,238.0,SW,0.0,0,30,
-2006-10-17,1.3,-1.6,-0.5,-1.0,20996,1006.3,1001.5,1004.7,,12.0,10.0,4.0,,,123.0,SE,0.5,0,30,
-2006-10-18,6.4,-0.4,2.1,-0.9,20996,1007.0,1003.3,1005.2,,28.0,24.0,7.0,,,24.0,SE,3.1,0,26,
-2006-10-19,5.4,3.0,4.3,-0.8,0/9/0,1004.3,993.0,998.6,,42.0,34.0,23.0,,,25.0,N,0.5,0,16,
-2006-10-20,3.9,1.9,2.8,-0.7,0/9/0,993.6,981.7,989.3,,39.0,30.0,21.0,,,347.0,N,2.5,0,9,
-2006-10-21,3.1,1.5,2.3,-0.7,0/9/0,981.7,961.8,967.7,,56.0,42.0,30.0,,,32.0,N,10.2,0,0,
-2006-10-22,2.5,-0.7,0.9,-0.7,0/8/0,961.8,957.3,959.2,,34.0,28.0,13.0,,,19.0,N,0.5,1,0,
-2006-10-23,-0.7,-2.4,-1.6,-1.2,0/7/0,967.7,961.7,965.9,,19.0,16.0,10.0,,,319.0,NW,4.3,7,16,
-2006-10-24,-1.5,-5.7,-3.7,-1.3,61796,975.9,967.6,972.1,,20.0,16.0,9.0,,,246.0,SW,0.3,1,17,
-2006-10-25,1.9,-6.3,-2.0,-0.8,0/8/0,974.9,962.5,967.5,,41.0,30.0,10.0,,,23.0,N,0.0,0,14,
-2006-10-26,1.8,-2.0,-0.2,-1.4,71796,980.7,968.1,977.4,,26.0,21.0,8.0,,,18.0,N,0.0,0,12,
-2006-10-27,3.2,0.4,1.5,-1.0,0/8/0,980.1,971.9,978.8,,34.0,26.0,18.0,,,20.0,N,0.5,0,9,
-2006-10-28,2.3,0.3,1.4,-0.9,0/7/0,972.1,964.7,966.4,,51.0,41.0,21.0,,,29.0,N,4.1,1,0,
-2006-10-29,1.4,-2.8,-1.2,-0.9,0/6/0,981.5,969.0,978.2,,28.0,25.0,6.0,,,35.0,SW,0.3,0,0,
-2006-10-30,2.6,-1.1,1.1,-0.9,0/6/0,978.9,960.3,966.2,,59.0,46.0,32.0,,,29.0,N,15.5,3,4,
-2006-10-31,1.8,-0.6,0.7,-0.7,0/6/0,963.5,952.9,957.1,,56.0,44.0,27.0,,,19.0,N,4.1,1,0,
-2006-11-01,0.0,-2.6,-1.3,-1.2,0/6/0,973.9,963.5,968.8,,25.0,20.0,11.0,,,353.0,W,0.5,3,8,
-2006-11-02,-2.3,-5.3,-4.0,-1.1,0/6/0,983.9,973.9,980.1,,25.0,20.0,13.0,,,229.0,SW,0.0,0,6,
-2006-11-03,0.0,-4.5,-2.1,-1.2,80696,983.3,971.2,976.3,,22.0,16.0,6.0,,,338.0,NW,1.0,2,7,
-2006-11-04,0.8,-4.2,-1.4,-0.9,0/6/0,973.0,941.9,957.5,,39.0,27.0,9.0,,,75.0,E,1.0,0,5,
-2006-11-05,1.9,-2.3,-0.3,-0.7,0/6/0,959.2,942.3,949.2,,36.0,29.0,15.0,,,21.0,N,0.8,9,11,
-2006-11-06,3.8,-1.9,0.0,-0.6,0/6/0,974.5,959.1,967.6,,35.0,28.0,12.0,,,41.0,E,0.0,0,6,
-2006-11-07,1.5,-2.2,0.2,-0.7,0/6/0,974.9,967.1,970.8,,47.0,38.0,16.0,,,28.0,NE,0.3,2,5,
-2006-11-08,2.4,-3.2,-0.8,-0.5,0/6/0,975.3,973.5,974.5,,18.0,15.0,4.0,,,14.0,N,0.3,1,5,
-2006-11-09,-0.1,-1.1,-0.7,-0.7,0/6/0,997.5,974.0,984.9,,23.0,20.0,9.0,,,306.0,NW,6.4,6,10,
-2006-11-10,3.6,-3.0,-0.1,-0.8,0/6/0,1001.9,997.5,1000.3,,10.0,8.0,3.0,,,294.0,NE,0.0,0,10,
-2006-11-11,4.9,-2.2,0.8,-0.5,0/6/0,1000.9,970.4,989.7,,35.0,27.0,9.0,,,41.0,SE,0.8,0,0,
-2006-11-12,4.2,-1.4,0.5,-0.3,0/6/0,975.2,965.8,971.4,,48.0,39.0,15.0,,,42.0,NW,6.4,2,0,
-2006-11-13,-1.5,-4.8,-2.6,-0.4,0/6/0,979.9,973.7,976.3,,28.0,23.0,14.0,,,227.0,SW,0.0,0,0,
-2006-11-14,0.4,-3.2,-1.6,-0.4,0/6/0,981.1,974.6,979.1,,27.0,20.0,9.0,,,358.0,SE,0.0,0,0,
-2006-11-15,2.5,-2.9,-0.7,-0.2,0/6/0,977.2,972.1,974.5,,33.0,26.0,12.0,,,121.0,SE,0.0,0,0,
-2006-11-16,0.6,-3.9,-1.7,-0.6,0/6/0,980.6,977.1,978.9,,10.0,9.0,5.0,,,244.0,N,0.0,0,0,
-2006-11-17,-1.0,-3.5,-2.5,-0.7,0/6/0,988.2,980.6,985.0,,20.0,18.0,8.0,,,230.0,SW,0.0,0,0,
-2006-11-18,2.6,-2.1,-0.3,0.0,0/6/0,988.0,978.2,983.0,,14.0,13.0,4.0,,,240.0,SW,0.0,0,0,
-2006-11-19,0.6,-1.2,-0.3,0.2,0/7/0,984.7,977.5,980.0,,20.0,16.0,4.0,,,35.0,SW,0.0,1,0,
-2006-11-20,2.4,-1.4,-0.2,0.3,0/8/0,987.9,984.8,986.6,,16.0,10.0,3.0,,,64.0,SE,0.3,0,0,
-2006-11-21,3.2,-1.2,0.3,0.4,0/7/0,990.4,987.8,989.4,,8.0,6.0,3.0,,,120.0,SE,0.3,0,0,
-2006-11-22,0.9,-1.1,-0.4,0.7,0/7/0,991.0,990.3,990.5,,10.0,9.0,3.0,,,223.0,SW,0.0,0,0,
-2006-11-23,1.7,-2.9,-0.8,0.2,0/7/0,995.9,991.0,993.2,,15.0,14.0,4.0,,,40.0,W,0.0,0,0,
-2006-11-24,0.2,-1.3,-0.8,0.2,0/7/0,1002.7,995.9,999.2,,12.0,11.0,5.0,,,227.0,SW,0.0,0,0,
-2006-11-25,2.0,-1.0,-0.5,0.5,0/8/0,1005.8,1002.7,1004.2,,19.0,15.0,8.0,,,228.0,SW,0.0,0,0,
-2006-11-26,5.2,-3.7,0.2,0.1,0/7/0,1005.6,994.0,1001.0,,21.0,15.0,4.0,,,19.0,SE,0.0,0,0,
-2006-11-27,5.5,-0.3,2.0,0.4,0/7/0,994.2,980.2,988.0,,13.0,9.0,2.0,,,173.0,SE,1.8,1,0,
-2006-11-28,5.4,0.4,2.2,0.7,0/7/0,980.1,974.8,978.1,,14.0,12.0,3.0,,,125.0,SE,0.3,0,0,
-2006-11-29,5.9,0.1,2.8,1.0,0/7/0,974.8,968.4,970.0,,24.0,17.0,4.0,,,65.0,N,0.0,0,0,
-2006-11-30,4.6,-1.1,0.4,1.0,0/7/0,973.5,968.6,970.3,,11.0,8.0,3.0,,,304.0,W,0.0,0,0,
-2006-12-01,4.0,-0.5,1.5,1.0,0/6/0,984.3,973.5,978.4,,20.0,15.0,5.0,,,118.0,SE,0.0,0,0,
-2006-12-02,3.9,-0.6,1.3,1.0,0/6/0,985.0,968.9,978.7,,32.0,27.0,7.0,,,146.0,SE,0.0,0,0,
-2006-12-03,4.1,0.1,2.0,0.6,0/7/0,978.1,967.1,972.8,,38.0,32.0,17.0,,,41.0,NE,1.0,3,7,
-2006-12-04,4.4,2.3,3.1,0.5,0/7/0,981.3,973.9,976.9,,40.0,33.0,19.0,,,31.0,N,5.1,0,0,
-2006-12-05,3.3,0.5,1.9,-1.0,0/6/0,991.4,981.1,986.8,,36.0,29.0,17.0,,,31.0,N,2.0,0,0,
-2006-12-06,3.4,0.5,2.2,0.4,0/7/0,992.2,987.9,990.7,,44.0,37.0,19.0,,,24.0,N,2.0,0,0,
-2006-12-07,5.8,2.6,3.7,0.5,0/6/0,989.4,974.1,982.6,,39.0,30.0,15.0,,,51.0,E,0.0,0,0,
-2006-12-08,6.1,1.5,3.3,0.7,0/6/0,976.8,973.6,975.5,,40.0,30.0,17.0,,,19.0,E,0.5,0,0,
-2006-12-09,4.9,1.4,3.2,1.0,0/6/0,976.5,973.8,975.1,,28.0,23.0,5.0,,,27.0,SE,0.0,0,0,
-2006-12-10,5.4,-1.9,1.6,1.2,0/6/0,976.3,971.0,974.5,,24.0,19.0,4.0,,,63.0,W,0.0,0,0,
-2006-12-11,5.8,0.8,2.5,0.9,0/7/0,975.5,970.8,973.1,,41.0,31.0,9.0,,,34.0,NE,0.0,0,0,
-2006-12-12,4.9,0.2,2.3,1.0,0/7/0,977.9,975.1,976.4,,18.0,15.0,4.0,,,27.0,SE,0.0,0,0,
-2006-12-13,5.1,2.2,3.4,0.9,0/6/0,977.1,971.5,973.6,,31.0,22.0,12.0,,,68.0,E,0.0,0,0,
-2006-12-14,5.6,0.3,2.4,1.2,0/6/0,992.0,977.2,984.3,,28.0,20.0,6.0,,,78.0,NW,0.0,0,0,
-2006-12-15,1.5,-1.3,0.2,1.4,0/6/0,999.5,992.1,997.1,,19.0,17.0,8.0,,,275.0,W,0.5,2,5,
-2006-12-16,3.6,-1.7,0.6,1.4,0/7/0,998.6,993.1,995.9,,8.0,6.0,3.0,,,32.0,NE,0.0,0,0,
-2006-12-17,4.4,-1.5,0.9,1.1,0/7/0,993.2,982.4,987.0,,23.0,14.0,4.0,,,92.0,NE,2.0,2,5,
-2006-12-18,4.0,0.2,1.7,1.5,0/7/0,986.7,981.2,983.4,,25.0,21.0,5.0,,,55.0,E,3.6,1,0,
-2006-12-19,4.8,1.1,2.4,1.2,0/7/0,987.3,986.0,986.8,,19.0,16.0,4.0,,,47.0,NW,0.0,0,0,
-2006-12-20,4.6,0.8,2.2,1.4,0/6/0,986.2,985.2,985.6,,14.0,11.0,4.0,,,119.0,SE,0.0,0,0,
-2006-12-21,4.4,1.1,2.0,1.8,0/7/0,988.4,985.9,987.1,,15.0,13.0,4.0,,,17.0,SE,0.0,0,0,
-2006-12-22,3.8,0.1,1.4,1.5,0/7/0,988.4,986.1,987.0,,7.0,5.0,2.0,,,115.0,SE,0.3,0,0,
-2006-12-23,2.5,0.0,1.0,1.1,0/7/0,987.0,986.1,986.5,,12.0,9.0,3.0,,,305.0,SW,0.3,0,0,
-2006-12-24,5.7,0.1,2.2,2.2,0/7/0,987.2,985.5,986.0,,8.0,7.0,2.0,,,156.0,N,0.0,0,0,
-2006-12-25,6.2,0.1,2.8,1.6,0/7/0,988.7,981.8,986.9,,23.0,21.0,9.0,,,45.0,NE,0.0,0,0,
-2006-12-26,8.2,2.0,4.2,1.2,0/6/0,981.7,973.1,977.4,,50.0,43.0,14.0,,,48.0,E,5.8,0,0,
-2006-12-27,4.8,0.8,3.0,0.8,0/7/0,989.7,973.0,983.1,,43.0,30.0,17.0,,,19.0,N,3.8,0,0,
-2006-12-28,6.9,2.8,4.1,1.2,0/7/0,990.4,979.3,986.5,,28.0,15.0,5.0,,,97.0,E,0.0,0,0,
-2006-12-29,8.5,0.7,3.9,1.6,0/6/0,979.6,975.0,976.9,,21.0,15.0,4.0,,,157.0,NE,0.0,0,0,
-2006-12-30,6.5,1.0,2.8,1.6,0/6/0,994.0,979.5,987.6,,18.0,15.0,7.0,,,245.0,SW,0.0,0,0,
-2006-12-31,5.3,0.2,1.7,2.0,0/6/0,995.0,990.9,993.6,,14.0,10.0,4.0,,,238.0,SW,0.0,0,0,
-2007-01-01,4.5,0.9,2.4,2.2,0/6/0,990.9,988.4,989.6,,14.0,12.0,3.0,,,13.0,NE,0.0,0,0,
-2007-01-02,4.6,1.3,2.9,1.7,0/6/0,988.4,980.6,984.8,,33.0,26.0,11.0,,,28.0,N,0.3,0,0,
-2007-01-03,4.9,0.5,2.1,1.8,0/7/0,981.6,979.4,980.4,,30.0,22.0,6.0,,,16.0,N,4.8,0,0,
-2007-01-04,2.1,0.4,1.0,1.9,0/7/0,985.9,980.1,983.5,,27.0,22.0,14.0,,,226.0,SW,0.0,0,0,
-2007-01-05,1.7,0.1,0.8,2.2,0/7/0,985.7,982.8,984.2,,29.0,24.0,14.0,,,227.0,SW,0.0,0,0,
-2007-01-06,5.7,-0.1,1.3,2.5,0/7/0,992.1,985.2,986.9,,23.0,18.0,11.0,,,232.0,SW,0.0,0,0,
-2007-01-07,5.8,-1.0,2.3,2.0,0/6/0,993.2,992.0,992.7,,9.0,6.0,3.0,,,5.0,N,0.0,0,0,
-2007-01-08,7.0,0.7,3.0,1.7,0/7/0,993.1,987.5,990.9,,22.0,16.0,3.0,,,98.0,N,0.0,0,0,
-2007-01-09,7.1,1.5,3.4,1.7,0/7/0,988.0,985.9,987.3,,20.0,15.0,5.0,,,103.0,SE,4.6,0,0,
-2007-01-10,5.0,0.5,2.3,1.6,0/7/0,986.1,977.0,980.1,,13.0,12.0,3.0,,,339.0,N,0.0,0,0,
-2007-01-11,3.5,1.0,2.1,1.5,0/6/0,979.9,977.1,978.5,,9.0,7.0,3.0,,,350.0,N,0.3,0,0,
-2007-01-12,4.1,1.3,2.5,1.8,0/6/0,987.3,979.9,982.6,,17.0,14.0,5.0,,,234.0,SW,0.0,0,0,
-2007-01-13,3.1,0.5,2.2,2.2,0/6/0,989.5,987.3,988.8,,23.0,19.0,12.0,,,235.0,SW,0.0,0,0,
-2007-01-14,5.4,1.4,2.9,2.4,0/6/0,989.9,987.8,988.5,,16.0,14.0,5.0,,,225.0,SW,0.0,0,0,
-2007-01-15,3.7,0.9,2.5,1.6,0/7/0,989.6,969.1,977.4,,35.0,28.0,10.0,,,44.0,E,0.0,0,0,
-2007-01-16,6.1,1.4,3.1,2.0,0/6/0,970.6,966.3,968.6,,18.0,15.0,5.0,,,19.0,SE,0.3,0,0,
-2007-01-17,9.9,4.2,6.4,1.8,0/7/0,986.1,965.7,972.6,,40.0,30.0,13.0,,,115.0,E,0.0,0,0,
-2007-01-18,8.4,4.0,6.0,2.0,0/6/0,1000.0,986.2,995.9,,24.0,17.0,7.0,,,117.0,E,0.0,0,0,
-2007-01-19,6.9,1.3,2.2,1.0,0/6/0,1001.4,999.8,1000.7,,13.0,12.0,6.0,,,235.0,N,0.0,0,0,
-2007-01-20,2.5,0.4,1.5,1.9,0/6/0,1002.0,999.8,1000.5,,24.0,17.0,9.0,,,232.0,SW,0.0,0,0,
-2007-01-21,1.8,0.9,1.3,1.8,0/6/0,1005.8,1001.9,1004.6,,18.0,14.0,8.0,,,234.0,SW,0.0,0,0,
-2007-01-22,6.0,0.5,2.1,2.0,0/6/0,1008.2,1005.5,1007.1,,12.0,10.0,4.0,,,227.0,SW,0.5,0,0,
-2007-01-23,4.4,1.5,2.8,1.9,0/6/0,1007.7,1006.0,1006.7,,8.0,7.0,2.0,,,322.0,N,0.0,0,0,
-2007-01-24,3.6,1.4,2.4,1.5,0/6/0,1008.1,1006.1,1007.0,,13.0,10.0,4.0,,,227.0,SW,0.0,0,0,
-2007-01-25,6.3,-1.0,2.2,1.4,0/6/0,1008.4,1000.9,1006.2,,9.0,8.0,3.0,,,135.0,SE,0.0,0,0,
-2007-01-26,5.0,0.6,2.6,1.5,0/7/0,1000.9,993.4,996.6,,10.0,8.0,4.0,,,354.0,SE,0.0,0,0,
-2007-01-27,7.4,1.6,3.1,1.6,0/7/0,995.3,992.0,993.4,,8.0,7.0,2.0,,,356.0,N,1.5,0,0,
-2007-01-28,7.1,1.9,3.8,1.5,0/7/0,996.8,995.1,996.3,,19.0,11.0,3.0,,,59.0,N,1.8,0,0,
-2007-01-29,7.3,2.6,5.0,1.4,0/7/0,996.4,993.5,995.2,,34.0,29.0,10.0,,,27.0,NE,2.5,0,0,
-2007-01-30,7.1,2.5,4.4,1.6,0/6/0,994.6,987.2,990.9,,30.0,26.0,6.0,,,27.0,NE,1.0,0,0,
-2007-01-31,4.6,0.7,1.9,1.6,0/6/0,989.1,986.9,987.9,,11.0,10.0,3.0,,,239.0,SE,4.1,0,0,
-2007-02-01,4.1,0.7,2.5,1.9,0/6/0,988.6,974.5,979.9,,30.0,22.0,10.0,,,29.0,E,0.0,0,0,
-2007-02-02,4.2,2.0,3.4,1.9,0/6/0,996.0,977.0,988.0,,30.0,26.0,14.0,,,31.0,E,0.0,0,0,
-2007-02-03,5.1,0.2,2.0,1.8,0/6/0,996.0,993.9,994.9,,10.0,9.0,2.0,,,330.0,NE,2.0,1,0,
-2007-02-04,4.1,-0.7,1.4,1.1,0/6/0,994.5,991.9,993.8,,8.0,7.0,3.0,,,324.0,NE,0.0,0,0,
-2007-02-05,5.7,1.5,3.4,1.6,0/7/0,991.9,988.4,989.9,,35.0,28.0,11.0,,,26.0,NE,0.5,0,0,
-2007-02-06,4.2,1.8,2.8,1.8,0/6/0,989.3,985.6,988.1,,31.0,25.0,5.0,,,30.0,NE,0.5,0,0,
-2007-02-07,5.9,0.1,2.1,2.5,0/6/0,985.6,974.4,979.0,,18.0,13.0,6.0,,,214.0,SW,0.0,0,0,
-2007-02-08,5.9,3.3,4.6,2.5,0/6/0,989.1,974.5,984.3,,27.0,21.0,9.0,,,118.0,SW,0.0,0,0,
-2007-02-09,3.5,1.5,2.0,2.0,0/6/0,996.5,989.2,993.9,,20.0,18.0,10.0,,,235.0,SW,0.0,0,0,
-2007-02-10,2.9,0.1,1.5,1.8,0/6/0,996.4,980.1,988.2,,20.0,15.0,5.0,,,346.0,NE,11.4,1,0,
-2007-02-11,3.3,2.1,2.7,0.5,0/6/0,990.9,981.9,988.3,,25.0,19.0,12.0,,,350.0,N,4.3,0,0,
-2007-02-12,5.2,1.6,3.0,1.4,0/6/0,991.8,979.1,988.8,,24.0,18.0,5.0,,,74.0,N,2.3,0,0,
-2007-02-13,5.8,2.1,4.0,1.7,0/7/0,979.1,970.8,973.8,,35.0,28.0,10.0,,,43.0,E,3.6,0,0,
-2007-02-14,3.0,0.6,1.6,0.8,0/7/0,991.4,976.9,984.3,,16.0,14.0,6.0,,,247.0,N,2.3,0,0,
-2007-02-15,5.1,-0.1,1.5,1.5,0/6/0,995.4,991.4,994.2,,20.0,16.0,6.0,,,304.0,N,0.8,0,0,
-2007-02-16,6.0,-0.7,2.3,1.8,0/6/0,994.8,991.8,993.0,,14.0,13.0,5.0,,,42.0,NE,0.0,0,0,
-2007-02-17,3.4,-0.6,1.2,1.5,0/7/0,1000.2,994.6,998.7,,11.0,10.0,4.0,,,26.0,N,0.0,0,0,
-2007-02-18,3.3,1.2,2.0,1.7,0/6/0,1000.0,998.7,999.4,,15.0,13.0,4.0,,,240.0,N,0.0,0,0,
-2007-02-19,2.7,0.4,1.3,-0.5,0/6/0,999.1,986.3,993.3,,15.0,13.0,6.0,,,253.0,N,3.1,1,0,
-2007-02-20,3.5,-0.2,1.1,1.9,0/6/0,986.3,974.9,977.8,,25.0,19.0,7.0,,,120.0,SE,2.5,3,0,
-2007-02-21,4.6,0.4,2.1,1.6,0/6/0,985.1,976.4,980.5,,24.0,19.0,6.0,,,120.0,E,0.0,0,0,
-2007-02-22,5.4,-1.3,1.0,1.7,0/6/0,990.8,985.2,988.8,,12.0,10.0,4.0,,,23.0,NE,0.0,0,0,
-2007-02-23,2.5,-0.5,0.6,1.4,0/6/0,990.2,981.7,986.6,,12.0,9.0,5.0,,,138.0,NE,7.1,3,0,
-2007-02-24,3.4,0.4,1.5,1.2,0/6/0,981.9,976.7,979.8,,13.0,8.0,3.0,,,146.0,SE,1.8,2,0,
-2007-02-25,3.6,-0.1,1.1,1.3,0/6/0,976.7,974.1,974.9,,11.0,8.0,2.0,,,161.0,S,4.6,5,0,
-2007-02-26,1.5,-0.2,0.6,1.4,0/6/0,983.7,975.7,979.5,,19.0,15.0,4.0,,,18.0,N,1.0,1,0,
-2007-02-27,3.3,0.0,1.0,1.2,0/6/0,989.5,983.7,986.6,,18.0,13.0,4.0,,,29.0,SE,3.1,3,0,
-2007-02-28,3.2,-1.1,0.5,1.1,0/7/0,989.7,986.7,988.4,,31.0,22.0,10.0,,,17.0,N,0.0,0,0,
-2007-03-01,1.5,-1.1,0.2,1.1,0/7/0,988.6,986.3,987.4,,29.0,23.0,11.0,,,19.0,SW,2.3,4,6,
-2007-03-02,1.3,-2.4,-0.4,0.8,0/6/0,991.0,988.5,989.9,,16.0,14.0,6.0,,,237.0,SW,0.0,0,0,
-2007-03-03,-0.7,-4.0,-1.9,1.5,0/6/0,990.9,986.2,988.0,,25.0,19.0,7.0,,,122.0,SE,0.0,1,0,
-2007-03-04,-0.4,-5.8,-3.4,1.4,0/6/0,995.0,988.4,991.2,,22.0,16.0,7.0,,,119.0,E,0.0,0,0,
-2007-03-05,0.9,-3.0,-1.0,0.4,0/6/0,995.6,989.4,993.5,,34.0,27.0,8.0,,,222.0,SW,0.0,1,0,
-2007-03-06,1.5,0.2,0.8,0.9,0/6/0,997.8,987.5,991.3,,37.0,30.0,16.0,,,222.0,SW,0.0,1,0,
-2007-03-07,2.7,0.2,0.8,1.1,0/6/0,1006.5,997.8,1003.4,,22.0,18.0,8.0,,,227.0,SW,0.0,0,0,
-2007-03-08,2.2,0.1,1.2,0.5,0/6/0,1005.5,995.7,998.7,,29.0,23.0,14.0,,,270.0,W,0.5,0,0,
-2007-03-09,1.2,0.1,0.5,0.7,0/6/0,999.3,997.0,998.2,,23.0,19.0,12.0,,,221.0,SW,0.0,0,0,
-2007-03-10,0.7,-1.0,-0.3,0.3,0/6/0,998.8,995.9,997.4,,35.0,26.0,6.0,,,21.0,NE,0.5,0,0,
-2007-03-11,0.0,-2.4,-1.6,0.5,0/7/0,997.6,996.6,997.1,,14.0,12.0,6.0,,,19.0,N,0.0,1,0,
-2007-03-12,0.5,-2.3,-0.8,0.3,0/7/0,997.7,996.0,996.6,,19.0,16.0,6.0,,,232.0,SW,0.0,1,0,
-2007-03-13,0.4,-1.1,-0.5,0.6,0/7/0,999.3,996.8,997.8,,26.0,20.0,9.0,,,226.0,SW,0.0,0,0,
-2007-03-14,-0.8,-3.2,-1.8,0.7,0/7/0,1006.3,999.3,1003.4,,20.0,16.0,4.0,,,118.0,SE,0.3,3,3,
-2007-03-15,1.0,-2.8,-1.4,0.1,0/7/0,1007.0,1004.9,1006.4,,10.0,8.0,4.0,,,62.0,NE,0.0,0,0,
-2007-03-16,5.4,-2.9,1.6,0.7,0/6/0,1004.9,977.1,992.3,,46.0,35.0,13.0,,,59.0,SE,0.8,0,0,
-2007-03-17,6.3,2.2,4.5,1.0,0/6/0,977.2,968.1,970.7,,37.0,32.0,14.0,,,52.0,NE,4.6,0,0,
-2007-03-18,5.8,2.2,3.7,1.3,0/5/0,973.9,954.8,965.5,,55.0,43.0,22.0,,,74.0,E,3.3,0,0,
-2007-03-19,4.4,-0.9,1.4,0.5,0/5/0,958.2,948.9,952.8,,33.0,26.0,8.0,,,242.0,N,4.6,0,0,
-2007-03-20,1.5,-1.0,0.2,0.2,0/5/0,971.7,958.2,965.0,,32.0,26.0,13.0,,,244.0,SW,0.8,6,20,
-2007-03-21,3.9,-1.4,0.8,0.6,0/5/0,980.6,971.7,975.6,,21.0,16.0,7.0,,,216.0,SW,0.0,0,12,
-2007-03-22,1.6,-3.1,-1.1,0.7,0/5/0,993.1,980.5,987.5,,20.0,17.0,7.0,,,79.0,E,0.0,0,8,
-2007-03-23,2.2,-3.2,-1.3,0.2,0/5/0,997.6,993.1,996.2,,11.0,9.0,5.0,,,53.0,E,0.0,0,6,
-2007-03-24,0.6,-2.5,-0.8,-0.0,0/5/0,1002.2,997.5,999.7,,11.0,9.0,4.0,,,206.0,S,0.0,0,0,
-2007-03-25,0.4,-2.4,-0.9,0.5,0/5/0,1002.5,998.9,1001.2,,25.0,20.0,8.0,,,53.0,E,0.0,0,0,
-2007-03-26,1.6,-1.9,0.1,0.5,0/5/0,998.9,983.1,992.8,,33.0,26.0,9.0,,,78.0,SE,1.8,2,2,
-2007-03-27,4.6,0.5,2.0,1.0,0/5/0,983.0,971.0,973.4,,54.0,43.0,18.0,,,85.0,SE,0.0,1,4,
-2007-03-28,3.0,-0.2,1.8,1.1,0/5/0,971.2,960.5,965.0,,33.0,25.0,12.0,,,57.0,NE,3.6,0,0,
-2007-03-29,1.7,-0.4,0.4,0.9,0/5/0,974.5,964.8,968.8,,25.0,19.0,8.0,,,73.0,SE,1.8,8,8,
-2007-03-30,0.6,-1.2,-0.2,0.6,0/5/0,986.7,974.5,978.9,,13.0,10.0,3.0,,,339.0,NW,0.8,1,9,
-2007-03-31,1.9,-3.3,-1.2,0.3,0/5/0,990.9,984.8,988.1,,26.0,17.0,5.0,,,107.0,E,0.0,0,7,
-2007-04-01,0.9,-2.0,-0.5,0.3,0/5/0,994.5,985.5,991.4,,30.0,23.0,8.0,,,81.0,E,0.0,0,5,
-2007-04-02,2.3,-1.1,0.0,1.0,0/5/0,994.5,975.3,985.1,,44.0,28.0,16.0,,,124.0,SE,0.0,0,4,
-2007-04-03,3.9,0.3,1.8,0.8,0/4/0,986.8,974.3,978.0,,36.0,26.0,9.0,,,100.0,E,0.0,0,4,
-2007-04-04,1.3,-1.2,0.1,-0.4,0/5/0,1002.2,986.8,997.2,,29.0,19.0,6.0,,,40.0,N,0.0,0,0,
-2007-04-05,4.0,-0.9,1.5,0.8,0/5/0,999.3,978.1,987.5,,81.0,62.0,18.0,,,51.0,SE,28.7,0,0,
-2007-04-06,4.3,0.4,3.0,0.9,0/5/0,985.0,975.4,979.1,,44.0,36.0,18.0,,,52.0,NE,3.3,0,0,
-2007-04-07,2.0,0.3,1.2,-0.0,0/5/0,981.5,978.0,980.2,,32.0,25.0,12.0,,,51.0,NE,2.8,1,1,
-2007-04-08,0.9,-0.7,0.1,-0.3,0/5/0,984.6,980.8,983.1,,21.0,16.0,8.0,,,306.0,N,0.5,1,2,
-2007-04-09,0.0,-3.1,-1.6,-0.4,0/5/0,985.4,980.8,983.9,,18.0,12.0,4.0,,,135.0,E,0.3,0,2,
-2007-04-10,-1.6,-3.8,-2.7,-0.7,0/5/0,987.7,984.2,985.0,,11.0,8.0,3.0,,,135.0,NE,0.0,0,2,
-2007-04-11,-1.0,-2.5,-2.0,-0.3,0/5/0,995.8,987.7,992.3,,10.0,8.0,3.0,,,208.0,NE,0.0,0,0,
-2007-04-12,-0.8,-5.0,-3.0,-0.6,0/5/0,995.8,991.2,994.3,,12.0,10.0,4.0,,,224.0,E,0.0,0,0,
-2007-04-13,-2.0,-6.1,-4.1,-0.9,0/5/0,991.1,979.3,984.9,,12.0,9.0,4.0,,,173.0,E,0.0,0,0,
-2007-04-14,-2.4,-4.4,-3.1,0.1,0/5/0,980.5,975.6,977.7,,16.0,13.0,7.0,,,195.0,S,0.0,0,0,
-2007-04-15,-3.3,-5.3,-4.2,-0.8,605/0,986.5,980.6,983.5,,19.0,15.0,8.0,,,245.0,NE,3.3,7,9,
-2007-04-16,-3.2,-5.4,-3.9,-1.0,605/0,999.6,986.5,993.6,,21.0,17.0,9.0,,,241.0,SW,0.0,0,9,
-2007-04-17,-2.5,-4.1,-3.3,-0.5,605/0,999.8,994.2,997.3,,19.0,15.0,4.0,,,211.0,SE,0.0,0,8,
-2007-04-18,0.1,-2.7,-1.7,-0.4,605/0,994.2,989.0,992.1,,18.0,12.0,4.0,,,146.0,SE,5.1,0,8,
-2007-04-19,3.1,-0.4,1.7,-0.2,0/5/0,989.1,978.7,983.5,,35.0,30.0,9.0,,,57.0,SE,0.3,5,13,
-2007-04-20,1.1,-1.3,-0.1,-0.2,0/5/0,986.7,978.2,980.9,,22.0,17.0,4.0,,,53.0,E,0.0,0,12,
-2007-04-21,-0.8,-2.4,-1.6,0.1,0/5/0,992.5,986.4,990.0,,39.0,30.0,13.0,,,52.0,E,0.0,0,12,
-2007-04-22,0.9,-2.1,-1.1,0.5,0/5/0,986.3,971.7,975.1,,32.0,23.0,10.0,,,123.0,SE,0.3,0,12,
-2007-04-23,-0.1,-2.6,-1.4,0.5,0/5/0,983.7,973.6,977.3,,18.0,15.0,5.0,,,78.0,SE,0.0,0,12,
-2007-04-24,-0.5,-5.1,-2.6,0.2,0/5/0,991.7,983.7,987.4,,27.0,23.0,7.0,,,137.0,SE,1.5,2,14,
-2007-04-25,-3.5,-7.5,-5.6,-0.0,0/5/0,998.6,991.7,995.8,,25.0,19.0,10.0,,,136.0,SE,0.0,0,14,
-2007-04-26,-4.3,-7.1,-5.7,0.0,0/5/0,998.7,990.9,995.6,,19.0,15.0,8.0,,,79.0,E,0.0,0,13,
-2007-04-27,-5.2,-9.1,-7.1,-0.1,0/5/0,995.0,988.3,990.5,,28.0,20.0,10.0,,,136.0,SE,0.0,0,13,
-2007-04-28,-3.4,-8.2,-5.4,-0.4,0/6/0,1012.7,995.0,1003.2,,14.0,12.0,6.0,,,41.0,E,0.0,0,12,
-2007-04-29,-2.1,-5.0,-3.7,-0.4,0/6/0,1027.7,1012.8,1021.4,,7.0,6.0,4.0,,,97.0,E,0.0,0,12,
-2007-04-30,-1.7,-5.0,-2.9,-0.5,0/6/0,1027.6,1022.3,1024.5,,10.0,7.0,4.0,,,206.0,E,0.3,0,12,
-2007-05-01,-2.2,-4.4,-3.2,-0.7,0/6/0,1022.4,1020.8,1021.2,,15.0,11.0,4.0,,,179.0,S,0.0,0,12,
-2007-05-02,-0.1,-3.6,-2.3,-1.1,0/6/0,1021.4,1016.1,1018.9,,18.0,14.0,4.0,,,195.0,S,0.0,0,11,
-2007-05-03,-0.8,-4.6,-2.4,-0.7,0/6/0,1016.1,1013.9,1015.2,,9.0,7.0,3.0,,,52.0,E,0.0,0,11,
-2007-05-04,-2.8,-6.2,-4.3,-0.8,0/6/0,1017.5,1013.2,1014.3,,9.0,7.0,4.0,,,100.0,E,0.0,0,11,
-2007-05-05,-1.9,-6.3,-5.0,-1.1,0/6/0,1024.0,1017.5,1021.4,,6.0,5.0,2.0,,,126.0,E,0.0,0,11,
-2007-05-06,-4.0,-6.6,-5.4,-1.2,0/6/0,1024.3,1021.6,1023.6,,14.0,12.0,3.0,,,215.0,E,0.0,0,11,
-2007-05-07,-3.5,-5.9,-4.3,-1.0,0/6/0,1021.5,1016.8,1019.2,,18.0,14.0,5.0,,,194.0,S,0.0,0,11,
-2007-05-08,1.7,-6.9,-2.2,-0.5,0/6/0,1016.8,989.6,1003.7,,53.0,42.0,11.0,,,58.0,SE,3.1,0,11,
-2007-05-09,1.7,-1.4,-0.3,-0.7,0/6/0,992.9,988.3,990.6,,24.0,21.0,9.0,,,74.0,W,3.3,8,19,
-2007-05-10,1.8,-1.4,0.0,-0.6,0/5/0,988.8,983.2,986.0,,28.0,22.0,10.0,,,59.0,SE,0.8,2,21,
-2007-05-11,0.7,-1.8,-0.4,-0.5,0/5/0,988.7,971.0,979.2,,52.0,41.0,18.0,,,70.0,NE,1.0,3,24,
-2007-05-12,0.2,-1.9,-0.4,-0.5,0/5/0,984.5,975.7,981.3,,30.0,23.0,15.0,,,268.0,NW,1.3,2,26,
-2007-05-13,1.6,-0.1,0.7,-1.3,0/5/0,989.8,984.2,987.0,,30.0,23.0,16.0,,,39.0,N,0.3,5,31,
-2007-05-14,4.7,0.3,2.4,-0.7,0/6/0,990.4,986.6,988.4,,28.0,22.0,7.0,,,63.0,SE,0.0,0,30,
-2007-05-15,1.6,-1.9,-0.4,-0.6,0/6/0,986.7,983.0,984.4,,12.0,10.0,4.0,,,351.0,N,0.8,0,28,
-2007-05-16,-1.7,-3.9,-2.6,-0.7,0/6/0,987.0,984.0,984.8,,16.0,13.0,5.0,,,46.0,NE,0.0,2,25,
-2007-05-17,-2.1,-3.1,-2.5,-0.6,0/6/0,995.9,987.0,991.5,,38.0,30.0,15.0,,,57.0,NE,0.0,0,25,
-2007-05-18,-2.3,-7.0,-5.1,-0.6,0/6/0,998.1,986.0,994.7,,39.0,31.0,15.0,,,52.0,NE,0.0,0,25,
-2007-05-19,-3.4,-6.6,-5.1,-0.9,0/6/0,986.9,981.8,983.7,,22.0,15.0,5.0,,,137.0,E,0.0,0,25,
-2007-05-20,-4.1,-6.1,-4.8,-0.9,0/6/0,988.4,985.3,987.3,,20.0,17.0,6.0,,,44.0,NE,0.0,0,25,
-2007-05-21,-1.3,-4.3,-2.3,-0.9,0/6/0,995.1,984.8,988.4,,17.0,12.0,4.0,,,133.0,SE,0.0,0,25,
-2007-05-22,0.1,-3.4,-2.3,-0.5,0/6/0,996.5,982.5,992.6,,33.0,23.0,6.0,,,87.0,SE,4.6,8,32,
-2007-05-23,2.9,-1.1,0.7,-0.2,0/6/0,983.8,968.2,973.1,,51.0,41.0,16.0,,,59.0,SE,0.3,0,30,
-2007-05-24,-0.6,-4.0,-2.5,-0.9,0/6/0,993.4,973.1,983.8,,25.0,20.0,10.0,,,45.0,NE,0.0,1,31,
-2007-05-25,-2.0,-3.9,-2.9,-0.5,0/6/0,1013.2,993.5,1005.1,,12.0,11.0,4.0,,,199.0,S,0.0,0,31,
-2007-05-26,-1.9,-4.9,-3.5,-0.6,0/6/0,1020.4,1013.2,1016.5,,12.0,7.0,4.0,,,329.0,E,0.0,0,30,
-2007-05-27,-1.0,-3.6,-2.2,-1.0,0/6/0,1021.6,1020.3,1021.1,,11.0,9.0,4.0,,,5.0,N,0.0,0,30,
-2007-05-28,0.6,-1.7,-0.7,-1.0,0/6/0,1021.5,1012.6,1017.9,,14.0,10.0,4.0,,,47.0,SE,0.0,1,31,
-2007-05-29,3.3,-1.7,0.6,-0.9,0/6/0,1012.7,990.3,999.9,,44.0,36.0,15.0,,,54.0,NE,1.3,0,29,
-2007-05-30,0.9,-1.1,0.2,-1.1,0/6/0,993.6,966.2,982.3,,64.0,51.0,23.0,,,60.0,NE,8.9,3,33,
-2007-05-31,0.7,-3.5,-1.6,-1.0,0/6/0,969.5,961.8,967.0,,49.0,41.0,13.0,,,51.0,NE,1.8,2,35,
-2007-06-01,-2.1,-5.4,-3.6,-1.1,0/6/0,981.2,969.5,976.2,,19.0,17.0,6.0,,,50.0,E,0.0,0,35,
-2007-06-02,-3.0,-6.0,-4.8,-1.0,0/6/0,984.5,980.8,982.8,,11.0,8.0,4.0,,,99.0,E,0.0,0,35,
-2007-06-03,-2.7,-5.3,-4.3,-1.3,0/6/0,982.5,975.1,978.0,,22.0,14.0,4.0,,,121.0,E,0.0,0,35,
-2007-06-04,0.2,-6.0,-4.5,-1.5,0/6/0,989.4,976.2,981.1,,13.0,11.0,3.0,,,105.0,E,0.0,0,34,
-2007-06-05,-1.8,-4.2,-2.7,-1.7,60500,997.5,989.5,994.3,,10.0,9.0,4.0,,,220.0,E,0.0,0,34,
-2007-06-06,-2.2,-4.9,-3.5,-1.7,60500,1000.0,997.5,999.1,,18.0,15.0,5.0,,,60.0,E,0.0,0,33,
-2007-06-07,-2.7,-4.5,-3.4,-1.1,0/5/0,999.2,995.7,996.9,,25.0,15.0,8.0,,,133.0,SE,1.3,10,43,
-2007-06-08,-2.4,-6.1,-4.5,-1.1,0/5/0,1006.5,998.2,1002.2,,17.0,14.0,4.0,,,1.0,NE,0.0,0,43,
-2007-06-09,-4.8,-6.5,-5.6,-1.5,0/5/0,1007.0,1004.2,1005.9,,12.0,10.0,5.0,,,25.0,N,0.3,0,43,
-2007-06-10,-5.2,-7.4,-6.0,-1.4,0/5/0,1005.5,1004.1,1004.8,,12.0,9.0,4.0,,,183.0,NE,0.8,4,44,
-2007-06-11,-5.7,-8.1,-6.1,-1.5,0/5/0,1005.9,1004.6,1005.1,,15.0,11.0,4.0,,,209.0,S,0.3,2,46,
-2007-06-12,-2.3,-8.5,-5.8,-1.1,0/5/0,1008.3,989.2,1003.8,,40.0,32.0,13.0,,,32.0,NE,0.0,0,46,
-2007-06-13,-0.6,-3.6,-2.5,-1.2,0/5/0,989.2,976.9,980.7,,57.0,44.0,22.0,,,29.0,SW,1.0,1,44,
-2007-06-14,-2.7,-6.4,-4.7,-1.3,0/5/0,983.7,978.6,981.1,,21.0,18.0,7.0,,,42.0,NE,0.0,0,40,
-2007-06-15,-3.5,-5.9,-4.6,-1.4,0/5/0,985.7,979.1,982.7,,8.0,6.0,3.0,,,353.0,NE,1.8,3,43,
-2007-06-16,-2.3,-5.7,-4.3,-1.4,0/5/0,985.3,980.1,982.2,,30.0,25.0,9.0,,,56.0,NE,0.8,1,43,
-2007-06-17,-5.0,-7.7,-6.0,-1.4,0/5/0,984.1,977.3,981.9,,36.0,27.0,5.0,,,68.0,E,1.0,2,40,
-2007-06-18,-4.5,-7.2,-6.0,-0.9,0/5/0,985.2,977.0,980.3,,37.0,28.0,17.0,,,76.0,E,0.0,0,40,
-2007-06-19,-1.0,-8.2,-4.0,-0.9,0/5/0,985.1,975.6,979.3,,46.0,35.0,21.0,,,47.0,E,0.0,0,38,
-2007-06-20,0.0,-3.8,-1.9,-0.9,0/5/0,988.9,981.8,985.5,,41.0,34.0,13.0,,,30.0,E,0.3,0,38,
-2007-06-21,-1.4,-2.5,-1.9,-1.1,0/5/0,990.6,987.4,989.3,,20.0,17.0,6.0,,,156.0,N,2.3,7,44,
-2007-06-22,-1.7,-4.9,-3.1,-1.2,0/5/0,993.0,987.2,990.1,,20.0,14.0,6.0,,,1.0,N,1.5,5,49,
-2007-06-23,-2.5,-5.7,-3.9,-1.4,0/5/0,996.9,989.7,993.6,,12.0,10.0,4.0,,,11.0,NE,0.0,0,48,
-2007-06-24,-3.6,-5.9,-4.9,-1.6,20590,997.1,990.8,994.1,,20.0,14.0,5.0,,,77.0,N,0.0,0,48,
-2007-06-25,-3.9,-6.4,-5.4,-1.4,0/5/0,999.0,990.7,994.4,,33.0,23.0,12.0,,,99.0,NE,0.0,0,46,
-2007-06-26,-2.7,-6.0,-3.9,-1.5,0/5/0,1000.3,998.7,999.6,,12.0,10.0,4.0,,,13.0,N,0.3,0,46,
-2007-06-27,-3.5,-5.3,-4.4,-1.7,0/5/0,998.8,990.4,995.3,,17.0,14.0,6.0,,,229.0,SW,0.3,2,48,
-2007-06-28,-4.3,-5.7,-5.2,-1.6,0/5/0,990.5,984.9,986.8,,22.0,16.0,9.0,,,236.0,SW,0.0,0,47,
-2007-06-29,-3.4,-5.0,-4.3,-1.7,0/5/0,992.9,987.0,989.1,,17.0,13.0,5.0,,,214.0,SW,0.0,0,46,
-2007-06-30,-3.4,-4.5,-3.9,-1.7,0/5/0,1006.8,992.8,998.7,,36.0,28.0,19.0,,,234.0,SW,0.0,0,45,
-2007-07-01,-1.3,-4.5,-3.9,-1.7,0/5/0,1009.3,994.1,1005.8,,20.0,16.0,9.0,,,39.0,SW,0.3,0,45,
-2007-07-02,0.2,-3.2,-1.2,-1.6,60690,994.0,958.1,975.4,,28.0,22.0,10.0,,,25.0,N,2.0,3,45,
-2007-07-03,-3.0,-11.8,-9.7,-1.4,60690,960.9,952.8,956.2,,49.0,33.0,20.0,,,116.0,E,0.0,0,41,
-2007-07-04,-6.2,-11.4,-8.6,-1.6,0/6/0,979.6,960.7,970.6,,42.0,34.0,13.0,,,121.0,E,0.0,0,38,
-2007-07-05,-2.8,-13.6,-8.7,-1.3,0/6/0,999.9,979.6,991.0,,48.0,36.0,19.0,,,116.0,E,0.0,0,38,
-2007-07-06,-2.7,-5.7,-4.2,-1.4,0/5/0,1003.3,999.5,1002.3,,32.0,27.0,7.0,,,119.0,E,0.0,0,38,
-2007-07-07,-3.0,-5.3,-4.0,-1.6,0/5/0,1002.4,998.5,1000.0,,12.0,10.0,5.0,,,27.0,NE,0.0,0,38,
-2007-07-08,-1.3,-3.5,-2.3,-1.7,60590,999.6,986.4,992.2,,32.0,26.0,13.0,,,230.0,SW,0.5,1,38,
-2007-07-09,-2.3,-8.3,-6.0,-1.6,0/6/0,1005.6,986.9,998.5,,32.0,26.0,9.0,,,205.0,E,0.0,0,36,
-2007-07-10,-3.6,-5.5,-4.1,-1.7,0/6/0,1006.8,1001.2,1005.4,,12.0,11.0,6.0,,,18.0,N,0.0,0,37,
-2007-07-11,-1.8,-5.0,-3.7,-1.8,0/6/0,1001.2,991.1,995.0,,35.0,28.0,16.0,,,248.0,SW,0.0,0,37,
-2007-07-12,-4.9,-6.9,-5.7,-1.8,0/7/0,992.2,987.2,989.8,,32.0,25.0,19.0,,,229.0,SW,0.0,0,37,
-2007-07-13,-5.8,-7.1,-6.5,-1.7,60890,993.9,992.0,992.8,,24.0,19.0,11.0,,,237.0,SW,0.0,0,37,
-2007-07-14,-6.6,-13.6,-11.1,-1.7,60890,1014.0,993.4,1002.8,,33.0,27.0,13.0,,,24.0,E,0.3,0,36,
-2007-07-15,-9.0,-13.7,-11.8,-1.7,60896,1017.1,1011.9,1015.4,,15.0,14.0,7.0,,,34.0,NE,0.0,0,36,
-2007-07-16,-8.6,-10.6,-9.2,-1.6,60796,1011.9,1004.1,1006.4,,18.0,16.0,4.0,,,19.0,S,0.0,0,36,
-2007-07-17,-7.0,-10.5,-8.4,-1.5,60696,1006.7,1002.1,1004.9,,19.0,17.0,7.0,,,17.0,E,0.0,0,36,
-2007-07-18,-7.2,-8.8,-7.7,-1.4,60696,1003.1,1001.5,1002.3,,14.0,13.0,5.0,,,19.0,N,0.0,0,36,
-2007-07-19,-6.8,-8.2,-7.6,-1.5,60696,1001.9,997.3,999.0,,12.0,9.0,4.0,,,200.0,SW,0.3,0,36,
-2007-07-20,-7.9,-9.6,-8.6,-1.5,60696,1001.9,997.3,999.1,,15.0,12.0,4.0,,,19.0,NE,0.0,2,38,
-2007-07-21,-7.1,-9.8,-8.3,-1.5,60896,1006.3,1001.8,1004.1,,11.0,9.0,4.0,,,21.0,NE,0.0,0,38,
-2007-07-22,-6.2,-10.6,-8.1,-1.6,60896,1006.5,1002.7,1005.1,,10.0,8.0,5.0,,,39.0,E,0.0,0,38,
-2007-07-23,-7.8,-10.6,-8.5,-1.6,60791,1002.7,990.8,997.7,,11.0,9.0,4.0,,,49.0,E,0.0,0,38,
-2007-07-24,-1.4,-8.2,-5.2,-1.5,0/5/0,990.8,963.1,974.5,,49.0,36.0,13.0,,,72.0,E,0.0,0,38,
-2007-07-25,-7.1,-13.1,-10.9,-1.6,0/5/0,989.1,968.2,979.2,,47.0,35.0,10.0,,,77.0,E,0.0,0,35,
-2007-07-26,-8.0,-13.1,-9.5,-1.6,0/5/0,1001.2,989.2,996.2,,25.0,21.0,9.0,,,233.0,SW,0.0,0,35,
-2007-07-27,-4.8,-12.2,-10.1,-1.6,60696,1000.5,983.8,996.1,,35.0,28.0,11.0,,,265.0,SW,0.3,0,35,
-2007-07-28,-1.3,-7.3,-4.0,,60696,983.9,974.9,979.6,,28.0,21.0,7.0,,,121.0,SE,2.3,5,47,
-2007-07-29,1.8,-3.3,-0.2,,0/6/0,974.8,963.9,967.8,,48.0,38.0,23.0,,,25.0,NE,4.6,5,49,
-2007-07-30,1.2,-2.0,0.1,-1.5,60696,980.2,971.8,976.2,,39.0,31.0,13.0,,,17.0,NE,4.1,5,47,
-2007-07-31,0.1,-8.2,-4.4,-1.7,70696,1001.3,980.2,993.1,,23.0,19.0,6.0,,,241.0,W,1.8,6,51,
-2007-08-01,0.7,-7.6,-4.3,-1.7,70696,1001.3,993.3,998.8,,39.0,34.0,5.0,,,22.0,E,1.0,3,52,
-2007-08-02,2.9,-2.5,-0.2,-1.6,0/6/0,993.6,973.9,982.5,,47.0,40.0,19.0,,,30.0,NW,0.5,0,49,
-2007-08-03,-2.2,-4.4,-3.3,-1.7,60690,993.9,982.5,989.6,,23.0,19.0,10.0,,,266.0,W,1.0,2,51,
-2007-08-04,1.0,-3.8,-1.4,-1.7,60590,993.4,983.9,989.2,,50.0,39.0,18.0,,,38.0,NE,0.3,0,49,
-2007-08-05,0.2,-2.3,-1.0,-1.7,60590,983.8,959.5,968.1,,53.0,43.0,23.0,,,43.0,N,0.8,0,49,
-2007-08-06,-1.5,-3.6,-2.4,-1.8,60590,960.6,957.3,959.3,,42.0,35.0,19.0,,,29.0,N,0.0,0,49,
-2007-08-07,-2.9,-8.3,-6.2,-1.8,60690,974.5,959.6,968.8,,40.0,31.0,15.0,,,19.0,N,1.0,2,51,
-2007-08-08,-4.5,-8.4,-6.2,-1.8,60690,971.5,957.0,963.0,,39.0,33.0,17.0,,,29.0,N,0.0,0,51,
-2007-08-09,-0.8,-11.1,-8.0,-1.8,51696,979.0,963.5,973.6,,49.0,39.0,17.0,,,22.0,W,0.0,0,49,
-2007-08-10,-0.7,-15.1,-9.4,-1.8,51696,984.6,966.8,973.2,,44.0,34.0,18.0,,,247.0,SW,3.6,6,51,
-2007-08-11,-0.7,-16.3,-9.9,-1.8,51696,989.9,980.8,984.5,,34.0,28.0,14.0,,,336.0,SE,8.9,5,51,
-2007-08-12,-0.4,-13.8,-5.3,-1.8,5169/,985.8,974.7,981.9,,58.0,41.0,23.0,,,353.0,N,0.3,10,57,
-2007-08-13,-11.5,-13.4,-12.6,-1.8,5169/,987.3,984.7,985.8,,17.0,13.0,8.0,,,221.0,SW,0.0,0,57,
-2007-08-14,-10.2,-14.3,-11.6,-1.8,51742,1004.2,987.2,994.1,,21.0,16.0,8.0,,,231.0,SW,0.0,0,57,
-2007-08-15,-1.0,-10.8,-7.1,-1.8,51742,1007.5,998.7,1003.6,,22.0,17.0,7.0,,,332.0,W,2.0,1,58,
-2007-08-16,-0.6,-6.9,-3.3,-1.8,51742,1006.7,1002.6,1005.0,,12.0,8.0,4.0,,,319.0,NW,0.8,5,63,
-2007-08-17,-1.1,-5.5,-2.2,-1.8,51742,1011.1,1005.8,1007.8,,10.0,9.0,4.0,,,336.0,NW,0.3,0,63,
-2007-08-18,2.4,-6.8,-1.6,-1.8,51762,1012.0,994.6,1005.4,,44.0,36.0,15.0,,,27.0,NE,0.0,0,63,
-2007-08-19,3.3,-1.3,1.4,-1.8,51762,995.6,986.0,993.1,,44.0,32.0,17.0,,,27.0,N,1.0,0,60,
-2007-08-20,3.1,-2.2,0.5,-1.8,81890,986.1,980.8,983.7,,43.0,36.0,11.0,,,17.0,N,0.0,0,59,
-2007-08-21,1.6,-0.1,0.6,-1.7,21790,985.5,980.0,983.1,,49.0,39.0,23.0,,,44.0,NE,0.0,0,58,
-2007-08-22,1.9,-2.6,-0.7,-1.7,21790,986.4,981.8,984.4,,30.0,25.0,9.0,,,36.0,NE,1.0,0,58,
-2007-08-23,-2.5,-5.8,-4.2,-1.7,60690,982.8,980.9,981.7,,15.0,12.0,5.0,,,154.0,SE,0.0,2,60,
-2007-08-24,-2.8,-8.5,-5.0,-1.7,60990,981.7,965.9,974.1,,20.0,15.0,6.0,,,123.0,E,0.0,0,60,
-2007-08-25,-3.8,-10.0,-6.2,-1.7,60990,979.3,966.4,974.3,,23.0,20.0,9.0,,,327.0,W,4.1,12,72,
-2007-08-26,-3.1,-9.7,-5.8,-1.7,60990,980.9,976.1,978.0,,24.0,18.0,4.0,,,43.0,N,0.0,0,72,
-2007-08-27,-4.6,-7.5,-6.1,-1.7,60990,991.2,981.0,986.5,,26.0,21.0,10.0,,,24.0,NE,0.0,0,72,
-2007-08-28,-4.6,-9.0,-6.8,-1.7,60790,991.5,982.0,988.0,,43.0,21.0,10.0,,,23.0,NE,0.0,0,72,
-2007-08-29,-1.7,-6.2,-3.8,-1.8,60790,984.9,978.5,982.3,,34.0,28.0,9.0,,,136.0,SE,1.5,3,64,
-2007-08-30,-2.5,-8.0,-5.6,-1.7,60790,985.4,979.0,982.5,,44.0,35.0,6.0,,,44.0,E,0.0,0,64,
-2007-08-31,-0.7,-4.9,-3.5,-1.8,60790,993.0,979.0,985.5,,50.0,41.0,15.0,,,38.0,E,0.8,3,67,
-2007-09-01,0.3,-6.0,-2.4,-1.8,60790,992.9,976.6,983.7,,55.0,40.0,21.0,,,27.0,NE,0.0,0,67,
-2007-09-02,0.2,-2.4,-0.7,-1.8,60690,988.3,980.5,983.8,,59.0,46.0,21.0,,,20.0,N,0.0,0,67,
-2007-09-03,-0.5,-4.1,-2.7,-1.8,51690,997.5,988.2,993.1,,34.0,27.0,14.0,,,350.0,NW,3.3,1,67,
-2007-09-04,-3.1,-6.4,-5.1,-1.8,51690,998.2,993.0,996.4,,12.0,11.0,4.0,,,26.0,NE,0.0,0,67,
-2007-09-05,-5.3,-9.6,-7.3,-1.7,51690,999.6,991.4,993.6,,21.0,18.0,8.0,,,226.0,SW,0.5,0,67,
-2007-09-06,-7.0,-11.0,-9.3,-1.7,51790,1008.7,999.7,1005.5,,15.0,12.0,5.0,,,222.0,NE,0.0,3,70,
-2007-09-07,-2.6,-12.7,-9.4,-1.8,51790,1010.1,1004.2,1008.7,,26.0,20.0,6.0,,,25.0,E,0.8,0,70,
-2007-09-08,-1.2,-4.9,-3.2,-1.8,31790,1020.1,1004.6,1015.1,,31.0,22.0,7.0,,,346.0,SW,0.0,3,65,
-2007-09-09,-0.9,-3.1,-1.3,-1.8,31790,1020.8,1019.3,1020.1,,22.0,19.0,11.0,,,336.0,N,0.3,0,65,
-2007-09-10,0.3,-1.3,-0.7,-1.8,31790,1020.0,1010.6,1015.5,,28.0,21.0,12.0,,,12.0,N,0.0,0,65,
-2007-09-11,-0.4,-3.1,-1.4,-1.8,51790,1011.9,998.5,1006.1,,26.0,20.0,9.0,,,22.0,N,4.3,1,66,
-2007-09-12,0.1,-3.1,-1.4,-1.8,51790,998.4,982.2,988.6,,38.0,31.0,15.0,,,234.0,N,2.8,10,76,
-2007-09-13,-2.9,-9.0,-6.4,-1.8,51690,1005.5,987.2,997.2,,32.0,25.0,9.0,,,230.0,SW,0.0,5,66,
-2007-09-14,-1.6,-9.9,-5.3,-1.8,51690,1008.7,1004.1,1006.3,,17.0,12.0,4.0,,,130.0,SE,1.5,0,66,
-2007-09-15,1.9,-3.3,-1.4,-1.8,51690,1009.7,1000.5,1006.9,,29.0,22.0,5.0,,,13.0,SE,14.7,6,72,
-2007-09-16,2.7,-5.6,-0.7,-1.8,51690,1008.2,991.5,1000.1,,56.0,36.0,14.0,,,345.0,N,7.9,0,72,
-2007-09-17,-1.0,-7.8,-4.4,-1.8,51690,1010.4,1003.6,1007.9,,11.0,9.0,3.0,,,123.0,SE,1.8,0,72,
-2007-09-18,3.6,-5.1,-0.3,-1.8,51690,1003.7,1000.7,1002.6,,38.0,31.0,8.0,,,26.0,NE,0.5,0,72,
-2007-09-19,4.2,-0.4,1.8,-1.7,61690,1001.1,997.5,998.7,,47.0,37.0,21.0,,,36.0,NE,8.9,0,70,
-2007-09-20,1.9,-1.9,-0.5,-1.6,60690,1004.3,997.9,1001.6,,38.0,29.0,5.0,,,38.0,SE,0.3,4,63,
-2007-09-21,1.7,-1.9,-0.1,-1.6,205/0,1004.1,995.3,999.6,,45.0,39.0,17.0,,,52.0,N,0.0,0,61,
-2007-09-22,0.4,-3.6,-2.1,-1.7,400/2,1006.3,1001.0,1003.8,,31.0,25.0,12.0,,,28.0,W,1.3,3,66,
-2007-09-23,1.8,-2.6,-1.3,-1.7,20590,1001.5,993.2,997.1,,10.0,8.0,2.0,,,129.0,SE,2.5,5,68,
-2007-09-24,2.7,-2.2,-0.5,-1.6,20490,993.8,967.5,984.4,,53.0,43.0,13.0,,,45.0,NE,0.8,0,68,
-2007-09-25,1.5,-0.9,0.2,-1.6,20490,973.9,965.5,969.0,,27.0,22.0,12.0,,,31.0,N,2.3,3,72,
-2007-09-26,1.2,-0.8,0.1,-1.6,20490,972.8,960.6,965.6,,47.0,36.0,20.0,,,33.0,N,1.8,0,70,
-2007-09-27,1.0,-2.3,-0.7,-1.5,20490,977.8,963.4,968.1,,29.0,25.0,10.0,,,25.0,NE,0.0,0,69,
-2007-09-28,-0.4,-4.5,-2.4,-1.6,20490,980.4,955.4,973.3,,64.0,52.0,13.0,,,42.0,NE,0.0,0,70,
-2007-09-29,0.5,-1.8,-0.9,-1.5,70490,961.4,953.1,958.3,,51.0,40.0,15.0,,,43.0,NW,0.0,0,68,
-2007-09-30,0.4,-1.8,-0.7,-1.8,30490,973.2,961.0,966.6,,32.0,25.0,15.0,,,348.0,N,0.8,0,67,
-2007-10-01,1.8,-4.1,-1.6,-1.7,304/0,972.4,956.1,962.0,,39.0,27.0,16.0,,,31.0,E,0.0,0,66,
-2007-10-02,0.7,-3.5,-1.7,-1.7,204/0,998.7,966.5,986.5,,33.0,28.0,10.0,,,23.0,NE,1.5,2,68,
-2007-10-03,4.8,-0.5,1.9,-1.4,204/0,1002.2,997.3,1000.3,,36.0,28.0,12.0,,,29.0,NE,0.0,0,66,
-2007-10-04,3.4,-3.0,-0.1,-1.4,204/0,997.9,987.6,991.7,,26.0,14.0,3.0,,,133.0,NE,0.0,0,64,
-2007-10-05,-1.2,-3.2,-2.3,-1.4,204/0,1000.0,988.6,994.6,,20.0,18.0,8.0,,,243.0,W,0.0,0,62,
-2007-10-06,-0.4,-2.6,-1.4,-1.4,204/0,1001.2,998.3,999.9,,19.0,17.0,7.0,,,240.0,NW,0.0,0,62,
-2007-10-07,0.1,-2.3,-1.1,-1.6,404/0,999.9,971.3,987.2,,41.0,40.0,21.0,,,350.0,NW,0.3,2,64,
-2007-10-08,-2.2,-7.7,-3.9,-1.7,404/0,975.4,962.7,968.3,,44.0,39.0,18.0,,,231.0,SW,1.0,1,65,
-2007-10-09,-1.8,-9.6,-6.9,-1.6,204/0,993.2,975.2,988.1,,40.0,31.0,15.0,,,222.0,SW,0.0,0,64,
-2007-10-10,0.2,-2.9,-1.0,-1.7,404/0,992.4,974.8,984.5,,25.0,19.0,13.0,,,357.0,N,7.1,6,70,
-2007-10-11,2.5,-2.6,-1.2,-1.7,404/0,977.9,975.1,976.9,,18.0,15.0,4.0,,,329.0,NW,1.0,16,86,
-2007-10-12,-1.2,-4.1,-2.9,-1.6,404/0,986.4,974.0,979.3,,20.0,17.0,8.0,,,201.0,SW,0.8,4,90,
-2007-10-13,-1.7,-8.4,-5.4,-1.6,504/0,993.4,986.4,991.3,,28.0,24.0,7.0,,,229.0,E,0.0,0,85,
-2007-10-14,-3.6,-8.1,-5.4,-1.5,304/0,990.6,964.7,980.0,,32.0,26.0,13.0,,,38.0,E,0.0,0,81,
-2007-10-15,-5.8,-9.0,-7.6,-0.9,204/0,964.9,957.7,960.5,,42.0,30.0,19.0,,,121.0,SE,0.0,0,80,
-2007-10-16,-2.1,-8.0,-6.3,-1.3,0/4/0,975.9,964.7,970.6,,22.0,18.0,8.0,,,242.0,SW,0.0,0,79,
-2007-10-17,0.0,-8.9,-4.6,-1.1,0/4/0,984.3,975.7,978.5,,24.0,17.0,7.0,,,34.0,E,0.0,0,78,
-2007-10-18,-2.6,-8.6,-5.5,-1.2,0/6/0,996.7,984.3,991.9,,20.0,17.0,8.0,,,28.0,NE,0.0,0,78,
-2007-10-19,-1.4,-6.5,-3.9,-1.2,0/6/0,998.6,996.8,997.8,,32.0,26.0,14.0,,,19.0,NE,0.0,0,77,
-2007-10-20,-2.0,-7.2,-4.5,-1.4,0/4/0,998.3,988.8,994.8,,26.0,22.0,8.0,,,19.0,E,0.0,0,77,
-2007-10-21,1.6,-2.8,-0.7,-1.2,0/4/0,988.8,977.8,983.9,,42.0,32.0,15.0,,,47.0,E,0.8,0,77,
-2007-10-22,4.2,-0.5,1.5,-0.9,0/4/0,986.6,969.6,975.3,,64.0,34.0,20.0,,,44.0,NE,0.5,0,76,
-2007-10-23,3.1,-4.1,-0.7,-1.1,404/0,983.0,972.1,979.5,,20.0,17.0,7.0,,,236.0,SW,0.8,2,72,
-2007-10-24,3.3,-5.3,-1.7,-1.3,304/0,983.7,981.8,982.9,,18.0,14.0,3.0,,,21.0,NE,0.0,0,71,
-2007-10-25,0.3,-4.0,-1.5,-1.1,204/0,981.8,972.4,977.3,,41.0,32.0,12.0,,,72.0,E,0.0,0,70,
-2007-10-26,-0.4,-4.2,-2.5,-1.2,204/0,979.8,972.5,977.2,,57.0,46.0,22.0,,,32.0,NE,0.3,0,70,
-2007-10-27,0.9,-3.8,-1.6,-1.1,204/0,977.2,970.9,973.2,,19.0,16.0,4.0,,,121.0,SE,6.9,13,82,
-2007-10-28,3.0,-3.8,-0.8,-1.1,204/0,972.0,969.5,970.4,,23.0,18.0,6.0,,,22.0,E,0.8,0,81,
-2007-10-29,4.7,-4.5,-3.0,-1.5,404/0,977.3,972.0,974.1,,17.0,13.0,5.0,,,265.0,N,2.0,3,83,
-2007-10-30,2.9,-5.9,-2.9,-1.2,204/0,980.8,977.4,978.8,,15.0,12.0,5.0,,,21.0,N,0.0,0,82,
-2007-10-31,3.8,-6.7,-2.9,-0.7,204/0,981.0,978.9,979.9,,10.0,7.0,4.0,,,24.0,NE,0.0,0,80,
-2007-11-01,2.7,-6.1,-2.5,-0.9,304/0,982.0,979.4,981.0,,8.0,6.0,3.0,,,240.0,NE,0.0,0,80,
-2007-11-02,2.5,-3.5,-1.5,-1.3,304/0,987.4,980.2,982.3,,18.0,16.0,4.0,,,242.0,SW,0.0,0,78,
-2007-11-03,0.1,-4.0,-3.0,-1.2,204/0,994.0,987.4,991.4,,18.0,16.0,7.0,,,241.0,SW,0.0,0,77,
-2007-11-04,1.6,-6.5,-2.4,-1.0,204/0,993.8,983.3,989.2,,34.0,28.0,8.0,,,20.0,N,0.0,0,76,
-2007-11-05,2.4,-1.3,-0.4,-0.9,204//,983.4,978.7,980.5,,27.0,20.0,7.0,,,69.0,SE,0.0,0,75,
-2007-11-06,2.7,-0.5,0.7,-0.9,204/0,988.6,980.4,985.0,,31.0,25.0,7.0,,,28.0,NE,0.3,0,75,
-2007-11-07,5.0,-1.2,-0.1,-0.8,204/0,998.2,988.6,993.8,,9.0,6.0,2.0,,,42.0,SE,2.5,5,80,
-2007-11-08,2.1,-2.2,-0.7,-9.9,304/0,1001.2,998.2,1000.4,,9.0,7.0,2.0,,,44.0,NW,1.0,4,82,
-2007-11-09,5.5,-3.1,-0.1,-0.6,204/0,1005.2,1000.8,1003.1,,8.0,8.0,2.0,,,272.0,NE,0.0,0,80,
-2007-11-10,2.4,-1.7,-0.3,-0.5,20400,1005.3,1000.3,1002.4,,8.0,6.0,3.0,,,284.0,W,0.0,0,77,
-2007-11-11,-0.5,-2.6,-1.6,-0.4,20400,1002.2,1000.4,1001.0,,9.0,8.0,5.0,,,294.0,W,0.3,0,76,
-2007-11-12,-0.5,-2.0,-1.5,-0.3,0/400,1006.8,1002.2,1004.2,,17.0,15.0,8.0,,,245.0,SW,0.0,0,75,
-2007-11-13,1.7,-2.6,-1.8,-0.5,204/0,1008.6,1004.4,1007.4,,16.0,14.0,6.0,,,207.0,SW,0.0,0,75,
-2007-11-14,3.3,-2.3,-0.9,-0.5,204/0,1004.4,999.9,1002.2,,11.0,10.0,4.0,,,236.0,SE,0.8,1,76,
-2007-11-15,5.4,-1.2,0.7,-0.7,30400,999.8,981.3,993.1,,37.0,26.0,11.0,,,72.0,E,1.3,2,78,
-2007-11-16,3.2,-1.5,0.1,-0.8,20400,985.5,979.4,983.1,,26.0,20.0,8.0,,,70.0,NW,1.0,0,78,
-2007-11-17,0.1,-1.9,-1.3,-0.8,0/700,984.2,980.2,981.3,,14.0,12.0,6.0,,,191.0,SW,0.5,0,78,
-2007-11-18,1.1,-2.3,-1.2,-1.1,40700,985.1,980.1,982.2,,8.0,7.0,3.0,,,121.0,NE,0.0,0,78,
-2007-11-19,6.1,-3.5,-1.0,-0.7,40700,986.3,983.5,984.5,,15.0,13.0,4.0,,,228.0,N,0.5,2,80,
-2007-11-20,-1.3,-3.4,-2.1,-9.9,0/700,995.1,986.3,991.4,,28.0,22.0,14.0,,,228.0,SW,0.0,0,78,
-2007-11-21,0.6,-4.0,-2.4,-1.0,0/700,995.0,986.7,991.1,,26.0,21.0,8.0,,,212.0,SW,0.0,0,76,
-2007-11-22,-0.8,-3.4,-2.1,-0.7,20600,998.4,987.0,992.6,,28.0,24.0,12.0,,,226.0,SW,0.0,0,75,
-2007-11-23,2.2,-2.9,0.0,-0.8,30600,998.1,966.5,984.2,,49.0,40.0,17.0,,,29.0,NE,8.6,1,76,
-2007-11-24,1.9,-1.1,0.2,-1.4,30600,967.9,961.7,964.3,,43.0,28.0,18.0,,,351.0,N,2.3,1,77,
-2007-11-25,1.6,-1.5,0.0,-0.9,30600,979.1,967.9,973.8,,22.0,18.0,9.0,,,69.0,E,0.0,5,82,
-2007-11-26,3.7,-1.7,0.0,-0.5,30600,979.7,976.0,977.5,,22.0,14.0,5.0,,,82.0,NW,0.0,0,78,
-2007-11-27,4.8,-1.9,0.4,-0.9,20600,985.5,976.3,979.5,,14.0,13.0,5.0,,,314.0,NW,0.0,0,74,
-2007-11-28,2.4,-1.4,0.4,-0.5,20600,992.1,985.5,989.8,,34.0,26.0,11.0,,,17.0,N,0.0,0,73,
-2007-11-29,3.9,-1.9,0.5,-0.5,20600,997.2,988.4,992.2,,15.0,12.0,4.0,,,147.0,SW,0.0,0,72,
-2007-11-30,3.2,-2.5,0.2,-0.3,20600,997.5,979.8,989.9,,11.0,10.0,4.0,,,324.0,NW,0.0,0,68,
-2007-12-01,7.1,0.6,3.0,0.1,20600,981.7,975.1,979.4,,45.0,37.0,15.0,,,30.0,NE,1.5,0,58,
-2007-12-02,4.5,1.9,2.9,-0.3,20600,975.5,967.8,970.5,,54.0,32.0,18.0,,,24.0,NE,4.3,0,54,
-2007-12-03,5.0,-0.3,1.3,-0.3,00600,977.8,969.5,972.9,,22.0,17.0,4.0,,,42.0,NW,0.0,0,44,
-2007-12-04,-0.1,-1.3,-1.0,-0.1,00600,982.8,977.8,980.1,,19.0,17.0,12.0,,,237.0,SW,0.0,0,42,
-2007-12-05,-0.1,-1.4,-0.8,-0.1,20600,994.0,982.8,988.9,,18.0,15.0,8.0,,,227.0,SW,0.0,0,38,
-2007-12-06,2.8,-1.3,0.3,-0.2,20400,993.8,970.2,983.9,,37.0,29.0,16.0,,,25.0,NE,0.0,4,42,
-2007-12-07,3.0,-1.5,-0.2,-0.4,20400,970.0,963.1,965.8,,31.0,25.0,13.0,,,235.0,SW,10.4,0,41,
-2007-12-08,4.2,-1.9,0.2,-0.2,20400,968.0,966.0,966.7,,24.0,21.0,7.0,,,227.0,SW,0.0,0,40,
-2007-12-09,2.6,-1.9,0.5,0.3,20400,975.2,968.0,971.9,,22.0,17.0,7.0,,,190.0,SW,0.0,0,33,
-2007-12-10,3.8,-1.7,-0.1,0.6,20400,975.7,964.9,972.6,,22.0,15.0,6.0,,,124.0,SE,0.5,0,31,
-2007-12-11,2.8,-0.9,0.6,-0.6,20400,965.0,958.9,961.8,,20.0,17.0,7.0,,,336.0,NW,2.3,0,28,
-2007-12-12,3.7,-1.4,0.4,-0.6,20400,969.8,963.3,964.6,,17.0,15.0,5.0,,,30.0,N,0.0,0,24,
-2007-12-13,2.3,-0.5,0.4,0.5,20400,985.7,969.9,979.8,,29.0,24.0,9.0,,,30.0,SW,0.0,0,23,
-2007-12-14,3.8,0.5,1.3,0.1,00400,989.8,979.3,982.8,,37.0,30.0,14.0,,,27.0,NE,3.8,0,21,
-2007-12-15,2.8,-0.2,0.7,0.2,00400,991.7,988.3,990.0,,15.0,12.0,5.0,,,281.0,SE,3.8,0,19,
-2007-12-16,2.8,0.0,0.9,0.2,20400,995.1,989.0,992.2,,32.0,26.0,9.0,,,23.0,NW,2.0,0,17,
-2007-12-17,1.6,-0.7,0.2,-0.5,40400,1003.1,990.0,996.0,,16.0,14.0,5.0,,,328.0,SW,0.5,0,15,
-2007-12-18,2.8,-1.7,-0.1,0.2,40400,1009.1,1003.1,1006.8,,8.0,7.0,3.0,,,229.0,S,0.0,0,12,
-2007-12-19,5.3,-1.0,1.2,0.4,40400,1008.3,994.7,1002.9,,10.0,10.0,4.0,,,326.0,NW,0.0,0,8,
-2007-12-20,7.2,1.0,2.7,1.2,30400,996.7,993.4,994.7,,30.0,25.0,5.0,,,353.0,SW,0.0,0,4,
-2007-12-21,5.2,0.6,1.9,1.5,20400,999.0,996.7,998.1,,13.0,13.0,7.0,,,272.0,W,0.0,0,2,
-2007-12-22,4.0,-1.3,1.3,1.1,00400,997.3,982.5,989.1,,31.0,25.0,5.0,,,355.0,N,0.0,0,0,
-2007-12-23,4.1,0.3,2.0,0.8,20400,985.3,982.4,984.0,,25.0,22.0,8.0,,,351.0,N,1.3,0,0,
-2007-12-24,1.7,0.0,0.9,0.6,20400,987.4,983.3,985.0,,20.0,14.0,8.0,,,318.0,NW,2.0,3,3,
-2007-12-25,1.6,-2.0,0.0,1.0,30400,989.4,980.8,984.1,,24.0,21.0,9.0,,,255.0,W,0.0,0,0,
-2007-12-26,2.4,0.2,1.0,1.2,20400,998.4,989.4,995.4,,19.0,17.0,11.0,,,256.0,W,0.0,0,0,
-2007-12-27,3.6,-1.7,1.1,2.1,20400,997.7,986.7,993.8,,21.0,17.0,5.0,,,5.0,N,0.0,0,0,
-2007-12-28,4.5,2.2,3.8,1.2,30400,986.9,980.2,983.6,,37.0,31.0,17.0,,,359.0,N,0.3,0,0,
-2007-12-29,5.4,0.2,3.0,1.3,20200,987.5,975.6,982.3,,26.0,23.0,11.0,,,311.0,N,3.6,0,0,
-2007-12-30,6.1,2.6,4.0,0.8,00100,987.5,966.2,977.5,,39.0,25.0,11.0,,,353.0,E,7.9,0,0,
-2007-12-31,4.9,0.6,2.8,0.6,00100,973.5,962.5,966.6,,40.0,32.0,15.0,,,1.0,NW,0.5,0,0,
-2008-01-01,4.0,1.1,2.5,1.8,2/6/0,973.4,965.4,968.6,,32.0,26.0,11.0,,,5.0,N,4.8,0,0,
-2008-01-02,3.5,0.0,1.6,1.5,2/6/0,974.2,968.2,970.3,,19.0,18.0,7.0,,,302.0,NW,1.3,0,0,
-2008-01-03,3.0,-0.6,1.1,1.2,2/6/0,977.3,974.2,976.0,,17.0,16.0,5.0,,,328.0,SE,0.3,0,0,
-2008-01-04,4.4,-0.2,2.0,1.5,2/6/0,979.1,975.2,976.5,,7.0,7.0,3.0,,,259.0,SW,0.0,0,0,
-2008-01-05,3.7,0.1,1.4,2.5,2/4/0,986.4,979.1,983.1,,26.0,18.0,6.0,,,253.0,W,0.0,0,0,
-2008-01-06,2.7,-0.5,0.9,1.5,2/6/0,988.0,985.4,986.3,,20.0,19.0,8.0,,,259.0,W,0.0,0,0,
-2008-01-07,5.6,-0.8,1.9,1.6,2/6/0,988.8,988.0,988.5,,7.0,7.0,3.0,,,271.0,NW,0.0,0,0,
-2008-01-08,4.4,1.3,2.9,0.6,0/6/0,988.3,984.2,985.7,,32.0,19.0,11.0,,,90.0,E,0.0,0,0,
-2008-01-09,6.2,1.0,3.5,1.8,2/6/0,984.2,980.7,982.0,,16.0,12.0,4.0,,,211.0,W,0.0,0,0,
-2008-01-10,6.3,-0.1,2.3,2.5,2/4/0,989.0,981.5,985.4,,11.0,10.0,5.0,,,336.0,N,0.0,0,0,
-2008-01-11,3.8,-0.2,1.3,1.3,3/6/0,988.8,980.6,984.8,,12.0,12.0,6.0,,,308.0,NW,0.0,0,0,
-2008-01-12,6.0,0.2,2.4,2.5,2/4/0,982.1,979.8,980.7,,12.0,9.0,3.0,,,223.0,SW,0.0,0,0,
-2008-01-13,2.7,-0.1,1.3,1.2,2/6/0,982.3,980.3,981.6,,16.0,12.0,7.0,,,348.0,N,0.5,0,0,
-2008-01-14,3.8,-0.5,0.5,1.2,2/6/0,980.3,977.1,978.2,,24.0,20.0,9.0,,,239.0,SW,2.0,8,0,
-2008-01-15,4.9,-0.4,2.4,1.3,3/4/0,987.8,979.1,983.8,,19.0,13.0,5.0,,,48.0,E,0.0,0,0,
-2008-01-16,4.1,-1.5,1.4,1.6,2/4/0,995.2,987.8,991.9,,19.0,12.0,7.0,,,47.0,NE,0.0,0,0,
-2008-01-17,3.6,0.9,2.2,2.5,2/4/0,996.1,995.1,995.8,,11.0,11.0,8.0,,,276.0,W,0.0,0,0,
-2008-01-18,3.3,0.9,1.8,1.8,2/4/0,995.6,994.0,994.4,,14.0,10.0,4.0,,,304.0,N,0.3,0,0,
-2008-01-19,4.4,1.3,2.7,1.3,2/4/0,995.1,987.6,990.1,,35.0,29.0,10.0,,,2.0,N,2.5,0,0,
-2008-01-20,3.8,0.4,1.7,1.0,2/4/0,987.5,973.3,980.1,,16.0,14.0,6.0,,,266.0,NW,23.6,5,0,
-2008-01-21,5.7,0.4,2.7,1.2,2/4/0,983.1,965.4,971.6,,30.0,19.0,8.0,,,43.0,E,1.0,0,0,
-2008-01-22,3.7,0.8,1.9,0.6,2/4/0,992.5,969.2,982.9,,27.0,20.0,11.0,,,350.0,NW,7.9,2,0,
-2008-01-23,4.7,0.5,2.7,0.6,2/4/0,994.3,982.7,987.1,,41.0,35.0,15.0,,,360.0,NW,9.1,0,0,
-2008-01-24,5.1,1.5,2.9,0.9,2/4/0,1004.7,994.3,1001.5,,41.0,31.0,11.0,,,360.0,NW,0.3,0,0,
-2008-01-25,6.5,2.0,4.7,1.0,2/4/0,999.5,984.9,988.8,,67.0,49.0,28.0,,,2.0,N,9.4,0,0,
-2008-01-26,4.0,1.0,2.2,-0.7,2/4/0,1002.5,990.8,995.8,,25.0,20.0,12.0,,,316.0,NW,0.8,0,0,
-2008-01-27,5.8,2.1,4.0,0.4,4/4/0,1004.9,992.2,1000.5,,46.0,35.0,17.0,,,4.0,N,1.8,0,0,
-2008-01-28,5.4,1.0,2.5,0.9,2/4/0,993.2,988.9,990.4,,16.0,10.0,5.0,,,332.0,NW,5.3,0,0,
-2008-01-29,3.1,0.5,1.5,0.8,0/4/0,996.1,983.1,991.3,,12.0,12.0,6.0,,,269.0,NW,10.4,0,0,
-2008-01-30,2.3,1.3,1.7,1.1,0/4/0,991.4,982.8,988.4,,22.0,18.0,8.0,,,249.0,SW,1.3,0,0,
-2008-01-31,6.7,-0.5,2.4,1.5,0/4/0,990.5,986.6,988.5,,15.0,13.0,3.0,,,358.0,N,0.0,0,0,
-2008-02-01,5.9,1.0,2.9,1.3,0/4/0,993.6,986.8,990.1,,12.0,11.0,4.0,,,323.0,NW,0.5,0,0,
-2008-02-02,3.6,1.0,2.1,1.4,0/6/0,996.2,993.6,995.5,,23.0,21.0,9.0,,,252.0,W,0.5,0,0,
-2008-02-03,3.5,0.5,1.6,1.2,0/6/0,995.9,986.3,990.5,,10.0,10.0,5.0,,,276.0,W,0.3,0,0,
-2008-02-04,3.2,0.1,1.4,1.0,0/6/0,988.9,981.1,986.3,,13.0,11.0,4.0,,,318.0,NW,0.3,0,0,
-2008-02-05,3.4,0.3,1.3,1.1,0/6/0,981.1,978.9,979.7,,17.0,11.0,5.0,,,48.0,NW,0.0,0,0,
-2008-02-06,2.5,-0.3,0.8,-0.2,0/6/0,992.4,980.5,987.0,,19.0,17.0,9.0,,,259.0,NW,0.3,0,0,
-2008-02-07,1.9,-0.3,1.1,0.1,0/6/0,993.9,991.0,992.7,,22.0,20.0,12.0,,,257.0,W,0.3,0,0,
-2008-02-08,2.5,0.2,1.3,0.9,0/4/0,998.7,990.8,993.7,,20.0,18.0,11.0,,,247.0,SW,0.0,0,0,
-2008-02-09,2.9,0.6,1.4,1.2,0/4/0,1006.2,998.8,1003.1,,23.0,19.0,11.0,,,248.0,W,0.0,0,0,
-2008-02-10,4.3,-1.5,0.8,1.1,0/6/0,1005.6,988.7,1000.5,,37.0,24.0,9.0,,,0.0,N,0.0,0,0,
-2008-02-11,6.4,2.5,4.3,1.4,0/6/0,988.7,975.5,979.2,,47.0,36.0,11.0,,,358.0,N,0.3,0,0,
-2008-02-12,5.5,1.9,2.7,2.0,0/7/0,975.5,969.0,971.9,,14.0,12.0,4.0,,,230.0,S,2.0,0,0,
-2008-02-13,2.0,0.4,1.3,1.1,0/7/0,984.5,971.8,979.1,,20.0,19.0,11.0,,,293.0,NW,5.8,0,0,
-2008-02-14,5.0,-1.0,1.8,1.5,0/7/0,986.9,984.1,985.9,,41.0,34.0,11.0,,,358.0,N,0.0,0,0,
-2008-02-15,5.2,4.1,4.5,1.8,0/7/0,984.5,978.1,982.2,,54.0,42.0,27.0,,,356.0,N,2.3,0,0,
-2008-02-16,6.8,1.8,4.2,1.6,0/6/0,985.6,980.8,983.9,,47.0,33.0,15.0,,,358.0,N,4.1,0,0,
-2008-02-17,3.9,0.5,2.5,0.9,0/6/0,983.3,979.5,982.0,,29.0,22.0,9.0,,,351.0,NW,5.6,0,0,
-2008-02-18,3.4,0.6,2.1,1.3,0/6/0,982.6,971.2,978.0,,46.0,39.0,11.0,,,355.0,N,0.8,0,0,
-2008-02-19,3.7,0.4,2.4,1.5,0/6/0,976.8,957.4,965.2,,52.0,41.0,14.0,,,12.0,N,1.8,0,0,
-2008-02-20,1.6,-0.3,0.7,1.4,0/7/0,976.1,959.9,971.4,,29.0,25.0,13.0,,,265.0,W,0.0,0,0,
-2008-02-21,3.2,0.4,2.0,1.4,0/6/0,975.7,967.7,970.4,,44.0,33.0,16.0,,,7.0,N,0.5,0,0,
-2008-02-22,5.2,0.7,1.9,1.4,0/7/0,984.7,970.0,979.0,,31.0,25.0,9.0,,,8.0,NW,0.0,0,0,
-2008-02-23,5.3,1.9,3.7,0.3,0/6/0,983.3,968.1,974.5,,60.0,50.0,22.0,,,2.0,NW,7.4,0,0,
-2008-02-24,3.9,0.7,2.9,0.5,0/6/0,986.7,980.4,984.1,,36.0,30.0,20.0,,,322.0,NW,4.8,0,0,
-2008-02-25,4.7,1.1,2.3,-0.1,0/7/0,1000.2,986.7,996.2,,25.0,22.0,9.0,,,302.0,NW,1.3,0,0,
-2008-02-26,6.5,0.3,3.1,1.1,0/6/0,1000.4,989.4,995.9,,34.0,20.0,6.0,,,129.0,E,0.5,0,0,
-2008-02-27,5.3,2.1,3.8,1.2,0/7/0,1008.2,989.9,998.7,,30.0,26.0,11.0,,,355.0,N,0.0,0,0,
-2008-02-28,2.8,0.1,1.3,1.1,0/6/0,1009.3,999.8,1004.4,,20.0,17.0,5.0,,,355.0,NW,1.3,0,0,
-2008-02-29,4.3,0.9,2.2,1.0,0/6/0,1006.8,1001.2,1004.8,,19.0,13.0,4.0,,,95.0,NW,1.0,0,0,
-2008-03-01,4.2,0.7,2.4,1.4,0/6/0,1003.3,981.4,990.5,,41.0,27.0,8.0,,,43.0,E,2.5,0,0,
-2008-03-02,3.6,0.7,2.0,0.9,0/6/0,995.5,981.6,987.4,,24.0,19.0,9.0,,,324.0,NW,11.4,0,0,
-2008-03-03,6.0,0.7,2.3,0.9,0/6/0,1004.6,994.6,1000.9,,55.0,44.0,11.0,,,2.0,NW,0.5,0,0,
-2008-03-04,5.0,1.1,3.1,1.1,0/6/0,1005.7,996.2,1003.3,,38.0,31.0,17.0,,,1.0,NW,4.6,0,0,
-2008-03-05,4.4,1.8,3.0,0.7,0/6/0,1005.9,994.4,1001.5,,25.0,22.0,8.0,,,309.0,NW,4.1,0,0,
-2008-03-06,6.6,1.2,3.3,1.1,0/6/0,994.5,972.8,982.1,,23.0,18.0,5.0,,,22.0,SE,0.0,0,0,
-2008-03-07,4.1,0.4,2.2,0.9,0/6/0,988.4,977.7,983.9,,20.0,16.0,4.0,,,355.0,NW,6.1,0,0,
-2008-03-08,5.4,1.2,3.7,0.9,0/7/0,995.8,988.3,992.4,,29.0,23.0,11.0,,,354.0,N,1.3,0,0,
-2008-03-09,3.4,0.1,1.3,1.1,0/7/0,996.1,985.7,992.3,,13.0,10.0,4.0,,,302.0,N,0.5,0,0,
-2008-03-10,4.1,0.5,1.9,1.0,0/7/0,985.8,976.9,981.6,,31.0,26.0,8.0,,,306.0,SE,12.2,0,0,
-2008-03-11,3.1,0.4,2.2,-0.1,0/4/0,985.7,974.3,981.2,,34.0,26.0,18.0,,,351.0,N,4.3,0,0,
-2008-03-12,3.0,0.1,1.2,0.8,0/7/0,975.3,968.8,971.3,,36.0,28.0,16.0,,,360.0,W,13.7,4,0,
-2008-03-13,1.6,-0.1,0.5,0.9,0/6/0,990.3,975.3,981.9,,26.0,24.0,14.0,,,260.0,W,0.0,0,0,
-2008-03-14,3.1,-1.4,0.3,0.9,0/7/0,990.7,972.3,985.8,,46.0,38.0,7.0,,,11.0,SE,0.0,0,0,
-2008-03-15,3.4,-0.4,1.7,1.3,0/6/0,982.0,968.1,971.5,,43.0,34.0,10.0,,,161.0,SE,9.1,0,0,
-2008-03-16,3.7,-1.6,0.5,0.7,0/6/0,991.6,982.1,988.0,,53.0,41.0,15.0,,,2.0,N,1.0,0,0,
-2008-03-17,5.0,1.2,2.9,1.0,0/4/0,985.4,981.3,983.6,,42.0,33.0,10.0,,,2.0,N,0.0,0,0,
-2008-03-18,2.6,-1.0,0.8,0.7,0/5/0,993.1,980.8,985.0,,12.0,11.0,4.0,,,318.0,NW,0.0,0,0,
-2008-03-19,1.4,-1.9,-0.7,0.8,0/5/0,1000.5,993.1,997.9,,14.0,13.0,4.0,,,355.0,N,0.0,0,0,
-2008-03-20,2.3,-1.0,0.1,1.4,0/6/0,1000.3,998.6,999.3,,10.0,6.0,2.0,,,235.0,SE,0.0,1,0,
-2008-03-21,0.3,-1.3,-0.5,1.1,0/5/0,1000.0,994.3,998.7,,18.0,17.0,6.0,,,257.0,W,0.0,1,0,
-2008-03-22,2.0,-2.8,-0.5,1.0,0/5/0,994.3,983.7,986.7,,25.0,21.0,6.0,,,4.0,N,0.0,0,0,
-2008-03-23,0.1,-2.9,-1.3,-0.5,0/5/0,997.7,987.5,994.3,,13.0,13.0,6.0,,,304.0,NW,2.0,0,0,
-2008-03-24,4.0,-1.4,0.2,1.1,0/6/0,995.9,957.2,974.5,,49.0,34.0,14.0,,,34.0,N,0.8,0,0,
-2008-03-25,2.1,-0.9,0.4,1.1,0/6/0,982.8,957.1,968.4,,37.0,27.0,12.0,,,128.0,SE,0.3,0,0,
-2008-03-26,-0.1,-2.4,-1.0,0.0,0/6/0,993.8,982.8,989.8,,13.0,12.0,5.0,,,255.0,N,0.3,2,0,
-2008-03-27,1.7,-1.0,0.2,0.8,0/6/0,993.6,984.8,988.4,,49.0,36.0,9.0,,,3.0,N,0.0,0,0,
-2008-03-28,2.3,0.2,1.3,0.9,0/6/0,997.1,985.8,990.2,,41.0,32.0,14.0,,,9.0,N,0.0,0,0,
-2008-03-29,3.2,-0.6,0.8,0.7,0/6/0,1001.5,990.6,998.5,,36.0,30.0,6.0,,,10.0,N,1.0,3,0,
-2008-03-30,3.4,1.4,2.5,0.5,0/6/0,992.3,986.7,989.6,,50.0,40.0,18.0,,,8.0,N,2.3,0,0,
-2008-03-31,3.6,1.4,2.6,0.3,0/5/0,994.7,980.4,990.6,,45.0,34.0,20.0,,,9.0,N,4.6,0,0,
-2008-04-01,4.7,1.0,2.7,0.6,0/4/0,980.4,963.1,972.9,,54.0,37.0,24.0,,,344.0,NW,11.4,0,0,
-2008-04-02,1.9,-0.3,0.9,-0.1,0/4/0,990.9,973.7,981.0,,39.0,25.0,12.0,,,254.0,NW,2.5,0,0,
-2008-04-03,1.9,-1.3,0.1,0.7,0/4/0,990.5,966.6,978.0,,26.0,17.0,6.0,,,84.0,N,0.5,0,0,
-2008-04-04,3.0,0.1,1.1,0.3,0/4/0,973.2,965.3,968.5,,33.0,25.0,8.0,,,352.0,N,1.3,0,0,
-2008-04-05,4.3,0.8,2.7,-0.5,0/4/0,978.6,972.9,977.8,,39.0,32.0,20.0,,,354.0,N,4.3,0,0,
-2008-04-06,5.5,3.3,4.4,0.8,0/4/0,978.8,975.7,977.5,,44.0,37.0,23.0,,,360.0,N,6.1,0,0,
-2008-04-07,4.4,1.7,3.0,0.8,0/4/0,982.2,977.6,979.2,,27.0,19.0,7.0,,,37.0,NW,0.0,0,0,
-2008-04-08,2.8,-0.8,0.8,0.3,0/4/0,989.0,982.0,985.9,,12.0,11.0,4.0,,,346.0,NW,0.0,0,0,
-2008-04-09,-0.6,-1.6,-1.2,-0.7,0/4/0,994.9,989.0,992.4,,15.0,14.0,9.0,,,302.0,NW,1.8,0,0,
-2008-04-10,0.8,-2.9,-0.9,-0.3,0/4/0,994.8,993.0,993.7,,18.0,16.0,5.0,,,246.0,SW,2.8,5,11,
-2008-04-11,-1.2,-2.5,-1.9,-0.1,0/4/0,998.7,994.6,996.2,,19.0,17.0,8.0,,,252.0,SW,0.0,0,9,
-2008-04-12,-0.8,-2.8,-2.1,-0.0,0/4/0,1000.1,997.5,999.3,,22.0,15.0,6.0,,,239.0,SW,0.0,0,7,
-2008-04-13,-1.1,-2.8,-1.9,0.7,0/4/0,997.5,984.3,989.0,,17.0,12.0,5.0,,,137.0,SE,4.1,6,9,
-2008-04-14,-1.9,-3.9,-3.0,0.4,0/4/0,991.3,986.6,989.5,,32.0,25.0,11.0,,,359.0,N,1.3,6,17,
-2008-04-15,-1.7,-4.8,-3.8,-0.7,0/4/0,988.0,985.4,986.6,,17.0,12.0,5.0,,,41.0,NW,0.0,0,14,
-2008-04-16,-1.9,-3.4,-2.7,0.7,0/4/0,988.8,984.4,986.2,,32.0,20.0,11.0,,,93.0,E,0.0,0,14,
-2008-04-17,1.2,-2.3,-1.1,0.7,0/4/0,991.2,985.8,988.8,,53.0,42.0,18.0,,,9.0,NE,0.0,0,10,
-2008-04-18,3.6,0.0,1.9,0.7,0/4/0,986.5,983.1,984.4,,48.0,38.0,21.0,,,24.0,NE,1.8,0,10,
-2008-04-19,3.4,0.1,2.0,0.6,0/4/0,989.8,980.2,985.8,,56.0,44.0,27.0,,,7.0,N,5.8,0,0,
-2008-04-20,4.4,0.8,2.5,0.6,0/4/0,980.5,950.9,963.3,,55.0,41.0,21.0,,,6.0,N,9.7,0,0,
-2008-04-21,1.5,-1.6,0.0,0.4,0/4/0,973.0,948.1,961.0,,79.0,49.0,24.0,,,354.0,N,2.8,1,1,
-2008-04-22,1.8,-1.6,-0.3,0.1,0/4/0,977.2,969.4,972.6,,32.0,26.0,12.0,,,360.0,SW,2.8,3,6,
-2008-04-23,-0.3,-4.0,-2.2,-0.0,0/4/0,977.4,972.7,974.7,,24.0,20.0,7.0,,,250.0,SW,0.0,5,11,
-2008-04-24,-1.0,-5.0,-3.3,0.0,-----,991.7,974.5,982.8,,27.0,19.0,5.0,,,128.0,NE,0.0,0,10,
-2008-04-25,-2.7,-5.6,-4.0,-1.0,-----,997.1,991.7,995.7,,13.0,12.0,5.0,,,267.0,N,0.0,1,10,
-2008-04-26,-3.4,-6.3,-4.5,-0.4,-----,996.9,994.8,996.3,,16.0,14.0,5.0,,,274.0,NE,0.0,0,8,
-2008-04-27,-3.6,-4.8,-4.3,-0.8,0/4/0,994.8,989.8,991.3,,17.0,14.0,6.0,,,275.0,SW,0.0,0,7,
-2008-04-28,-2.5,-5.0,-4.4,-0.8,0/4/0,994.7,990.4,993.2,,17.0,13.0,5.0,,,250.0,SW,0.0,0,6,
-2008-04-29,-2.0,-4.4,-3.5,-0.3,0/4/0,994.0,986.6,989.7,,20.0,15.0,4.0,,,5.0,E,0.3,2,8,
-2008-04-30,-0.9,-4.4,-2.1,-0.8,0/4/0,996.9,994.0,995.7,,15.0,13.0,3.0,,,358.0,SE,1.0,0,8,
-2008-05-01,3.9,-3.8,-1.3,-0.5,0/4/0,998.1,991.7,995.9,,32.0,16.0,4.0,,,22.0,SE,0.0,2,10,
-2008-05-02,4.4,0.7,2.6,-0.2,0/4/0,997.5,986.0,993.5,,46.0,38.0,16.0,,,357.0,N,0.3,0,10,
-2008-05-03,5.4,0.9,2.3,0.4,0/4/0,986.2,966.8,972.4,,65.0,49.0,30.0,,,11.0,N,21.3,0,0,
-2008-05-04,3.7,1.1,2.2,0.3,0/4/0,979.7,973.2,976.5,,39.0,29.0,17.0,,,11.0,N,2.8,0,0,
-2008-05-05,3.9,0.7,2.3,0.4,0/4/0,984.9,979.1,982.1,,51.0,40.0,21.0,,,8.0,N,2.3,0,0,
-2008-05-06,3.0,0.9,1.7,-0.1,0/4/0,986.3,980.9,984.0,,47.0,39.0,23.0,,,7.0,N,0.5,0,0,
-2008-05-07,3.0,0.0,1.0,0.1,0/4/0,984.2,974.6,980.1,,44.0,36.0,16.0,,,6.0,NE,0.5,0,0,
-2008-05-08,2.9,-1.3,0.9,0.1,0/4/0,984.6,971.5,978.8,,47.0,37.0,16.0,,,9.0,N,2.8,0,0,
-2008-05-09,1.2,-1.2,0.2,-0.2,0/4/0,982.4,975.5,979.9,,31.0,25.0,13.0,,,358.0,N,0.3,0,0,
-2008-05-10,1.2,0.0,0.5,-1.0,0/4/0,988.0,982.3,985.5,,29.0,25.0,15.0,,,360.0,NW,0.5,0,0,
-2008-05-11,1.2,-1.3,-0.3,-0.2,0/4/0,996.3,980.8,986.1,,20.0,19.0,10.0,,,254.0,SW,2.5,8,11,
-2008-05-12,2.4,-4.7,-1.2,-0.3,0/4/0,1000.8,996.4,999.6,,27.0,22.0,7.0,,,7.0,NE,0.0,0,10,
-2008-05-13,1.8,-1.8,0.3,-0.1,0/4/0,999.6,995.5,997.3,,37.0,28.0,8.0,,,7.0,NE,0.0,0,8,
-2008-05-14,-0.7,-4.0,-2.0,-0.9,0/4/0,997.5,995.8,996.7,,15.0,12.0,5.0,,,351.0,N,0.0,0,6,
-2008-05-15,-1.5,-4.9,-2.7,-0.9,0/4/0,1009.8,1005.7,1008.2,,18.0,17.0,7.0,,,273.0,W,0.0,0,5,
-2008-05-16,-1.5,-4.9,-2.7,-1.2,0/4/0,1009.8,1005.7,1008.2,,18.0,17.0,7.0,,,273.0,W,0.0,0,4,
-2008-05-17,-2.1,-4.9,-3.7,-0.7,0/4/0,1005.7,1000.0,1002.9,,9.0,8.0,4.0,,,347.0,N,0.0,0,4,
-2008-05-18,0.5,-3.3,-2.4,-0.8,0/4/0,1000.0,983.7,990.2,,25.0,17.0,6.0,,,169.0,SE,1.5,1,5,
-2008-05-19,-0.3,-3.5,-1.9,-0.9,0/4/0,1001.8,987.8,995.3,,26.0,17.0,6.0,,,135.0,N,0.0,2,9,
-2008-05-20,-0.5,-6.9,-3.8,-0.9,0/4/0,1004.5,1000.1,1003.2,,37.0,30.0,8.0,,,2.0,N,0.0,0,8,
-2008-05-21,2.1,-0.5,0.9,-0.9,0/4/0,1001.9,998.0,999.7,,44.0,34.0,23.0,,,360.0,N,1.8,0,7,
-2008-05-22,1.7,0.3,0.9,-0.8,0/4/0,1002.3,995.0,998.0,,49.0,41.0,28.0,,,354.0,N,2.0,0,7,
-2008-05-23,3.1,1.0,1.9,-0.5,0/4/0,997.2,977.1,990.8,,44.0,33.0,26.0,,,4.0,N,3.8,0,4,
-2008-05-24,1.8,-2.3,0.0,-0.6,0/4/0,978.9,973.0,976.3,,33.0,27.0,17.0,,,353.0,N,2.3,3,7,
-2008-05-25,0.2,-3.1,-1.7,-1.0,0/4/0,981.7,974.3,978.9,,38.0,31.0,18.0,,,360.0,N,0.5,0,4,
-2008-05-26,-1.7,-5.7,-3.6,-1.3,0/4/0,984.2,968.7,973.3,,47.0,39.0,10.0,,,4.0,N,12.7,12,28,
-2008-05-27,-1.8,-5.5,-2.6,-1.3,0/4/0,1003.8,984.2,996.4,,22.0,18.0,10.0,,,250.0,W,0.0,8,26,
-2008-05-28,0.6,-3.1,-0.9,-1.6,0/4/0,1002.2,988.2,994.8,,39.0,33.0,18.0,,,270.0,NW,2.5,0,27,
-2008-05-29,-1.3,-5.4,-4.2,-1.5,0/4/0,993.7,981.7,990.2,,48.0,38.0,24.0,,,256.0,W,0.8,0,27,
-2008-05-30,-1.1,-7.1,-4.3,-1.6,0/4/0,981.6,970.6,974.2,,79.0,46.0,27.0,,,247.0,W,0.5,0,28,
-2008-05-31,-4.2,-7.1,-5.8,-1.6,0/4/0,992.8,976.5,986.3,,40.0,32.0,22.0,,,246.0,SW,0.0,0,28,
-2008-06-01,-2.1,-4.5,-3.1,-1.3,0/4/0,1002.4,991.0,999.5,,46.0,35.0,12.0,,,241.0,SW,1.0,0,26,
-2008-06-02,-0.4,-2.8,-1.3,-1.3,0/4/0,1004.4,1001.9,1003.3,,11.0,11.0,7.0,,,323.0,NW,2.3,3,27,
-2008-06-03,-0.5,-1.7,-0.7,-1.4,0/4/0,1002.0,994.4,998.8,,14.0,13.0,9.0,,,321.0,NW,7.9,12,42,
-2008-06-04,-0.8,-5.8,-2.0,-1.6,0/4/0,994.4,987.8,990.1,,8.0,8.0,4.0,,,245.0,NW,0.3,2,42,
-2008-06-05,-3.0,-6.4,-4.6,-1.6,0/4/0,1005.6,992.6,1000.3,,8.0,7.0,2.0,,,348.0,N,0.0,0,40,
-2008-06-06,-2.2,-4.9,-3.5,-1.4,0/4/0,1000.0,997.5,999.1,,18.0,15.0,5.0,,,60.0,E,0.0,0,40,
-2008-06-07,-2.7,-4.5,-3.4,-1.2,0/4/0,999.2,995.7,996.9,,25.0,15.0,8.0,,,133.0,SE,1.3,0,38,
-2008-06-08,-1.9,-6.2,-4.4,-1.4,0/4/0,1003.4,996.9,1001.2,,9.0,10.0,3.0,,,324.0,NE,0.0,0,38,
-2008-06-09,3.2,-2.3,0.4,-0.4,0/4/0,997.4,977.5,987.8,,40.0,34.0,10.0,,,5.0,SE,0.3,0,37,
-2008-06-10,3.9,0.3,1.9,-0.8,0/4/0,979.8,975.8,976.7,,35.0,29.0,13.0,,,1.0,N,0.0,0,32,
-2008-06-11,1.1,-0.8,0.4,-0.8,0/4/0,982.2,979.6,981.4,,31.0,25.0,15.0,,,6.0,N,0.0,0,31,
-2008-06-12,0.0,-3.2,-1.8,-1.1,0/4/0,988.8,981.3,986.2,,28.0,21.0,7.0,,,12.0,SE,6.9,2,33,
-2008-06-13,-3.0,-5.0,-4.4,-1.0,0/4/0,996.5,986.5,989.1,,17.0,14.0,8.0,,,357.0,N,4.1,22,62,
-2008-06-14,-3.1,-5.2,-4.3,-1.2,0/4/0,1004.0,996.5,1001.9,,20.0,17.0,9.0,,,358.0,N,0.0,0,53,
-2008-06-15,-2.4,-4.8,-3.7,-1.0,0/4/0,1002.0,974.9,987.0,,45.0,30.0,15.0,,,358.0,E,0.3,0,46,
-2008-06-16,-1.9,-5.0,-3.6,-0.7,0/4/0,988.8,973.0,978.6,,33.0,25.0,9.0,,,56.0,E,0.0,0,35,
-2008-06-17,-4.4,-6.6,-5.9,-1.1,0/6/0,997.6,988.9,994.9,,43.0,36.0,22.0,,,359.0,N,0.3,0,33,
-2008-06-18,-2.9,-6.4,-4.8,-0.9,0/4/0,996.9,988.1,994.5,,41.0,35.0,11.0,,,2.0,SE,0.3,5,38,
-2008-06-19,0.8,-3.6,-1.1,-0.7,0/4/0,993.0,982.8,989.4,,51.0,41.0,16.0,,,2.0,N,3.1,2,40,
-2008-06-20,1.4,-1.5,0.0,-1.0,0/4/0,995.1,977.5,986.2,,44.0,37.0,20.0,,,249.0,NW,1.5,0,37,
-2008-06-21,1.6,-4.2,-1.8,-1.3,0/4/0,1004.9,995.2,1002.1,,34.0,28.0,9.0,,,1.0,N,0.0,0,37,
-2008-06-22,3.1,-0.3,1.7,-0.8,0/4/0,999.8,992.0,994.2,,48.0,39.0,25.0,,,1.0,N,1.3,0,35,
-2008-06-23,1.9,0.1,1.1,-1.3,0/4/0,1007.2,993.2,1001.7,,42.0,33.0,18.0,,,322.0,NW,2.3,0,35,
-2008-06-24,4.2,1.2,3.1,-0.7,0/4/0,1006.9,992.1,998.8,,51.0,39.0,25.0,,,9.0,N,1.3,0,31,
-2008-06-25,4.4,0.8,2.5,-0.7,0/4/0,992.4,974.3,984.4,,45.0,36.0,16.0,,,0.0,N,0.5,0,24,
-2008-06-26,1.8,-1.4,0.0,-0.9,0/4/0,974.8,965.5,969.2,,48.0,35.0,19.0,,,9.0,N,1.5,0,24,
-2008-06-27,-1.0,-4.3,-2.4,-1.0,0/6/0,975.0,968.4,973.4,,27.0,25.0,16.0,,,273.0,NW,2.8,1,32,
-2008-06-28,-1.7,-5.5,-3.8,-1.4,0/4/0,978.0,974.0,976.0,,39.0,33.0,16.0,,,251.0,W,0.5,1,35,
-2008-06-29,-1.0,-5.0,-3.0,-1.4,0/4/0,981.0,967.5,975.3,,40.0,34.0,17.0,,,268.0,W,0.5,0,34,
-2008-06-30,-0.7,-6.8,-4.3,-1.7,0/4/0,981.5,968.4,975.7,,46.0,39.0,18.0,,,253.0,W,2.3,0,32,
-2008-07-01,0.1,-3.4,-1.7,-1.6,0/4/0,973.9,962.3,968.2,,54.0,42.0,24.0,,,7.0,NW,3.8,0,38,
-2008-07-02,-0.2,-6.9,-3.2,-1.5,0/4/0,975.5,965.4,969.5,,53.0,43.0,18.0,,,7.0,W,0.0,0,31,
-2008-07-03,-2.6,-7.9,-5.2,-1.6,0/4/0,976.2,957.9,970.8,,41.0,28.0,16.0,,,8.0,N,0.5,1,30,
-2008-07-04,-3.6,-9.3,-6.4,-1.1,0/4/0,961.7,945.8,953.8,,53.0,38.0,19.0,,,124.0,E,0.5,0,30,
-2008-07-05,-5.2,-8.3,-6.8,-1.7,0/4/0,965.7,956.2,959.2,,34.0,30.0,15.0,,,300.0,NW,0.0,0,30,
-2008-07-06,-2.2,-8.8,-6.1,-0.9,0/6/0,968.0,941.1,955.8,,58.0,42.0,20.0,,,356.0,N,1.8,0,30,
-2008-07-07,-2.2,-9.6,-7.8,-1.7,0/4/0,984.3,945.8,970.2,,39.0,31.0,16.0,,,237.0,W,0.3,0,30,
-2008-07-08,-8.1,-9.3,-8.8,-1.7,0/4/0,993.0,984.4,989.8,,29.0,21.0,13.0,,,248.0,SW,0.0,1,31,
-2008-07-09,-3.1,-9.7,-7.5,-1.8,0/4/0,991.2,977.6,985.1,,44.0,37.0,23.0,,,255.0,W,1.3,0,31,
-2008-07-10,-2.9,-9.4,-7.5,-1.5,20470,998.8,990.7,995.4,,37.0,30.0,13.0,,,249.0,SW,0.0,0,30,
-2008-07-11,-1.1,-2.9,-1.3,-1.6,20470,1008.2,998.5,1003.6,,22.0,20.0,13.0,,,281.0,W,0.0,0,31,
-2008-07-12,-1.3,-6.7,-3.5,-1.7,20470,1010.6,1008.0,1009.7,,19.0,17.0,6.0,,,252.0,NE,0.0,1,31,
-2008-07-13,-3.9,-7.4,-5.8,-1.7,20470,1009.3,999.5,1005.3,,9.0,8.0,2.0,,,328.0,N,0.0,0,30,
-2008-07-14,-4.9,-6.4,-5.6,-1.7,20460,1000.8,998.0,998.9,,9.0,8.0,4.0,,,344.0,N,0.0,1,32,
-2008-07-15,-3.9,-8.0,-5.8,-1.5,20460,1006.8,1000.8,1004.0,,12.0,11.0,4.0,,,349.0,NE,0.0,0,32,
-2008-07-16,-4.6,-8.5,-6.6,-1.6,20460,1011.5,1006.7,1009.5,,12.0,10.0,4.0,,,352.0,N,0.0,0,32,
-2008-07-17,-7.2,-10.6,-9.0,-1.7,20460,1013.1,1011.3,1012.3,,7.0,5.0,2.0,,,340.0,NE,0.0,0,32,
-2008-07-18,-4.8,-8.4,-6.3,-1.5,20460,1020.0,1012.9,1015.5,,7.0,7.0,3.0,,,252.0,N,0.0,0,32,
-2008-07-19,-2.3,-7.3,-5.7,-1.5,20460,1028.1,1020.0,1024.6,,20.0,17.0,4.0,,,353.0,N,0.0,0,31,
-2008-07-20,-2.2,-5.1,-3.8,-1.4,20470,1028.0,1023.1,1025.2,,16.0,15.0,8.0,,,265.0,NW,0.0,0,31,
-2008-07-21,-1.9,-3.6,-2.7,-1.5,20470,1024.1,1022.3,1023.2,,16.0,15.0,9.0,,,255.0,W,0.0,0,31,
-2008-07-22,-2.8,-5.8,-3.8,-1.5,20670,1024.4,1018.2,1022.1,,9.0,7.0,3.0,,,258.0,N,0.0,0,31,
-2008-07-23,-2.4,-7.0,-5.4,-1.6,20670,1018.2,1013.0,1015.7,,20.0,18.0,5.0,,,354.0,N,0.0,0,31,
-2008-07-24,3.8,-4.4,-0.4,-1.4,20670,1013.1,1004.2,1007.9,,29.0,19.0,5.0,,,19.0,SE,0.0,0,31,
-2008-07-25,4.9,2.0,3.4,-1.0,0/6/0,1004.4,994.4,1000.4,,48.0,36.0,19.0,,,9.0,N,0.0,0,28,
-2008-07-26,4.4,0.3,2.3,-0.9,0/6/0,995.0,984.6,990.9,,53.0,42.0,19.0,,,1.0,N,1.3,0,24,
-2008-07-27,3.2,0.8,1.9,-0.9,0/6/0,986.7,980.3,984.5,,62.0,42.0,31.0,,,1.0,N,6.4,0,24,
-2008-07-28,1.5,-1.2,0.2,-1.1,21410,985.0,979.1,982.1,,47.0,39.0,20.0,,,360.0,N,2.0,2,30,
-2008-07-29,1.5,-1.8,0.3,-0.9,21410,981.6,973.4,977.1,,55.0,45.0,23.0,,,356.0,N,5.6,0,27,
-2008-07-30,0.3,-3.1,-1.3,-1.1,0/6/0,988.7,977.5,981.1,,28.0,23.0,7.0,,,25.0,NE,0.0,0,26,
-2008-07-31,-1.2,-2.9,-2.0,-1.1,0/6/0,1003.1,988.7,995.8,,21.0,18.0,10.0,,,251.0,SW,0.0,0,26,
-2008-08-01,-2.8,-4.9,-3.7,-1.2,0/6/0,1015.4,1003.1,1009.8,,11.0,10.0,5.0,,,350.0,N,0.0,0,26,
-2008-08-02,-4.3,-6.7,-5.5,-1.4,0/4/0,1016.4,1008.6,1013.7,,11.0,11.0,4.0,,,279.0,N,0.0,0,26,
-2008-08-03,-1.6,-6.8,-4.7,-1.2,0/4/0,1008.8,998.6,1003.4,,43.0,34.0,7.0,,,4.0,N,0.0,0,26,
-2008-08-04,1.3,-2.1,0.4,-0.9,0/4/0,998.6,990.8,993.7,,51.0,41.0,30.0,,,5.0,N,1.0,0,26,
-2008-08-05,3.0,-1.2,1.3,-0.9,0/4/0,1000.6,997.2,999.1,,38.0,32.0,17.0,,,353.0,N,0.3,0,26,
-2008-08-06,0.2,-2.4,-1.2,-1.0,0/4/0,999.9,989.5,995.4,,38.0,33.0,22.0,,,0.0,N,0.0,0,26,
-2008-08-07,-1.0,-5.3,-3.1,-1.2,0/4/0,989.6,984.0,986.9,,40.0,32.0,18.0,,,7.0,N,0.0,1,27,
-2008-08-08,-4.3,-7.0,-6.0,-1.4,0/4/0,989.1,982.1,985.9,,19.0,17.0,7.0,,,249.0,W,0.0,3,34,
-2008-08-09,0.8,-5.4,-2.4,-1.2,0/4/0,982.4,963.7,975.1,,42.0,35.0,15.0,,,30.0,NE,0.0,2,34,
-2008-08-10,1.1,-1.3,-0.2,-1.4,20450,964.6,958.7,961.4,,38.0,32.0,14.0,,,25.0,N,0.3,0,33,
-2008-08-11,-1.0,-9.5,-5.8,-1.7,20450,982.1,964.6,973.4,,39.0,32.0,18.0,,,243.0,W,0.0,0,32,
-2008-08-12,-7.1,-9.8,-8.4,-1.5,20450,986.9,972.9,983.8,,33.0,28.0,11.0,,,38.0,SW,0.0,0,32,
-2008-08-13,-2.8,-11.3,-8.3,-1.7,20450,972.8,951.3,961.6,,53.0,41.0,20.0,,,30.0,SW,0.0,0,32,
-2008-08-14,-7.6,-12.2,-9.9,-1.7,20450,952.8,944.6,947.3,,34.0,26.0,15.0,,,273.0,S,0.0,0,32,
-2008-08-15,-10.2,-13.1,-11.3,-1.7,20460,971.9,952.7,964.1,,27.0,20.0,10.0,,,246.0,SW,0.0,0,30,
-2008-08-16,-2.6,-10.8,-7.9,-1.8,20460,972.4,956.8,963.7,,56.0,47.0,21.0,,,28.0,W,0.0,0,30,
-2008-08-17,-9.5,-14.5,-11.7,-1.8,20450,981.0,964.7,971.8,,32.0,24.0,17.0,,,235.0,SW,0.0,0,30,
-2008-08-18,-7.4,-14.5,-12.6,-1.8,20450,987.4,981.0,984.4,,31.0,25.0,11.0,,,242.0,SW,0.0,0,30,
-2008-08-19,0.0,-7.5,-1.9,-1.7,20450,983.6,978.8,981.7,,34.0,28.0,17.0,,,334.0,NW,0.0,27,70,
-2008-08-20,0.9,-0.1,0.4,-1.8,20450,980.1,966.4,975.3,,48.0,35.0,26.0,,,353.0,N,5.3,5,80,
-2008-08-21,0.8,-8.6,-3.2,-1.8,21450,966.6,945.1,959.1,,56.0,39.0,26.0,,,359.0,N,0.8,0,74,
-2008-08-22,-7.1,-14.9,-10.3,-1.8,31450,976.9,964.3,968.4,,37.0,29.0,17.0,,,213.0,W,0.0,0,73,
-2008-08-23,-7.3,-17.4,-14.0,-1.8,51450,984.5,974.9,980.8,,33.0,26.0,12.0,,,236.0,SW,0.0,0,71,
-2008-08-24,-11.9,-17.6,-15.7,-1.7,91450,999.2,980.9,990.7,,32.0,25.0,15.0,,,225.0,SW,0.0,0,76,
-2008-08-25,-4.0,-14.5,-9.9,-1.7,91450,1003.0,996.4,1000.4,,42.0,34.0,10.0,,,22.0,SW,0.0,2,74,
-2008-08-26,-4.0,-10.5,-7.7,-1.7,51450,1014.2,1000.1,1007.1,,28.0,23.0,8.0,,,227.0,SW,0.0,3,70,
-2008-08-27,-8.3,-11.3,-10.5,-1.7,51450,1018.5,1014.0,1016.7,,13.0,10.0,4.0,,,236.0,SW,0.0,2,72,
-2008-08-28,-6.4,-14.9,-11.7,-1.8,51450,1018.0,1014.7,1015.8,,8.0,7.0,3.0,,,239.0,NE,0.0,1,72,
-2008-08-29,-5.9,-15.7,-12.0,-1.8,51450,1019.7,1014.8,1016.9,,8.0,7.0,2.0,,,324.0,NE,0.0,0,70,
-2008-08-30,-6.7,-14.6,-11.1,-1.5,51450,1022.4,1019.5,1021.2,,6.0,5.0,2.0,,,65.0,NE,0.0,0,70,
-2008-08-31,-8.0,-14.8,-11.8,-1.7,51450,1022.0,1018.8,1020.6,,5.0,5.0,2.0,,,313.0,NE,0.0,0,70,
-2008-09-01,-10.0,-15.5,-13.1,-1.7,52450,1018.7,1016.7,1017.4,,8.0,7.0,2.0,,,222.0,NE,0.0,0,70,
-2008-09-02,-8.6,-18.9,-14.9,-1.7,92450,1018.0,1016.6,1017.2,,6.0,6.0,1.0,,,154.0,NE,0.0,0,70,
-2008-09-03,-1.6,-16.4,-8.1,-1.5,92450,1017.1,1010.4,1015.1,,12.0,9.0,3.0,,,129.0,SE,0.0,0,70,
-2008-09-04,1.1,-7.4,-1.8,-1.7,52450,1010.5,1000.9,1004.8,,14.0,12.0,4.0,,,131.0,SE,4.1,1,70,
-2008-09-05,3.9,-2.7,1.3,-0.9,41450,1000.8,976.7,990.0,,46.0,39.0,20.0,,,29.0,NE,3.3,0,69,
-2008-09-06,2.3,-8.1,-2.1,-1.5,21470,991.3,971.2,981.6,,47.0,40.0,17.0,,,30.0,W,1.8,0,61,
-2008-09-07,-1.2,-7.7,-4.9,-1.6,21670,997.6,990.3,993.9,,12.0,9.0,5.0,,,14.0,NE,0.0,0,60,
-2008-09-08,1.4,-4.8,-0.2,-1.1,21670,996.5,985.9,989.2,,53.0,41.0,21.0,,,30.0,N,1.5,0,60,
-2008-09-09,3.3,-5.4,-1.1,-1.0,21670,998.9,993.6,997.1,,40.0,32.0,14.0,,,30.0,NE,2.3,0,63,
-2008-09-10,2.9,-0.8,0.8,-1.2,21670,1008.3,993.1,1000.0,,49.0,39.0,14.0,,,35.0,NE,0.3,0,62,
-2008-09-11,2.1,0.9,1.4,-1.0,21670,1007.2,998.4,1003.1,,56.0,45.0,32.0,,,37.0,N,7.1,0,61,
-2008-09-12,2.1,-1.2,0.1,-1.4,21470,1004.4,995.7,999.6,,47.0,35.0,12.0,,,6.0,N,2.0,21,78,
-2008-09-13,1.7,-1.2,0.4,-1.1,21470,1006.5,995.2,1000.8,,58.0,40.0,23.0,,,19.0,N,2.0,0,72,
-2008-09-14,2.0,-0.9,0.6,-1.2,23470,1013.3,1006.1,1010.2,,29.0,23.0,15.0,,,335.0,N,4.1,0,72,
-2008-09-15,4.1,0.1,2.2,-0.9,23470,1006.0,994.6,999.1,,52.0,41.0,17.0,,,34.0,NE,1.3,0,68,
-2008-09-16,3.2,0.5,2.1,-0.9,0/4/0,999.3,993.7,997.9,,20.0,17.0,8.0,,,31.0,NE,0.0,0,55,
-2008-09-17,3.0,-2.5,0.1,-1.1,0/4/0,993.7,981.7,987.3,,51.0,38.0,16.0,,,36.0,SW,0.0,0,54,
-2008-09-18,1.6,-4.1,-2.2,-1.4,51450,1002.5,990.7,996.9,,17.0,13.0,4.0,,,212.0,NW,0.3,0,54,
-2008-09-19,2.7,-0.6,1.1,-1.3,41450,1003.3,988.5,996.3,,37.0,32.0,12.0,,,33.0,NE,5.8,2,56,
-2008-09-20,2.8,-2.8,-0.2,-1.6,21490,988.5,972.1,981.0,,55.0,45.0,22.0,,,28.0,W,5.8,4,68,
-2008-09-21,0.1,-2.8,-1.3,-1.5,21490,995.0,987.9,990.7,,28.0,22.0,11.0,,,323.0,NW,0.3,5,72,
-2008-09-22,2.9,-0.3,1.0,-1.5,42452,1004.0,995.1,1001.0,,21.0,18.0,9.0,,,27.0,N,10.2,8,86,
-2008-09-23,3.8,1.0,2.3,-1.4,22441,1003.4,996.0,1000.3,,31.0,24.0,17.0,,,38.0,NE,0.0,0,78,
-2008-09-24,4.2,-0.1,2.1,-1.3,22450,996.0,986.3,990.3,,41.0,34.0,12.0,,,26.0,N,0.5,0,68,
-2008-09-25,5.5,-1.7,0.7,-1.4,22450,998.0,977.5,991.6,,52.0,39.0,16.0,,,41.0,NE,4.3,0,63,
-2008-09-26,4.6,-1.5,0.6,-1.3,22450,988.5,975.4,982.1,,49.0,37.0,15.0,,,39.0,N,3.8,0,53,
-2008-09-27,3.0,-2.3,0.2,-1.2,22450,994.4,978.2,983.0,,28.0,18.0,7.0,,,235.0,SE,5.6,4,57,
-2008-09-28,2.4,-2.9,-1.2,-1.2,22450,1000.9,991.5,997.7,,26.0,21.0,8.0,,,38.0,W,0.3,0,58,
-2008-09-29,3.9,0.1,2.3,-1.3,22450,991.9,976.5,983.9,,58.0,42.0,22.0,,,356.0,N,15.0,0,54,
-2008-09-30,1.7,-1.1,0.6,-1.4,22450,982.4,974.4,978.4,,45.0,35.0,23.0,,,352.0,N,1.3,0,46,
-2008-10-01,2.8,-2.3,-0.2,-1.2,22450,987.5,980.4,985.8,,29.0,23.0,9.0,,,334.0,N,0.0,0,40,
-2008-10-02,1.6,-2.3,-0.3,-1.0,22450,980.4,964.1,969.8,,41.0,31.0,16.0,,,123.0,SE,0.8,2,49,
-2008-10-03,0.4,-3.8,-1.9,-1.1,22450,978.8,967.1,973.6,,28.0,22.0,6.0,,,118.0,N,0.0,0,48,
-2008-10-04,-0.4,-4.8,-3.2,-1.0,22450,983.4,978.8,980.2,,13.0,10.0,4.0,,,104.0,E,0.5,3,51,
-2008-10-05,-3.2,-6.1,-4.2,-1.4,0/4/0,987.5,983.4,985.1,,21.0,19.0,9.0,,,237.0,SW,0.0,0,47,
-2008-10-06,-4.3,-7.1,-5.8,-1.5,0/4/0,998.7,987.4,994.5,,28.0,22.0,13.0,,,218.0,SW,0.0,0,46,
-2008-10-07,1.9,-4.5,-1.8,-1.1,0/4/0,998.0,981.7,989.1,,45.0,36.0,10.0,,,31.0,NE,0.3,1,46,
-2008-10-08,3.1,-2.7,-0.5,-0.9,0/4/0,990.4,986.3,987.5,,14.0,11.0,4.0,,,170.0,SE,1.0,1,47,
-2008-10-09,4.4,-1.9,-0.1,-0.8,22450,994.9,986.3,992.1,,49.0,39.0,8.0,,,29.0,NW,1.0,0,44,
-2008-10-10,2.7,-0.3,1.2,-1.2,0/4/0,988.1,982.3,984.9,,40.0,31.0,17.0,,,26.0,N,11.2,0,47,
-2008-10-11,-0.4,-2.5,-1.2,-1.5,0/4/0,989.5,984.2,986.4,,25.0,21.0,15.0,,,337.0,NW,0.0,0,50,
-2008-10-12,1.0,-2.5,-0.4,-1.3,0/4/0,989.7,975.0,981.0,,35.0,29.0,17.0,,,33.0,N,0.8,1,54,
-2008-10-13,-0.2,-5.4,-3.3,-1.5,0/4/0,986.8,976.1,982.3,,23.0,18.0,9.0,,,353.0,SW,0.0,0,52,
-2008-10-14,-0.2,-7.8,-4.6,-1.0,0/4/0,991.5,986.5,988.0,,14.0,11.0,4.0,,,217.0,SW,0.5,0,50,
-2008-10-15,1.1,-5.1,-3.6,-1.3,22450,996.9,988.7,994.4,,31.0,19.0,4.0,,,44.0,SE,0.0,0,50,
-2008-10-16,2.3,-1.6,0.4,-0.9,0/4/0,988.8,969.1,976.6,,49.0,39.0,21.0,,,26.0,NE,3.3,0,49,
-2008-10-17,0.7,-1.6,-0.7,-0.9,0/4/0,997.7,984.1,994.4,,32.0,25.0,10.0,,,257.0,W,4.8,0,54,
-2008-10-18,4.0,-1.0,1.4,-0.8,0/4/0,997.5,982.8,990.0,,42.0,34.0,11.0,,,45.0,SE,3.8,0,55,
-2008-10-19,5.0,1.7,3.4,-0.5,0/4/0,983.9,976.8,979.5,,42.0,35.0,20.0,,,27.0,NE,1.0,0,55,
-2008-10-20,3.2,-0.6,2.1,-0.4,0/4/0,991.0,980.0,984.6,,45.0,27.0,17.0,,,26.0,NE,0.5,0,43,
-2008-10-21,2.8,-2.8,-0.6,-0.3,0/4/0,993.7,990.1,992.4,,25.0,23.0,5.0,,,29.0,NE,1.3,3,44,
-2008-10-22,3.3,-0.1,1.4,-0.3,0/4/0,990.1,977.2,983.4,,47.0,37.0,26.0,,,35.0,NE,0.0,0,43,
-2008-10-23,1.8,-2.7,-0.4,-0.4,0/4/0,982.6,976.8,980.7,,42.0,33.0,12.0,,,52.0,NW,0.5,0,42,
-2008-10-24,3.3,-1.1,0.7,-0.2,0/4/0,979.9,968.2,973.3,,38.0,26.0,13.0,,,121.0,E,0.3,2,43,
-2008-10-25,-0.2,-2.2,-1.3,-0.6,0/4/0,980.6,975.6,977.2,,22.0,18.0,9.0,,,344.0,NW,2.8,0,45,
-2008-10-26,3.1,-1.9,-0.4,-0.5,0/4/0,985.2,980.6,983.0,,16.0,13.0,4.0,,,270.0,NE,0.8,2,45,
-2008-10-27,3.9,-1.3,1.1,-0.3,0/4/0,986.1,975.4,982.8,,57.0,45.0,10.0,,,31.0,SE,0.8,0,43,
-2008-10-28,3.0,0.4,1.7,-0.1,0/4/0,978.8,971.3,975.6,,42.0,35.0,20.0,,,31.0,N,0.3,0,42,
-2008-10-29,2.1,-1.0,0.7,-0.2,0/4/0,971.6,966.4,968.9,,28.0,23.0,11.0,,,21.0,N,1.8,3,43,
-2008-10-30,3.8,-0.3,1.4,-0.3,0/4/0,970.9,945.6,957.2,,43.0,34.0,16.0,,,22.0,E,0.3,0,36,
-2008-10-31,3.8,0.1,1.1,-0.3,0/4/0,958.3,945.9,952.5,,40.0,33.0,9.0,,,26.0,N,0.8,0,35,
-2008-11-01,1.8,-0.9,0.1,-0.3,0/4/0,969.9,958.4,964.0,,16.0,14.0,4.0,,,124.0,NW,0.8,0,35,
-2008-11-02,0.4,-1.5,-0.8,-0.0,0/4/0,976.2,969.9,973.6,,16.0,13.0,5.0,,,12.0,SW,0.3,1,34,
-2008-11-03,1.2,-2.5,-1.1,-0.1,0/4/0,976.3,972.2,974.7,,16.0,14.0,5.0,,,19.0,SE,2.5,1,34,
-2008-11-04,3.6,-3.5,-1.0,-0.2,0/4/0,972.3,968.2,969.6,,14.0,11.0,4.0,,,19.0,NE,0.0,0,33,
-2008-11-05,0.4,-2.8,-1.3,0.0,0/4/0,984.8,970.4,976.8,,19.0,17.0,6.0,,,236.0,SW,0.0,0,32,
-2008-11-06,-1.3,-2.9,-2.1,0.3,0/4/0,988.5,984.8,987.5,,23.0,19.0,9.0,,,204.0,SW,0.0,0,31,
-2008-11-07,0.8,-3.3,-1.4,-0.1,0/4/0,988.8,985.4,987.5,,13.0,10.0,4.0,,,119.0,E,0.0,0,30,
-2008-11-08,1.6,-1.3,-0.1,-0.3,0/4/0,985.4,972.9,979.7,,24.0,19.0,10.0,,,118.0,E,0.0,0,30,
-2008-11-09,3.2,-1.5,0.2,0.0,0/4/0,976.9,970.7,972.5,,21.0,15.0,7.0,,,122.0,SE,0.0,0,29,
-2008-11-10,2.8,-2.8,-0.7,-0.0,0/4/0,984.6,974.4,981.4,,26.0,23.0,9.0,,,49.0,SW,0.0,0,28,
-2008-11-11,3.6,-0.6,1.8,-0.1,0/4/0,974.4,967.9,969.8,,54.0,40.0,19.0,,,30.0,NE,0.0,0,26,
-2008-11-12,2.8,0.0,1.5,-0.1,0/4/0,972.6,969.8,970.8,,25.0,22.0,13.0,,,29.0,NE,0.0,0,24,
-2008-11-13,3.2,0.0,1.0,-0.4,0/4/0,982.3,972.6,976.9,,24.0,21.0,9.0,,,48.0,NE,0.3,0,23,
-2008-11-14,4.6,-1.3,0.1,-0.1,0/4/0,995.3,982.2,988.7,,15.0,13.0,4.0,,,243.0,NW,1.8,0,23,
-2008-11-15,1.1,-1.9,-0.9,0.4,0/4/0,997.4,988.9,995.2,,16.0,15.0,7.0,,,242.0,W,0.5,0,21,
-2008-11-16,-0.3,-2.0,-1.0,-0.4,0/4/0,991.1,983.5,986.1,,18.0,15.0,6.0,,,240.0,SW,4.8,0,21,
-2008-11-17,2.9,-1.1,0.2,0.1,0/4/0,994.6,984.7,991.5,,47.0,38.0,14.0,,,31.0,SW,1.3,10,24,
-2008-11-18,3.2,0.8,1.8,0.2,0/4/0,994.0,984.6,990.0,,40.0,32.0,18.0,,,21.0,N,7.1,0,14,
-2008-11-19,4.2,1.7,2.8,-0.0,0/4/0,993.1,978.8,984.7,,50.0,40.0,22.0,,,30.0,N,5.8,0,3,
-2008-11-20,2.2,0.5,1.4,-1.0,0/4/0,979.0,976.8,977.9,,49.0,30.0,21.0,,,343.0,N,0.8,0,0,
-2008-11-21,2.7,0.9,1.9,-0.3,0/4/0,977.5,965.3,971.6,,44.0,35.0,25.0,,,31.0,NE,6.1,0,0,
-2008-11-22,3.9,1.7,2.6,-0.1,0/4/0,972.6,968.2,970.8,,42.0,34.0,24.0,,,20.0,N,4.3,0,0,
-2008-11-23,2.8,0.3,1.7,0.1,0/4/0,974.2,967.8,969.8,,31.0,26.0,17.0,,,30.0,N,1.0,0,0,
-2008-11-24,0.6,-1.4,-0.2,0.1,0/4/0,982.9,974.2,979.6,,30.0,26.0,13.0,,,30.0,NW,2.3,5,5,
-2008-11-25,3.1,0.4,1.6,0.1,0/4/0,986.0,976.2,981.3,,47.0,40.0,18.0,,,29.0,NE,1.3,0,0,
-2008-11-26,4.6,2.1,3.2,0.2,0/4/0,985.8,979.2,983.3,,44.0,36.0,20.0,,,31.0,N,3.8,0,0,
-2008-11-27,4.1,0.0,1.7,0.1,0/4/0,987.1,977.3,983.1,,66.0,30.0,18.0,,,24.0,N,2.3,0,0,
-2008-11-28,3.2,-0.7,0.6,0.3,0/4/0,997.4,986.9,992.1,,25.0,21.0,9.0,,,336.0,NW,0.0,0,0,
-2008-11-29,3.2,-0.6,1.3,-0.8,0/4/0,999.9,997.4,998.8,,20.0,17.0,7.0,,,331.0,N,9.1,0,0,
-2008-11-30,6.0,0.9,2.8,0.2,0/4/0,999.9,988.2,995.3,,46.0,36.0,14.0,,,354.0,N,2.0,0,0,
-2008-12-01,1.8,-0.4,0.7,0.5,0/4/0,999.6,987.2,992.0,,38.0,30.0,20.0,,,319.0,W,2.5,2,2,
-2008-12-02,0.9,-0.6,0.3,0.5,0/4/0,1003.3,999.3,1001.8,,20.0,17.0,7.0,,,263.0,NW,4.3,0,0,
-2008-12-03,1.5,0.2,1.1,-1.3,0/4/0,1001.2,985.7,992.6,,49.0,33.0,21.0,,,338.0,W,3.3,0,0,
-2008-12-04,0.5,-1.3,-0.3,-1.2,0/4/0,985.6,978.0,981.8,,60.0,26.0,17.0,,,262.0,W,0.5,0,0,
-2008-12-05,0.3,-1.4,-0.4,-1.2,0/4/0,978.2,974.7,976.5,,32.0,25.0,13.0,,,232.0,W,3.8,5,5,
-2008-12-06,-0.1,-2.0,-0.9,-0.8,0/4/0,977.8,965.9,970.9,,24.0,18.0,11.0,,,14.0,SW,1.5,0,0,
-2008-12-07,0.2,-2.5,-1.0,-0.8,0/4/0,981.6,966.2,972.1,,31.0,27.0,17.0,,,225.0,SW,0.0,0,0,
-2008-12-08,2.4,-1.2,-0.1,-0.6,0/4/0,989.1,981.6,986.6,,24.0,20.0,10.0,,,233.0,SW,1.5,0,0,
-2008-12-09,1.2,-0.6,0.2,-1.0,0/4/0,988.3,979.1,984.7,,26.0,20.0,12.0,,,274.0,W,5.3,9,9,
-2008-12-10,4.1,-0.1,1.1,-0.3,0/4/0,987.8,971.9,982.2,,19.0,13.0,5.0,,,17.0,NW,2.5,4,4,
-2008-12-11,3.2,-2.3,0.8,-0.2,0/4/0,978.1,969.4,974.9,,51.0,35.0,17.0,,,20.0,NW,0.5,0,0,
-2008-12-12,0.0,-1.8,-0.7,-0.2,0/4/0,990.0,973.5,980.6,,30.0,25.0,18.0,,,254.0,W,0.0,2,3,
-2008-12-13,1.9,-1.9,-0.2,0.4,0/4/0,997.3,988.1,994.5,,42.0,33.0,11.0,,,32.0,SW,1.0,0,0,
-2008-12-14,1.9,-0.2,0.9,0.4,0/4/0,988.2,984.4,985.4,,41.0,32.0,12.0,,,29.0,NW,1.3,0,0,
-2008-12-15,2.1,-0.5,0.5,0.5,0/4/0,985.0,977.0,979.5,,8.0,6.0,2.0,,,104.0,NW,0.8,0,0,
-2008-12-16,4.6,0.4,1.8,0.7,0/4/0,977.2,967.7,972.3,,22.0,17.0,5.0,,,125.0,SE,3.3,0,0,
-2008-12-17,4.6,0.4,1.8,0.7,0/4/0,977.2,967.7,972.3,,22.0,17.0,5.0,,,125.0,SE,3.3,0,0,
-2008-12-18,3.9,0.8,1.9,0.9,0/4/0,976.6,968.8,972.3,,58.0,41.0,24.0,,,29.0,N,4.3,0,0,
-2008-12-19,3.2,1.1,2.4,0.9,0/4/0,979.1,969.3,975.1,,53.0,37.0,27.0,,,352.0,N,2.5,0,0,
-2008-12-20,5.8,0.6,2.1,0.7,0/4/0,988.3,979.0,985.4,,38.0,33.0,11.0,,,336.0,N,0.3,0,0,
-2008-12-21,1.9,-0.5,0.4,0.6,0/4/0,983.0,972.9,977.3,,28.0,18.0,8.0,,,213.0,W,8.1,20,20,
-2008-12-22,3.2,-1.1,0.4,1.1,0/4/0,977.1,961.4,972.5,,29.0,24.0,10.0,,,55.0,W,1.0,0,10,
-2008-12-23,3.3,-0.5,1.4,1.1,0/4/0,963.0,956.5,958.6,,30.0,24.0,11.0,,,27.0,N,2.0,0,4,
-2008-12-24,1.4,-0.5,0.5,1.6,0/4/0,976.7,963.0,969.6,,22.0,18.0,13.0,,,234.0,SW,0.0,0,5,
-2008-12-25,1.4,-0.9,0.4,1.7,0/4/0,978.3,973.2,976.6,,21.0,17.0,11.0,,,275.0,W,0.8,0,0,
-2008-12-26,4.9,-1.1,1.0,1.0,0/4/0,973.2,963.6,968.4,,21.0,18.0,5.0,,,328.0,N,0.8,0,0,
-2008-12-27,5.8,-1.0,2.7,1.6,0/4/0,976.0,963.4,968.1,,23.0,19.0,5.0,,,122.0,SE,0.0,0,0,
-2008-12-28,3.5,0.5,1.3,2.1,0/4/0,987.2,976.1,983.0,,16.0,14.0,8.0,,,238.0,W,0.0,0,0,
-2008-12-29,2.8,-1.3,0.4,2.3,0/4/0,986.8,983.3,984.7,,14.0,13.0,6.0,,,266.0,W,1.0,0,0,
-2008-12-30,4.0,-0.9,1.1,0.4,0/4/0,991.3,983.8,987.2,,13.0,11.0,4.0,,,226.0,W,0.0,0,0,
-2008-12-31,2.0,0.2,0.7,2.0,0/4/0,992.5,990.7,991.9,,17.0,14.0,7.0,,,224.0,SW,0.0,0,0,
-2009-02-01,2.4,-0.9,0.9,1.9,0/4/0,991.2,987.9,989.4,,23.0,20.0,6.0,,,236.0,W,1.8,0,0,
-2009-02-02,5.2,-1.1,1.8,2.3,0/4/0,997.2,991.1,994.9,,25.0,18.0,5.0,,,116.0,E,2.3,1,0,
-2009-02-03,2.8,-0.5,0.6,1.3,0/4/0,997.2,990.8,995.3,,20.0,17.0,7.0,,,21.0,N,1.3,1,0,
-2009-02-04,2.9,-2.4,0.5,2.3,0/4/0,996.0,986.3,990.1,,36.0,27.0,11.0,,,121.0,SE,1.0,4,0,
-2009-02-05,4.6,-0.7,1.4,2.5,0/4/0,1001.2,996.0,999.2,,13.0,11.0,4.0,,,266.0,W,0.0,0,0,
-2009-02-06,5.6,-0.4,2.2,2.0,0/4/0,1000.4,997.4,999.0,,15.0,12.0,4.0,,,17.0,SE,7.4,0,0,
-2009-02-07,7.7,1.4,4.0,2.1,0/4/0,1001.6,998.8,1000.9,,23.0,20.0,5.0,,,33.0,SE,0.3,0,0,
-2009-02-08,7.5,3.7,5.5,2.9,0/4/0,998.9,980.2,989.9,,36.0,31.0,14.0,,,29.0,NE,0.3,0,0,
-2009-02-09,5.8,2.7,4.1,2.2,0/4/0,981.3,977.9,979.7,,52.0,42.0,9.0,,,35.0,NE,0.0,0,0,
-2009-02-10,7.2,2.4,4.3,2.5,0/4/0,978.9,976.2,977.6,,32.0,25.0,7.0,,,55.0,E,0.0,0,0,
-2009-02-11,7.2,2.4,4.3,0.8,0/4/0,978.9,976.2,977.6,,32.0,25.0,7.0,,,55.0,E,0.0,0,0,
-2009-02-12,6.7,0.5,3.2,0.8,0/4/0,982.5,979.5,980.8,,7.0,6.0,2.0,,,60.0,NE,0.0,0,0,
-2009-02-13,6.0,0.2,2.8,1.8,0/4/0,985.4,979.8,982.0,,8.0,7.0,2.0,,,18.0,N,0.0,0,0,
-2009-02-14,4.7,0.0,1.9,1.9,0/4/0,989.3,985.3,987.0,,18.0,16.0,5.0,,,30.0,N,0.0,0,0,
-2009-02-15,2.3,0.9,1.6,1.7,0/4/0,994.5,989.3,992.5,,26.0,22.0,9.0,,,19.0,N,0.0,0,0,
-2009-02-16,4.8,-0.7,1.3,1.7,0/4/0,995.6,984.5,992.7,,28.0,23.0,5.0,,,25.0,SE,5.8,7,0,
-2009-02-17,7.4,0.4,4.2,2.2,0/4/0,984.5,955.5,964.6,,42.0,32.0,16.0,,,119.0,SE,0.0,0,0,
-2009-02-18,4.7,1.8,2.9,1.0,0/4/0,977.0,958.1,966.2,,30.0,21.0,10.0,,,229.0,SW,0.0,0,0,
-2009-02-19,2.0,-0.1,1.1,1.7,0/4/0,992.6,977.0,987.5,,29.0,24.0,13.0,,,241.0,SW,0.0,0,0,
-2009-02-20,3.7,-0.8,1.9,1.2,0/4/0,992.8,983.7,989.0,,35.0,31.0,10.0,,,28.0,NE,0.0,0,0,
-2009-02-21,3.8,0.9,2.2,1.5,0/4/0,983.8,973.5,978.8,,30.0,24.0,9.0,,,20.0,N,0.0,0,0,
-2009-02-22,3.4,0.3,2.0,1.7,0/4/0,985.9,974.2,979.2,,19.0,13.0,4.0,,,18.0,S,4.3,0,0,
-2009-02-23,4.7,0.5,2.5,1.8,0/4/0,986.2,967.5,978.7,,43.0,34.0,14.0,,,35.0,NE,0.5,0,0,
-2009-02-24,3.7,1.3,2.5,0.6,0/4/0,968.2,964.9,966.5,,32.0,26.0,15.0,,,21.0,N,11.4,0,0,
-2009-02-25,2.1,0.2,1.4,0.7,0/4/0,983.1,966.7,974.9,,29.0,21.0,13.0,,,321.0,NW,11.9,0,0,
-2009-02-26,3.3,0.2,1.5,0.4,0/4/0,990.9,983.1,987.6,,10.0,9.0,5.0,,,347.0,N,2.5,0,0,
-2009-02-27,5.4,-0.5,1.4,1.1,0/4/0,992.7,990.9,991.9,,20.0,17.0,3.0,,,28.0,NE,0.0,0,0,
-2009-02-28,4.2,-2.1,0.5,1.0,0/4/0,994.4,991.2,992.2,,16.0,14.0,4.0,,,34.0,NE,0.0,0,0,
-2009-03-01,2.1,-1.2,0.5,0.8,0/4/0,996.9,994.4,996.1,,53.0,17.0,5.0,,,225.0,N,2.5,5,5,
-2009-03-02,3.6,0.7,2.0,1.4,0/4/0,995.5,981.6,987.4,,24.0,19.0,9.0,,,324.0,NW,11.4,0,0,
-2009-03-03,3.0,-0.9,0.9,0.9,0/4/0,1006.8,999.9,1004.2,,9.0,8.0,3.0,,,36.0,NE,0.0,0,0,
-2009-03-04,6.3,0.6,3.4,1.7,0/4/0,1006.4,991.9,1001.1,,26.0,22.0,7.0,,,30.0,SE,0.0,0,0,
-2009-03-05,6.1,2.0,3.4,1.4,0/4/0,991.9,980.9,985.0,,22.0,19.0,5.0,,,51.0,S,0.0,0,0,
-2009-03-06,7.5,0.5,3.5,1.5,0/4/0,997.6,981.2,988.3,,20.0,13.0,3.0,,,7.0,N,0.3,0,0,
-2009-03-07,5.3,0.9,3.4,1.6,0/4/0,998.9,992.1,995.3,,28.0,23.0,7.0,,,15.0,E,0.0,0,0,
-2009-03-08,6.4,0.1,3.2,1.6,0/4/0,994.4,979.7,990.9,,59.0,45.0,10.0,,,37.0,NE,10.4,0,0,
-2009-03-09,4.9,2.7,3.6,2.0,0/4/0,987.5,980.6,984.0,,38.0,30.0,19.0,,,22.0,N,6.9,0,0,
-2009-03-10,3.7,1.4,2.6,-0.1,0/4/0,987.3,981.7,983.8,,26.0,22.0,12.0,,,336.0,N,4.8,0,0,
-2009-03-11,2.7,1.0,2.0,-0.1,0/4/0,989.2,984.1,985.5,,30.0,22.0,14.0,,,339.0,N,1.3,0,0,
-2009-03-12,2.7,1.0,2.0,0.4,0/4/0,989.2,984.1,985.5,,30.0,22.0,14.0,,,339.0,N,1.3,0,,
-2009-03-13,1.8,-1.3,0.5,0.9,0/4/0,986.9,980.0,983.8,,19.0,17.0,5.0,,,233.0,SW,0.0,0,0,
-2009-03-14,1.6,0.0,0.9,1.5,0/4/0,981.5,975.9,978.1,,35.0,25.0,13.0,,,219.0,SW,0.0,0,0,
-2009-03-15,2.3,0.5,1.6,-0.3,0/4/0,984.0,974.6,980.3,,29.0,24.0,16.0,,,336.0,NW,5.8,0,0,
-2009-03-16,2.5,0.6,1.8,0.2,0/4/0,982.7,974.6,978.0,,28.0,24.0,12.0,,,335.0,NW,8.1,0,0,
-2009-03-17,3.7,-0.3,1.6,1.3,0/4/0,982.9,981.7,982.3,,8.0,7.0,2.0,,,349.0,SE,0.0,0,0,
-2009-03-18,2.1,0.3,1.3,0.5,0/4/0,991.8,982.7,986.5,,11.0,9.0,3.0,,,336.0,NW,2.5,0,,
-2009-03-19,5.4,-2.0,1.4,0.8,0/4/0,992.4,981.1,988.7,,37.0,28.0,5.0,,,73.0,SE,0.0,0,,
-2009-03-20,5.7,2.4,3.9,1.9,0/4/0,986.6,980.6,983.5,,52.0,42.0,17.0,,,44.0,E,0.5,0,,
-2009-03-21,2.6,0.2,1.4,1.8,0/4/0,987.9,983.6,985.5,,29.0,22.0,6.0,,,77.0,E,2.8,0,,
-2009-03-22,3.9,-0.3,1.7,1.8,0/4/0,989.5,977.9,984.0,,41.0,32.0,7.0,,,72.0,E,0.0,0,,
-2009-03-23,4.9,0.8,2.7,1.8,0/4/0,979.4,966.1,973.3,,52.0,41.0,13.0,,,36.0,E,0.3,0,,
-2009-03-24,4.0,0.6,2.4,1.6,0/4/0,973.0,956.4,962.1,,67.0,44.0,30.0,,,37.0,NE,16.5,0,,
-2009-03-25,3.5,0.3,1.5,1.5,0/4/0,976.0,971.8,973.3,,26.0,21.0,6.0,,,17.0,N,0.5,0,,
-2009-03-26,1.8,-0.8,0.5,0.9,0/4/0,987.6,976.0,982.2,,17.0,13.0,7.0,,,253.0,W,1.3,2,2,
-2009-03-27,2.9,-0.6,0.9,1.0,0/4/0,988.7,985.6,987.6,,23.0,20.0,8.0,,,33.0,NE,0.8,1,1,
-2009-03-28,2.1,-1.0,0.8,0.8,0/4/0,985.6,981.8,983.5,,19.0,15.0,4.0,,,70.0,E,0.0,0,,
-2009-03-29,3.9,-0.9,0.8,1.3,0/4/0,987.4,981.7,983.5,,22.0,17.0,3.0,,,214.0,NE,0.0,0,0,
-2009-03-30,1.5,-0.6,0.7,0.1,0/4/0,994.3,987.4,991.8,,19.0,15.0,8.0,,,229.0,SW,0.5,0,,
-2009-03-31,1.0,-1.7,-0.2,0.9,0/4/0,995.1,987.5,990.9,,44.0,34.0,14.0,,,34.0,SW,1.3,0,,
-2009-04-01,2.3,-3.5,-1.0,0.9,0/4/0,1011.0,995.1,1005.2,,34.0,26.0,9.0,,,121.0,E,0.0,0,0,
-2009-04-02,0.6,-2.3,-1.2,0.4,0/4/0,1012.1,1010.5,1011.0,,15.0,14.0,7.0,,,22.0,NE,0.0,0,0,
-2009-04-03,0.3,-2.6,-1.3,0.8,0/4/0,1013.9,1012.1,1013.2,,13.0,12.0,3.0,,,42.0,NE,0.0,0,0,
-2009-04-04,-0.5,-2.0,-0.9,1.3,0/4/0,1013.3,1008.4,1011.3,,14.0,10.0,5.0,,,191.0,S,0.0,0,0,
-2009-04-05,-1.3,-2.5,-2.0,0.5,0/4/0,1008.4,1003.2,1004.7,,11.0,8.0,3.0,,,30.0,N,0.0,0,0,
-2009-04-06,-1.4,-2.4,-2.0,1.3,0/4/0,1005.1,1003.6,1004.2,,10.0,9.0,4.0,,,119.0,E,0.0,0,0,
-2009-04-07,0.2,-2.4,-1.0,1.1,0/4/0,1006.6,1004.8,1005.9,,16.0,13.0,6.0,,,213.0,SW,0.0,0,0,
-2009-04-08,0.1,-3.7,-1.5,1.0,0/4/0,1004.8,1001.4,1002.5,,12.0,9.0,4.0,,,34.0,NE,0.0,0,0,
-2009-04-09,2.0,-2.9,-0.4,1.0,0/4/0,1002.7,984.1,995.7,,28.0,22.0,6.0,,,132.0,SE,3.3,3,3,
-2009-04-10,2.5,-1.2,0.6,1.6,0/4/0,984.5,977.1,979.9,,42.0,31.0,18.0,,,79.0,E,0.0,0,1,
-2009-04-11,1.5,-0.8,0.1,0.0,0/4/0,991.9,984.6,989.3,,10.0,8.0,4.0,,,354.0,N,0.0,0,0,
-2009-04-12,4.6,-0.9,1.6,1.1,0/4/0,987.7,981.2,984.0,,39.0,30.0,10.0,,,118.0,E,0.0,0,0,
-2009-04-13,0.1,-2.4,-1.1,0.2,0/4/0,993.6,987.7,991.5,,16.0,13.0,5.0,,,28.0,NE,0.0,0,0,
-2009-04-14,2.9,-1.6,1.1,0.5,0/4/0,992.3,980.7,985.4,,42.0,32.0,16.0,,,30.0,NE,5.8,0,0,
-2009-04-15,1.4,0.4,1.1,0.7,0/4/0,996.1,985.3,991.3,,26.0,21.0,15.0,,,259.0,W,0.8,1,1,
-2009-04-16,1.2,-0.6,0.0,-0.5,0/4/0,997.8,996.0,996.8,,20.0,17.0,10.0,,,337.0,N,0.5,1,1,
-2009-04-17,-0.5,-3.5,-2.5,-0.9,0/4/0,1007.0,996.5,1000.7,,30.0,25.0,17.0,,,228.0,SW,0.0,1,3,
-2009-04-18,-0.4,-2.9,-2.1,0.1,0/4/0,1008.9,1006.8,1008.2,,24.0,18.0,11.0,,,243.0,SW,0.0,0,0,
-2009-04-19,0.0,-2.4,-0.9,0.3,0/4/0,1008.5,995.1,1004.3,,25.0,19.0,9.0,,,233.0,SW,0.0,0,0,
-2009-04-20,3.2,-2.6,0.3,0.8,0/4/0,995.0,966.5,979.2,,22.0,15.0,7.0,,,125.0,SE,6.4,3,4,
-2009-04-21,2.0,-3.5,0.6,0.9,0/4/0,970.8,963.6,966.3,,54.0,42.0,20.0,,,27.0,N,3.6,0,3,
-2009-04-22,-2.9,-4.5,-3.7,-0.2,0/4/0,972.8,968.2,971.0,,25.0,21.0,11.0,,,25.0,N,0.0,4,12,
-2009-04-23,-1.6,-5.8,-4.0,-0.8,0/4/0,974.7,968.4,972.0,,29.0,25.0,13.0,,,239.0,NW,0.0,1,15,
-2009-04-24,0.7,-2.8,-0.3,-1.0,0/4/0,973.6,964.6,968.9,,41.0,31.0,20.0,,,335.0,N,1.0,1,26,
-2009-04-25,0.3,-5.8,-4.7,-0.3,0/4/0,969.1,960.5,966.4,,32.0,27.0,11.0,,,51.0,SW,0.0,0,24,
-2009-04-26,-2.1,-7.6,-4.4,0.1,0/4/0,967.5,956.5,963.6,,43.0,34.0,14.0,,,219.0,SW,0.0,0,21,
-2009-04-27,-2.0,-7.8,-4.3,0.6,0/4/0,966.7,957.4,961.1,,46.0,38.0,15.0,,,33.0,E,0.0,0,20,
-2009-04-28,-2.7,-5.6,-4.2,0.1,0/4/0,986.0,961.0,974.8,,34.0,26.0,14.0,,,225.0,SW,0.0,0,19,
-2009-04-29,-3.6,-6.7,-5.3,0.4,0/4/0,998.1,985.9,993.8,,39.0,26.0,14.0,,,226.0,SW,0.0,0,18,
-2009-04-30,-2.2,-6.0,-4.0,0.7,0/4/0,995.0,971.5,980.3,,51.0,33.0,10.0,,,81.0,E,0.0,0,18,
-2009-05-01,0.8,-2.6,-0.5,0.3,0/4/0,989.9,978.5,982.8,,34.0,28.0,14.0,,,22.0,N,0.8,2,20,
-2009-05-02,3.0,-1.2,0.8,0.4,0/4/0,991.6,975.6,985.2,,41.0,32.0,13.0,,,33.0,NE,3.8,0,18,
-2009-05-03,3.7,-0.7,1.4,0.3,0/4/0,978.6,962.9,972.0,,43.0,35.0,14.0,,,39.0,E,0.5,0,18,
-2009-05-04,2.0,-1.7,0.0,0.2,0/4/0,964.2,953.9,960.7,,41.0,33.0,14.0,,,28.0,N,1.0,2,16,
-2009-05-05,0.8,-1.3,-0.3,0.4,0/4/0,970.8,954.6,961.4,,38.0,26.0,14.0,,,99.0,E,0.0,0,15,
-2009-05-06,1.1,-1.5,-0.1,0.4,0/4/0,985.9,970.6,979.3,,31.0,23.0,11.0,,,103.0,E,0.0,0,13,
-2009-05-07,-0.4,-1.8,-1.1,0.1,0/4/0,990.9,985.9,989.3,,24.0,18.0,7.0,,,55.0,NE,0.0,0,13,
-2009-05-08,-0.7,-3.4,-1.5,-0.5,0/4/0,993.6,990.1,991.5,,26.0,21.0,9.0,,,17.0,N,0.0,0,14,
-2009-05-09,-2.3,-4.8,-3.3,-0.6,0/4/0,994.8,993.2,994.2,,14.0,13.0,4.0,,,23.0,NE,0.0,0,13,
-2009-05-10,-3.6,-5.9,-4.6,-0.3,0/4/0,993.2,992.3,992.8,,21.0,19.0,7.0,,,33.0,NE,0.0,0,13,
-2009-05-11,-1.7,-4.5,-3.0,-0.3,0/4/0,993.2,983.7,989.9,,38.0,31.0,14.0,,,49.0,E,0.0,0,13,
-2009-05-12,-0.5,-3.3,-2.0,0.1,0/4/0,983.7,977.8,980.0,,43.0,30.0,17.0,,,75.0,E,0.0,0,13,
-2009-05-13,-0.9,-3.1,-2.1,-0.5,0/4/0,992.2,980.5,987.5,,54.0,41.0,12.0,,,28.0,N,0.0,0,13,
-2009-05-14,4.2,-0.9,2.0,-0.1,0/4/0,990.0,967.2,983.2,,61.0,48.0,25.0,,,37.0,NE,0.5,0,13,
-2009-05-15,2.8,-0.4,0.8,-0.3,0/4/0,984.9,961.9,977.3,,72.0,56.0,27.0,,,30.0,N,23.9,0,17,
-2009-05-16,3.7,1.1,2.2,0.3,0/4/0,985.0,980.3,982.5,,35.0,27.0,17.0,,,61.0,E,0.0,0,15,
-2009-05-17,2.5,-0.9,0.6,0.2,0/4/0,980.8,974.8,978.7,,45.0,36.0,19.0,,,69.0,E,0.0,0,14,
-2009-05-18,2.9,-1.4,0.8,0.1,0/4/0,975.2,970.2,972.6,,36.0,30.0,15.0,,,119.0,E,0.0,0,14,
-2009-05-19,-1.0,-4.0,-2.6,-0.3,0/4/0,980.5,973.8,976.7,,19.0,17.0,7.0,,,24.0,NE,0.0,0,12,
-2009-05-20,-3.2,-4.7,-3.9,-0.7,0/6/0,984.1,980.5,982.7,,18.0,16.0,7.0,,,24.0,NE,0.0,0,12,
-2009-05-21,-4.1,-6.3,-4.9,-0.8,0/4/0,985.2,982.4,984.3,,12.0,10.0,4.0,,,46.0,NE,0.0,0,12,
-2009-05-22,-1.7,-4.9,-2.8,-0.9,20550,988.7,983.1,985.7,,20.0,15.0,5.0,,,32.0,N,0.0,0,12,
-2009-05-23,1.5,-3.1,-1.3,-0.7,0/4/0,1002.1,988.5,994.5,,25.0,19.0,9.0,,,72.0,E,0.0,0,12,
-2009-05-24,1.8,-2.2,0.4,-0.7,0/4/0,1005.1,997.0,1002.7,,27.0,23.0,11.0,,,21.0,NE,0.0,0,12,
-2009-05-25,2.2,-2.0,0.4,-0.1,0/4/0,997.1,977.7,983.9,,38.0,29.0,11.0,,,74.0,E,0.0,0,12,
-2009-05-26,0.2,-2.9,-1.8,-0.6,20600,983.5,976.5,978.5,,24.0,21.0,4.0,,,24.0,NE,0.0,3,14,
-2009-05-27,-0.8,-3.1,-1.7,-0.7,0/4/0,997.4,983.5,990.6,,20.0,16.0,7.0,,,217.0,SW,0.0,7,21,
-2009-05-28,1.8,-3.6,-1.2,-0.6,23500,997.8,986.5,994.2,,22.0,17.0,7.0,,,32.0,SE,0.5,0,20,
-2009-05-29,5.3,-0.6,1.3,-0.5,0/4/0,989.7,979.5,983.4,,41.0,22.0,11.0,,,24.0,SW,18.8,0,13,
-2009-05-30,-0.3,-2.1,-1.2,-0.7,0/4/0,1006.2,989.7,999.0,,23.0,18.0,6.0,,,227.0,SW,0.0,3,20,
-2009-05-31,-0.5,-2.2,-1.5,-0.7,0/4/0,1006.2,999.2,1003.4,,10.0,7.0,2.0,,,126.0,SE,0.0,0,19,
-2009-06-01,-0.5,-1.9,-1.1,-0.5,0/4/0,999.2,996.6,997.8,,12.0,10.0,4.0,,,135.0,SE,0.0,2,20,
-2009-06-02,-1.3,-5.3,-3.5,-0.9,0/4/0,998.5,985.8,992.6,,12.0,11.0,4.0,,,44.0,NE,0.0,1,20,
-2009-06-03,-2.9,-4.6,-3.5,-1.0,0/4/0,985.9,983.3,984.1,,40.0,33.0,9.0,,,35.0,NE,0.0,0,20,
-2009-06-04,-4.1,-6.2,-4.8,-0.8,0/4/0,997.5,985.0,991.0,,37.0,31.0,17.0,,,32.0,NE,0.0,0,20,
-2009-06-05,0.0,-5.9,-3.0,-0.5,0/4/0,999.0,989.8,994.7,,40.0,34.0,11.0,,,32.0,SE,0.0,2,25,
-2009-06-06,-0.2,-1.2,-0.6,-0.6,0/4/0,997.5,994.0,995.3,,22.0,17.0,8.0,,,340.0,NW,0.0,5,32,
-2009-06-07,1.6,-0.7,-0.1,-0.9,0/4/0,994.2,984.9,992.2,,38.0,30.0,6.0,,,52.0,NW,0.0,1,38,
-2009-06-08,1.1,-1.8,-0.5,-1.1,21400,984.8,970.2,979.3,,36.0,29.0,8.0,,,65.0,SE,0.0,0,36,
-2009-06-09,-0.2,-4.3,-2.1,-0.8,21400,974.5,962.7,967.1,,44.0,35.0,17.0,,,63.0,NE,0.0,0,34,
-2009-06-10,-3.4,-6.2,-4.6,-1.0,0/4/0,980.9,974.5,979.3,,28.0,24.0,12.0,,,54.0,NE,0.0,4,40,
-2009-06-11,-1.0,-6.1,-3.9,-0.5,0/4/0,980.2,960.7,969.4,,64.0,47.0,19.0,,,67.0,E,0.0,0,33,
-2009-06-12,-1.2,-5.4,-3.0,-0.6,0/4/0,980.5,957.8,966.0,,54.0,41.0,24.0,,,63.0,NE,0.0,0,33,
-2009-06-13,-4.7,-7.3,-6.0,-0.9,0/4/0,992.0,980.5,988.6,,19.0,16.0,6.0,,,53.0,E,0.0,3,34,
-2009-06-14,-5.9,-9.5,-7.3,-0.8,20400,992.8,986.2,988.7,,18.0,13.0,7.0,,,72.0,NE,0.0,0,34,
-2009-06-15,-3.7,-7.6,-5.1,-0.6,0/4/0,994.0,980.1,988.2,,42.0,33.0,16.0,,,111.0,E,0.0,0,33,
-2009-06-16,0.5,-3.7,-0.9,-0.5,0/4/0,980.3,962.8,969.9,,52.0,41.0,22.0,,,72.0,E,0.8,0,33,
-2009-06-17,0.7,-3.1,-0.8,-0.5,0/4/0,970.6,960.9,965.9,,63.0,50.0,26.0,,,77.0,E,1.0,0,32,
-2009-06-18,-1.0,-3.5,-2.1,-0.7,0/4/0,969.8,966.2,967.2,,28.0,22.0,9.0,,,47.0,SE,0.0,13,43,
-2009-06-19,-3.2,-5.4,-4.4,-0.9,0/4/0,967.2,965.0,965.9,,24.0,19.0,8.0,,,72.0,E,0.0,0,43,
-2009-06-20,-3.4,-7.0,-4.8,-1.0,0/6/0,973.0,967.2,970.7,,33.0,27.0,10.0,,,94.0,E,0.0,2,44,
-2009-06-21,-5.2,-7.7,-6.5,-0.6,0/4/0,972.6,968.1,969.9,,35.0,27.0,17.0,,,118.0,E,0.0,0,36,
-2009-06-22,-5.6,-8.7,-7.3,-1.1,0/4/0,984.9,972.6,980.5,,20.0,18.0,7.0,,,96.0,E,0.0,0,35,
-2009-06-23,-4.7,-8.7,-6.5,-1.4,20400,984.6,979.3,981.9,,19.0,18.0,8.0,,,135.0,E,0.0,0,34,
-2009-06-24,-5.1,-9.2,-7.1,-1.4,0/4/0,991.5,984.6,988.8,,23.0,21.0,10.0,,,125.0,S,0.0,0,33,
-2009-06-25,-6.0,-9.4,-6.4,-1.5,0/4/0,1005.3,997.6,1002.7,,19.0,14.0,9.0,,,226.0,SW,0.0,0,32,
-2009-06-26,-6.2,-8.9,-7.3,-1.2,0/4/0,1020.3,1005.3,1012.1,,15.0,12.0,5.0,,,211.0,NE,0.0,0,32,
-2009-06-27,-4.2,-7.6,-5.4,-1.4,0/4/0,1021.0,1018.5,1019.7,,12.0,11.0,5.0,,,38.0,NE,0.0,0,31,
-2009-06-28,-2.4,-4.4,-3.6,-1.3,0/4/0,1019.1,1014.9,1017.4,,8.0,6.0,3.0,,,116.0,NE,0.0,0,31,
-2009-06-29,-1.1,-4.3,-2.4,-1.2,0/6/0,1016.2,1011.1,1014.7,,19.0,16.0,5.0,,,37.0,E,0.0,0,31,
-2009-06-30,-3.7,-5.9,-4.9,-1.4,0/4/0,1011.2,1001.5,1005.0,,12.0,9.0,3.0,,,18.0,N,0.0,0,31,
-2009-07-01,-4.9,-7.3,-6.2,-1.5,20400,1002.9,1001.1,1002.0,,20.0,16.0,10.0,,,19.0,N,0.0,2,34,
-2009-07-02,-4.9,-6.5,-5.7,-1.6,20400,1002.9,1001.8,1002.4,,22.0,20.0,12.0,,,25.0,NE,0.0,0,32,
-2009-07-03,-5.0,-6.4,-5.8,-1.7,0/4/0,1001.9,995.9,998.9,,22.0,18.0,6.0,,,26.0,N,0.0,1,33,
-2009-07-04,-5.2,-8.4,-6.8,-1.7,20400,995.9,992.0,994.1,,15.0,14.0,5.0,,,27.0,E,0.0,0,32,
-2009-07-05,-2.2,-6.5,-4.1,-1.6,20400,992.4,989.7,991.0,,6.0,5.0,2.0,,,65.0,NE,0.0,0,32,
-2009-07-06,-1.8,-6.4,-3.6,-1.6,20400,996.3,992.5,994.3,,7.0,6.0,3.0,,,43.0,NE,0.0,0,32,
-2009-07-07,-1.6,-6.0,-3.3,-1.6,20400,998.0,996.4,997.4,,19.0,16.0,5.0,,,20.0,SE,2.0,1,33,
-2009-07-08,-2.1,-5.3,-3.2,-1.6,20400,997.2,995.0,996.1,,17.0,14.0,9.0,,,18.0,N,0.0,4,39,
-2009-07-09,-4.4,-6.3,-5.5,-1.7,20400,998.0,993.0,996.3,,22.0,18.0,10.0,,,271.0,W,0.3,0,39,
-2009-07-10,-4.7,-7.4,-6.3,-1.7,21500,993.0,962.6,977.6,,25.0,19.0,11.0,,,211.0,N,0.0,2,42,
-2009-07-11,-7.4,-12.5,-10.5,-1.7,21500,972.0,962.3,967.0,,32.0,25.0,16.0,,,235.0,SW,0.0,0,39,
-2009-07-12,-11.6,-13.1,-12.5,-1.6,21400,980.5,971.7,973.9,,27.0,21.0,10.0,,,213.0,SW,0.0,3,43,
-2009-07-13,-8.4,-12.3,-9.9,-1.7,21600,994.3,980.5,987.3,,25.0,18.0,9.0,,,118.0,SW,1.5,1,43,
-2009-07-14,-7.3,-11.1,-9.0,-1.7,31400,997.3,982.2,993.6,,23.0,15.0,7.0,,,217.0,SW,0.0,0,40,
-2009-07-15,-1.9,-7.5,-3.4,-1.0,21400,982.2,968.7,973.5,,39.0,28.0,10.0,,,73.0,E,0.0,0,34,
-2009-07-16,-2.7,-8.4,-5.0,-1.6,21400,997.7,975.6,983.6,,24.0,19.0,9.0,,,242.0,SW,2.8,4,39,
-2009-07-17,-0.4,-8.3,-6.0,-1.7,33600,1017.1,997.7,1010.6,,34.0,24.0,14.0,,,351.0,SW,0.0,0,34,
-2009-07-18,-0.1,-0.8,-0.5,-1.6,33600,1011.6,1005.4,1008.0,,30.0,22.0,11.0,,,346.0,NW,7.9,7,54,
-2009-07-19,-0.7,-5.4,-2.1,-1.5,33600,1011.0,1000.4,1006.9,,10.0,9.0,3.0,,,334.0,NW,0.0,3,56,
-2009-07-20,-3.0,-8.1,-4.3,-1.7,23600,1000.3,981.5,987.9,,33.0,28.0,6.0,,,239.0,N,0.0,0,56,
-2009-07-21,-5.3,-9.2,-7.1,-1.7,23600,995.1,983.5,989.3,,31.0,24.0,11.0,,,233.0,SW,0.0,0,56,
-2009-07-22,-5.3,-8.8,-7.1,-1.7,23400,1008.0,995.0,1003.7,,21.0,16.0,7.0,,,215.0,N,0.0,0,55,
-2009-07-23,-1.2,-7.6,-3.9,-1.5,23400,1004.7,984.9,993.5,,31.0,24.0,6.0,,,243.0,SE,0.0,5,57,
-2009-07-24,-2.2,-7.4,-5.2,-1.6,33600,986.3,973.0,980.2,,38.0,31.0,22.0,,,235.0,SW,5.1,4,61,
-2009-07-25,-6.7,-10.1,-8.2,-1.7,33600,973.0,963.1,966.2,,34.0,27.0,16.0,,,243.0,SW,0.0,1,59,
-2009-07-26,-7.9,-13.3,-10.5,-1.6,44600,981.9,966.1,972.6,,35.0,27.0,11.0,,,121.0,SE,0.0,0,57,
-2009-07-27,-8.6,-13.1,-10.8,-1.6,44600,992.7,981.8,987.4,,37.0,30.0,12.0,,,119.0,E,0.0,0,57,
-2009-07-28,-3.6,-11.6,-7.3,-1.2,24600,1006.0,992.8,1002.1,,40.0,31.0,11.0,,,118.0,SE,0.0,0,54,
-2009-07-29,-4.1,-9.1,-6.5,-1.5,24600,1008.0,1004.6,1006.6,,10.0,8.0,4.0,,,82.0,NE,0.0,0,53,
-2009-07-30,-2.7,-6.9,-5.4,-1.4,24600,1006.1,1002.4,1004.9,,9.0,8.0,4.0,,,72.0,NE,0.0,0,53,
-2009-07-31,-2.4,-7.8,-4.3,-1.0,24600,1002.4,999.3,1000.7,,14.0,12.0,3.0,,,144.0,NE,0.0,2,54,
-2009-08-01,-2.3,-4.3,-3.1,-1.0,22600,1001.6,997.2,1000.4,,5.0,4.0,2.0,,,122.0,NE,0.0,0,53,
-2009-08-02,-1.2,-5.3,-3.0,-1.1,22600,997.3,989.4,992.2,,13.0,11.0,3.0,,,279.0,NE,0.0,1,53,
-2009-08-03,-1.2,-3.8,-2.4,-1.4,32600,996.7,989.7,991.8,,31.0,23.0,5.0,,,71.0,N,0.0,2,55,
-2009-08-04,-1.4,-4.2,-3.2,-1.3,32600,1004.5,996.8,1001.4,,14.0,12.0,4.0,,,295.0,NE,0.0,0,54,
-2009-08-05,-3.9,-5.4,-4.6,-1.5,32600,1005.9,1003.2,1005.2,,18.0,15.0,3.0,,,38.0,E,0.0,0,53,
-2009-08-06,0.2,-5.6,-3.4,-1.1,20600,1003.2,988.8,996.5,,22.0,19.0,6.0,,,126.0,SE,0.0,7,56,
-2009-08-07,2.4,-0.9,0.4,-0.9,20600,988.9,977.7,983.4,,37.0,31.0,13.0,,,51.0,E,0.3,0,56,
-2009-08-08,2.1,-1.7,0.1,-1.0,20600,979.2,977.4,978.3,,27.0,23.0,9.0,,,35.0,NE,0.0,0,53,
-2009-08-09,-1.5,-4.8,-2.8,-1.4,20600,988.3,979.2,983.0,,19.0,15.0,8.0,,,226.0,SW,0.0,1,53,
-2009-08-10,-4.8,-8.4,-7.2,-1.6,43600,994.6,988.2,992.1,,21.0,14.0,9.0,,,226.0,SW,0.0,0,52,
-2009-08-11,-5.1,-9.8,-7.8,-1.6,43600,1006.8,994.5,999.9,,19.0,16.0,7.0,,,25.0,NE,0.0,1,53,
-2009-08-12,-8.1,-11.2,-9.6,-1.6,60700,1013.1,1006.8,1010.9,,26.0,22.0,9.0,,,24.0,NE,0.0,0,52,
-2009-08-13,-3.8,-9.8,-7.4,-1.6,0/6/0,1014.1,1012.4,1013.3,,16.0,13.0,4.0,,,15.0,NE,1.8,0,52,
-2009-08-14,-5.2,-7.6,-6.2,-1.7,0/6/0,1016.9,1014.1,1016.1,,23.0,19.0,11.0,,,21.0,N,0.0,0,52,
-2009-08-15,-5.9,-11.2,-7.2,-1.7,0/6/0,1017.0,1014.1,1015.8,,14.0,12.0,7.0,,,10.0,NE,0.0,3,57,
-2009-08-16,-7.1,-11.1,-9.4,-1.6,0/6/0,1014.4,1013.2,1013.6,,15.0,13.0,5.0,,,22.0,NE,0.0,0,54,
-2009-08-17,-8.0,-9.5,-8.7,-1.5,21600,1017.5,1013.6,1015.2,,11.0,10.0,4.0,,,38.0,NE,0.0,0,54,
-2009-08-18,-8.2,-9.9,-9.1,-1.5,31600,1019.5,1017.5,1018.8,,12.0,9.0,3.0,,,238.0,SW,0.0,0,54,
-2009-08-19,-0.7,-8.3,-4.5,-1.5,31600,1018.6,1011.6,1014.4,,16.0,12.0,4.0,,,3.0,N,0.0,0,54,
-2009-08-20,1.0,-0.9,-0.3,-1.5,31600,1011.7,1006.4,1008.6,,37.0,29.0,14.0,,,17.0,N,0.8,0,57,
-2009-08-21,1.4,-1.3,-0.1,-1.4,21600,1010.5,1006.1,1008.2,,59.0,33.0,17.0,,,29.0,N,0.0,0,56,
-2009-08-22,2.1,-0.3,1.0,-1.4,0/6/0,1006.5,1000.5,1002.8,,46.0,37.0,16.0,,,26.0,NE,0.3,0,55,
-2009-08-23,1.1,-0.2,0.4,-1.4,0/6/0,1003.2,1000.0,1001.3,,49.0,39.0,24.0,,,34.0,NE,0.0,0,53,
-2009-08-24,2.0,-0.5,0.9,-1.3,0/6/0,1002.6,996.5,1000.6,,38.0,31.0,20.0,,,54.0,E,0.0,0,52,
-2009-08-25,1.4,-0.6,0.3,-1.4,0/6/0,1003.6,996.3,1000.2,,37.0,29.0,17.0,,,17.0,N,0.0,0,50,
-2009-08-26,0.5,-1.5,-0.5,-1.4,0/6/0,1003.6,995.1,999.2,,38.0,31.0,15.0,,,25.0,NE,0.0,0,50,
-2009-08-27,-0.5,-4.3,-1.8,-1.4,0/6/0,996.5,993.2,994.8,,28.0,23.0,7.0,,,14.0,N,0.0,0,50,
-2009-08-28,-4.3,-7.2,-5.9,-1.5,0/6/0,994.3,984.0,991.0,,26.0,21.0,7.0,,,36.0,N,0.0,0,50,
-2009-08-29,-2.0,-6.6,-3.8,-1.6,21600,984.0,973.8,976.6,,19.0,13.0,4.0,,,71.0,E,0.0,0,50,
-2009-08-30,-3.3,-5.1,-4.1,-1.6,0/6/0,981.1,975.8,978.3,,17.0,14.0,6.0,,,159.0,N,0.0,0,50,
-2009-08-31,-3.8,-7.7,-5.7,-1.6,21600,984.7,980.8,982.2,,14.0,11.0,5.0,,,19.0,NE,0.0,1,50,
-2009-09-01,-5.2,-8.6,-7.0,-1.6,31600,993.6,984.7,988.2,,8.0,7.0,4.0,,,16.0,NE,0.0,0,50,
-2009-09-02,-6.8,-10.0,-8.3,-1.5,31600,1003.8,993.6,999.3,,12.0,9.0,5.0,,,309.0,NE,0.0,0,50,
-2009-09-03,-9.2,-11.0,-10.4,-1.5,31600,1004.2,1001.1,1003.3,,15.0,13.0,5.0,,,252.0,NW,0.0,1,51,
-2009-09-04,-1.6,-11.4,-7.7,-1.5,31600,1001.1,977.9,992.1,,30.0,22.0,5.0,,,154.0,NE,0.0,0,50,
-2009-09-05,-1.7,-4.6,-3.4,-1.5,21600,978.6,971.4,974.0,,37.0,28.0,20.0,,,121.0,SE,0.0,0,49,
-2009-09-06,-1.6,-8.1,-4.7,-1.5,21600,993.1,978.6,986.6,,27.0,21.0,7.0,,,118.0,E,0.0,0,49,
-2009-09-07,-0.2,-6.2,-3.6,-1.4,21600,994.8,984.9,992.9,,46.0,38.0,8.0,,,26.0,SE,0.0,0,49,
-2009-09-08,1.0,-1.2,0.2,-1.4,21600,985.0,953.1,968.3,,61.0,50.0,36.0,,,19.0,N,0.8,0,48,
-2009-09-09,-0.9,-7.9,-3.8,-1.6,32600,989.1,954.2,971.5,,43.0,31.0,17.0,,,300.0,SW,0.0,1,52,
-2009-09-10,1.7,-7.4,-3.7,-1.5,32600,990.5,972.3,984.2,,51.0,40.0,11.0,,,39.0,SE,0.0,0,51,
-2009-09-11,1.8,-4.5,-1.2,-1.5,0/6/0,979.1,970.0,974.4,,21.0,17.0,6.0,,,248.0,E,0.0,4,52,
-2009-09-12,2.5,-4.2,-1.4,-1.5,0/6/0,975.2,958.7,964.4,,35.0,29.0,9.0,,,27.0,N,0.8,0,54,
-2009-09-13,-2.9,-12.0,-7.5,-1.7,53600,984.8,965.3,976.9,,33.0,26.0,13.0,,,326.0,NW,0.0,0,54,
-2009-09-14,0.9,-12.4,-2.5,-1.6,43600,984.8,975.4,980.7,,53.0,42.0,21.0,,,18.0,N,0.5,0,68,
-2009-09-15,2.1,0.1,1.0,-1.5,0/6/0,981.1,970.4,976.8,,73.0,51.0,31.0,,,19.0,N,8.6,0,62,
-2009-09-16,0.7,-2.9,-1.2,-1.6,21600,979.8,972.0,975.2,,45.0,33.0,22.0,,,356.0,N,0.0,0,62,
-2009-09-17,-2.3,-8.8,-3.9,-1.6,41600,987.3,976.6,979.6,,28.0,23.0,10.0,,,353.0,SW,1.3,4,63,
-2009-09-18,-1.5,-11.7,-8.1,-1.6,52600,990.3,981.0,985.8,,18.0,14.0,5.0,,,266.0,SE,0.3,1,65,
-2009-09-19,-6.5,-13.8,-10.9,-1.7,52600,996.9,983.2,990.9,,30.0,24.0,15.0,,,242.0,SW,0.0,0,64,
-2009-09-20,-10.0,-14.0,-12.2,-1.6,52600,1008.3,996.9,1002.3,,29.0,23.0,13.0,,,250.0,SW,0.0,0,62,
-2009-09-21,-6.7,-13.8,-10.6,-1.6,52600,1012.4,1008.2,1010.7,,13.0,11.0,4.0,,,234.0,SW,0.0,0,61,
-2009-09-22,-2.6,-14.1,-7.7,-1.6,52600,1011.8,999.2,1006.8,,31.0,22.0,7.0,,,149.0,SE,0.0,0,60,
-2009-09-23,0.6,-2.8,-1.1,-1.7,52600,999.3,984.2,993.0,,68.0,52.0,20.0,,,44.0,E,0.0,0,60,
-2009-09-24,-0.3,-2.6,-1.6,-1.6,22600,994.3,984.6,987.2,,30.0,23.0,9.0,,,121.0,E,0.0,3,62,
-2009-09-25,-1.2,-4.5,-2.5,-1.6,22600,999.5,988.4,994.3,,12.0,10.0,5.0,,,239.0,SW,0.0,5,66,
-2009-09-26,-4.0,-6.9,-5.8,-1.6,22700,1003.2,999.6,1002.0,,14.0,12.0,5.0,,,239.0,SW,0.8,0,65,
-2009-09-27,0.3,-5.6,-2.5,-1.5,22700,1002.6,990.0,998.1,,22.0,16.0,4.0,,,0.0,SE,0.0,0,63,
-2009-09-28,1.7,-2.0,-0.1,-1.6,22700,990.1,977.3,982.8,,51.0,37.0,17.0,,,339.0,NW,5.6,1,64,
-2009-09-29,0.7,-2.1,0.0,-1.6,22700,982.3,974.7,979.5,,32.0,24.0,15.0,,,338.0,N,2.0,2,70,
-2009-09-30,1.1,-2.6,-0.8,-1.5,22700,974.8,954.0,969.7,,66.0,54.0,22.0,,,39.0,N,0.0,0,74,
-2009-10-01,-0.3,-5.0,-2.5,-1.4,22700,969.5,952.4,961.3,,53.0,40.0,17.0,,,34.0,NE,0.0,0,69,
-2009-10-02,0.2,-5.3,-2.4,-1.4,22700,972.8,960.5,967.1,,49.0,39.0,16.0,,,19.0,E,0.0,0,69,
-2009-10-03,1.0,-5.9,-3.1,-1.5,22700,978.2,960.6,966.6,,53.0,42.0,22.0,,,244.0,NE,0.0,0,68,
-2009-10-04,0.7,-7.3,-3.6,-1.5,/////,978.2,955.6,962.3,,46.0,35.0,18.0,,,124.0,E,0.0,1,69,
-2009-10-05,0.5,-9.3,-5.7,-1.7,32700,981.7,967.2,975.7,,58.0,48.0,21.0,,,27.0,W,5.1,0,67,
-2009-10-06,1.2,-0.9,0.2,-1.7,22700,979.3,970.8,975.4,,59.0,44.0,23.0,,,17.0,N,0.0,0,70,
-2009-10-07,1.0,0.2,0.5,-1.7,32700,990.9,977.2,982.0,,44.0,32.0,23.0,,,336.0,N,0.0,0,69,
-2009-10-08,3.9,-0.9,1.3,-1.4,22700,1002.1,990.8,997.0,,29.0,25.0,11.0,,,26.0,N,0.0,0,68,
-2009-10-09,3.9,0.6,2.1,-1.4,0/2/0,996.4,979.1,983.7,,65.0,51.0,30.0,,,28.0,N,,0,63,
-2009-10-10,0.9,-0.5,0.3,-1.5,0/2/0,981.7,975.2,978.8,,55.0,43.0,27.0,,,18.0,N,,0,62,
-2009-10-11,2.6,-0.4,1.1,-1.4,22700,981.0,966.5,974.8,,39.0,32.0,17.0,,,23.0,N,,0,62,
-2009-10-12,2.2,-4.0,-0.3,-1.2,22700,978.9,966.4,970.6,,19.0,16.0,5.0,,,247.0,NW,,0,62,
-2009-10-13,-0.8,-4.7,-3.6,-1.2,0/7/0,991.4,978.9,985.6,,21.0,18.0,8.0,,,231.0,SW,,0,62,
-2009-10-14,-0.4,-5.2,-3.3,-0.1,62700,992.3,975.5,985.8,,30.0,27.0,8.0,,,26.0,SW,,0,62,
-2009-10-15,0.8,-3.7,-1.6,-1.5,22600,975.7,960.1,965.5,,42.0,17.0,7.0,,,258.0,N,,5,65,
-2009-10-16,-2.6,-10.7,-6.5,-1.7,52600,979.6,961.0,969.9,,36.0,29.0,14.0,,,227.0,SW,,0,65,
-2009-10-17,-1.2,-11.7,-7.2,-1.7,52600,981.8,965.4,976.3,,29.0,24.0,9.0,,,33.0,SE,,0,64,
-2009-10-18,-1.1,-6.6,-3.7,-1.7,52600,970.7,963.0,967.6,,38.0,31.0,9.0,,,229.0,NE,,0,64,
-2009-10-19,-1.7,-7.1,-4.1,-1.5,22600,969.7,961.5,964.1,,48.0,37.0,20.0,,,352.0,E,,0,63,
-2009-10-20,-1.4,-7.9,-4.6,-1.3,22600,972.3,966.5,969.9,,30.0,25.0,14.0,,,325.0,E,,0,63,
-2009-10-21,-2.0,-7.3,-4.9,-1.5,22600,984.9,967.6,976.7,,28.0,21.0,9.0,,,119.0,N,,0,63,
-2009-10-22,0.1,-5.1,-2.7,-1.2,22600,986.7,982.4,985.2,,24.0,21.0,11.0,,,31.0,NE,,0,62,
-2009-10-23,-0.9,-4.8,-2.9,-1.1,22600,982.4,978.2,979.5,,22.0,18.0,8.0,,,155.0,SE,,0,62,
-2009-10-24,-3.1,-7.3,-5.1,-1.1,22600,985.4,979.8,982.0,,19.0,15.0,7.0,,,143.0,E,,0,62,
-2009-10-25,-2.0,-6.6,-4.2,-1.0,22600,986.0,975.9,983.3,,42.0,32.0,14.0,,,23.0,NE,,0,61,
-2009-10-26,-0.3,-4.9,-2.3,-1.0,22600,976.9,962.1,971.0,,41.0,33.0,19.0,,,26.0,NE,,0,61,
-2009-10-27,0.0,-5.3,-3.0,-1.1,22600,962.3,957.1,959.4,,35.0,29.0,13.0,,,24.0,SW,,3,63,
-2009-10-28,-2.5,-6.4,-5.0,-1.3,22600,975.9,962.3,970.1,,25.0,21.0,12.0,,,245.0,SW,,0,62,
-2009-10-29,-0.1,-8.1,-4.5,-1.0,22600,982.6,975.9,979.0,,15.0,14.0,5.0,,,20.0,NE,,0,61,
-2009-10-30,-0.3,-4.9,-3.5,-1.2,22600,983.2,979.6,982.0,,15.0,12.0,5.0,,,276.0,SW,,7,69,
-2009-10-31,4.1,-6.7,-4.0,-0.9,22600,982.7,977.0,978.7,,12.0,10.0,4.0,,,207.0,SW,,0,72,
-2009-11-01,-1.3,-7.4,-4.5,-1.2,22600,983.9,963.7,977.8,,67.0,51.0,20.0,,,37.0,NE,,0,66,
-2009-11-02,-0.7,-6.1,-3.9,-1.3,22600,974.2,964.7,971.4,,41.0,35.0,14.0,,,35.0,W,,0,66,
-2009-11-03,0.6,-6.1,-2.9,-1.1,22600,974.8,972.1,972.9,,21.0,15.0,7.0,,,73.0,E,,0,66,
-2009-11-04,4.9,-3.5,-0.7,-0.6,22600,995.0,974.7,985.4,,28.0,21.0,10.0,,,72.0,E,,0,65,
-2009-11-05,0.0,-5.5,-4.3,-0.8,22600,996.6,987.6,993.7,,12.0,10.0,5.0,,,261.0,NE,,0,64,
-2009-11-06,0.0,-7.2,-4.1,-1.0,22600,987.6,980.9,984.3,,22.0,20.0,5.0,,,271.0,SW,,0,64,
-2009-11-07,-0.5,-5.0,-3.2,-0.8,22600,980.9,967.3,971.6,,20.0,17.0,7.0,,,257.0,SE,,3,67,
-2009-11-08,-2.9,-6.2,-4.7,-0.9,22600,984.0,969.1,976.5,,36.0,28.0,14.0,,,119.0,E,,0,67,
-2009-11-09,-1.8,-9.5,-5.4,-0.5,22600,988.4,984.0,986.9,,24.0,16.0,8.0,,,85.0,E,,0,65,
-2009-11-10,-0.9,-5.3,-3.7,-0.5,22600,989.6,988.2,988.7,,13.0,11.0,7.0,,,206.0,SW,,0,64,
-2009-11-11,1.1,-6.7,-3.3,-0.4,22600,989.7,989.0,989.3,,18.0,14.0,6.0,,,146.0,E,,0,63,
-2009-11-12,1.7,-5.3,-1.5,-0.4,22600,989.8,986.8,988.8,,27.0,21.0,9.0,,,123.0,E,,0,62,
-2009-11-13,4.2,-3.5,-0.1,-0.2,22600,986.8,982.8,984.4,,32.0,24.0,7.0,,,120.0,SE,,0,61,
-2009-11-14,3.5,-3.9,-0.2,-0.5,22600,992.1,986.1,988.6,,25.0,20.0,7.0,,,118.0,E,,0,60,
-2009-11-15,3.8,-3.8,-1.2,0.1,22600,995.7,992.1,994.4,,16.0,14.0,5.0,,,257.0,N,,0,59,
-2009-11-16,0.9,-4.0,-2.7,-0.2,22600,995.3,988.3,991.6,,16.0,14.0,6.0,,,8.0,N,,0,58,
-2009-11-17,2.0,-3.3,-0.6,-0.1,22600,993.2,987.4,989.2,,18.0,16.0,5.0,,,37.0,SE,,0,58,
-2009-11-18,4.0,-0.7,1.2,0.3,22600,1004.4,993.2,999.4,,11.0,9.0,3.0,,,136.0,SE,,2,60,
-2009-11-19,4.1,0.8,1.8,0.2,22600,1006.2,1001.2,1004.6,,31.0,25.0,5.0,,,30.0,E,,0,57,
-2009-11-20,3.2,-0.2,0.9,0.0,22600,1001.4,995.4,996.9,,23.0,14.0,3.0,,,228.0,NW,,0,57,
-2009-11-21,6.5,-2.2,0.5,0.0,22600,995.6,990.8,992.9,,12.0,9.0,3.0,,,177.0,NE,,0,56,
-2009-11-22,1.3,-2.1,-0.8,-0.2,2/6/0,990.7,986.8,987.8,,13.0,12.0,4.0,,,234.0,SW,,0,55,
-2009-11-23,1.7,-2.3,-1.3,0.1,2/6/0,989.2,985.0,988.0,,14.0,12.0,4.0,,,247.0,W,,0,54,
-2009-11-24,3.1,-1.5,1.2,-0.1,22600,985.0,968.7,975.7,,36.0,28.0,11.0,,,57.0,E,,0,54,
-2009-11-25,1.6,-0.5,0.3,-0.1,22600,972.2,969.2,971.5,,38.0,31.0,15.0,,,16.0,N,,0,54,
-2009-11-26,1.7,-1.0,-0.1,-0.8,22600,970.7,963.9,968.6,,32.0,27.0,16.0,,,35.0,N,,1,55,
-2009-11-27,4.4,0.3,2.1,0.1,22600,972.0,960.9,964.7,,37.0,26.0,11.0,,,79.0,E,,0,54,
-2009-11-28,0.6,-1.2,-0.2,0.2,22600,985.6,972.0,979.3,,13.0,12.0,7.0,,,303.0,NW,,0,51,
-2009-11-29,4.7,-1.1,1.3,0.2,22600,987.3,983.2,985.4,,32.0,25.0,8.0,,,119.0,E,,0,48,
-2009-11-30,2.5,1.0,1.9,-0.1,22600,986.0,982.8,984.6,,39.0,29.0,17.0,,,122.0,E,,0,42,
-2009-12-01,5.2,0.2,1.9,0.2,0/6/0,986.4,982.7,984.1,,35.0,24.0,10.0,,,118.0,E,0.0,0,41,
-2009-12-02,2.7,-1.7,-0.5,-0.4,0/6/0,990.5,986.4,988.3,,14.0,13.0,7.0,,,260.0,W,0.0,0,39,
-2009-12-03,1.8,-2.5,-0.8,0.0,0/6/0,990.4,981.6,986.6,,17.0,15.0,7.0,,,255.0,W,0.0,0,39,
-2009-12-04,0.6,-1.1,-0.2,0.1,0/8/0,988.5,981.8,984.4,,19.0,16.0,9.0,,,234.0,SW,0.0,0,38,
-2009-12-05,1.4,-1.5,-0.3,0.0,0/8/0,992.4,983.6,989.8,,17.0,10.0,5.0,,,107.0,NW,0.0,0,38,
-2009-12-06,0.3,-1.3,-0.5,-0.3,0/8/0,987.2,983.0,985.3,,25.0,20.0,9.0,,,233.0,SW,0.0,0,38,
-2009-12-07,3.1,-1.9,0.2,-0.2,0/8/0,986.3,975.7,980.4,,12.0,11.0,3.0,,,252.0,NW,0.0,0,37,
-2009-12-08,2.9,-0.7,0.4,-0.2,0/8/0,991.5,986.4,990.3,,19.0,17.0,7.0,,,234.0,SW,0.0,0,36,
-2009-12-09,2.3,-0.5,0.3,-0.1,0/8/0,989.6,979.3,982.8,,30.0,17.0,7.0,,,101.0,SE,0.0,0,32,
-2009-12-10,1.1,-0.8,0.2,-0.6,0/8/0,981.5,977.0,978.5,,30.0,26.0,10.0,,,27.0,NW,0.0,5,37,
-2009-12-11,1.5,-1.6,0.2,-0.7,0/8/0,998.0,981.2,991.2,,14.0,12.0,7.0,,,242.0,SW,3.6,0,35,
-2009-12-12,2.6,-2.1,0.2,-0.0,0/8/0,998.0,981.3,989.0,,18.0,16.0,5.0,,,38.0,SE,12.5,1,31,
-2009-12-13,3.6,-0.9,0.7,-0.4,0/8/0,991.8,983.2,989.2,,26.0,20.0,9.0,,,39.0,W,0.0,0,30,
-2009-12-14,3.8,1.4,2.8,0.1,0/8/0,991.9,985.7,989.0,,39.0,32.0,17.0,,,29.0,N,1.3,0,29,
-2009-12-15,6.2,1.2,3.5,0.2,0/8/0,993.4,990.0,991.8,,40.0,31.0,14.0,,,29.0,NE,0.0,0,23,
-2009-12-16,6.9,1.4,4.6,0.3,0/8/0,990.6,976.3,982.6,,57.0,36.0,18.0,,,32.0,NE,4.6,0,0,
-2009-12-17,2.7,1.3,1.8,0.5,0/8/0,984.3,980.8,982.3,,38.0,27.0,18.0,,,16.0,N,1.3,0,0,
-2009-12-18,3.5,1.3,2.3,0.2,0/7/0,985.6,984.1,984.9,,41.0,32.0,22.0,,,24.0,N,3.1,0,0,
-2009-12-19,6.0,2.0,3.5,0.3,0/7/0,984.4,979.3,982.2,,49.0,36.0,19.0,,,18.0,NE,5.8,0,0,
-2009-12-20,6.3,0.6,3.0,0.4,0/7/0,979.2,963.4,971.2,,49.0,38.0,20.0,,,38.0,N,4.6,0,0,
-2009-12-21,4.5,0.9,2.4,0.3,0/7/0,983.8,977.8,982.1,,36.0,31.0,14.0,,,21.0,N,0.3,0,0,
-2009-12-22,5.6,2.7,4.5,0.5,0/7/0,983.3,976.8,979.6,,41.0,33.0,13.0,,,38.0,E,0.0,0,0,
-2009-12-23,5.0,1.3,2.9,0.4,0/7/0,983.0,976.8,980.1,,36.0,31.0,14.0,,,25.0,NE,0.0,0,0,
-2009-12-24,5.5,1.6,3.4,0.9,0/6/0,985.0,982.4,983.9,,36.0,31.0,11.0,,,25.0,NE,0.0,0,0,
-2009-12-25,5.0,-0.1,2.9,0.4,0/6/0,983.5,975.6,979.6,,43.0,30.0,14.0,,,79.0,E,0.0,0,0,
-2009-12-26,6.6,2.5,4.2,0.6,0/6/0,985.8,976.6,980.4,,37.0,27.0,12.0,,,73.0,E,0.0,0,0,
-2009-12-27,3.8,0.5,1.8,0.8,0/6/0,994.7,985.8,990.7,,12.0,10.0,3.0,,,228.0,W,0.0,0,0,
-2009-12-28,3.7,0.3,1.4,0.5,0/6/0,999.4,994.7,997.3,,13.0,10.0,3.0,,,211.0,W,0.0,0,0,
-2009-12-29,1.2,-0.4,0.3,0.7,0/6/0,999.3,996.6,997.8,,16.0,13.0,8.0,,,244.0,SW,0.0,0,0,
-2009-12-30,1.1,-0.1,0.4,1.0,0/6/0,996.6,994.6,995.7,,14.0,12.0,7.0,,,227.0,SW,0.0,0,0,
-2009-12-31,1.8,-0.5,0.2,0.8,0/6/0,994.6,992.3,993.1,,10.0,9.0,3.0,,,236.0,SW,0.8,0,0,
-2010-01-01,1.8,-2.2,-0.4,-0.4,0/6/0,994.0,992.3,993.4,,17.0,15.0,6.0,,,239.0,NE,0.0,0,0,
-2010-01-02,2.0,-0.3,0.5,-0.1,0/6/0,993.8,991.5,992.3,,14.0,12.0,6.0,,,226.0,SW,0.0,0,0,
-2010-01-03,3.6,0.2,1.4,0.3,0/6/0,997.7,993.8,996.3,,22.0,17.0,6.0,,,16.0,N,0.0,0,0,
-2010-01-04,6.1,-0.1,2.9,0.8,0/6/0,995.7,983.8,987.9,,60.0,34.0,13.0,,,63.0,E,0.0,0,0,
-2010-01-05,4.8,1.6,2.8,0.3,0/6/0,993.3,986.4,990.6,,22.0,15.0,5.0,,,24.0,N,0.0,0,0,
-2010-01-06,4.8,-1.4,0.9,1.0,0/6/0,999.4,993.4,996.8,,20.0,15.0,6.0,,,29.0,NW,0.0,0,0,
-2010-01-07,6.8,-0.7,2.4,1.3,0/6/0,999.8,998.3,999.2,,8.0,7.0,3.0,,,226.0,NE,0.0,0,0,
-2010-01-08,5.8,-0.7,2.1,2.1,0/6/0,999.1,998.1,998.6,,9.0,8.0,3.0,,,299.0,NE,0.0,0,0,
-2010-01-09,3.2,0.3,1.5,2.4,0/6/0,1001.5,999.1,1000.4,,13.0,11.0,4.0,,,339.0,N,0.0,0,0,
-2010-01-10,1.5,0.1,0.8,2.2,0/6/0,1002.4,1001.5,1002.0,,22.0,19.0,12.0,,,19.0,N,0.0,0,0,
-2010-01-11,4.8,-0.2,1.7,2.0,0/6/0,1001.8,1000.6,1001.1,,25.0,21.0,8.0,,,23.0,NE,0.0,0,0,
-2010-01-12,5.0,-0.3,2.1,2.6,0/6/0,1001.2,999.7,1000.4,,13.0,11.0,5.0,,,354.0,W,0.0,0,0,
-2010-01-13,4.6,-0.1,0.6,2.1,0/6/0,1002.2,999.9,1001.3,,22.0,19.0,10.0,,,16.0,N,0.0,0,0,
-2010-01-14,1.6,-0.7,0.4,1.5,0/6/0,999.9,973.8,987.1,,44.0,30.0,16.0,,,100.0,E,0.0,0,0,
-2010-01-15,4.2,1.4,2.6,1.0,0/6/0,981.3,973.5,976.3,,45.0,28.0,13.0,,,80.0,E,0.0,0,0,
-2010-01-16,4.3,1.9,3.0,1.0,0/6/0,984.8,981.3,983.4,,35.0,29.0,18.0,,,33.0,NE,0.0,0,0,
-2010-01-17,5.4,3.3,4.0,1.1,0/6/0,984.7,978.3,981.5,,46.0,34.0,18.0,,,42.0,NE,5.3,0,0,
-2010-01-18,4.8,0.7,2.0,0.9,0/6/0,985.4,980.1,982.9,,20.0,16.0,3.0,,,297.0,W,3.1,0,0,
-2010-01-19,5.7,0.2,2.4,0.9,0/6/0,985.6,982.5,983.7,,24.0,18.0,4.0,,,18.0,SE,0.3,0,0,
-2010-01-20,4.0,1.4,2.7,0.6,0/6/0,988.7,983.0,985.7,,27.0,23.0,7.0,,,25.0,N,0.0,0,0,
-2010-01-21,4.3,0.1,1.8,0.9,0/6/0,988.6,981.9,985.4,,10.0,8.0,3.0,,,333.0,NW,0.0,0,0,
-2010-01-22,6.1,1.0,2.2,0.4,0/6/0,982.0,978.6,979.6,,15.0,12.0,4.0,,,181.0,NW,0.0,0,0,
-2010-01-23,3.4,0.6,1.9,0.7,0/6/0,981.4,978.3,979.1,,13.0,11.0,6.0,,,211.0,NW,0.0,0,0,
-2010-01-24,3.0,0.8,1.3,1.0,0/6/0,990.9,981.3,986.3,,25.0,21.0,13.0,,,231.0,SW,0.0,0,0,
-2010-01-25,3.7,0.5,1.4,1.0,0/6/0,990.8,979.5,985.9,,21.0,18.0,7.0,,,232.0,SW,0.0,0,0,
-2010-01-26,6.4,-0.1,2.1,1.4,0/6/0,979.5,973.1,975.4,,26.0,19.0,7.0,,,72.0,E,0.3,0,0,
-2010-01-27,4.9,0.7,2.3,0.0,0/6/0,984.0,976.2,980.1,,17.0,13.0,4.0,,,102.0,N,0.0,0,0,
-2010-01-28,3.2,0.7,1.9,0.7,0/6/0,989.2,984.0,987.2,,17.0,15.0,4.0,,,19.0,N,0.0,0,0,
-2010-01-29,2.4,0.0,1.0,0.7,0/6/0,992.9,989.0,990.7,,19.0,16.0,4.0,,,341.0,NW,2.8,0,0,
-2010-01-30,1.8,0.1,0.8,0.1,0/6/0,993.0,989.7,991.1,,19.0,16.0,5.0,,,18.0,N,0.3,0,0,
-2010-01-31,4.9,-0.7,1.4,1.1,0/6/0,989.7,983.7,986.8,,21.0,15.0,3.0,,,69.0,NE,0.0,0,0,
-2010-02-01,4.9,0.3,1.8,1.1,0/6/0,989.4,983.5,986.0,,11.0,10.0,3.0,,,332.0,N,0.8,0,0,
-2010-02-02,5.8,1.2,2.4,0.1,0/6/0,992.1,989.4,990.8,,11.0,9.0,3.0,,,339.0,N,0.0,0,0,
-2010-02-03,2.1,0.0,0.9,1.2,0/6/0,993.6,991.0,992.8,,8.0,6.0,2.0,,,282.0,N,3.6,0,0,
-2010-02-04,4.2,-0.5,1.6,1.2,0/6/0,991.1,986.3,988.1,,20.0,14.0,4.0,,,102.0,N,0.0,0,0,
-2010-02-05,3.9,0.4,2.1,1.3,0/6/0,995.9,986.8,990.0,,27.0,18.0,11.0,,,72.0,E,0.0,0,0,
-2010-02-06,4.4,-0.6,1.5,1.3,0/6/0,1003.3,996.0,1000.9,,19.0,17.0,4.0,,,55.0,NE,0.0,0,0,
-2010-02-07,4.7,-0.6,1.3,1.6,0/6/0,1003.2,994.2,999.3,,20.0,18.0,5.0,,,26.0,NE,0.0,0,0,
-2010-02-08,3.9,-1.0,1.1,1.2,0/6/0,994.2,985.0,989.4,,12.0,11.0,4.0,,,23.0,NE,0.0,0,0,
-2010-02-09,5.0,1.3,3.3,1.1,0/6/0,985.2,979.7,982.1,,42.0,33.0,13.0,,,118.0,E,0.0,0,0,
-2010-02-10,5.4,1.5,3.0,1.1,0/6/0,980.0,974.3,976.7,,36.0,25.0,14.0,,,119.0,E,0.0,0,0,
-2010-02-11,3.7,1.4,2.5,1.2,0/6/0,982.4,972.4,975.8,,26.0,20.0,7.0,,,118.0,SE,0.0,0,0,
-2010-02-12,5.3,0.3,2.0,0.8,0/6/0,999.2,982.5,991.1,,9.0,7.0,3.0,,,12.0,N,0.0,0,0,
-2010-02-13,3.4,0.4,1.8,0.8,0/6/0,1008.5,999.3,1004.9,,8.0,8.0,3.0,,,235.0,NE,0.0,0,0,
-2010-02-14,6.3,-0.1,2.1,0.5,0/6/0,1009.9,1008.5,1009.0,,9.0,8.0,3.0,,,244.0,NE,0.0,0,0,
-2010-02-15,6.1,0.5,2.1,1.1,0/6/0,1009.0,1006.9,1007.5,,12.0,9.0,4.0,,,215.0,S,0.0,0,0,
-2010-02-16,3.9,1.7,2.5,1.0,0/6/0,1007.9,1001.5,1005.7,,18.0,16.0,7.0,,,338.0,N,6.1,0,0,
-2010-02-17,3.6,0.9,1.8,0.3,0/6/0,1001.5,999.0,1000.1,,22.0,17.0,11.0,,,352.0,W,7.9,0,0,
-2010-02-18,2.2,1.1,1.6,1.0,0/6/0,1000.9,1000.0,1000.4,,14.0,13.0,6.0,,,234.0,SW,0.0,0,0,
-2010-02-19,2.9,0.9,1.6,1.4,0/6/0,1000.8,996.7,998.5,,18.0,15.0,10.0,,,229.0,SW,1.3,0,0,
-2010-02-20,1.8,0.9,1.3,1.4,0/6/0,1000.9,996.8,998.3,,21.0,17.0,9.0,,,225.0,SW,0.0,0,0,
-2010-02-21,3.7,-0.9,1.3,1.4,0/6/0,1004.9,1000.8,1003.4,,17.0,14.0,4.0,,,13.0,NE,0.0,0,0,
-2010-02-22,2.8,-0.1,0.9,0.8,0/6/0,1002.1,998.5,999.7,,10.0,9.0,3.0,,,353.0,W,0.3,0,0,
-2010-02-23,2.6,0.3,1.1,1.1,0/6/0,1003.8,1000.6,1002.7,,11.0,9.0,3.0,,,122.0,N,0.0,0,0,
-2010-02-24,3.7,0.8,2.0,1.4,0/6/0,1000.6,984.8,990.9,,20.0,15.0,5.0,,,214.0,SE,12.2,0,0,
-2010-02-25,2.7,0.5,1.5,1.7,0/6/0,996.2,983.4,993.2,,18.0,15.0,7.0,,,236.0,SW,0.0,0,0,
-2010-02-26,3.9,0.7,2.1,1.3,0/6/0,983.4,973.4,976.5,,48.0,39.0,12.0,,,34.0,NW,10.2,0,0,
-2010-02-27,3.4,0.4,1.5,1.2,0/6/0,984.1,976.8,981.0,,25.0,23.0,7.0,,,242.0,SW,0.0,0,0,
-2010-02-28,3.6,-0.2,1.4,1.2,0/6/0,978.8,963.2,969.7,,40.0,28.0,14.0,,,121.0,E,0.0,0,0,
-2010-03-01,1.8,-0.9,0.8,1.2,0/6/0,998.1,978.8,989.0,,19.0,15.0,7.0,,,230.0,SW,0.0,0,0,
-2010-03-02,2.8,0.3,1.3,1.2,0/6/0,1002.2,992.0,999.9,,18.0,16.0,5.0,,,242.0,SW,0.0,0,0,
-2010-03-03,4.5,1.4,3.1,1.2,0/6/0,992.0,980.6,984.8,,47.0,38.0,15.0,,,20.0,N,2.8,0,0,
-2010-03-04,2.5,0.2,1.1,0.7,0/6/0,1012.0,983.8,999.6,,23.0,19.0,10.0,,,269.0,W,2.5,0,0,
-2010-03-05,6.3,-1.5,1.1,0.7,0/6/0,1013.3,993.9,1008.2,,57.0,46.0,8.0,,,25.0,NE,6.1,0,0,
-2010-03-06,5.0,1.6,3.8,0.9,0/6/0,995.9,987.6,991.7,,56.0,44.0,14.0,,,29.0,NE,2.3,0,0,
-2010-03-07,10.4,0.8,2.5,0.8,0/6/0,1000.2,986.0,996.7,,42.0,31.0,5.0,,,43.0,SE,0.0,0,0,
-2010-03-08,11.6,3.5,6.8,1.2,0/6/0,986.4,970.7,977.7,,54.0,43.0,29.0,,,24.0,NE,3.6,0,0,
-2010-03-09,3.9,0.7,1.8,1.0,0/6/0,986.2,969.9,976.9,,51.0,41.0,26.0,,,21.0,NW,0.5,0,0,
-2010-03-10,4.0,0.4,1.3,0.7,0/6/0,991.6,986.2,989.6,,21.0,17.0,9.0,,,277.0,NW,0.0,0,0,
-2010-03-11,4.4,0.5,1.8,0.9,0/6/0,986.3,980.8,982.5,,21.0,15.0,4.0,,,128.0,SE,0.5,0,0,
-2010-03-12,3.2,0.9,2.0,0.9,0/6/0,988.1,985.3,987.1,,13.0,11.0,3.0,,,327.0,SE,0.0,0,0,
-2010-03-13,1.6,-0.1,0.9,0.6,0/6/0,993.8,987.5,991.1,,9.0,8.0,4.0,,,234.0,SW,0.0,0,0,
-2010-03-14,1.7,0.0,0.6,0.4,0/6/0,996.5,993.8,995.2,,6.0,5.0,1.0,,,347.0,NE,0.0,0,0,
-2010-03-15,0.6,-0.8,0.0,-0.3,0/6/0,996.3,983.8,992.4,,24.0,20.0,5.0,,,23.0,NW,0.3,4,4,
-2010-03-16,1.3,-0.2,0.5,1.0,0/6/0,984.8,975.4,979.8,,47.0,30.0,17.0,,,78.0,E,0.0,0,0,
-2010-03-17,2.2,-0.6,0.8,1.0,0/6/0,993.9,984.6,990.0,,22.0,18.0,6.0,,,118.0,E,0.0,0,0,
-2010-03-18,0.2,-1.0,-0.5,0.4,0/6/0,994.1,990.5,992.6,,19.0,17.0,6.0,,,248.0,W,0.0,0,0,
-2010-03-19,1.4,-1.3,0.1,0.1,0/6/0,990.5,976.5,983.6,,31.0,23.0,10.0,,,30.0,NE,0.5,2,2,
-2010-03-20,1.3,-3.4,-1.0,0.6,0/6/0,976.8,960.5,966.1,,30.0,20.0,10.0,,,137.0,E,0.5,1,2,
-2010-03-21,-1.7,-3.3,-2.5,0.5,0/6/0,968.0,963.8,966.6,,23.0,19.0,8.0,,,233.0,SW,0.0,0,2,
-2010-03-22,-0.5,-2.9,-2.0,0.1,0/6/0,973.9,967.3,969.3,,23.0,19.0,6.0,,,25.0,N,1.8,1,3,
-2010-03-23,-0.2,-3.2,-1.9,-0.6,0/6/0,987.1,973.9,980.7,,37.0,31.0,11.0,,,25.0,SW,0.0,7,10,
-2010-03-24,0.3,-3.4,-1.9,-0.4,0/6/0,988.9,981.9,987.1,,30.0,25.0,11.0,,,30.0,NE,3.3,0,9,
-2010-03-25,1.8,-1.3,0.3,0.2,0/6/0,984.3,976.0,979.3,,37.0,30.0,12.0,,,24.0,SE,0.3,0,7,
-2010-03-26,2.3,-2.0,-0.4,0.4,0/6/0,997.0,984.3,989.2,,26.0,19.0,5.0,,,18.0,N,2.5,1,8,
-2010-03-27,4.9,1.5,3.0,0.5,0/6/0,998.0,983.2,990.4,,36.0,29.0,17.0,,,32.0,N,1.0,3,3,
-2010-03-28,2.8,-1.4,0.5,0.1,0/6/0,986.7,978.2,983.5,,40.0,32.0,12.0,,,21.0,N,3.8,1,4,
-2010-03-29,1.4,-1.7,-0.4,-0.8,0/6/0,982.7,972.5,978.5,,51.0,40.0,17.0,,,29.0,W,2.3,9,13,
-2010-03-30,1.0,-2.2,-0.3,-0.4,0/6/0,982.1,972.0,976.3,,31.0,23.0,13.0,,,338.0,NW,0.0,4,17,
-2010-03-31,2.6,-2.1,0.7,0.2,0/6/0,980.9,972.6,976.4,,26.0,21.0,7.0,,,27.0,SE,0.0,1,16,
-2010-04-01,3.1,-0.8,0.8,0.3,0/6/0,985.1,967.5,974.3,,49.0,35.0,17.0,,,33.0,W,0.3,0,13,
-2010-04-02,-0.8,-2.7,-2.1,0.0,0/6/0,1002.6,985.1,994.5,,30.0,24.0,14.0,,,221.0,SW,0.0,0,12,
-2010-04-03,6.3,-2.4,1.0,0.3,0/6/0,1003.1,985.6,997.6,,41.0,32.0,10.0,,,46.0,SE,0.5,0,10,
-2010-04-04,6.6,0.2,2.4,0.4,0/6/0,988.3,974.7,982.2,,60.0,48.0,12.0,,,25.0,W,28.5,0,0,
-2010-04-05,4.3,0.9,2.1,-0.1,0/6/0,997.9,988.4,993.4,,30.0,22.0,11.0,,,337.0,N,5.3,8,0,
-2010-04-06,4.0,0.3,2.1,0.2,0/6/0,997.5,981.3,988.6,,37.0,30.0,6.0,,,21.0,SE,5.3,0,0,
-2010-04-07,3.6,-1.0,0.3,-0.0,0/6/0,993.2,981.1,986.9,,22.0,14.0,5.0,,,199.0,S,6.9,7,7,
-2010-04-08,3.8,-0.8,2.1,-0.1,0/6/0,991.6,980.1,984.1,,43.0,35.0,14.0,,,26.0,N,20.6,0,0,
-2010-04-09,-0.2,-1.6,-0.8,0.0,0/6/0,1002.1,982.8,990.4,,25.0,20.0,11.0,,,225.0,SW,0.0,0,0,
-2010-04-10,5.2,-2.7,0.4,1.9,0/6/0,1005.7,994.0,1001.7,,52.0,38.0,10.0,,,31.0,NE,2.5,0,0,
-2010-04-11,6.5,0.4,4.1,0.4,0/6/0,994.0,975.2,983.6,,51.0,41.0,22.0,,,36.0,N,11.7,0,0,
-2010-04-12,1.4,-0.8,0.3,0.1,0/6/0,993.1,977.4,986.8,,31.0,24.0,12.0,,,248.0,W,1.5,1,1,
-2010-04-13,2.9,0.6,1.5,0.1,0/6/0,996.3,980.8,990.2,,46.0,37.0,16.0,,,32.0,NE,0.0,1,1,
-2010-04-14,3.0,0.0,1.6,0.0,0/6/0,987.4,967.6,982.8,,44.0,34.0,17.0,,,58.0,N,0.5,0,0,
-2010-04-15,1.6,-1.2,0.5,-0.4,0/6/0,980.5,961.0,973.3,,51.0,39.0,16.0,,,27.0,N,0.8,1,1,
-2010-04-16,3.3,0.2,1.6,0.3,0/6/0,984.3,975.1,981.5,,36.0,29.0,12.0,,,28.0,E,0.0,0,0,
-2010-04-17,1.7,-2.1,-0.1,0.6,0/6/0,975.1,969.6,971.6,,42.0,29.0,16.0,,,103.0,E,0.0,0,0,
-2010-04-18,1.1,-2.7,-0.9,0.3,0/6/0,978.7,968.9,972.5,,31.0,24.0,7.0,,,71.0,NW,0.0,0,0,
-2010-04-19,-2.3,-3.6,-2.9,0.1,0/6/0,988.8,978.7,983.7,,10.0,8.0,3.0,,,17.0,N,2.5,5,5,
-2010-04-20,-1.3,-6.4,-3.9,-0.1,0/6/0,997.4,988.8,993.0,,10.0,8.0,4.0,,,11.0,NE,0.0,3,6,
-2010-04-21,-1.3,-2.4,-1.8,0.1,0/6/0,997.2,992.9,995.0,,24.0,17.0,8.0,,,238.0,SW,0.0,0,3,
-2010-04-22,1.0,-2.0,-0.8,-0.1,0/6/0,993.0,971.4,982.1,,30.0,22.0,7.0,,,36.0,SE,4.3,3,6,
-2010-04-23,0.2,-4.2,-1.5,-0.7,0/6/0,971.4,966.4,968.9,,21.0,18.0,10.0,,,335.0,SW,4.1,9,25,
-2010-04-24,-2.9,-6.9,-4.6,-0.6,0/6/0,978.8,965.0,969.7,,34.0,28.0,9.0,,,27.0,SE,3.8,7,32,
-2010-04-25,-4.3,-8.5,-6.6,-0.5,0/6/0,984.1,978.8,982.6,,19.0,17.0,9.0,,,35.0,E,0.0,1,26,
-2010-04-26,-5.4,-8.6,-7.2,-0.5,0/6/0,980.4,970.7,973.9,,18.0,15.0,6.0,,,38.0,NE,0.0,0,23,
-2010-04-27,-3.2,-6.9,-4.4,-0.8,0/6/0,978.9,972.2,975.6,,20.0,15.0,5.0,,,236.0,SW,0.0,0,23,
-2010-04-28,-0.7,-5.7,-2.8,-0.4,0/6/0,978.9,969.0,973.3,,24.0,19.0,8.0,,,124.0,SE,6.1,1,22,
-2010-04-29,-0.1,-3.0,-1.1,-1.8,0/6/0,972.0,967.5,969.2,,38.0,32.0,11.0,,,23.0,NE,5.6,10,32,
-2010-04-30,-3.0,-5.3,-4.2,-0.4,0/6/0,982.8,971.9,977.1,,30.0,25.0,15.0,,,24.0,NE,1.8,6,38,
-2010-05-01,-3.4,-4.8,-4.0,-0.6,0/6/0,986.0,982.4,984.0,,26.0,22.0,14.0,,,29.0,NE,0.0,0,34,
-2010-05-02,-2.9,-5.6,-4.1,-0.5,0/6/0,996.0,985.9,991.0,,18.0,14.0,7.0,,,5.0,N,1.5,0,32,
-2010-05-03,-2.0,-7.1,-4.5,-0.7,0/6/0,997.6,994.7,996.8,,21.0,17.0,8.0,,,26.0,NE,3.6,8,41,
-2010-05-04,-5.6,-8.7,-7.4,-0.9,0/6/0,994.6,990.1,991.6,,15.0,14.0,5.0,,,20.0,NE,0.0,0,36,
-2010-05-05,0.2,-9.1,-5.7,-1.1,0/6/0,990.5,970.0,981.8,,27.0,20.0,5.0,,,141.0,NE,0.0,0,36,
-2010-05-06,0.2,-2.2,-1.2,-0.4,0/6/0,982.2,969.2,974.4,,28.0,21.0,5.0,,,102.0,N,1.8,0,33,
-2010-05-07,-1.0,-3.4,-1.8,-0.8,0/6/0,990.6,982.2,987.5,,19.0,17.0,7.0,,,14.0,N,0.0,2,35,
-2010-05-08,1.1,-2.9,-1.3,-0.2,0/6/0,986.5,974.6,978.3,,42.0,30.0,13.0,,,78.0,E,1.3,0,30,
-2010-05-09,3.1,-1.6,1.7,-0.2,0/6/0,985.0,979.2,983.3,,46.0,35.0,18.0,,,33.0,N,3.6,0,29,
-2010-05-10,1.6,-0.9,0.4,-0.3,0/6/0,997.8,984.3,989.2,,24.0,19.0,9.0,,,346.0,NW,0.5,0,23,
-2010-05-11,0.1,-3.9,-1.6,-1.0,0/6/0,1006.9,997.8,1004.2,,21.0,16.0,7.0,,,299.0,NW,0.0,0,23,
-2010-05-12,-1.5,-4.5,-3.1,-1.1,0/6/0,1003.9,991.4,995.8,,11.0,8.0,4.0,,,349.0,N,0.0,0,23,
-2010-05-13,-0.6,-2.5,-1.4,-1.1,0/6/0,995.0,992.1,993.7,,24.0,19.0,10.0,,,18.0,N,1.0,0,23,
-2010-05-14,-1.9,-4.0,-2.8,-1.1,0/6/0,1005.3,993.3,1001.2,,19.0,15.0,7.0,,,244.0,SW,0.0,1,24,
-2010-05-15,3.2,-5.2,-1.2,-0.3,0/6/0,1004.3,964.4,985.4,,42.0,32.0,14.0,,,56.0,E,1.0,0,23,
-2010-05-16,2.0,0.1,0.8,-0.4,0/6/0,975.1,964.1,968.2,,32.0,26.0,18.0,,,19.0,N,10.9,1,25,
-2010-05-17,3.0,-0.4,1.3,-0.6,0/6/0,977.0,969.0,973.5,,38.0,30.0,13.0,,,28.0,N,0.3,1,29,
-2010-05-18,1.0,-1.2,-0.1,-0.6,0/6/0,978.5,973.6,976.6,,19.0,16.0,6.0,,,15.0,N,1.3,0,26,
-2010-05-19,-0.8,-2.2,-1.7,-0.7,0/6/0,987.3,973.6,979.8,,27.0,21.0,12.0,,,230.0,SW,1.0,7,36,
-2010-05-20,1.4,-5.0,-2.2,-0.8,0/6/0,991.8,987.3,989.6,,49.0,36.0,10.0,,,35.0,E,0.0,0,35,
-2010-05-21,3.3,-0.3,1.6,-0.3,0/6/0,989.0,973.1,980.7,,63.0,49.0,28.0,,,33.0,NE,5.1,0,25,
-2010-05-22,1.8,-0.9,0.1,-0.5,0/6/0,988.8,981.4,984.2,,46.0,33.0,19.0,,,22.0,N,2.5,0,25,
-2010-05-23,1.3,-3.0,-0.7,-0.8,0/6/0,991.8,979.2,986.7,,43.0,30.0,10.0,,,24.0,N,4.8,1,27,
-2010-05-24,5.2,-0.3,2.8,-0.4,0/6/0,986.6,972.5,978.8,,46.0,34.0,15.0,,,36.0,NE,2.3,0,27,
-2010-05-25,-0.1,-2.6,-1.9,-0.6,0/6/0,987.6,974.7,981.7,,31.0,25.0,17.0,,,230.0,SW,1.0,2,34,
-2010-05-26,0.8,-2.4,-0.9,-1.1,0/6/0,987.4,973.9,983.9,,34.0,26.0,14.0,,,16.0,N,0.5,2,34,
-2010-05-27,2.7,-4.2,0.3,-0.9,0/6/0,974.0,942.9,955.1,,63.0,47.0,30.0,,,336.0,N,19.6,0,29,
-2010-05-28,-3.3,-5.7,-4.3,-1.2,0/6/0,974.6,955.9,967.3,,56.0,40.0,24.0,,,254.0,W,0.0,0,29,
-2010-05-29,0.8,-5.3,-2.0,-0.4,0/6/0,973.7,949.8,959.3,,40.0,33.0,18.0,,,39.0,E,0.5,0,29,
-2010-05-30,-0.5,-5.4,-3.0,-0.7,0/6/0,989.5,961.9,981.2,,43.0,36.0,16.0,,,227.0,SW,2.0,0,30,
-2010-05-31,1.0,-2.0,0.7,-1.0,0/6/0,990.0,979.4,985.8,,42.0,34.0,19.0,,,35.0,NE,3.1,4,38,
-2010-06-01,4.3,-1.0,1.0,-1.0,0/6/0,987.7,978.0,982.2,,42.0,32.0,15.0,,,26.0,N,6.4,0,32,
-2010-06-02,4.7,-1.7,0.7,-0.6,0/6/0,983.6,966.7,975.1,,48.0,36.0,21.0,,,43.0,N,4.1,0,30,
-2010-06-03,2.2,-2.8,0.2,-0.8,0/6/0,985.8,981.0,983.3,,71.0,46.0,29.0,,,27.0,N,8.4,0,30,
-2010-06-04,2.7,-3.7,-1.8,-1.2,216/0,986.2,983.9,985.1,,33.0,28.0,8.0,,,30.0,NE,1.0,1,34,
-2010-06-05,-1.3,-4.9,-2.9,-1.0,216/0,990.0,985.4,988.6,,22.0,19.0,7.0,,,305.0,W,0.0,0,34,
-2010-06-06,-2.4,-5.1,-3.7,-1.2,0/6/0,997.1,989.4,992.7,,12.0,10.0,4.0,,,19.0,NE,0.0,0,34,
-2010-06-07,1.9,-4.5,-1.2,-1.2,0/6/0,999.5,995.3,998.0,,45.0,35.0,14.0,,,23.0,NE,0.0,0,34,
-2010-06-08,2.7,0.2,1.4,-0.9,0/6/0,997.1,987.3,993.3,,48.0,39.0,22.0,,,23.0,N,8.1,0,33,
-2010-06-09,1.6,-4.6,-1.8,-1.4,0/6/0,987.9,975.9,981.0,,57.0,41.0,23.0,,,351.0,N,2.0,0,33,
-2010-06-10,1.3,-4.1,-0.7,-0.9,216/0,991.4,974.4,982.6,,62.0,50.0,22.0,,,36.0,NE,8.1,1,37,
-2010-06-11,4.4,0.0,1.5,-1.0,216/0,983.2,975.1,980.5,,53.0,42.0,25.0,,,30.0,N,1.3,0,31,
-2010-06-12,2.8,-5.0,-2.0,-1.2,0/6/0,978.2,969.3,973.4,,55.0,44.0,22.0,,,20.0,N,7.6,0,31,
-2010-06-13,-0.6,-5.2,-2.7,-0.8,0/6/0,977.2,956.7,963.2,,81.0,49.0,27.0,,,36.0,NE,0.5,0,36,
-2010-06-14,-3.0,-4.9,-3.8,-1.6,0/6/0,989.0,963.0,974.6,,29.0,25.0,15.0,,,246.0,NW,1.0,0,37,
-2010-06-15,-2.3,-4.5,-3.9,-1.4,0/6/0,1002.2,989.0,998.7,,28.0,24.0,13.0,,,235.0,SW,0.0,0,36,
-2010-06-16,-0.3,-9.2,-5.1,-1.4,0/6/0,1000.0,986.9,991.9,,43.0,35.0,20.0,,,23.0,NE,0.3,0,35,
-2010-06-17,-7.7,-11.6,-9.3,-0.9,0/6/0,990.6,985.2,986.5,,25.0,19.0,8.0,,,119.0,SW,0.0,0,35,
-2010-06-18,-2.8,-9.0,-5.4,-1.1,0/6/0,1007.4,990.7,1000.0,,27.0,21.0,12.0,,,122.0,E,0.0,0,35,
-2010-06-19,-2.7,-5.1,-3.8,-1.5,0/6/0,1011.7,1007.2,1009.8,,16.0,11.0,5.0,,,188.0,NE,0.0,0,35,
-2010-06-20,-2.1,-5.1,-3.6,-1.3,0/6/0,1010.6,998.8,1005.0,,15.0,11.0,5.0,,,247.0,N,0.0,0,35,
-2010-06-21,0.9,-3.0,-0.6,-1.2,0/6/0,998.8,984.4,992.1,,34.0,28.0,16.0,,,24.0,NE,0.3,0,35,
-2010-06-22,2.4,-0.6,0.4,-1.0,0/6/0,984.6,970.1,974.7,,43.0,35.0,15.0,,,30.0,NE,0.0,0,34,
-2010-06-23,3.5,-0.1,1.5,-1.0,0/6/0,976.8,971.6,974.4,,42.0,32.0,19.0,,,42.0,N,0.5,0,35,
-2010-06-24,2.1,-2.4,0.0,-0.6,0/6/0,973.4,966.4,968.3,,47.0,32.0,16.0,,,78.0,E,0.0,0,34,
-2010-06-25,-0.5,-4.0,-1.7,-0.8,0/6/0,984.5,970.2,978.8,,39.0,31.0,9.0,,,34.0,NE,0.0,0,34,
-2010-06-26,2.2,-4.0,-0.5,-0.6,0/6/0,984.8,973.3,979.6,,46.0,36.0,13.0,,,25.0,E,0.0,0,33,
-2010-06-27,1.0,-4.1,-2.3,-1.0,0/6/0,982.7,977.5,980.5,,23.0,20.0,5.0,,,22.0,NE,0.8,2,35,
-2010-06-28,1.1,-2.9,-0.3,-0.9,0/6/0,978.6,965.7,970.6,,45.0,37.0,23.0,,,30.0,NE,0.0,0,34,
-2010-06-29,0.5,-2.4,-1.5,-1.0,0/6/0,968.4,961.8,964.1,,33.0,28.0,10.0,,,28.0,N,0.0,0,33,
-2010-06-30,-1.7,-4.6,-2.6,-1.0,0/6/0,982.9,968.4,977.1,,19.0,17.0,8.0,,,37.0,NE,0.0,0,33,
-2010-07-01,-3.5,-4.9,-4.1,-1.2,0/6/0,988.8,982.9,984.6,,20.0,18.0,7.0,,,38.0,NE,0.0,0,33,
-2010-07-02,-4.2,-8.0,-6.2,-1.4,0/6/0,993.0,986.7,991.2,,20.0,17.0,8.0,,,27.0,NE,0.0,1,33,
-2010-07-03,-3.1,-6.2,-4.6,-1.5,0/6/0,986.6,979.5,981.6,,19.0,16.0,5.0,,,237.0,S,0.0,0,33,
-2010-07-04,-4.6,-6.9,-5.4,-1.7,0/6/0,996.9,983.6,989.9,,26.0,22.0,13.0,,,243.0,SW,0.0,0,34,
-2010-07-05,-4.9,-7.2,-6.2,-1.7,0/6/0,1008.6,997.0,1004.1,,12.0,11.0,6.0,,,23.0,N,0.0,0,34,
-2010-07-06,-4.8,-7.2,-5.8,-1.6,0/6/0,1011.1,1008.3,1010.2,,9.0,7.0,4.0,,,53.0,NE,0.0,0,34,
-2010-07-07,-0.6,-6.2,-4.1,-1.6,20650,1010.5,988.2,1003.5,,23.0,18.0,7.0,,,34.0,E,0.0,0,34,
-2010-07-08,1.9,-2.6,-0.6,-1.5,20650,988.1,978.8,982.1,,43.0,34.0,12.0,,,22.0,E,1.5,1,34,
-2010-07-09,-1.1,-3.1,-1.9,-1.4,20650,978.8,970.8,973.3,,23.0,19.0,7.0,,,245.0,SW,3.1,8,42,
-2010-07-10,-2.3,-4.2,-3.1,-1.5,20650,984.3,972.8,977.2,,22.0,18.0,11.0,,,243.0,SW,0.0,1,43,
-2010-07-11,-1.3,-5.4,-3.1,-1.6,0/6/0,986.6,979.2,982.9,,29.0,23.0,9.0,,,40.0,SE,3.3,0,43,
-2010-07-12,-3.7,-7.1,-5.7,-1.6,0/6/0,1011.8,984.6,999.1,,32.0,27.0,12.0,,,235.0,SW,0.0,0,41,
-2010-07-13,-3.0,-6.8,-5.0,-1.6,0/6/0,1021.6,1011.8,1018.4,,17.0,14.0,4.0,,,25.0,NE,0.0,0,41,
-2010-07-14,2.4,-3.7,-0.9,-1.5,0/6/0,1020.3,1004.4,1013.5,,28.0,21.0,8.0,,,355.0,NW,9.4,0,40,
-2010-07-15,2.4,-7.1,-3.5,-1.7,0/6/0,1009.9,993.7,1001.6,,48.0,33.0,20.0,,,12.0,SW,8.4,5,63,
-2010-07-16,-0.5,-9.2,-4.1,-1.7,31650,1010.1,978.4,994.7,,50.0,41.0,12.0,,,20.0,NE,0.5,0,62,
-2010-07-17,1.0,-2.0,-0.9,-1.7,0/6/0,994.8,979.2,987.6,,33.0,26.0,17.0,,,320.0,NW,1.3,0,62,
-2010-07-18,2.6,-2.7,0.7,-1.4,0/6/0,994.5,959.5,972.5,,57.0,46.0,25.0,,,41.0,N,5.3,0,59,
-2010-07-19,-2.4,-7.4,-5.4,-1.7,0/6/0,984.4,959.5,973.9,,49.0,36.0,18.0,,,345.0,SW,0.0,0,57,
-2010-07-20,1.4,-7.7,-2.9,-1.6,0/6/0,988.3,972.0,981.0,,50.0,41.0,20.0,,,35.0,N,2.8,0,57,
-2010-07-21,-3.3,-7.9,-5.7,-1.6,0/6/0,996.1,981.8,991.3,,39.0,32.0,15.0,,,276.0,W,0.0,1,61,
-2010-07-22,-2.6,-5.9,-3.7,-1.7,0/6/0,993.7,990.0,991.4,,21.0,19.0,9.0,,,274.0,NW,1.0,0,61,
-2010-07-23,-1.0,-5.1,-2.7,-1.7,31650,997.7,990.5,994.0,,32.0,25.0,10.0,,,353.0,N,0.5,4,65,
-2010-07-24,1.1,-1.6,-0.2,-1.6,41650,994.5,984.5,990.3,,38.0,29.0,18.0,,,4.0,N,0.5,0,65,
-2010-07-25,2.6,-4.6,-1.4,-1.7,21650,988.5,977.3,982.9,,40.0,29.0,13.0,,,3.0,N,6.1,0,65,
-2010-07-26,0.6,-3.7,-0.9,-1.7,21650,987.5,970.3,977.3,,64.0,46.0,18.0,,,23.0,N,6.4,1,65,
-2010-07-27,-1.0,-6.5,-4.2,-1.7,21650,973.4,963.3,966.9,,33.0,27.0,14.0,,,229.0,SW,7.1,21,109,
-2010-07-28,-3.5,-14.8,-8.8,-1.7,42660,982.7,966.4,974.7,,46.0,39.0,21.0,,,30.0,SW,0.3,5,104,
-2010-07-29,-12.4,-17.7,-15.1,-1.7,52660,993.7,977.5,985.8,,38.0,31.0,17.0,,,230.0,SW,0.0,0,63,
-2010-07-30,-10.2,-14.4,-12.6,-1.7,52660,1010.7,993.8,1004.2,,17.0,13.0,6.0,,,228.0,S,0.0,0,63,
-2010-07-31,-8.1,-12.2,-9.4,-1.7,52660,1011.1,1009.2,1010.2,,10.0,8.0,4.0,,,248.0,NE,0.0,0,63,
-2010-08-01,-5.7,-12.1,-9.3,-1.7,52660,1014.1,1010.2,1012.6,,7.0,6.0,3.0,,,28.0,NE,0.0,0,63,
-2010-08-02,0.8,-6.3,-1.6,-1.7,52660,1013.0,996.8,1008.0,,40.0,31.0,10.0,,,23.0,N,0.0,0,63,
-2010-08-03,2.1,-2.9,-0.5,-1.7,42660,996.8,981.1,984.5,,60.0,41.0,15.0,,,28.0,NE,1.0,0,60,
-2010-08-04,-1.4,-6.5,-3.2,-1.7,42660,996.6,981.4,990.2,,26.0,22.0,6.0,,,27.0,SE,1.5,5,65,
-2010-08-05,0.7,-4.4,-2.4,-1.7,42660,1000.5,994.0,997.2,,29.0,23.0,6.0,,,17.0,SE,0.8,1,66,
-2010-08-06,-0.8,-3.6,-2.2,-1.7,42660,995.3,979.2,984.5,,16.0,13.0,3.0,,,352.0,N,0.3,1,66,
-2010-08-07,0.6,-5.0,-2.2,-1.7,42660,979.9,976.1,978.4,,38.0,28.0,5.0,,,35.0,SE,1.0,2,68,
-2010-08-08,2.1,-3.4,-1.2,-1.6,0/6/0,977.3,967.2,972.2,,48.0,40.0,17.0,,,26.0,NE,0.0,0,67,
-2010-08-09,0.5,-5.9,-3.7,-1.5,0/6/0,969.8,952.0,959.7,,46.0,34.0,15.0,,,103.0,E,0.0,0,65,
-2010-08-10,-3.7,-7.6,-5.5,-1.6,0/6/0,978.2,969.8,975.5,,29.0,22.0,10.0,,,78.0,E,0.0,1,64,
-2010-08-11,-5.3,-8.6,-6.8,-1.6,0/6/0,988.6,971.8,977.9,,31.0,22.0,10.0,,,81.0,E,0.0,1,63,
-2010-08-12,-4.3,-10.3,-7.4,,0/6/0,1005.4,988.7,1000.0,,32.0,26.0,9.0,,,31.0,SW,0.0,0,63,
-2010-08-13,-3.0,-5.7,-4.1,-1.4,0/6/0,999.2,988.6,991.6,,27.0,22.0,9.0,,,123.0,SE,2.3,4,64,
-2010-08-14,0.6,-5.3,-3.0,-1.5,0/6/0,1007.5,993.5,1003.3,,55.0,42.0,9.0,,,37.0,SW,0.0,0,63,
-2010-08-15,1.0,-9.6,-2.9,-1.4,0/6/0,996.1,984.7,989.0,,62.0,50.0,23.0,,,35.0,NW,1.0,2,65,
-2010-08-16,-8.6,-14.5,-12.9,-1.7,0/6/0,1008.1,996.0,1002.2,,43.0,34.0,21.0,,,252.0,SW,0.0,0,65,
-2010-08-17,-9.0,-12.5,-10.8,-1.6,51660,1023.9,1008.1,1015.8,,22.0,17.0,5.0,,,216.0,NE,0.0,0,66,
-2010-08-18,-7.5,-12.1,-9.8,-1.7,52660,1027.4,1023.9,1026.1,,14.0,12.0,4.0,,,8.0,NE,0.0,0,66,
-2010-08-19,-5.6,-12.9,-8.2,-1.5,52660,1026.8,1012.3,1021.2,,27.0,24.0,9.0,,,34.0,NE,0.0,0,66,
-2010-08-20,1.7,-8.5,-2.1,-1.6,52660,1012.3,980.5,996.1,,48.0,39.0,16.0,,,53.0,E,0.0,0,66,
-2010-08-21,1.4,-1.4,0.0,-1.7,52660,991.2,978.2,987.8,,58.0,42.0,17.0,,,25.0,N,0.3,3,69,
-2010-08-22,2.0,-0.7,0.7,-1.5,41660,990.1,978.9,982.5,,49.0,40.0,22.0,,,48.0,NE,0.0,0,66,
-2010-08-23,1.8,-2.2,-0.5,-1.5,0/6/0,982.8,971.4,979.4,,34.0,28.0,14.0,,,54.0,NE,0.0,0,66,
-2010-08-24,0.9,-3.2,-0.9,-1.6,0/6/0,975.4,969.3,972.4,,47.0,37.0,18.0,,,31.0,E,0.0,0,66,
-2010-08-25,1.0,-3.0,-0.7,-1.5,0/6/0,980.2,969.4,975.5,,45.0,36.0,16.0,,,30.0,NE,0.0,0,65,
-2010-08-26,1.6,-3.1,-1.3,-1.4,0/6/0,980.1,965.2,971.0,,49.0,36.0,19.0,,,79.0,E,0.5,0,65,
-2010-08-27,0.0,-4.3,-1.8,-1.5,0/6/0,974.2,967.5,972.5,,32.0,27.0,10.0,,,24.0,N,0.0,1,66,
-2010-08-28,-3.1,-6.2,-4.7,-1.6,20640,979.4,973.6,975.5,,12.0,10.0,5.0,,,305.0,N,0.5,1,66,
-2010-08-29,0.6,-6.0,-3.6,-1.6,0/6/0,983.6,976.5,981.1,,34.0,29.0,11.0,,,16.0,NE,0.8,2,70,
-2010-08-30,0.7,-4.5,-2.0,-1.6,0/6/0,980.9,972.0,975.2,,58.0,46.0,25.0,,,16.0,N,8.4,0,66,
-2010-08-31,-3.7,-7.4,-6.4,-1.6,20640,994.1,980.9,988.4,,24.0,19.0,13.0,,,252.0,SW,0.0,0,66,
-2010-09-01,0.3,-9.6,-6.2,-1.7,21650,995.5,979.3,991.1,,44.0,27.0,7.0,,,138.0,SE,0.0,0,66,
-2010-09-02,1.1,-3.5,-1.0,-1.6,0/6/0,979.9,972.6,974.5,,41.0,34.0,12.0,,,23.0,N,2.3,0,65,
-2010-09-03,-0.8,-4.8,-2.7,-1.7,21650,978.5,969.8,973.9,,34.0,28.0,13.0,,,276.0,N,2.5,7,72,
-2010-09-04,-2.8,-6.7,-4.5,-1.7,21650,976.5,960.0,970.3,,40.0,28.0,13.0,,,108.0,E,0.3,1,66,
-2010-09-05,-5.9,-10.8,-8.1,-1.6,0/6/0,985.7,963.0,972.9,,31.0,25.0,12.0,,,236.0,E,4.8,3,83,
-2010-09-06,-8.2,-10.6,-9.7,-1.6,51650,1003.7,985.8,997.4,,30.0,25.0,11.0,,,237.0,SW,0.0,0,79,
-2010-09-07,-3.7,-9.0,-5.7,-1.6,71650,1013.1,995.0,1003.1,,21.0,17.0,8.0,,,249.0,SW,0.3,1,79,
-2010-09-08,-4.3,-8.5,-6.7,-1.6,71650,1016.8,1012.9,1015.7,,10.0,8.0,3.0,,,356.0,N,0.0,0,76,
-2010-09-09,-2.3,-8.3,-6.1,-1.6,71650,1016.5,1011.3,1014.8,,11.0,9.0,3.0,,,148.0,NE,0.0,0,75,
-2010-09-10,1.5,-4.6,-2.0,-1.6,72650,1011.6,1004.5,1006.9,,11.0,8.0,3.0,,,147.0,SE,9.7,14,87,
-2010-09-11,-0.2,-10.6,-5.3,-1.7,72650,1010.0,1005.3,1008.4,,28.0,23.0,3.0,,,31.0,NE,0.0,0,84,
-2010-09-12,2.3,-2.7,0.6,-1.8,21650,1005.4,998.8,1001.9,,52.0,42.0,23.0,,,17.0,N,0.0,0,74,
-2010-09-13,3.0,-0.7,1.2,-1.7,21650,999.6,982.9,992.7,,61.0,48.0,38.0,,,29.0,NE,0.5,0,68,
-2010-09-14,1.9,-1.4,0.1,-1.5,21650,986.7,981.0,984.5,,68.0,56.0,20.0,,,26.0,N,2.3,2,68,
-2010-09-15,1.1,-1.5,0.1,-1.4,0/6/0,987.1,982.0,984.4,,42.0,35.0,22.0,,,26.0,NE,0.3,0,68,
-2010-09-16,2.4,-3.1,-0.4,-1.3,0/6/0,982.5,971.1,976.3,,43.0,32.0,13.0,,,75.0,E,0.0,0,68,
-2010-09-17,0.6,-3.2,-1.6,-1.4,0/6/0,991.3,978.0,987.8,,36.0,31.0,7.0,,,48.0,N,0.0,0,67,
-2010-09-18,3.9,-1.5,1.4,-1.4,0/6/0,987.9,972.7,980.6,,45.0,38.0,20.0,,,24.0,E,0.0,0,67,
-2010-09-19,2.3,-0.7,1.3,-1.4,0/6/0,974.2,965.2,970.0,,47.0,38.0,27.0,,,35.0,NE,0.0,0,66,
-2010-09-20,0.4,-1.9,-0.6,-1.3,0/6/0,973.6,965.8,969.2,,48.0,38.0,23.0,,,31.0,NE,0.0,1,67,
-2010-09-21,-0.6,-3.7,-2.1,-1.3,0/6/0,984.4,973.7,978.7,,19.0,14.0,4.0,,,16.0,W,0.0,0,67,
-2010-09-22,-3.7,-5.4,-4.6,-1.4,0/6/0,988.5,984.4,987.1,,14.0,13.0,4.0,,,24.0,SW,0.0,0,67,
-2010-09-23,-1.1,-5.7,-2.9,-1.4,0/6/0,984.6,962.0,969.8,,42.0,27.0,14.0,,,98.0,E,0.0,0,67,
-2010-09-24,-1.5,-4.0,-2.7,-1.4,0/6/0,985.9,968.1,977.2,,23.0,17.0,7.0,,,32.0,E,0.0,0,67,
-2010-09-25,-1.7,-3.6,-2.4,-1.6,0/6/0,1003.5,985.9,995.1,,14.0,12.0,6.0,,,248.0,W,0.0,0,67,
-2010-09-26,1.6,-2.5,-0.8,-1.5,0/6/0,1004.7,999.2,1002.1,,57.0,37.0,19.0,,,32.0,NE,1.0,0,67,
-2010-09-27,3.8,-1.5,0.1,-1.4,0/6/0,1002.1,994.5,1000.3,,29.0,19.0,4.0,,,136.0,SE,0.8,2,69,
-2010-09-28,3.1,-1.4,1.4,-1.4,0/6/0,994.8,983.9,987.3,,51.0,41.0,22.0,,,26.0,NE,1.3,0,68,
-2010-09-29,1.1,-3.2,-1.4,-1.6,0/6/0,994.8,987.2,992.1,,33.0,27.0,11.0,,,21.0,NW,3.3,5,75,
-2010-09-30,2.4,-0.4,1.0,-1.5,0/6/0,990.0,965.4,977.6,,38.0,29.0,21.0,,,28.0,NE,1.5,0,75,
-2010-10-01,-0.1,-3.4,-2.4,-1.7,20600,994.1,966.6,983.2,,26.0,22.0,12.0,,,241.0,W,0.8,1,76,
-2010-10-02,3.0,-3.0,-1.1,-1.6,20600,995.4,990.8,993.3,,18.0,15.0,6.0,,,321.0,NW,0.3,0,75,
-2010-10-03,1.1,-3.2,-1.4,-1.4,0/6/0,991.5,988.1,989.4,,8.0,6.0,2.0,,,103.0,SE,0.0,0,75,
-2010-10-04,0.7,-2.8,-0.9,-1.4,0/6/0,996.5,991.4,993.5,,45.0,36.0,11.0,,,26.0,NE,0.0,0,74,
-2010-10-05,3.1,-2.1,-1.0,-1.2,0/6/0,1001.1,996.4,999.7,,38.0,32.0,7.0,,,36.0,N,0.0,0,69,
-2010-10-06,5.0,1.1,3.3,-1.2,0/6/0,998.6,986.5,994.8,,72.0,51.0,32.0,,,34.0,NE,0.8,0,63,
-2010-10-07,3.0,0.2,1.4,-1.0,0/6/0,993.6,983.6,990.2,,73.0,49.0,25.0,,,32.0,N,1.0,0,60,
-2010-10-08,3.4,0.4,1.7,-1.1,0/6/0,983.7,969.4,975.4,,55.0,42.0,26.0,,,34.0,NE,0.3,0,60,
-2010-10-09,2.4,-0.3,1.2,-1.1,0/6/0,969.8,954.7,961.5,,70.0,55.0,28.0,,,21.0,N,26.2,0,60,
-2010-10-10,0.9,-3.3,-0.5,-1.6,0/6/0,964.5,957.9,960.1,,45.0,32.0,20.0,,,356.0,N,1.5,0,60,
-2010-10-11,-0.2,-5.1,-2.8,-1.5,0/6/0,975.2,961.7,970.0,,48.0,40.0,19.0,,,4.0,N,1.0,1,61,
-2010-10-12,-0.1,-2.4,-1.4,-1.6,0/6/0,968.5,960.6,964.4,,32.0,24.0,12.0,,,51.0,NE,5.3,3,64,
-2010-10-13,-1.6,-5.5,-3.7,-1.6,0/6/0,985.0,968.6,976.9,,32.0,26.0,18.0,,,259.0,W,0.5,5,63,
-2010-10-14,0.3,-4.0,-2.9,-1.4,0/6/0,992.3,977.4,988.4,,44.0,33.0,14.0,,,40.0,W,0.0,1,62,
-2010-10-15,2.8,-2.2,0.4,-1.4,0/6/0,979.8,959.0,970.6,,71.0,42.0,20.0,,,25.0,NE,1.8,0,61,
-2010-10-16,1.8,-2.1,-0.6,-1.2,0/6/0,997.7,964.3,988.1,,50.0,41.0,21.0,,,29.0,W,1.0,0,61,
-2010-10-17,2.7,0.7,1.8,-1.2,0/6/0,991.6,972.4,981.6,,57.0,47.0,31.0,,,36.0,NE,14.2,0,60,
-2010-10-18,3.9,0.8,2.2,-1.2,0/6/0,972.5,965.2,969.7,,67.0,50.0,33.0,,,37.0,NE,15.0,0,54,
-2010-10-19,3.2,0.9,2.3,-0.9,0/6/0,965.3,959.0,961.6,,53.0,41.0,25.0,,,48.0,NE,2.0,0,48,
-2010-10-20,3.1,-0.3,1.6,-0.8,0/6/0,967.9,962.5,966.0,,38.0,31.0,23.0,,,18.0,NE,0.8,1,39,
-2010-10-21,1.7,-1.2,-0.1,-0.9,0/6/0,978.4,966.2,971.3,,27.0,23.0,4.0,,,21.0,SE,0.3,1,34,
-2010-10-22,3.2,-1.1,0.7,-0.7,0/6/0,978.7,969.7,974.2,,56.0,42.0,16.0,,,28.0,NE,0.0,0,34,
-2010-10-23,1.5,-0.4,0.4,-0.9,0/6/0,977.8,971.2,974.3,,39.0,29.0,20.0,,,15.0,N,0.8,0,34,
-2010-10-24,0.8,-1.4,-0.4,-1.5,0/6/0,981.5,974.1,977.6,,41.0,31.0,21.0,,,352.0,NW,0.3,0,34,
-2010-10-25,-0.7,-2.7,-1.4,-1.6,0/6/0,1001.3,981.5,987.7,,26.0,21.0,13.0,,,309.0,W,1.8,9,43,
-2010-10-26,1.6,-1.9,-0.9,-1.5,0/6/0,1008.0,996.4,1005.0,,27.0,21.0,10.0,,,59.0,N,0.0,0,42,
-2010-10-27,8.3,-0.1,3.9,-0.7,0/6/0,996.6,984.1,988.5,,63.0,42.0,25.0,,,22.0,N,6.6,0,34,
-2010-10-28,3.4,-3.5,-2.0,-0.8,0/6/0,1000.0,984.6,994.5,,30.0,21.0,11.0,,,10.0,SW,1.3,2,23,
-2010-10-29,2.2,-4.9,-2.5,-0.8,0/6/0,999.8,978.4,990.7,,49.0,38.0,10.0,,,29.0,NE,0.0,0,20,
-2010-10-30,0.7,-2.9,-0.8,-1.4,0/6/0,980.8,971.5,978.0,,51.0,42.0,24.0,,,32.0,N,2.0,0,20,
-2010-10-31,0.2,-0.2,0.0,-1.5,0/6/0,991.4,969.1,979.9,,43.0,31.0,19.0,,,10.0,N,1.0,4,24,
-2010-11-01,2.1,-1.3,1.3,-1.3,0/6/0,995.3,984.5,992.2,,55.0,46.0,22.0,,,26.0,N,1.8,0,23,
-2010-11-02,1.7,-0.6,0.7,-1.2,0/6/0,998.4,989.5,994.5,,44.0,32.0,20.0,,,352.0,N,3.1,0,19,
-2010-11-03,3.5,0.4,1.9,-0.9,0/6/0,995.0,986.7,992.1,,39.0,34.0,19.0,,,18.0,N,5.1,0,17,
-2010-11-04,4.2,0.1,1.7,-0.9,0/6/0,1006.2,987.5,999.4,,30.0,23.0,11.0,,,337.0,N,1.0,0,12,
-2010-11-05,4.1,1.4,3.0,-0.6,0/6/0,1005.9,985.9,998.4,,52.0,41.0,27.0,,,47.0,NE,0.5,0,9,
-2010-11-06,2.3,-0.5,0.8,-0.5,0/6/0,986.7,979.2,982.1,,46.0,34.0,11.0,,,37.0,NE,4.1,0,0,
-2010-11-07,0.1,-3.0,-1.1,-0.5,0/6/0,979.4,971.2,976.5,,36.0,29.0,13.0,,,38.0,NW,2.0,4,4,
-2010-11-08,2.0,-2.9,-1.3,-0.6,0/6/0,989.2,975.2,978.8,,40.0,31.0,11.0,,,231.0,NW,3.3,5,9,
-2010-11-09,0.5,-4.0,-1.9,-1.0,0/6/0,994.5,987.6,991.7,,43.0,35.0,14.0,,,28.0,SW,0.0,0,3,
-2010-11-10,2.5,-0.8,1.5,-1.2,0/6/0,993.1,989.9,991.9,,40.0,28.0,16.0,,,353.0,N,21.1,5,6,
-2010-11-11,2.5,-0.1,1.1,-0.7,0/6/0,991.4,985.4,988.4,,37.0,25.0,16.0,,,13.0,N,17.8,0,0,
-2010-11-12,1.6,0.3,0.9,-0.9,0/6/0,992.3,983.8,988.3,,52.0,42.0,23.0,,,37.0,N,3.1,5,5,
-2010-11-13,1.6,-1.2,-0.1,-0.8,0/6/0,998.3,983.6,991.4,,43.0,35.0,17.0,,,22.0,N,0.0,2,7,
-2010-11-14,3.5,0.3,2.0,-0.9,0/6/0,998.6,989.7,995.5,,39.0,30.0,20.0,,,19.0,N,7.9,0,0,
-2010-11-15,3.5,-0.4,1.8,-1.1,0/6/0,1003.6,989.4,998.6,,43.0,30.0,15.0,,,352.0,N,1.3,0,0,
-2010-11-16,5.3,-1.5,2.0,-0.5,0/6/0,1004.8,985.2,999.2,,28.0,23.0,8.0,,,34.0,SE,0.0,0,0,
-2010-11-17,4.7,-0.7,1.8,-0.3,0/6/0,985.3,971.0,974.4,,40.0,33.0,15.0,,,37.0,N,1.0,0,0,
-2010-11-18,2.2,-1.2,-0.2,-0.6,0/6/0,978.6,971.6,975.3,,26.0,22.0,12.0,,,326.0,NW,3.6,17,17,
-2010-11-19,6.1,-0.5,3.5,-0.4,0/6/0,971.6,961.3,965.7,,40.0,32.0,12.0,,,21.0,NE,0.3,2,9,
-2010-11-20,3.3,-1.9,0.0,-0.5,0/6/0,983.0,962.8,976.6,,36.0,29.0,17.0,,,19.0,N,1.3,6,13,
-2010-11-21,5.5,1.6,4.0,-0.7,0/6/0,982.9,966.8,973.4,,34.0,25.0,17.0,,,47.0,E,0.0,0,0,
-2010-11-22,4.5,-1.2,1.6,-0.4,0/6/0,975.5,967.7,973.0,,30.0,21.0,8.0,,,77.0,N,0.0,0,0,
-2010-11-23,3.5,0.3,1.4,-0.7,0/6/0,970.0,966.6,967.6,,39.0,27.0,12.0,,,70.0,E,0.0,0,0,
-2010-11-24,3.4,-0.7,0.8,-0.6,0/6/0,972.9,968.3,970.3,,24.0,21.0,5.0,,,23.0,SE,0.0,0,0,
-2010-11-25,0.5,-0.9,-0.1,-0.2,0/6/0,981.9,972.9,977.8,,32.0,27.0,14.0,,,25.0,N,1.5,2,0,
-2010-11-26,1.0,-1.4,-0.4,-0.4,0/6/0,983.7,978.5,981.3,,24.0,22.0,8.0,,,36.0,NW,0.3,0,0,
-2010-11-27,1.8,-2.0,-0.4,-0.1,0/6/0,984.0,975.9,981.8,,33.0,28.0,8.0,,,20.0,N,0.8,0,0,
-2010-11-28,2.2,-1.0,0.4,-0.2,0/6/0,975.9,971.0,972.5,,35.0,28.0,10.0,,,28.0,SE,1.0,1,0,
-2010-11-29,1.3,-1.3,-0.5,-0.5,0/6/0,976.4,971.3,973.1,,15.0,10.0,5.0,,,84.0,SE,1.5,1,0,
-2010-11-30,1.5,-2.8,-0.7,-0.7,0/6/0,976.9,968.0,973.3,,50.0,35.0,15.0,,,115.0,E,0.0,0,0,
-2010-12-01,4.4,-1.4,1.0,-0.3,0/6/0,970.5,967.9,969.5,,44.0,28.0,13.0,,,118.0,E,0.0,0,0,
-2010-12-02,2.8,-1.4,-0.1,0.5,0/6/0,973.7,968.7,970.7,,20.0,17.0,9.0,,,245.0,SW,0.0,0,0,
-2010-12-03,-0.1,-1.1,-0.7,0.2,0/6/0,974.9,973.5,974.1,,22.0,19.0,12.0,,,243.0,SW,0.0,0,0,
-2010-12-04,3.5,-2.0,0.5,-0.0,0/6/0,986.8,974.5,979.1,,20.0,16.0,6.0,,,154.0,W,0.0,0,0,
-2010-12-05,6.2,-2.3,1.3,0.8,0/6/0,990.0,986.9,989.1,,20.0,16.0,5.0,,,35.0,NE,0.0,0,0,
-2010-12-06,2.1,-0.4,0.7,0.5,0/6/0,987.8,984.8,985.7,,14.0,12.0,4.0,,,48.0,W,0.0,0,0,
-2010-12-07,0.4,-2.1,-1.1,0.6,0/6/0,988.1,986.1,987.4,,30.0,25.0,11.0,,,17.0,N,0.0,0,0,
-2010-12-08,3.5,-3.0,-0.1,0.6,0/6/0,987.8,981.7,985.1,,28.0,23.0,11.0,,,18.0,E,0.0,0,0,
-2010-12-09,1.8,-0.3,0.3,1.3,0/6/0,986.5,981.4,983.6,,22.0,16.0,6.0,,,81.0,NW,0.0,0,0,
-2010-12-10,1.8,-1.4,-0.4,1.6,0/6/0,987.0,985.9,986.5,,16.0,12.0,6.0,,,219.0,W,0.0,0,0,
-2010-12-11,3.5,-1.7,0.0,0.4,0/6/0,985.9,980.1,982.8,,19.0,16.0,6.0,,,242.0,SW,0.0,0,0,
-2010-12-12,3.7,-2.9,-0.4,0.8,0/6/0,984.1,967.8,980.5,,39.0,32.0,6.0,,,29.0,NE,0.0,0,0,
-2010-12-13,3.8,-1.5,1.0,0.4,0/6/0,976.3,961.1,968.2,,43.0,24.0,13.0,,,105.0,SE,0.0,0,0,
-2010-12-14,1.8,-2.0,0.0,0.6,0/6/0,978.5,976.2,977.1,,18.0,15.0,6.0,,,229.0,SW,0.0,0,0,
-2010-12-15,3.9,-2.5,0.6,0.9,0/6/0,980.4,972.3,978.6,,29.0,20.0,7.0,,,23.0,NE,0.0,0,0,
-2010-12-16,5.2,0.4,2.5,0.3,0/6/0,972.7,965.5,968.4,,44.0,26.0,15.0,,,75.0,E,0.0,0,0,
-2010-12-17,3.3,-1.2,0.8,0.2,0/6/0,983.7,972.7,978.8,,19.0,17.0,6.0,,,235.0,SW,0.0,0,0,
-2010-12-18,3.9,-1.6,0.7,0.7,0/6/0,983.9,979.9,982.4,,15.0,13.0,4.0,,,234.0,SW,0.0,0,0,
-2010-12-19,6.4,-2.2,1.4,1.1,0/6/0,979.9,967.3,973.3,,14.0,12.0,3.0,,,34.0,N,0.0,0,0,
-2010-12-20,3.9,0.5,2.0,1.1,0/6/0,970.7,966.5,968.9,,33.0,25.0,10.0,,,19.0,N,1.0,1,0,
-2010-12-21,2.5,-0.1,0.9,1.2,0/6/0,980.5,967.8,972.3,,19.0,14.0,7.0,,,119.0,W,0.0,0,0,
-2010-12-22,5.8,-0.4,1.6,1.1,0/6/0,986.4,980.5,984.3,,16.0,14.0,6.0,,,259.0,W,0.3,2,0,
-2010-12-23,4.8,1.8,3.1,0.7,0/6/0,981.9,974.4,976.7,,26.0,20.0,8.0,,,123.0,E,0.0,0,0,
-2010-12-24,6.3,0.8,3.6,0.5,0/6/0,980.0,973.9,977.7,,33.0,25.0,7.0,,,77.0,E,0.0,0,0,
-2010-12-25,6.6,3.9,5.0,0.0,0/6/0,980.4,971.1,974.8,,39.0,29.0,11.0,,,76.0,E,0.0,0,0,
-2010-12-26,7.5,2.2,4.0,1.1,0/6/0,987.7,980.4,985.2,,32.0,24.0,4.0,,,77.0,W,0.0,0,0,
-2010-12-27,7.4,2.0,4.1,0.6,0/6/0,987.0,984.1,985.2,,44.0,30.0,14.0,,,76.0,E,0.0,0,0,
-2010-12-28,5.5,0.9,2.5,0.8,0/6/0,994.6,987.1,992.2,,17.0,12.0,3.0,,,303.0,SE,0.0,0,0,
-2010-12-29,4.9,3.1,4.0,0.9,0/6/0,991.9,984.0,986.6,,49.0,41.0,22.0,,,34.0,NE,1.5,0,0,
-2010-12-30,5.5,1.6,3.4,0.7,0/6/0,990.3,987.5,989.1,,33.0,26.0,9.0,,,22.0,N,0.3,0,0,
-2010-12-31,4.2,0.9,2.0,1.0,0/6/0,989.9,985.3,988.3,,7.0,7.0,2.0,,,318.0,NW,0.0,0,0,
-2011-01-01,3.7,0.9,2.0,0.8,0/6/0,990.2,985.3,987.8,,7.0,6.0,2.0,,,180.0,SE,1.8,0,0,
-2011-01-02,3.2,0.8,1.9,-0.0,0/6/0,1002.6,990.2,996.0,,24.0,18.0,8.0,,,25.0,N,8.6,0,0,
-2011-01-03,7.2,0.8,3.2,0.0,0/6/0,1004.0,991.4,999.6,,46.0,37.0,8.0,,,28.0,SE,0.0,0,0,
-2011-01-04,5.6,0.7,2.1,1.0,0/6/0,993.7,987.3,990.0,,30.0,22.0,3.0,,,36.0,S,0.0,0,0,
-2011-01-05,2.1,-1.5,0.3,1.1,0/6/0,996.6,987.7,992.3,,9.0,7.0,3.0,,,123.0,SE,0.0,0,0,
-2011-01-06,4.2,-0.8,1.5,1.1,0/6/0,996.4,990.5,992.7,,10.0,7.0,2.0,,,79.0,N,0.0,0,0,
-2011-01-07,2.6,0.5,1.2,1.5,0/6/0,1001.1,994.6,999.4,,21.0,18.0,8.0,,,240.0,W,0.0,0,0,
-2011-01-08,1.1,0.0,0.6,0.7,0/6/0,999.8,991.0,995.6,,16.0,14.0,9.0,,,279.0,W,0.8,0,0,
-2011-01-09,2.2,0.0,0.9,1.2,0/6/0,991.0,987.5,988.5,,16.0,13.0,9.0,,,235.0,SW,0.3,0,0,
-2011-01-10,5.0,-0.3,2.2,1.3,0/6/0,987.7,983.1,985.2,,13.0,10.0,4.0,,,235.0,E,0.0,0,0,
-2011-01-11,5.9,-0.8,2.0,1.1,0/6/0,986.3,984.2,985.6,,7.0,5.0,3.0,,,329.0,NE,0.0,0,0,
-2011-01-12,4.0,-1.1,1.3,1.3,0/6/0,985.6,983.5,984.2,,17.0,12.0,4.0,,,40.0,N,0.3,0,0,
-2011-01-13,5.3,1.2,2.5,1.1,0/6/0,992.9,984.6,988.8,,12.0,10.0,4.0,,,236.0,N,0.0,0,0,
-2011-01-14,5.0,0.1,2.0,1.5,0/6/0,994.3,992.3,993.5,,14.0,12.0,5.0,,,208.0,S,0.0,0,0,
-2011-01-15,6.9,0.5,3.4,1.7,0/6/0,998.9,992.4,994.9,,15.0,13.0,5.0,,,44.0,E,0.0,0,0,
-2011-01-16,5.4,0.8,2.8,2.7,0/6/0,1006.3,998.9,1003.0,,10.0,9.0,3.0,,,73.0,E,0.0,0,0,
-2011-01-17,6.1,1.1,2.8,2.9,0/6/0,1007.1,1003.7,1006.2,,10.0,9.0,2.0,,,11.0,NE,0.0,0,0,
-2011-01-18,5.0,0.4,2.0,2.6,0/6/0,1003.6,997.8,1000.1,,12.0,10.0,4.0,,,241.0,N,0.0,0,0,
-2011-01-19,5.7,-0.6,2.2,3.3,0/6/0,997.9,997.0,997.3,,12.0,11.0,3.0,,,244.0,NE,0.0,0,0,
-2011-01-20,5.5,-0.7,2.1,3.5,0/6/0,997.4,994.3,996.0,,8.0,5.0,3.0,,,56.0,NE,0.0,0,0,
-2011-01-21,4.1,-0.7,1.4,2.2,0/6/0,995.0,993.2,994.5,,17.0,15.0,8.0,,,20.0,NE,0.0,0,0,
-2011-01-22,2.9,0.0,1.6,1.2,0/6/0,993.4,978.2,986.0,,45.0,32.0,14.0,,,75.0,E,0.0,0,0,
-2011-01-23,3.8,-0.1,1.8,0.8,0/6/0,983.6,977.6,980.3,,41.0,29.0,10.0,,,82.0,E,0.3,0,0,
-2011-01-24,8.1,0.5,3.1,1.8,0/6/0,983.3,978.7,981.0,,20.0,14.0,4.0,,,145.0,N,2.3,1,0,
-2011-01-25,5.3,0.3,2.7,2.2,0/6/0,989.2,980.1,984.1,,18.0,15.0,6.0,,,233.0,SE,0.0,0,0,
-2011-01-26,1.7,0.6,1.1,1.6,0/6/0,999.2,989.2,994.5,,26.0,22.0,16.0,,,232.0,SW,0.0,0,0,
-2011-01-27,1.8,0.3,0.9,1.5,0/6/0,1000.4,999.1,999.7,,19.0,16.0,9.0,,,252.0,SW,0.0,0,0,
-2011-01-28,4.3,-0.4,2.3,1.4,0/6/0,999.3,989.5,993.6,,36.0,31.0,14.0,,,23.0,NE,0.3,0,0,
-2011-01-29,5.9,3.1,4.4,1.7,0/6/0,989.6,978.1,982.3,,40.0,34.0,14.0,,,33.0,NE,0.0,0,0,
-2011-01-30,6.4,3.3,5.2,1.5,0/6/0,979.9,976.3,978.1,,33.0,26.0,12.0,,,31.0,NE,0.0,0,0,
-2011-01-31,4.2,0.4,2.2,1.4,0/6/0,986.4,977.5,980.3,,16.0,13.0,4.0,,,279.0,N,5.6,1,0,
-2011-02-01,4.8,-0.3,1.5,1.3,0/6/0,988.3,981.5,986.7,,16.0,13.0,5.0,,,280.0,W,0.5,0,0,
-2011-02-02,5.3,0.8,2.7,1.1,0/6/0,982.3,976.9,980.1,,37.0,29.0,10.0,,,18.0,N,0.8,0,0,
-2011-02-03,6.5,0.6,3.1,2.1,0/6/0,982.1,977.4,979.0,,29.0,19.0,8.0,,,104.0,E,1.0,0,0,
-2011-02-04,3.2,0.7,1.4,1.7,0/6/0,989.7,982.2,986.3,,22.0,18.0,10.0,,,270.0,W,0.0,0,0,
-2011-02-05,1.8,0.2,0.8,0.6,0/6/0,990.3,980.7,987.2,,17.0,16.0,8.0,,,245.0,W,0.0,0,0,
-2011-02-06,2.8,0.4,1.1,1.0,0/6/0,980.6,975.1,976.6,,15.0,11.0,4.0,,,98.0,NW,0.3,0,0,
-2011-02-07,3.2,0.1,1.5,1.3,0/6/0,982.3,978.5,980.6,,32.0,24.0,5.0,,,32.0,NE,1.0,1,0,
-2011-02-08,2.7,0.6,1.7,1.4,0/6/0,991.0,982.3,985.4,,19.0,15.0,5.0,,,336.0,SE,4.3,0,0,
-2011-02-09,5.5,1.2,3.3,1.4,0/6/0,991.5,981.5,988.5,,24.0,19.0,7.0,,,24.0,SE,0.0,0,0,
-2011-02-10,5.0,2.2,3.3,1.4,0/6/0,981.9,972.6,977.2,,70.0,43.0,21.0,,,34.0,N,9.9,0,0,
-2011-02-11,3.1,0.9,2.4,0.1,0/6/0,993.1,980.6,986.2,,27.0,21.0,13.0,,,351.0,N,3.1,0,0,
-2011-02-12,4.2,0.4,1.8,0.9,0/6/0,1004.2,993.1,1000.5,,11.0,9.0,4.0,,,318.0,NW,0.0,0,0,
-2011-02-13,4.5,-0.2,2.5,1.3,0/6/0,1003.4,974.3,990.4,,34.0,25.0,8.0,,,70.0,E,6.9,0,0,
-2011-02-14,5.6,0.1,2.6,0.9,0/6/0,974.2,967.3,968.9,,35.0,30.0,7.0,,,26.0,NE,4.1,3,2,
-2011-02-15,3.6,1.5,2.5,0.9,0/6/0,976.4,968.4,973.0,,21.0,15.0,6.0,,,11.0,N,0.0,0,0,
-2011-02-16,3.5,1.0,2.3,1.1,0/6/0,988.8,975.8,979.7,,31.0,25.0,16.0,,,28.0,N,1.8,0,0,
-2011-02-17,5.2,0.7,3.3,1.1,0/6/0,992.3,988.8,990.9,,37.0,30.0,16.0,,,16.0,NE,0.0,0,0,
-2011-02-18,4.6,2.1,3.6,1.4,0/6/0,994.2,980.3,987.3,,45.0,35.0,21.0,,,38.0,NE,10.9,0,0,
-2011-02-19,3.2,1.0,2.1,1.3,0/6/0,992.7,981.2,988.9,,49.0,40.0,14.0,,,28.0,NW,0.5,0,0,
-2011-02-20,5.4,0.6,2.2,1.0,0/6/0,1000.5,980.2,990.1,,23.0,19.0,5.0,,,23.0,NW,8.1,0,0,
-2011-02-21,4.2,0.1,1.9,1.2,0/6/0,1006.1,996.0,999.7,,18.0,16.0,5.0,,,339.0,NW,0.0,0,0,
-2011-02-22,3.9,1.6,2.4,1.0,0/6/0,1010.6,1002.1,1006.2,,42.0,33.0,14.0,,,24.0,W,0.5,0,0,
-2011-02-23,5.2,0.8,3.0,0.9,0/6/0,1010.7,984.3,1001.1,,76.0,46.0,21.0,,,24.0,N,10.2,0,0,
-2011-02-24,4.1,0.9,2.5,1.1,0/6/0,985.3,974.3,982.1,,57.0,41.0,20.0,,,19.0,NW,5.1,0,0,
-2011-02-25,3.4,0.8,1.8,0.9,0/6/0,984.4,967.5,978.2,,37.0,29.0,16.0,,,204.0,N,0.8,0,0,
-2011-02-26,3.6,-0.1,1.9,-0.8,0/6/0,987.9,981.8,985.1,,27.0,21.0,11.0,,,39.0,N,2.3,2,2,
-2011-02-27,6.5,2.4,4.3,1.0,0/6/0,988.1,982.5,985.0,,41.0,33.0,22.0,,,34.0,NE,4.1,0,0,
-2011-02-28,7.2,3.0,4.5,1.5,0/6/0,989.0,981.3,985.6,,57.0,45.0,26.0,,,30.0,N,4.6,0,0,
-2011-03-01,6.1,1.1,1.1,1.1,0/6/0,994.6,974.1,987.7,,55.0,42.0,15.0,,,55.0,E,3.6,0,0,
-2011-03-02,4.9,1.2,1.2,1.1,0/6/0,987.0,970.3,978.7,,52.0,41.0,24.0,,,21.0,N,5.6,0,0,
-2011-03-03,5.4,2.0,2.0,1.3,0/6/0,987.3,969.1,978.3,,45.0,37.0,19.0,,,37.0,N,1.3,0,0,
-2011-03-04,3.9,1.9,1.9,-0.3,0/6/0,979.5,969.8,972.7,,25.0,20.0,11.0,,,359.0,N,3.6,0,0,
-2011-03-05,2.4,0.4,0.4,-0.4,0/6/0,989.2,979.5,985.0,,21.0,18.0,10.0,,,337.0,NW,5.6,1,1,
-2011-03-06,1.8,-0.6,-0.6,0.2,0/6/0,989.4,968.1,977.4,,30.0,24.0,10.0,,,215.0,SW,0.5,1,0,
-2011-03-07,3.3,0.0,0.0,1.0,0/6/0,986.7,977.0,984.0,,22.0,19.0,8.0,,,246.0,W,0.3,0,0,
-2011-03-08,3.5,-0.1,-0.1,0.4,0/6/0,988.1,980.0,983.8,,16.0,13.0,4.0,,,26.0,SE,0.0,0,0,
-2011-03-09,8.0,1.4,1.4,0.9,0/6/0,988.5,971.1,981.2,,44.0,35.0,10.0,,,35.0,E,1.8,0,0,
-2011-03-10,3.7,-0.1,-0.1,0.9,0/6/0,971.9,962.4,965.5,,20.0,17.0,3.0,,,146.0,W,8.9,1,0,
-2011-03-11,1.0,-0.3,-0.3,0.8,0/6/0,984.5,966.5,975.2,,9.0,8.0,4.0,,,349.0,N,2.0,1,1,
-2011-03-12,3.1,-0.8,-0.8,0.4,0/6/0,1000.4,984.5,993.7,,15.0,12.0,4.0,,,229.0,N,0.0,0,0,
-2011-03-13,1.0,-0.8,-0.8,0.8,0/6/0,1009.1,1000.3,1005.4,,15.0,12.0,4.0,,,238.0,SW,0.0,0,0,
-2011-03-14,2.8,-0.8,-0.8,0.7,0/6/0,1010.3,1007.3,1009.4,,18.0,15.0,4.0,,,148.0,SE,0.0,0,0,
-2011-03-15,4.3,0.6,0.6,0.4,0/6/0,1008.5,1006.8,1007.8,,22.0,16.0,3.0,,,54.0,SE,0.0,0,0,
-2011-03-16,4.4,-0.4,-0.4,0.4,0/6/0,1006.8,999.6,1003.0,,7.0,7.0,2.0,,,153.0,SE,0.0,0,0,
-2011-03-17,6.1,-1.1,-1.1,0.8,0/6/0,999.8,998.2,998.9,,9.0,8.0,2.0,,,148.0,N,0.0,0,0,
-2011-03-18,3.1,-0.3,-0.3,0.8,0/6/0,999.1,994.4,997.2,,12.0,10.0,4.0,,,225.0,SE,0.0,0,0,
-2011-03-19,5.2,0.0,0.0,0.9,0/6/0,994.6,990.8,992.0,,37.0,29.0,5.0,,,34.0,E,0.0,0,0,
-2011-03-20,2.4,0.6,0.6,1.1,0/6/0,993.3,991.7,992.4,,6.0,5.0,2.0,,,140.0,SE,0.3,0,0,
-2011-03-21,4.1,0.1,0.1,1.1,0/6/0,993.2,986.3,990.6,,13.0,10.0,3.0,,,78.0,N,0.0,0,0,
-2011-03-22,2.3,-1.5,-1.5,0.8,0/6/0,992.5,985.9,988.7,,15.0,13.0,4.0,,,16.0,NE,0.0,0,0,
-2011-03-23,1.4,-0.2,-0.2,0.7,0/6/0,995.5,992.5,993.7,,10.0,7.0,2.0,,,106.0,E,0.0,0,0,
-2011-03-24,1.7,-0.7,-0.7,0.5,0/6/0,1000.0,995.5,997.9,,23.0,16.0,4.0,,,77.0,SE,0.0,0,0,
-2011-03-25,5.1,0.0,0.0,1.3,0/6/0,998.9,984.8,992.9,,40.0,31.0,13.0,,,71.0,E,0.0,0,0,
-2011-03-26,5.3,2.3,2.3,1.4,0/6/0,987.6,984.6,986.3,,42.0,31.0,11.0,,,71.0,E,1.0,0,0,
-2011-03-27,4.4,1.6,1.6,1.4,0/6/0,995.1,987.6,992.4,,31.0,20.0,10.0,,,131.0,E,0.0,0,0,
-2011-03-28,4.2,0.8,0.8,1.3,0/6/0,994.0,984.2,989.9,,51.0,38.0,15.0,,,53.0,NE,0.0,0,0,
-2011-03-29,4.0,0.0,0.0,1.3,0/6/0,991.4,984.5,989.3,,49.0,39.0,9.0,,,52.0,E,1.5,2,2,
-2011-03-30,1.9,-1.3,-1.3,0.1,0/6/0,991.4,987.3,989.6,,22.0,15.0,5.0,,,81.0,E,0.0,0,0,
-2011-03-31,3.0,-1.0,-1.0,1.1,0/6/0,993.2,986.4,988.3,,24.0,18.0,6.0,,,67.0,N,0.0,0,0,
-2011-04-01,0.7,-2.3,-0.5,1.0,0/6/0,998.7,993.2,997.0,,15.0,12.0,5.0,,,25.0,NE,0.0,0,0,
-2011-04-02,2.3,-2.4,-0.5,0.4,0/6/0,998.3,995.0,996.2,,19.0,16.0,4.0,,,40.0,NE,0.0,0,0,
-2011-04-03,0.4,-3.6,-1.9,0.2,0/6/0,1000.4,996.1,998.9,,15.0,13.0,6.0,,,28.0,NE,0.0,0,0,
-2011-04-04,0.0,-2.2,-0.9,0.7,0/6/0,999.4,984.6,991.0,,34.0,26.0,11.0,,,50.0,E,0.0,0,0,
-2011-04-05,0.1,-1.8,-0.9,0.6,0/6/0,988.6,984.5,986.9,,31.0,26.0,11.0,,,24.0,NE,0.0,0,0,
-2011-04-06,0.0,-2.5,-0.9,0.7,0/6/0,987.5,985.2,986.3,,23.0,17.0,7.0,,,75.0,E,0.0,0,0,
-2011-04-07,-0.5,-3.1,-1.7,0.3,0/6/0,991.3,987.0,988.1,,20.0,16.0,8.0,,,232.0,SW,0.0,0,0,
-2011-04-08,-1.7,-2.5,-2.1,0.4,0/6/0,992.2,989.0,991.4,,22.0,18.0,10.0,,,230.0,SW,0.0,0,0,
-2011-04-09,-1.6,-3.3,-2.4,-0.5,32632,989.0,976.7,982.2,,32.0,20.0,8.0,,,97.0,N,2.5,2,2,
-2011-04-10,-0.9,-6.8,-4.1,0.9,21631,999.1,975.9,988.8,,46.0,30.0,13.0,,,103.0,E,0.0,0,0,
-2011-04-11,-2.6,-4.2,-3.5,-0.0,0/6/0,1003.6,999.0,1001.8,,14.0,13.0,5.0,,,18.0,NE,0.0,0,0,
-2011-04-12,-2.3,-4.1,-3.2,0.3,0/4/0,999.0,986.0,990.2,,27.0,20.0,8.0,,,118.0,SE,0.3,1,1,
-2011-04-13,-1.8,-6.1,-4.3,-0.2,0/4/0,988.6,984.5,986.5,,17.0,12.0,5.0,,,39.0,NE,0.0,0,0,
-2011-04-14,-1.6,-5.6,-3.7,-1.1,0/4/0,986.9,984.2,985.6,,16.0,13.0,4.0,,,228.0,NE,0.0,0,0,
-2011-04-15,-2.7,-4.9,-3.9,-0.8,0/4/0,988.3,984.4,986.7,,36.0,31.0,14.0,,,21.0,NE,0.0,0,0,
-2011-04-16,-1.6,-4.8,-3.3,-0.4,0/6/0,987.1,980.6,983.8,,30.0,26.0,9.0,,,23.0,SE,0.0,0,0,
-2011-04-17,0.9,-2.6,-0.9,-0.3,31622,980.6,975.6,977.6,,15.0,12.0,4.0,,,119.0,NE,0.0,1,1,
-2011-04-18,-1.0,-2.0,-1.5,-0.7,31622,983.4,978.0,981.0,,11.0,9.0,4.0,,,302.0,N,0.0,0,0,
-2011-04-19,-1.6,-3.3,-2.4,-0.7,21622,983.4,982.1,982.7,,14.0,12.0,5.0,,,23.0,N,0.5,0,0,
-2011-04-20,-1.5,-3.7,-2.5,-0.9,21622,990.9,983.3,985.9,,21.0,16.0,7.0,,,217.0,N,2.3,6,6,
-2011-04-21,-1.6,-5.2,-3.3,-0.3,20622,999.2,990.9,996.2,,13.0,11.0,5.0,,,224.0,NE,0.0,1,7,
-2011-04-22,4.5,-3.6,0.4,0.9,0/4/0,998.5,978.2,986.6,,39.0,25.0,11.0,,,99.0,E,0.0,0,5,
-2011-04-23,3.0,0.1,1.1,0.8,0/4/0,978.2,961.1,966.6,,44.0,29.0,13.0,,,100.0,E,0.3,0,2,
-2011-04-24,2.7,-1.2,1.2,0.6,0/4/0,979.3,965.7,970.8,,35.0,28.0,11.0,,,24.0,NE,0.0,0,1,
-2011-04-25,-0.8,-2.3,-1.6,0.5,0/4/0,983.4,979.3,981.9,,30.0,24.0,4.0,,,25.0,NE,0.0,1,2,
-2011-04-26,-1.7,-4.2,-2.5,0.5,0/4/0,980.0,974.3,976.8,,20.0,16.0,7.0,,,23.0,N,0.0,0,1,
-2011-04-27,-1.5,-4.9,-3.3,-0.2,0/4/0,981.1,974.4,978.0,,25.0,18.0,6.0,,,6.0,N,0.3,2,2,
-2011-04-28,0.5,-2.1,-0.5,0.2,0/6/0,979.1,957.3,964.4,,64.0,53.0,23.0,,,34.0,N,1.0,1,1,
-2011-04-29,0.4,-2.0,-0.7,0.0,0/6/0,982.1,961.9,972.5,,32.0,24.0,18.0,,,224.0,W,1.0,2,12,
-2011-04-30,-1.9,-4.4,-2.7,-0.1,0/6/0,990.4,982.0,987.5,,37.0,28.0,17.0,,,213.0,SW,0.0,0,11,
-2011-05-01,-2.3,-5.3,-3.7,-0.4,20670,988.6,979.7,984.1,,31.0,23.0,6.0,,,339.0,NE,0.8,0,10,
-2011-05-02,-2.1,-4.8,-3.4,-1.1,21670,991.1,969.8,986.7,,31.0,27.0,9.0,,,240.0,SW,0.3,2,17,
-2011-05-03,2.9,-2.7,0.0,-0.1,0/4/0,969.9,952.0,958.2,,58.0,45.0,17.0,,,39.0,E,0.0,0,14,
-2011-05-04,-0.8,-6.1,-4.1,0.3,0/4/0,969.0,951.3,957.3,,42.0,32.0,16.0,,,72.0,E,0.0,0,11,
-2011-05-05,-3.6,-6.1,-4.9,-0.6,0/4/0,985.2,969.0,978.6,,12.0,9.0,4.0,,,102.0,NE,0.0,0,10,
-2011-05-06,-0.1,-4.5,-3.1,-0.5,0/4/0,985.4,971.5,980.1,,37.0,31.0,11.0,,,34.0,NE,0.0,0,10,
-2011-05-07,-0.9,-3.0,-2.1,-0.3,0/4/0,986.1,971.0,976.8,,29.0,23.0,8.0,,,68.0,E,0.0,0,10,
-2011-05-08,-1.8,-3.6,-2.5,-0.1,0/4/0,986.2,976.8,980.5,,48.0,36.0,19.0,,,43.0,NE,0.3,0,10,
-2011-05-09,-1.4,-5.2,-3.4,-0.2,0/4/0,989.4,979.7,985.3,,25.0,20.0,7.0,,,30.0,NE,2.3,6,14,
-2011-05-10,-2.9,-6.1,-4.9,-0.7,0/4/0,997.6,989.4,992.7,,23.0,20.0,7.0,,,35.0,NE,0.0,0,13,
-2011-05-11,-4.3,-7.9,-6.0,-0.7,0/4/0,1006.9,997.6,1003.7,,23.0,21.0,8.0,,,21.0,NE,0.0,0,12,
-2011-05-12,-1.7,-6.1,-3.1,-0.6,20470,1007.7,1005.3,1006.2,,29.0,25.0,5.0,,,32.0,NE,0.0,0,11,
-2011-05-13,1.5,-4.5,-2.7,-0.7,20670,1012.5,1007.6,1010.3,,11.0,10.0,3.0,,,349.0,NE,0.0,0,11,
-2011-05-14,6.5,-1.6,2.6,-0.2,0/4/0,1011.8,1000.2,1007.7,,55.0,44.0,20.0,,,18.0,N,0.8,0,5,
-2011-05-15,6.8,2.6,4.3,0.1,0/4/0,1011.0,990.0,999.2,,66.0,53.0,37.0,,,30.0,NE,7.4,0,0,
-2011-05-16,3.4,0.1,1.6,-0.1,0/4/0,995.1,985.4,991.5,,54.0,37.0,20.0,,,27.0,N,5.1,0,0,
-2011-05-17,1.6,-1.0,0.2,-0.5,20470,992.6,977.4,987.4,,26.0,22.0,8.0,,,22.0,N,0.0,1,1,
-2011-05-18,-0.8,-2.9,-1.6,-0.6,0/4/0,977.6,974.4,976.3,,12.0,11.0,6.0,,,274.0,NW,0.8,1,1,
-2011-05-19,-2.8,-4.8,-3.6,-0.8,20410,981.1,977.0,978.7,,20.0,16.0,8.0,,,36.0,N,0.0,1,2,
-2011-05-20,-1.7,-5.4,-3.8,-1.0,0/4/0,986.9,981.1,983.8,,13.0,9.0,4.0,,,227.0,NE,0.0,0,2,
-2011-05-21,-2.1,-4.2,-2.8,-0.9,0/4/0,992.6,987.0,989.7,,19.0,16.0,6.0,,,233.0,SW,0.0,0,2,
-2011-05-22,0.8,-4.2,-1.8,-0.4,20410,992.6,979.0,987.6,,32.0,26.0,11.0,,,31.0,NE,0.0,0,1,
-2011-05-23,1.9,-1.0,0.6,-0.3,0/4/0,979.1,973.6,975.7,,31.0,22.0,9.0,,,61.0,SE,0.0,0,1,
-2011-05-24,1.5,-2.1,-1.5,-0.5,0/4/0,986.8,977.7,982.9,,17.0,14.0,6.0,,,215.0,SW,0.8,1,2,
-2011-05-25,-2.0,-4.4,-2.9,-1.1,20410,988.5,985.6,987.5,,15.0,13.0,3.0,,,21.0,NE,1.3,4,8,
-2011-05-26,3.5,-3.1,0.7,-0.4,0/6/0,988.3,981.7,984.8,,56.0,43.0,18.0,,,37.0,N,4.1,0,7,
-2011-05-27,5.3,1.0,2.8,-0.3,20610,984.1,973.4,980.7,,45.0,36.0,12.0,,,34.0,N,3.8,0,0,
-2011-05-28,4.0,-1.3,1.1,-0.3,20410,990.8,966.4,975.8,,51.0,43.0,11.0,,,22.0,NW,4.8,1,1,
-2011-05-29,3.6,-1.1,2.1,-0.3,0/6/0,994.4,990.8,993.3,,51.0,37.0,21.0,,,28.0,NE,7.9,0,0,
-2011-05-30,3.3,-0.2,1.7,-0.2,0/6/0,993.9,986.9,991.1,,48.0,36.0,14.0,,,22.0,N,9.1,0,0,
-2011-05-31,1.3,-0.9,0.1,-0.5,0/6/0,990.2,985.1,988.4,,33.0,27.0,15.0,,,28.0,N,0.3,3,3,
-2011-06-01,0.4,-3.1,-1.3,-0.4,0/6/0,998.4,983.4,989.4,,24.0,17.0,10.0,,,78.0,E,2.3,0,2,
-2011-06-02,-1.2,-3.6,-2.5,-1.0,0/4/0,1010.1,998.3,1004.6,,19.0,13.0,6.0,,,230.0,N,0.3,5,10,
-2011-06-03,0.8,-3.6,-1.1,-0.6,0/6/0,1009.5,993.2,1000.9,,32.0,27.0,8.0,,,37.0,SE,0.3,0,8,
-2011-06-04,-0.1,-2.7,-1.8,-0.9,0/6/0,993.2,982.7,985.6,,34.0,28.0,16.0,,,228.0,SW,8.6,4,25,
-2011-06-05,-2.0,-5.8,-4.3,-0.6,20440,994.7,984.5,990.2,,41.0,30.0,16.0,,,119.0,SE,0.0,0,21,
-2011-06-06,-2.8,-4.9,-3.7,-0.4,0/4/0,1008.6,994.5,1002.4,,36.0,27.0,12.0,,,117.0,E,0.0,0,19,
-2011-06-07,-2.8,-4.8,-3.8,-0.8,0/4/0,1012.4,1008.7,1011.2,,16.0,12.0,5.0,,,227.0,NE,0.0,0,17,
-2011-06-08,-2.9,-4.3,-3.6,-1.1,0/4/0,1009.9,1008.2,1008.9,,21.0,18.0,11.0,,,235.0,SW,0.0,0,17,
-2011-06-09,-4.1,-5.1,-4.4,-1.0,0/6/0,1009.4,1006.1,1008.4,,16.0,12.0,6.0,,,248.0,SW,0.0,0,15,
-2011-06-10,-5.1,-7.6,-6.1,-1.3,21640,1006.2,1002.5,1004.1,,11.0,8.0,3.0,,,14.0,E,0.0,0,14,
-2011-06-11,-2.5,-7.1,-5.0,-1.3,31640,1002.5,994.1,997.8,,8.0,7.0,3.0,,,359.0,NE,0.0,0,14,
-2011-06-12,-1.9,-3.5,-2.7,-1.6,31640,997.0,993.4,994.9,,13.0,10.0,4.0,,,358.0,NE,0.0,0,13,
-2011-06-13,-1.5,-3.3,-2.4,-1.5,21600,998.4,996.3,997.6,,9.0,8.0,2.0,,,347.0,NE,0.0,0,13,
-2011-06-14,-1.4,-3.6,-2.1,-1.6,21600,996.9,995.5,996.2,,15.0,13.0,5.0,,,40.0,N,0.0,0,13,
-2011-06-15,-1.7,-4.1,-2.5,-1.5,21600,1000.8,996.7,998.5,,20.0,15.0,5.0,,,22.0,N,0.0,0,13,
-2011-06-16,-2.3,-7.7,-5.1,-1.2,0/6/0,1004.1,999.8,1002.6,,47.0,32.0,13.0,,,28.0,NE,0.0,0,13,
-2011-06-17,-4.7,-7.8,-6.0,-1.4,0/6/0,1005.8,1003.1,1004.0,,10.0,8.0,3.0,,,40.0,E,0.0,0,12,
-2011-06-18,-4.3,-6.6,-5.2,-1.4,0/6/0,1009.6,1005.7,1008.3,,12.0,8.0,3.0,,,21.0,E,0.3,0,12,
-2011-06-19,-3.2,-4.6,-3.9,-1.1,0/6/0,1009.3,1000.4,1006.2,,26.0,21.0,8.0,,,30.0,N,0.0,3,16,
-2011-06-20,-3.4,-7.9,-5.0,-0.7,0/6/0,1000.3,961.3,982.3,,52.0,35.0,19.0,,,78.0,E,0.0,0,14,
-2011-06-21,-1.7,-5.0,-3.8,-0.8,0/6/0,980.0,959.5,968.6,,34.0,23.0,12.0,,,245.0,E,2.5,6,19,
-2011-06-22,1.2,-5.3,-1.9,-0.7,0/6/0,979.9,963.4,971.3,,50.0,38.0,18.0,,,27.0,NE,0.0,0,19,
-2011-06-23,1.6,-7.4,-5.4,-1.2,0/6/0,972.5,961.3,966.2,,33.0,26.0,17.0,,,207.0,SW,2.5,2,42,
-2011-06-24,-0.3,-7.3,-5.2,-1.3,20680,981.8,968.2,977.6,,56.0,45.0,15.0,,,32.0,NE,0.3,2,40,
-2011-06-25,1.2,-5.2,-0.5,-1.4,0/4/0,969.4,960.7,964.7,,60.0,48.0,27.0,,,35.0,N,0.8,0,33,
-2011-06-26,-0.7,-6.6,-3.6,-1.5,20670,971.4,958.2,966.4,,61.0,35.0,21.0,,,359.0,N,1.3,0,31,
-2011-06-27,-3.6,-10.0,-7.4,-1.7,20670,974.2,958.5,967.0,,50.0,39.0,20.0,,,17.0,W,0.0,0,30,
-2011-06-28,-0.8,-9.8,-3.4,-1.7,20670,971.0,961.5,964.3,,43.0,34.0,22.0,,,316.0,NW,1.3,0,30,
-2011-06-29,-9.5,-11.9,-10.6,-1.8,20670,988.0,970.9,980.0,,29.0,24.0,15.0,,,276.0,W,0.0,0,30,
-2011-06-30,-9.5,-10.9,-10.3,-1.8,20670,998.2,988.0,993.3,,26.0,21.0,12.0,,,235.0,SW,0.0,0,30,
-2011-07-01,-7.3,-9.9,-8.4,-1.8,21610,1012.4,998.3,1008.2,,23.0,16.0,6.0,,,190.0,S,0.0,0,29,
-2011-07-02,-4.0,-7.5,-5.5,-1.7,21610,1011.3,999.5,1005.1,,15.0,11.0,3.0,,,112.0,E,1.8,0,29,
-2011-07-03,-1.5,-4.1,-2.3,-1.6,21600,999.5,991.5,994.2,,21.0,18.0,3.0,,,236.0,N,3.3,4,33,
-2011-07-04,-2.1,-4.8,-3.8,-1.5,0/6/0,1000.7,996.4,999.2,,26.0,23.0,9.0,,,233.0,SW,0.0,1,33,
-2011-07-05,-0.4,-4.5,-2.3,-1.6,21610,1002.3,995.3,998.7,,23.0,19.0,5.0,,,310.0,NW,0.0,0,33,
-2011-07-06,-0.9,-6.8,-3.7,-1.7,21610,1003.6,999.2,1002.4,,16.0,14.0,4.0,,,204.0,NE,0.0,1,34,
-2011-07-07,0.9,-3.7,-1.2,-1.7,0/4/0,999.5,993.4,995.9,,36.0,28.0,10.0,,,45.0,E,0.0,0,33,
-2011-07-08,1.1,-5.3,-3.3,-1.4,0/4/0,1000.0,995.4,998.2,,33.0,23.0,5.0,,,31.0,NE,0.0,0,33,
-2011-07-09,-4.0,-6.2,-5.0,-1.6,0/4/0,1004.1,1000.1,1002.1,,15.0,14.0,5.0,,,36.0,NE,0.0,0,33,
-2011-07-10,-3.9,-7.0,-5.2,-1.6,0/4/0,1006.8,1004.0,1005.8,,9.0,8.0,3.0,,,73.0,E,0.5,0,32,
-2011-07-11,-5.9,-9.2,-7.4,-1.6,31650,1004.3,993.8,998.8,,8.0,7.0,4.0,,,41.0,NE,0.0,1,32,
-2011-07-12,-4.4,-9.2,-6.1,-1.7,51650,993.9,992.2,993.0,,15.0,12.0,5.0,,,230.0,SW,0.0,0,32,
-2011-07-13,-4.5,-6.5,-5.6,-1.7,41650,992.3,989.2,991.0,,15.0,13.0,6.0,,,229.0,SW,0.0,0,32,
-2011-07-14,-5.0,-7.1,-6.0,-1.7,41650,989.3,981.9,985.1,,12.0,10.0,5.0,,,124.0,SE,0.8,3,35,
-2011-07-15,-4.5,-8.4,-5.7,-1.7,31650,993.1,981.8,987.5,,19.0,16.0,6.0,,,257.0,NE,3.3,10,44,
-2011-07-16,-4.2,-7.4,-5.9,-1.6,32650,993.6,977.8,988.3,,16.0,14.0,6.0,,,256.0,W,0.5,3,46,
-2011-07-17,-2.8,-9.6,-6.6,-1.6,22610,995.6,974.7,982.4,,34.0,30.0,11.0,,,241.0,E,1.5,0,42,
-2011-07-18,-5.7,-9.2,-7.0,-1.6,22610,999.4,986.8,995.3,,34.0,27.0,14.0,,,27.0,NE,0.0,0,38,
-2011-07-19,-5.2,-8.4,-6.7,-1.7,22610,986.8,983.0,984.4,,25.0,19.0,8.0,,,209.0,SW,0.0,0,35,
-2011-07-20,-5.6,-8.5,-7.1,-1.7,22610,985.9,980.7,984.0,,25.0,22.0,8.0,,,25.0,E,0.0,0,35,
-2011-07-21,-5.2,-9.5,-7.3,-1.1,0/6/0,980.7,974.9,977.3,,31.0,23.0,10.0,,,120.0,E,4.8,8,55,
-2011-07-22,-6.3,-10.4,-8.2,-1.5,0/6/0,987.2,977.1,983.4,,42.0,35.0,19.0,,,32.0,NE,0.8,0,42,
-2011-07-23,-6.4,-9.3,-7.3,-1.5,51650,994.1,984.5,987.7,,15.0,12.0,5.0,,,275.0,NW,1.5,2,44,
-2011-07-24,-5.3,-8.9,-6.8,-1.5,51650,1005.0,994.1,1000.3,,24.0,19.0,8.0,,,20.0,N,0.0,1,44,
-2011-07-25,-6.7,-8.5,-7.5,-1.5,31650,1010.2,1005.0,1007.0,,26.0,22.0,11.0,,,27.0,N,0.0,0,42,
-2011-07-26,-8.5,-10.8,-10.0,-1.6,51650,1014.0,1010.1,1011.9,,19.0,14.0,8.0,,,205.0,SW,0.0,1,43,
-2011-07-27,-8.2,-11.6,-10.2,-1.6,51650,1022.4,1013.8,1018.0,,15.0,12.0,4.0,,,214.0,NE,0.0,3,47,
-2011-07-28,-5.3,-9.8,-6.3,-1.6,51650,1025.1,1009.6,1020.7,,21.0,17.0,8.0,,,20.0,N,0.0,0,43,
-2011-07-29,-5.4,-10.4,-8.0,-1.6,51650,1017.5,1006.5,1011.0,,27.0,21.0,7.0,,,224.0,NE,0.0,0,47,
-2011-07-30,-9.3,-11.7,-10.0,-1.6,51650,1019.7,1015.8,1018.4,,8.0,7.0,4.0,,,21.0,NE,0.0,0,46,
-2011-07-31,-9.1,-12.4,-10.7,-1.6,51650,1015.8,1005.7,1009.7,,13.0,11.0,4.0,,,223.0,SW,0.0,0,46,
-2011-08-01,-10.3,-14.8,-12.4,-1.7,92696,1006.6,1004.6,1005.5,,23.0,19.0,9.0,,,22.0,NE,0.0,1,46,
-2011-08-02,-11.0,-15.0,-12.6,-1.7,52656,1010.3,1005.0,1007.4,,28.0,22.0,11.0,,,23.0,N,0.0,0,43,
-2011-08-03,-13.4,-18.8,-16.1,-1.7,92696,1010.9,1009.1,1010.2,,16.0,12.0,5.0,,,352.0,N,0.0,1,45,
-2011-08-04,-14.6,-16.5,-15.6,-1.7,52656,1014.2,1008.2,1009.8,,11.0,9.0,3.0,,,220.0,SW,0.0,0,45,
-2011-08-05,-13.4,-17.7,-15.6,-1.7,52656,1018.8,1014.3,1017.5,,13.0,11.0,5.0,,,324.0,NW,0.0,0,44,
-2011-08-06,-3.6,-13.4,-6.6,-1.6,92696,1021.6,1016.1,1017.6,,11.0,9.0,4.0,,,336.0,NW,0.0,1,45,
-2011-08-07,-3.0,-5.7,-4.3,-1.6,92696,1024.7,1021.3,1023.0,,6.0,5.0,1.0,,,231.0,N,1.3,2,46,
-2011-08-08,-0.6,-3.2,-1.7,-1.6,92696,1025.7,1023.4,1024.8,,11.0,8.0,5.0,,,316.0,NW,5.3,5,51,
-2011-08-09,-2.3,-9.4,-4.5,-1.6,92691,1024.4,1007.9,1017.6,,9.0,7.0,2.0,,,324.0,NW,0.0,1,52,
-2011-08-10,-5.7,-11.7,-8.2,-1.6,52651,1007.9,975.5,990.8,,6.0,5.0,1.0,,,300.0,NE,0.0,0,52,
-2011-08-11,-6.4,-12.5,-9.2,-1.6,52641,983.9,972.4,975.5,,12.0,9.0,3.0,,,350.0,N,0.0,0,52,
-2011-08-12,-9.3,-13.5,-10.8,-1.6,52641,998.6,983.7,992.6,,8.0,8.0,2.0,,,338.0,N,0.0,0,52,
-2011-08-13,-10.5,-14.7,-11.7,-1.6,52641,1000.2,998.5,999.4,,7.0,6.0,1.0,,,39.0,NE,0.0,2,54,
-2011-08-14,-7.4,-15.4,-11.1,-1.6,52642,1002.9,999.4,1000.9,,9.0,7.0,2.0,,,99.0,E,0.0,1,55,
-2011-08-15,-8.2,-11.7,-9.6,-1.6,52642,1007.0,1002.9,1004.9,,8.0,6.0,1.0,,,12.0,NE,0.0,0,54,
-2011-08-16,-5.1,-9.7,-7.8,-1.7,52642,1007.2,996.2,1003.6,,17.0,13.0,4.0,,,122.0,SE,2.3,0,53,
-2011-08-17,-0.6,-7.2,-2.7,-1.7,42641,996.3,974.7,983.4,,45.0,33.0,17.0,,,26.0,N,1.8,8,50,
-2011-08-18,-5.8,-11.1,-7.7,-1.7,42641,996.2,979.3,985.2,,23.0,19.0,8.0,,,239.0,NW,0.3,1,50,
-2011-08-19,-7.1,-13.4,-11.0,-1.7,42642,1019.5,996.3,1011.8,,18.0,13.0,4.0,,,104.0,NW,0.0,2,49,
-2011-08-20,-0.5,-13.9,-7.2,-1.7,42642,1019.7,1007.7,1013.2,,19.0,11.0,3.0,,,163.0,SE,1.3,0,49,
-2011-08-21,0.4,-3.0,-1.7,-1.7,42642,1007.6,1002.0,1004.1,,11.0,9.0,3.0,,,127.0,SE,2.0,4,53,
-2011-08-22,6.1,-1.5,2.5,-1.7,42641,1002.0,988.4,996.9,,48.0,35.0,14.0,,,37.0,NE,0.3,0,50,
-2011-08-23,3.9,-3.0,0.9,-1.6,22641,988.9,979.5,982.1,,51.0,42.0,17.0,,,21.0,NE,0.0,0,40,
-2011-08-24,-2.9,-6.5,-4.8,-1.6,32643,990.3,980.7,984.5,,25.0,20.0,10.0,,,244.0,SW,0.3,1,42,
-2011-08-25,-3.0,-6.6,-4.7,-1.6,42643,1002.8,990.3,996.4,,25.0,19.0,10.0,,,233.0,SW,0.0,0,41,
-2011-08-26,-5.3,-10.0,-7.8,-1.6,52642,1008.1,1002.8,1005.6,,9.0,8.0,2.0,,,278.0,NE,0.0,0,41,
-2011-08-27,-1.4,-8.5,-4.2,-1.6,52642,1008.1,1006.0,1006.6,,8.0,7.0,2.0,,,145.0,SE,0.8,2,43,
-2011-08-28,-2.9,-7.2,-4.5,-1.6,52642,1007.8,1005.6,1006.4,,11.0,8.0,2.0,,,32.0,NE,0.0,0,43,
-2011-08-29,-2.7,-9.5,-5.8,-1.6,52642,1008.1,1004.7,1006.6,,8.0,6.0,2.0,,,124.0,NE,0.0,0,43,
-2011-08-30,-0.6,-7.5,-4.9,-1.6,52642,1005.7,1004.6,1005.1,,14.0,10.0,3.0,,,132.0,SE,0.0,0,43,
-2011-08-31,2.3,-4.6,-0.6,-1.7,52641,1008.2,1000.2,1004.9,,36.0,29.0,8.0,,,17.0,NE,0.0,0,43,
-2011-09-01,3.9,-2.1,1.9,-1.6,32641,1006.4,984.5,994.6,,51.0,41.0,22.0,,,40.0,NE,0.5,0,43,
-2011-09-02,3.8,-1.7,0.8,-1.5,22641,991.2,983.5,986.6,,48.0,37.0,10.0,,,27.0,NE,7.4,2,37,
-2011-09-03,4.0,-1.7,0.1,-1.4,22641,993.5,990.9,992.2,,21.0,12.0,3.0,,,93.0,NW,1.8,8,45,
-2011-09-04,2.3,-2.4,0.3,-1.4,22442,997.9,991.5,993.9,,26.0,20.0,6.0,,,77.0,E,0.0,0,44,
-2011-09-05,-0.9,-4.1,-2.8,-1.5,22442,1000.6,997.1,999.3,,7.0,6.0,2.0,,,44.0,NE,0.0,0,44,
-2011-09-06,-4.1,-6.5,-5.3,-1.4,22442,997.2,993.6,994.6,,9.0,7.0,3.0,,,268.0,N,0.0,0,44,
-2011-09-07,-6.1,-11.5,-8.7,-1.5,22442,996.8,993.9,995.6,,27.0,22.0,12.0,,,239.0,SW,0.0,0,44,
-2011-09-08,-7.2,-10.2,-9.3,-1.4,22442,998.3,996.4,997.0,,16.0,12.0,5.0,,,241.0,SW,0.0,1,45,
-2011-09-09,-9.1,-12.6,-10.6,-1.5,52642,998.3,995.4,996.6,,14.0,10.0,4.0,,,273.0,W,0.0,2,47,
-2011-09-10,-2.9,-16.0,-10.5,-1.5,22641,995.6,991.8,994.5,,14.0,10.0,4.0,,,126.0,SE,0.0,1,45,
-2011-09-11,1.6,-3.9,-1.1,-1.6,22641,991.9,983.2,987.9,,40.0,31.0,14.0,,,27.0,NE,0.3,0,43,
-2011-09-12,2.1,-1.1,0.4,-1.5,22641,983.4,970.5,975.0,,42.0,34.0,9.0,,,53.0,E,3.8,4,48,
-2011-09-13,-1.0,-6.2,-4.3,-1.5,22642,999.7,977.6,990.5,,27.0,22.0,7.0,,,32.0,W,0.5,6,54,
-2011-09-14,1.2,-6.9,-3.6,-1.6,22670,1000.4,981.8,994.3,,50.0,39.0,12.0,,,47.0,E,1.0,0,50,
-2011-09-15,2.9,0.1,2.1,-1.2,0/6/0,985.9,983.1,984.5,,46.0,34.0,25.0,,,53.0,NE,0.0,0,40,
-2011-09-16,3.0,-6.4,-0.6,-1.3,0/6/0,984.7,968.2,976.3,,46.0,34.0,14.0,,,41.0,E,0.3,1,42,
-2011-09-17,-5.9,-7.9,-6.9,-1.4,0/6/0,978.0,970.8,974.4,,30.0,20.0,10.0,,,141.0,N,0.0,0,41,
-2011-09-18,-3.6,-6.3,-5.2,-1.5,0/4/0,981.3,977.8,978.6,,17.0,15.0,4.0,,,26.0,E,0.8,1,42,
-2011-09-19,-5.5,-15.2,-12.0,-1.6,42643,994.1,981.4,989.6,,21.0,18.0,9.0,,,245.0,W,0.0,2,47,
-2011-09-20,-5.7,-13.4,-10.6,-1.5,52642,1008.9,994.0,1001.1,,14.0,11.0,5.0,,,229.0,SW,0.0,0,47,
-2011-09-21,-5.7,-15.2,-11.1,-1.5,52642,1009.7,999.6,1005.2,,15.0,12.0,5.0,,,298.0,NW,0.0,1,47,
-2011-09-22,-6.4,-13.6,-9.8,-1.5,52642,1004.3,999.3,1002.1,,28.0,24.0,7.0,,,238.0,W,0.0,0,46,
-2011-09-23,0.2,-6.4,-1.3,-1.5,42641,1002.1,992.8,998.9,,39.0,30.0,17.0,,,20.0,N,0.3,1,51,
-2011-09-24,1.3,-7.5,-0.5,-1.6,42641,993.0,964.3,975.6,,68.0,55.0,37.0,,,30.0,NE,5.3,0,44,
-2011-09-25,-5.3,-18.6,-11.5,-1.6,32641,992.0,971.9,980.2,,66.0,48.0,17.0,,,29.0,SW,0.5,2,50,
-2011-09-26,-0.4,-18.4,-8.5,-1.6,22641,992.5,975.2,983.5,,64.0,43.0,17.0,,,23.0,N,1.3,1,45,
-2011-09-27,-9.6,-19.1,-16.1,-1.6,52693,1010.3,984.0,1000.4,,43.0,35.0,19.0,,,233.0,SW,0.0,0,45,
-2011-09-28,-1.5,-16.3,-7.7,-1.6,52693,1009.8,998.1,1003.7,,19.0,13.0,5.0,,,290.0,NW,1.8,3,49,
-2011-09-29,-2.6,-14.4,-9.3,-1.6,52693,1003.1,995.8,999.6,,33.0,25.0,11.0,,,245.0,W,0.3,1,48,
-2011-09-30,-8.1,-13.8,-10.9,-1.7,52692,1009.0,1003.0,1006.3,,23.0,16.0,6.0,,,136.0,NW,0.0,0,47,
-2011-10-01,-2.0,-12.3,-9.1,-1.6,92692,1003.8,1000.9,1002.0,,12.0,10.0,3.0,,,246.0,W,0.0,0,47,
-2011-10-02,-4.9,-12.7,-8.6,-1.6,92692,1007.6,1003.7,1006.0,,12.0,8.0,3.0,,,209.0,NE,0.0,0,47,
-2011-10-03,-3.7,-11.2,-7.9,-1.7,92692,1007.7,1004.3,1005.7,,9.0,6.0,2.0,,,65.0,NE,0.0,0,46,
-2011-10-04,1.7,-12.3,-6.9,-1.6,92692,1011.8,1006.6,1010.1,,9.0,6.0,2.0,,,319.0,NE,0.0,0,46,
-2011-10-05,1.7,-9.7,-5.3,-1.6,92691,1013.2,1011.7,1012.4,,9.0,8.0,2.0,,,348.0,NE,0.0,2,48,
-2011-10-06,-5.3,-10.5,-7.5,-1.6,92691,1012.4,1009.8,1011.1,,17.0,14.0,5.0,,,38.0,N,0.0,0,37,
-2011-10-07,2.7,-8.9,-0.1,-1.6,92691,1010.2,999.8,1004.5,,43.0,37.0,17.0,,,34.0,N,2.0,0,36,
-2011-10-08,3.3,1.5,2.4,-1.5,52641,1000.3,989.9,994.1,,73.0,50.0,31.0,,,31.0,N,14.7,2,37,
-2011-10-09,3.5,-0.3,2.0,-1.4,22641,994.1,979.9,988.5,,42.0,34.0,17.0,,,17.0,N,3.6,0,26,
-2011-10-10,1.7,-1.9,-0.6,-1.5,20643,986.0,975.9,981.0,,15.0,12.0,6.0,,,311.0,NW,11.7,8,31,
-2011-10-11,2.9,-4.0,-2.3,-1.3,20642,987.5,985.8,986.6,,21.0,18.0,6.0,,,252.0,N,0.0,3,40,
-2011-10-12,-0.3,-4.2,-1.9,-1.3,20641,986.5,974.7,980.8,,32.0,26.0,13.0,,,18.0,N,0.0,2,38,
-2011-10-13,3.2,-2.7,-0.8,-1.1,21641,974.6,965.0,968.7,,33.0,26.0,6.0,,,23.0,SE,2.3,3,42,
-2011-10-14,-1.9,-10.6,-6.3,-1.4,51642,985.8,965.5,975.6,,17.0,14.0,8.0,,,245.0,SW,0.0,0,37,
-2011-10-15,0.7,-11.5,-5.7,-1.3,54792,986.9,977.5,983.5,,49.0,37.0,10.0,,,32.0,SE,0.0,0,37,
-2011-10-16,4.1,-1.0,1.3,-1.2,34641,980.6,968.3,976.4,,38.0,30.0,16.0,,,31.0,NE,0.0,0,35,
-2011-10-17,2.4,-2.6,0.5,-1.3,24641,982.7,966.9,977.6,,40.0,33.0,18.0,,,35.0,N,2.3,4,44,
-2011-10-18,4.5,1.7,2.9,-1.1,246/0,982.7,972.3,979.8,,55.0,40.0,29.0,,,27.0,NE,3.1,0,35,
-2011-10-19,3.2,0.1,1.6,-1.1,246/0,972.5,959.2,962.9,,53.0,41.0,28.0,,,25.0,NE,7.4,0,17,
-2011-10-20,1.7,-1.1,0.0,-1.0,246/0,964.4,955.6,960.1,,47.0,36.0,21.0,,,16.0,N,0.8,0,17,
-2011-10-21,-0.6,-2.3,-1.2,-1.3,24450,967.7,961.5,964.3,,26.0,19.0,13.0,,,335.0,N,1.3,6,23,
-2011-10-22,0.8,-2.4,-1.2,-1.2,44642,973.3,966.8,970.2,,43.0,35.0,10.0,,,21.0,N,2.3,9,32,
-2011-10-23,0.5,-2.4,-1.0,-1.2,44643,967.9,960.5,962.3,,38.0,27.0,15.0,,,345.0,N,0.8,5,37,
-2011-10-24,0.3,-7.5,-3.4,-1.5,54692,983.5,961.2,972.8,,23.0,19.0,7.0,,,350.0,SW,0.5,4,32,
-2011-10-25,1.7,-9.2,-3.7,-1.5,54692,984.2,972.2,979.0,,53.0,41.0,12.0,,,21.0,NE,0.0,0,29,
-2011-10-26,0.5,-1.5,-0.3,-1.6,54692,985.1,974.2,981.7,,45.0,36.0,14.0,,,336.0,NW,0.3,0,27,
-2011-10-27,2.4,-1.2,0.8,-1.4,34580,986.0,983.0,984.6,,39.0,33.0,11.0,,,22.0,N,0.0,0,25,
-2011-10-28,4.8,-1.3,1.0,-1.2,24690,989.4,981.7,986.8,,47.0,39.0,10.0,,,29.0,NE,1.0,0,21,
-2011-10-29,2.2,-1.1,0.7,-1.3,64680,989.2,977.1,982.6,,44.0,36.0,13.0,,,34.0,NE,1.0,0,19,
-2011-10-30,2.2,-1.9,-0.1,-1.4,54692,983.1,974.1,978.2,,32.0,27.0,8.0,,,30.0,NW,0.8,0,19,
-2011-10-31,0.9,-3.6,-1.6,-1.2,54692,981.9,966.9,972.1,,32.0,23.0,8.0,,,99.0,E,0.0,1,20,
-2011-11-01,-0.6,-4.0,-1.9,-1.5,24680,994.6,974.0,987.0,,21.0,17.0,8.0,,,25.0,N,0.0,0,19,
-2011-11-02,1.7,-3.0,-1.1,-1.2,54692,995.6,970.4,988.3,,44.0,30.0,12.0,,,104.0,E,0.0,0,19,
-2011-11-03,0.3,-2.0,-1.3,-1.2,24690,983.6,967.5,974.5,,59.0,45.0,19.0,,,38.0,N,0.8,2,21,
-2011-11-04,2.4,-2.9,0.4,-0.9,0/1/0,985.0,973.4,979.6,,53.0,35.0,20.0,,,83.0,N,1.8,0,19,
-2011-11-05,3.8,-0.5,1.7,-0.9,0/1/0,996.3,983.9,992.2,,67.0,40.0,16.0,,,62.0,NE,0.8,1,20,
-2011-11-06,6.6,-1.6,2.9,-0.9,24690,993.9,976.4,984.3,,58.0,39.0,20.0,,,31.0,NE,5.8,0,14,
-2011-11-07,0.8,-2.3,-0.7,-1.3,64692,993.1,988.2,990.8,,53.0,34.0,18.0,,,339.0,NW,1.3,0,3,
-2011-11-08,2.9,-1.2,1.4,-1.2,64692,993.1,985.3,989.4,,53.0,40.0,26.0,,,22.0,N,10.7,6,9,
-2011-11-09,2.6,-1.9,0.6,-1.2,24691,989.0,979.8,985.5,,43.0,34.0,21.0,,,31.0,NE,4.3,0,0,
-2011-11-10,1.3,-0.9,0.1,-1.0,24190,980.3,969.1,973.7,,49.0,39.0,21.0,,,41.0,NW,2.3,3,3,
-2011-11-11,1.0,-1.3,-0.5,-1.5,24192,975.7,959.9,970.8,,31.0,26.0,16.0,,,36.0,NW,0.0,2,5,
-2011-11-12,1.1,-1.2,-0.1,-1.0,23190,965.3,948.7,955.1,,30.0,23.0,6.0,,,40.0,NW,5.6,3,6,
-2011-11-13,4.1,0.1,2.1,-1.0,24190,969.1,961.6,965.2,,39.0,31.0,14.0,,,22.0,NE,0.0,0,0,
-2011-11-14,2.1,-2.2,-0.4,-0.5,24190,993.2,969.2,985.9,,20.0,16.0,7.0,,,249.0,W,0.0,0,0,
-2011-11-15,3.0,-3.6,-0.2,-0.7,34680,992.9,985.1,988.4,,16.0,13.0,4.0,,,129.0,NE,0.5,0,0,
-2011-11-16,3.5,-0.8,0.5,-0.4,24690,1003.4,986.1,993.4,,8.0,7.0,2.0,,,313.0,NW,0.8,0,0,
-2011-11-17,1.8,-0.7,0.4,-0.6,24690,1009.3,1003.5,1007.6,,17.0,14.0,5.0,,,25.0,N,0.0,0,0,
-2011-11-18,4.0,-1.9,1.0,-0.6,54692,1007.6,983.7,996.2,,33.0,23.0,8.0,,,70.0,E,0.0,0,0,
-2011-11-19,2.4,-0.2,1.2,-0.6,24690,984.7,978.3,980.9,,33.0,26.0,16.0,,,119.0,SE,0.0,0,0,
-2011-11-20,2.3,-2.9,-0.8,-0.5,24690,997.0,984.7,991.0,,23.0,16.0,6.0,,,103.0,E,0.0,0,0,
-2011-11-21,1.7,-3.3,-1.6,-0.8,24690,998.2,996.8,997.6,,14.0,12.0,4.0,,,233.0,N,0.3,1,0,
-2011-11-22,-1.1,-3.4,-2.3,-0.6,24690,996.9,994.3,996.0,,13.0,12.0,7.0,,,250.0,SW,0.0,0,0,
-2011-11-23,3.1,-3.6,-1.1,-0.8,44692,994.2,992.3,993.2,,14.0,12.0,4.0,,,228.0,NW,0.0,0,0,
-2011-11-24,5.7,-1.4,1.4,0.1,34690,992.5,988.6,990.8,,9.0,8.0,3.0,,,118.0,SE,0.0,0,0,
-2011-11-25,5.3,0.1,2.8,-0.1,34690,989.3,987.4,988.3,,6.0,5.0,2.0,,,121.0,W,0.0,0,0,
-2011-11-26,2.0,-0.9,0.3,-0.3,34690,989.5,988.6,989.1,,6.0,5.0,1.0,,,226.0,SW,1.5,0,0,
-2011-11-27,2.9,-0.7,0.4,0.7,34692,988.8,987.4,988.1,,8.0,6.0,3.0,,,322.0,NW,0.0,0,0,
-2011-11-28,2.4,-1.2,0.3,0.1,24691,991.4,988.0,989.3,,8.0,6.0,3.0,,,199.0,W,0.0,0,0,
-2011-11-29,2.2,-1.7,-0.2,-0.4,24692,991.6,966.0,983.5,,44.0,35.0,14.0,,,36.0,NE,0.3,0,0,
-2011-11-30,0.6,-1.1,-0.5,-0.4,24690,978.8,965.5,972.2,,27.0,22.0,14.0,,,239.0,SW,2.0,3,2,
-2011-12-01,0.7,-1.6,-0.5,-1.1,54692,982.5,975.8,978.4,,19.0,16.0,6.0,,,250.0,NW,0.8,2,2,
-2011-12-02,1.2,-0.8,0.2,-1.4,54692,994.0,982.4,985.2,,18.0,13.0,7.0,,,354.0,NW,7.4,3,2,
-2011-12-03,4.8,-0.6,1.4,-1.4,54692,1002.1,994.1,1000.1,,15.0,12.0,4.0,,,147.0,NW,1.8,0,0,
-2011-12-04,6.8,2.5,4.5,-1.1,44691,999.5,987.2,992.8,,52.0,40.0,20.0,,,31.0,NE,2.8,0,0,
-2011-12-05,3.9,0.9,2.5,-1.0,24692,988.8,984.8,986.8,,42.0,32.0,23.0,,,21.0,N,3.8,0,0,
-2011-12-06,4.4,-0.2,1.9,-0.8,24692,988.2,970.1,984.2,,33.0,23.0,13.0,,,80.0,N,1.0,0,0,
-2011-12-07,6.5,0.4,3.5,-0.2,0/6/0,976.3,962.9,968.4,,33.0,25.0,12.0,,,73.0,E,0.0,0,0,
-2011-12-08,1.5,-0.4,0.7,-0.6,0/6/0,981.9,976.2,980.0,,26.0,20.0,13.0,,,331.0,N,3.3,1,0,
-2011-12-09,2.3,-0.3,0.8,-0.8,0/6/0,986.6,981.8,984.6,,27.0,22.0,13.0,,,342.0,N,0.0,0,0,
-2011-12-10,5.7,0.5,2.9,-0.1,0/6/0,985.9,968.1,975.5,,39.0,32.0,11.0,,,42.0,SE,0.5,0,0,
-2011-12-11,4.6,1.3,2.9,0.2,0/6/0,975.0,964.2,967.9,,36.0,29.0,9.0,,,48.0,NE,0.0,0,0,
-2011-12-12,3.3,-1.0,1.6,0.2,0/6/0,977.4,965.6,971.7,,45.0,34.0,11.0,,,28.0,N,1.8,0,0,
-2011-12-13,2.1,0.3,0.9,0.3,0/6/0,986.2,969.6,977.6,,34.0,28.0,19.0,,,337.0,NW,4.8,0,0,
-2011-12-14,1.9,0.1,1.0,-1.2,0/6/0,1000.8,986.1,993.4,,27.0,21.0,13.0,,,328.0,NW,0.8,0,0,
-2011-12-15,3.5,0.4,2.0,-0.5,0/6/0,1001.2,994.0,998.6,,35.0,28.0,14.0,,,22.0,N,14.5,0,0,
-2011-12-16,6.7,0.3,3.2,0.1,0/6/0,994.0,967.0,978.0,,59.0,48.0,21.0,,,37.0,N,7.4,0,0,
-2011-12-17,2.5,-0.2,0.6,0.3,0/6/0,1003.1,982.5,998.3,,39.0,29.0,12.0,,,263.0,W,0.3,0,0,
-2011-12-18,5.3,-0.5,2.0,0.1,0/6/0,1000.4,985.4,991.3,,28.0,24.0,10.0,,,46.0,SE,0.0,0,0,
-2011-12-19,5.2,1.1,3.3,0.3,0/6/0,987.4,982.0,985.0,,39.0,32.0,9.0,,,22.0,SE,0.3,0,0,
-2011-12-20,4.3,1.3,2.5,0.4,0/6/0,992.9,987.4,990.2,,10.0,9.0,3.0,,,347.0,N,4.6,0,0,
-2011-12-21,2.5,-0.2,1.3,0.6,0/6/0,993.5,991.5,992.9,,10.0,9.0,2.0,,,266.0,NW,1.0,0,0,
-2011-12-22,0.1,-1.4,-0.7,0.7,0/6/0,991.6,983.5,987.9,,15.0,13.0,6.0,,,238.0,SW,0.0,0,0,
-2011-12-23,2.8,-1.8,-0.5,0.5,0/6/0,990.2,983.8,988.6,,12.0,10.0,4.0,,,241.0,W,0.0,0,0,
-2011-12-24,1.4,-1.6,-0.4,0.4,24692,989.1,980.8,983.6,,24.0,19.0,4.0,,,12.0,SE,8.6,0,0,
-2011-12-25,0.5,-0.9,-0.2,-1.4,54692,988.7,982.8,986.2,,19.0,15.0,7.0,,,339.0,NW,5.1,4,3,
-2011-12-26,2.2,-0.5,0.7,-0.8,64692,989.1,982.7,985.6,,17.0,12.0,5.0,,,27.0,SE,4.8,0,0,
-2011-12-27,4.7,-0.1,1.5,-1.3,64632,994.6,982.9,991.2,,15.0,12.0,5.0,,,267.0,W,0.5,2,1,
-2011-12-28,6.3,0.7,2.7,-1.0,64632,982.9,973.1,975.6,,20.0,13.0,4.0,,,104.0,NW,0.0,0,0,
-2011-12-29,4.6,0.3,2.1,-0.9,64692,980.0,975.8,978.6,,19.0,11.0,3.0,,,77.0,NW,0.0,0,0,
-2011-12-30,4.5,0.7,2.0,-0.4,64692,976.0,962.8,966.9,,19.0,12.0,3.0,,,102.0,NW,0.0,0,0,
-2011-12-31,4.2,0.5,1.8,-0.4,64692,984.4,963.3,973.4,,12.0,11.0,5.0,,,346.0,N,0.0,0,0,
-2012-01-01,5.2,0.0,2.0,0.5,0/6/0,988.9,984.3,987.8,,22.0,19.0,5.0,,,24.0,N,1.8,0,0,
-2012-01-02,4.3,1.3,2.5,0.2,0/6/0,987.3,985.3,986.0,,13.0,11.0,3.0,,,153.0,N,0.0,0,0,
-2012-01-03,3.2,0.4,1.4,0.8,0/6/0,992.9,986.7,990.4,,10.0,9.0,4.0,,,281.0,SW,0.0,0,0,
-2012-01-04,3.6,0.4,1.3,1.1,0/6/0,992.6,987.0,989.2,,10.0,8.0,3.0,,,249.0,SE,0.3,0,0,
-2012-01-05,1.3,-0.6,0.4,1.1,0/1/0,998.0,987.7,992.3,,20.0,16.0,8.0,,,235.0,SW,0.0,0,0,
-2012-01-06,2.7,0.1,1.2,0.6,0/6/0,999.0,980.4,990.2,,43.0,34.0,14.0,,,33.0,NE,0.8,0,0,
-2012-01-07,1.0,-0.7,0.4,0.3,0/6/0,985.1,982.4,983.4,,23.0,19.0,11.0,,,254.0,W,0.5,0,0,
-2012-01-08,5.7,-0.3,1.0,0.5,0/6/0,991.5,985.1,989.2,,19.0,15.0,8.0,,,261.0,W,1.3,0,0,
-2012-01-09,4.5,-1.8,1.2,0.1,0/6/0,991.1,980.4,987.2,,20.0,16.0,4.0,,,119.0,NE,2.3,0,0,
-2012-01-10,6.3,1.7,3.2,0.5,0/6/0,980.6,974.3,979.0,,21.0,15.0,4.0,,,104.0,N,12.7,0,0,
-2012-01-11,2.0,0.0,0.4,-0.4,0/6/0,979.7,973.0,976.2,,20.0,17.0,9.0,,,262.0,W,10.2,5,3,
-2012-01-12,1.9,-0.3,0.3,0.0,0/6/0,981.2,971.8,978.7,,19.0,14.0,8.0,,,122.0,W,0.0,0,0,
-2012-01-13,3.5,-0.2,1.4,0.4,0/6/0,971.8,966.9,968.4,,23.0,17.0,6.0,,,2.0,SE,1.0,0,0,
-2012-01-14,2.2,0.4,1.2,-0.8,0/6/0,980.5,969.7,974.0,,19.0,16.0,9.0,,,351.0,NW,3.1,0,0,
-2012-01-15,2.4,-0.7,0.5,-0.6,0/6/0,994.4,980.5,986.7,,20.0,17.0,7.0,,,212.0,NW,0.0,0,0,
-2012-01-16,4.9,-0.6,1.5,-0.1,0/6/0,997.0,993.4,995.9,,16.0,13.0,5.0,,,332.0,N,0.3,0,0,
-2012-01-17,5.1,1.7,3.2,0.3,0/6/0,993.6,976.3,982.4,,52.0,44.0,22.0,,,38.0,NE,3.6,0,0,
-2012-01-18,2.2,0.7,1.5,-0.1,0/4/0,984.8,980.7,982.4,,31.0,25.0,15.0,,,337.0,N,3.1,0,0,
-2012-01-19,2.3,-0.3,0.9,-0.2,0/4/0,993.9,984.8,989.5,,16.0,13.0,6.0,,,254.0,W,1.8,1,1,
-2012-01-20,2.5,-0.2,0.9,0.6,0/4/0,995.9,988.3,993.8,,26.0,18.0,6.0,,,5.0,W,3.8,0,0,
-2012-01-21,1.0,0.2,0.6,-0.9,0/4/0,988.3,980.2,983.5,,19.0,15.0,10.0,,,293.0,NW,14.7,4,4,
-2012-01-22,0.5,-0.8,-0.2,-0.5,0/4/0,984.7,980.3,983.2,,9.0,8.0,4.0,,,345.0,N,1.3,1,1,
-2012-01-23,1.0,-1.6,0.0,0.3,0/4/0,988.7,983.1,985.2,,23.0,20.0,8.0,,,237.0,SW,0.8,0,0,
-2012-01-24,4.3,-0.3,0.9,0.1,0/4/0,990.3,988.4,989.4,,17.0,13.0,4.0,,,233.0,SW,0.0,0,0,
-2012-01-25,2.5,0.2,0.9,0.1,0/4/0,988.6,976.1,983.2,,29.0,22.0,6.0,,,18.0,N,4.6,0,0,
-2012-01-26,4.1,-0.1,1.1,-0.7,0/4/0,983.1,976.8,980.5,,23.0,18.0,7.0,,,268.0,W,1.0,0,0,
-2012-01-27,6.4,-1.3,1.4,0.3,0/4/0,986.3,983.0,984.6,,8.0,6.0,2.0,,,50.0,NE,0.0,0,0,
-2012-01-28,5.5,-1.5,1.5,0.4,0/4/0,988.4,986.2,987.7,,7.0,6.0,3.0,,,47.0,NE,0.0,0,0,
-2012-01-29,3.3,-1.7,0.7,0.3,0/4/0,987.7,979.7,985.1,,22.0,18.0,5.0,,,27.0,NE,0.3,0,0,
-2012-01-30,3.2,-0.8,0.5,0.1,0/4/0,980.1,970.4,974.3,,18.0,15.0,4.0,,,25.0,SE,1.5,2,0,
-2012-01-31,5.5,-0.4,1.6,0.7,0/4/0,975.1,970.6,972.8,,9.0,7.0,3.0,,,357.0,N,0.0,0,0,
-2012-02-01,5.4,0.1,1.9,0.6,0/4/0,979.6,974.6,975.9,,12.0,10.0,2.0,,,37.0,SE,0.0,0,0,
-2012-02-02,3.6,1.1,2.2,0.6,0/4/0,980.2,967.5,974.6,,53.0,43.0,21.0,,,39.0,NE,1.0,0,0,
-2012-02-03,4.2,1.4,2.3,0.3,0/4/0,969.3,962.4,964.9,,23.0,18.0,9.0,,,22.0,N,1.8,0,0,
-2012-02-04,3.4,0.4,1.7,0.4,0/4/0,964.0,954.7,958.9,,44.0,36.0,20.0,,,38.0,NE,4.6,0,0,
-2012-02-05,3.4,-0.1,1.6,0.5,0/4/0,957.7,955.6,956.6,,28.0,23.0,13.0,,,16.0,N,0.5,4,1,
-2012-02-06,5.7,-0.5,1.6,1.1,0/4/0,966.7,957.4,961.2,,15.0,13.0,3.0,,,33.0,NE,4.6,0,0,
-2012-02-07,4.4,-0.2,1.2,0.6,0/4/0,977.1,966.7,971.9,,20.0,15.0,7.0,,,21.0,N,3.1,8,1,
-2012-02-08,4.9,0.0,1.8,0.9,0/4/0,981.2,973.9,979.0,,20.0,16.0,6.0,,,31.0,E,0.0,0,0,
-2012-02-09,4.6,-1.0,1.9,0.9,0/4/0,973.9,959.5,965.4,,55.0,43.0,14.0,,,36.0,SE,2.5,2,0,
-2012-02-10,5.1,-0.3,1.7,0.9,0/4/0,981.4,966.8,974.7,,24.0,20.0,8.0,,,36.0,SE,1.5,2,1,
-2012-02-11,5.4,2.1,3.5,1.0,0/4/0,981.7,972.1,975.8,,53.0,39.0,22.0,,,37.0,NE,2.0,0,0,
-2012-02-12,5.8,1.5,2.9,0.4,0/4/0,979.7,974.0,978.1,,36.0,24.0,10.0,,,351.0,N,0.3,0,0,
-2012-02-13,4.0,-0.6,1.5,0.9,0/4/0,977.2,974.0,975.0,,8.0,7.0,3.0,,,227.0,NE,0.0,0,0,
-2012-02-14,1.1,-0.9,-0.1,0.4,0/4/0,975.7,973.5,974.4,,25.0,20.0,10.0,,,235.0,SW,0.0,0,0,
-2012-02-15,5.1,-0.4,1.8,1.0,0/4/0,988.2,975.7,981.1,,25.0,19.0,5.0,,,119.0,N,0.0,0,0,
-2012-02-16,5.1,-1.3,1.0,1.4,0/4/0,992.9,988.3,991.8,,15.0,13.0,4.0,,,39.0,NE,0.0,0,0,
-2012-02-17,1.7,-1.0,0.1,0.8,0/4/0,991.0,983.9,986.8,,14.0,11.0,4.0,,,231.0,SE,0.3,1,0,
-2012-02-18,1.2,-1.9,-0.5,0.9,0/4/0,993.4,983.3,986.9,,25.0,19.0,11.0,,,120.0,SE,0.3,1,0,
-2012-02-19,3.4,-3.1,-0.7,1.0,0/4/0,996.2,993.4,994.8,,13.0,9.0,3.0,,,147.0,E,0.0,0,0,
-2012-02-20,1.8,-2.4,-0.5,0.7,0/4/0,996.1,993.1,994.4,,16.0,13.0,5.0,,,230.0,SW,0.0,0,0,
-2012-02-21,3.4,-3.3,-1.1,1.1,0/4/0,996.9,993.8,995.1,,12.0,10.0,4.0,,,21.0,NE,0.0,0,0,
-2012-02-22,4.8,-2.6,-0.2,1.1,0/4/0,1002.7,995.8,997.6,,17.0,15.0,6.0,,,40.0,NE,0.0,0,0,
-2012-02-23,1.1,-1.7,-0.4,0.5,0/4/0,1007.7,1002.7,1005.6,,8.0,6.0,3.0,,,211.0,NE,0.0,0,0,
-2012-02-24,4.2,-1.8,0.6,1.0,0/4/0,1017.3,1007.7,1012.2,,9.0,7.0,3.0,,,234.0,NE,0.0,0,0,
-2012-02-25,0.7,-0.9,-0.2,0.2,0/4/0,1017.6,1010.2,1014.5,,14.0,11.0,5.0,,,272.0,W,0.0,0,0,
-2012-02-26,1.7,-0.9,0.5,0.5,0/4/0,1010.2,993.2,1003.2,,26.0,19.0,8.0,,,339.0,NW,2.3,1,1,
-2012-02-27,1.5,-1.8,-0.4,-0.2,20450,993.1,985.3,989.7,,31.0,24.0,9.0,,,28.0,N,2.5,2,4,
-2012-02-28,2.6,-0.2,1.6,0.2,0/4/0,985.7,972.9,976.8,,41.0,33.0,23.0,,,24.0,N,8.9,0,0,
-2012-02-29,1.4,-0.5,0.2,0.6,0/4/0,993.0,973.1,985.2,,30.0,24.0,13.0,,,302.0,SW,0.5,0,0,
-2012-03-01,3.9,-0.3,2.4,0.6,0/4/0,993.7,987.0,990.3,,40.0,31.0,12.0,,,23.0,N,3.1,0,0,
-2012-03-02,8.9,2.3,5.1,0.9,0/4/0,987.2,980.3,983.2,,50.0,38.0,9.0,,,27.0,SE,7.6,0,0,
-2012-03-03,5.9,3.0,4.6,1.1,0/4/0,992.2,981.1,986.1,,42.0,32.0,21.0,,,35.0,NE,3.8,0,0,
-2012-03-04,7.9,3.7,6.1,1.3,0/4/0,992.7,977.4,987.5,,49.0,38.0,19.0,,,41.0,E,0.0,0,0,
-2012-03-05,6.9,2.4,4.9,1.6,0/4/0,980.6,974.8,977.6,,45.0,36.0,18.0,,,33.0,NE,4.8,0,0,
-2012-03-06,6.5,3.4,4.5,1.3,0/4/0,986.5,979.8,984.3,,38.0,31.0,11.0,,,31.0,NE,0.5,0,0,
-2012-03-07,4.9,2.3,3.4,1.6,0/4/0,986.0,984.0,984.7,,14.0,12.0,3.0,,,209.0,SE,0.0,0,0,
-2012-03-08,5.0,1.8,3.0,1.2,0/4/0,990.4,979.3,987.3,,42.0,31.0,9.0,,,36.0,SE,0.8,0,0,
-2012-03-09,4.6,0.7,1.8,1.4,0/4/0,989.6,976.7,982.3,,55.0,43.0,12.0,,,26.0,N,3.8,0,0,
-2012-03-10,1.8,-0.4,0.8,1.4,0/4/0,1007.2,989.6,999.3,,14.0,11.0,5.0,,,231.0,SW,0.0,0,0,
-2012-03-11,1.9,0.1,0.7,1.4,0/4/0,1015.5,1007.3,1012.7,,10.0,9.0,3.0,,,241.0,SW,0.0,0,0,
-2012-03-12,3.6,0.0,0.9,1.4,0/4/0,1015.6,1014.6,1015.0,,14.0,11.0,4.0,,,211.0,SW,0.0,0,0,
-2012-03-13,1.1,-0.3,0.4,0.1,0/4/0,1015.6,1009.3,1013.1,,12.0,11.0,4.0,,,273.0,NW,0.5,1,1,
-2012-03-14,6.3,-0.3,3.1,0.9,0/4/0,1009.4,988.5,999.0,,41.0,34.0,14.0,,,27.0,SE,4.6,0,0,
-2012-03-15,5.1,2.5,3.8,1.0,0/4/0,988.5,969.5,975.4,,48.0,36.0,23.0,,,34.0,NE,4.1,0,0,
-2012-03-16,3.3,1.3,2.4,0.9,0/4/0,972.3,964.9,969.6,,37.0,29.0,18.0,,,18.0,N,3.3,0,0,
-2012-03-17,2.1,-2.5,-0.2,0.4,0/4/0,975.3,970.5,972.3,,31.0,26.0,9.0,,,240.0,SW,0.8,0,0,
-2012-03-18,-0.7,-3.5,-1.6,0.9,0/4/0,976.2,967.3,971.6,,31.0,26.0,15.0,,,232.0,SW,0.5,0,0,
-2012-03-19,0.0,-2.4,-1.7,0.4,0/4/0,976.1,967.6,972.9,,27.0,21.0,8.0,,,231.0,SW,0.0,0,0,
-2012-03-20,0.9,-2.3,-1.4,0.7,0/4/0,974.8,964.4,967.4,,8.0,6.0,2.0,,,103.0,SE,0.0,1,1,
-2012-03-21,-0.1,-2.0,-1.0,0.7,0/4/0,984.9,974.9,980.8,,30.0,25.0,12.0,,,232.0,SW,0.3,0,1,
-2012-03-22,1.8,-4.6,-1.7,0.7,0/4/0,995.5,984.6,990.7,,25.0,21.0,6.0,,,232.0,E,0.0,2,4,
-2012-03-23,-0.8,-4.3,-2.7,-0.5,0/4/0,997.7,995.4,997.0,,12.0,10.0,4.0,,,41.0,NE,0.0,0,1,
-2012-03-24,3.9,-3.3,-1.0,0.1,0/4/0,1002.7,996.8,998.6,,10.0,9.0,3.0,,,119.0,SE,0.0,0,1,
-2012-03-25,2.5,-1.6,-0.4,0.6,0/4/0,1012.2,1002.7,1008.0,,15.0,12.0,5.0,,,220.0,SW,0.0,0,1,
-2012-03-26,3.9,-0.9,1.4,0.4,0/4/0,1011.9,986.6,1001.2,,34.0,27.0,12.0,,,19.0,N,3.6,0,1,
-2012-03-27,4.7,1.3,2.6,0.4,0/4/0,987.4,971.2,982.1,,40.0,30.0,11.0,,,21.0,N,3.8,0,0,
-2012-03-28,4.1,0.0,1.8,0.8,0/4/0,975.2,966.1,969.9,,37.0,28.0,12.0,,,74.0,E,0.0,0,0,
-2012-03-29,1.7,-1.8,-0.2,-0.2,0/4/0,990.7,975.2,983.4,,11.0,9.0,4.0,,,313.0,N,0.0,0,0,
-2012-03-30,0.7,-0.8,-0.2,0.2,0/4/0,995.7,990.6,994.3,,17.0,13.0,5.0,,,52.0,NE,0.0,0,0,
-2012-03-31,2.2,-1.0,0.3,0.6,0/4/0,992.5,988.4,990.0,,36.0,20.0,8.0,,,132.0,E,0.0,0,0,
-2012-04-01,3.6,0.1,1.0,0.8,0/4/0,995.1,991.1,993.9,,28.0,20.0,10.0,,,141.0,SE,0.0,0,0,
-2012-04-02,2.7,-0.3,1.2,0.5,0/4/0,994.9,985.9,991.4,,32.0,23.0,5.0,,,67.0,E,0.0,0,0,
-2012-04-03,2.4,-0.6,1.1,0.9,0/4/0,987.1,974.6,979.0,,52.0,34.0,21.0,,,72.0,E,0.0,0,0,
-2012-04-04,2.8,-1.4,0.4,0.0,0/4/0,987.4,979.7,985.2,,46.0,37.0,9.0,,,45.0,NE,0.0,0,0,
-2012-04-05,3.1,-1.6,0.5,0.4,0/4/0,986.9,983.5,985.5,,31.0,24.0,6.0,,,122.0,E,0.0,0,0,
-2012-04-06,0.4,-2.0,-0.7,0.3,0/4/0,992.4,985.3,988.6,,25.0,21.0,8.0,,,22.0,E,0.0,0,0,
-2012-04-07,-0.3,-2.2,-1.2,0.3,0/4/0,999.0,992.2,996.1,,33.0,26.0,9.0,,,26.0,NE,0.0,0,0,
-2012-04-08,0.2,-2.4,-0.7,0.2,0/4/0,998.0,994.4,996.5,,32.0,27.0,14.0,,,26.0,NE,0.0,0,0,
-2012-04-09,-2.1,-4.8,-3.9,0.2,0/4/0,995.2,990.0,993.5,,35.0,29.0,17.0,,,22.0,NE,0.0,0,0,
-2012-04-10,0.6,-4.6,-3.0,0.5,0/4/0,990.3,988.7,989.4,,29.0,18.0,11.0,,,101.0,SE,2.0,3,3,
-2012-04-11,3.5,-0.7,1.9,0.3,0/4/0,989.0,954.2,967.8,,62.0,48.0,22.0,,,37.0,NE,2.3,3,7,
-2012-04-12,3.0,1.1,2.2,0.1,0/4/0,963.8,951.8,955.3,,32.0,25.0,17.0,,,17.0,N,5.1,0,0,
-2012-04-13,1.7,-1.7,-0.3,-1.1,20452,988.6,963.8,977.8,,26.0,20.0,12.0,,,337.0,N,6.1,2,4,
-2012-04-14,1.8,-2.5,-0.2,0.2,0/4/0,988.5,975.7,981.6,,30.0,24.0,10.0,,,77.0,E,0.3,4,14,
-2012-04-15,2.7,-1.4,0.6,0.2,0/4/0,978.4,975.5,976.8,,39.0,31.0,10.0,,,47.0,E,0.0,0,12,
-2012-04-16,0.9,-3.2,-1.3,0.2,0/4/0,983.8,977.1,981.4,,44.0,34.0,12.0,,,35.0,SE,1.8,0,10,
-2012-04-17,-3.1,-5.8,-3.7,-0.3,0/4/0,984.0,982.2,983.0,,13.0,11.0,5.0,,,360.0,N,1.0,9,17,
-2012-04-18,-1.8,-6.4,-4.2,-0.0,0/4/0,984.0,982.1,983.2,,27.0,21.0,7.0,,,74.0,N,0.0,0,12,
-2012-04-19,-1.4,-4.2,-2.9,-0.9,0/4/0,993.4,983.9,987.9,,10.0,8.0,5.0,,,358.0,NE,0.0,0,10,
-2012-04-20,-0.6,-3.5,-2.4,-1.1,0/4/0,1007.1,993.4,999.4,,14.0,11.0,5.0,,,214.0,SW,0.0,0,9,
-2012-04-21,-0.4,-5.7,-3.3,-0.5,0/4/0,1020.8,1007.1,1016.2,,16.0,13.0,6.0,,,19.0,NE,0.0,0,9,
-2012-04-22,-1.8,-4.8,-3.0,-0.5,0/4/0,1020.2,1015.9,1018.5,,8.0,6.0,2.0,,,168.0,SE,0.0,0,9,
-2012-04-23,4.3,-4.7,0.1,-0.2,0/4/0,1016.0,1000.4,1007.7,,42.0,35.0,8.0,,,29.0,N,0.0,0,9,
-2012-04-24,2.9,-1.3,0.1,-0.0,0/4/0,1015.1,1001.6,1008.3,,27.0,20.0,7.0,,,25.0,SW,0.0,0,4,
-2012-04-25,1.3,-2.6,-0.7,-0.4,0/4/0,1015.9,1011.3,1013.8,,11.0,9.0,4.0,,,144.0,SE,0.0,0,3,
-2012-04-26,1.1,0.0,0.4,-0.1,0/4/0,1011.4,1007.2,1008.6,,11.0,8.0,3.0,,,139.0,SE,4.6,0,3,
-2012-04-27,0.3,-3.7,-1.5,-0.6,0/4/0,1010.7,1008.7,1009.6,,7.0,6.0,1.0,,,300.0,NW,0.3,1,4,
-2012-04-28,0.9,-3.1,-1.2,-0.7,0/4/0,1014.1,1009.6,1012.2,,13.0,11.0,3.0,,,120.0,NW,0.5,1,5,
-2012-04-29,0.3,-4.6,-2.2,-1.1,0/4/0,1013.1,1000.7,1007.8,,12.0,10.0,3.0,,,339.0,SE,0.0,0,5,
-2012-04-30,4.8,-1.1,1.7,-0.5,0/4/0,1000.7,985.0,993.3,,37.0,28.0,6.0,,,34.0,SE,0.0,0,5,
-2012-05-01,5.1,0.4,3.2,-0.2,0/4/0,985.0,970.0,974.7,,42.0,29.0,11.0,,,103.0,E,0.0,0,4,
-2012-05-02,1.2,-0.7,0.1,-0.4,0/4/0,983.7,974.4,978.9,,15.0,11.0,4.0,,,141.0,SE,3.3,4,8,
-2012-05-03,-0.5,-2.6,-1.6,-1.1,0/4/0,990.7,983.7,986.5,,10.0,7.0,3.0,,,94.0,N,0.0,0,8,
-2012-05-04,-0.1,-2.6,-1.6,-1.2,0/4/0,1004.3,990.7,997.8,,10.0,9.0,3.0,,,34.0,W,0.0,0,7,
-2012-05-05,2.8,-2.3,0.8,-0.2,0/4/0,1005.3,994.8,1001.4,,45.0,36.0,17.0,,,36.0,NE,0.0,0,7,
-2012-05-06,3.4,-0.5,1.3,-0.3,0/4/0,995.4,984.8,991.1,,41.0,32.0,10.0,,,23.0,N,0.0,0,0,
-2012-05-07,4.3,-0.1,1.8,-0.3,0/4/0,996.0,982.1,986.9,,36.0,27.0,5.0,,,38.0,NW,0.5,0,0,
-2012-05-08,0.7,-1.9,-0.7,-0.1,0/4/0,1006.8,996.0,1002.2,,12.0,9.0,2.0,,,102.0,NW,0.0,0,0,
-2012-05-09,-0.4,-2.1,-1.1,-0.3,0/4/0,1007.6,1003.8,1006.4,,19.0,15.0,4.0,,,20.0,N,0.0,0,0,
-2012-05-10,-1.3,-3.5,-2.1,-0.6,0/4/0,1003.8,1001.0,1001.8,,16.0,14.0,3.0,,,24.0,NE,0.0,0,0,
-2012-05-11,1.4,-2.4,-0.5,-0.2,0/4/0,1002.1,996.4,998.7,,25.0,16.0,6.0,,,140.0,SE,1.3,1,1,
-2012-05-12,5.9,0.3,3.4,-0.0,0/4/0,996.5,987.7,990.8,,42.0,35.0,18.0,,,41.0,NE,1.8,0,0,
-2012-05-13,6.4,1.9,3.9,0.1,0/4/0,993.2,987.0,991.1,,48.0,37.0,12.0,,,31.0,NE,0.0,0,0,
-2012-05-14,4.9,1.7,3.3,0.2,0/4/0,997.1,986.5,991.1,,50.0,38.0,19.0,,,37.0,NE,1.0,0,0,
-2012-05-15,4.7,1.4,2.5,0.2,0/4/0,1000.8,988.4,995.9,,51.0,40.0,21.0,,,42.0,NE,0.3,0,0,
-2012-05-16,3.4,-0.8,1.0,0.0,0/4/0,995.4,989.7,993.0,,28.0,24.0,6.0,,,44.0,NE,0.0,0,0,
-2012-05-17,3.4,-0.5,1.2,-0.5,0/4/0,993.0,986.8,989.0,,32.0,26.0,10.0,,,19.0,NE,0.0,0,0,
-2012-05-18,2.0,0.4,1.1,-0.3,0/4/0,994.4,989.2,992.5,,35.0,26.0,18.0,,,28.0,N,0.5,1,1,
-2012-05-19,4.0,1.6,2.6,0.0,0/4/0,991.3,971.0,983.5,,40.0,29.0,16.0,,,54.0,E,0.0,0,1,
-2012-05-20,3.0,-0.9,0.7,-0.0,0/4/0,971.3,959.3,962.2,,36.0,25.0,10.0,,,103.0,E,0.0,0,1,
-2012-05-21,0.5,-2.6,-1.0,-0.3,0/4/0,971.0,962.3,966.6,,44.0,34.0,14.0,,,31.0,NE,1.0,3,,
-2012-05-22,-1.7,-4.2,-2.9,-0.9,0/6/0,980.1,970.8,975.9,,35.0,30.0,10.0,,,30.0,NE,0.0,1,5,
-2012-05-23,-1.3,-4.3,-2.6,-0.7,0/6/0,983.3,979.3,981.2,,42.0,34.0,18.0,,,27.0,N,0.0,1,7,
-2012-05-24,-1.4,-5.9,-3.4,-1.1,0/4/0,992.7,982.4,986.3,,30.0,25.0,7.0,,,19.0,N,9.1,11,21,
-2012-05-25,-1.0,-4.2,-3.0,-1.3,0/4/0,997.8,992.7,995.4,,30.0,25.0,12.0,,,249.0,SW,0.0,2,19,
-2012-05-26,-1.9,-4.2,-3.2,-1.4,0/4/0,994.3,985.9,988.9,,35.0,27.0,8.0,,,224.0,SW,2.3,4,20,
-2012-05-27,-3.0,-8.2,-5.6,-1.5,0/6/0,1012.0,988.6,998.5,,28.0,22.0,10.0,,,236.0,N,0.5,1,21,
-2012-05-28,-3.6,-6.5,-4.4,-1.4,0/6/0,1012.4,1003.5,1008.8,,17.0,15.0,7.0,,,212.0,SW,0.0,0,19,
-2012-05-29,-2.4,-3.8,-3.1,-1.2,0/6/0,1003.6,992.8,998.2,,14.0,10.0,4.0,,,209.0,SW,0.3,0,16,
-2012-05-30,-2.0,-3.2,-2.5,-0.9,0/4/0,1001.9,993.2,998.7,,28.0,23.0,9.0,,,225.0,SW,0.0,1,16,
-2012-05-31,-1.8,-3.1,-2.3,-0.9,0/4/0,1001.4,996.6,998.7,,26.0,21.0,12.0,,,228.0,SW,0.0,1,17,
-2012-06-01,-1.2,-2.9,-1.7,-0.9,0/4/0,998.3,992.1,994.6,,19.0,18.0,8.0,,,249.0,SW,0.5,1,18,
-2012-06-02,-0.3,-3.6,-1.5,-1.5,20450,992.2,975.1,982.4,,38.0,31.0,16.0,,,257.0,NW,1.0,1,24,
-2012-06-03,-0.5,-5.7,-3.1,-1.6,21450,980.2,964.0,974.3,,41.0,34.0,18.0,,,261.0,W,5.6,0,20,
-2012-06-04,-1.2,-7.1,-3.6,-1.4,21450,984.0,963.1,968.9,,23.0,17.0,7.0,,,123.0,SE,6.6,10,35,
-2012-06-05,-1.6,-7.1,-5.6,-1.2,0/4/0,994.7,965.5,987.3,,62.0,53.0,15.0,,,40.0,NE,0.5,12,42,
-2012-06-06,-0.9,-7.9,-4.2,-0.7,0/4/0,977.5,962.5,968.8,,43.0,36.0,20.0,,,36.0,SW,0.8,0,33,
-2012-06-07,-1.1,-8.8,-5.9,-1.3,0/4/0,995.8,977.0,988.3,,46.0,33.0,15.0,,,22.0,N,0.3,0,30,
-2012-06-08,-1.9,-7.3,-4.1,-1.3,0/4/0,980.8,964.3,971.3,,31.0,24.0,10.0,,,217.0,SW,3.1,2,30,
-2012-06-09,-5.5,-9.6,-8.0,-1.7,0/4/0,970.9,963.1,966.5,,20.0,17.0,8.0,,,257.0,SW,0.3,5,42,
-2012-06-10,-8.7,-11.9,-10.1,-1.6,0/4/0,974.9,970.4,972.4,,19.0,14.0,7.0,,,231.0,E,0.0,1,44,
-2012-06-11,-4.4,-11.1,-6.6,-1.2,0/4/0,974.9,967.8,971.8,,42.0,33.0,17.0,,,224.0,SW,0.0,0,38,
-2012-06-12,-6.0,-11.3,-9.2,-1.3,0/6/0,981.8,972.7,978.6,,25.0,18.0,9.0,,,102.0,E,0.0,0,36,
-2012-06-13,-10.3,-12.8,-11.4,-1.2,0/6/0,999.9,981.8,988.8,,25.0,18.0,9.0,,,120.0,E,0.0,0,35,
-2012-06-14,-6.4,-11.1,-7.3,-1.5,0/6/0,1006.2,1000.0,1004.7,,22.0,16.0,9.0,,,218.0,SW,0.0,0,35,
-2012-06-15,0.0,-7.6,-3.0,-1.1,0/6/0,1005.5,982.3,992.4,,46.0,36.0,16.0,,,30.0,NE,0.3,0,33,
-2012-06-16,-1.4,-6.8,-3.6,-1.2,0/6/0,986.8,972.8,981.9,,33.0,28.0,15.0,,,313.0,W,2.5,0,35,
-2012-06-17,-4.6,-13.5,-9.8,-0.8,0/6/0,972.7,959.9,966.4,,47.0,35.0,14.0,,,210.0,E,1.5,3,48,
-2012-06-18,-6.6,-12.1,-8.7,-1.4,0/6/0,981.0,968.8,975.1,,23.0,17.0,8.0,,,318.0,W,1.5,0,47,
-2012-06-19,-0.5,-9.1,-4.8,-1.2,0/6/0,982.9,972.0,978.2,,49.0,38.0,14.0,,,25.0,NE,0.3,2,46,
-2012-06-20,1.7,-0.5,0.3,-1.0,0/6/0,975.9,959.4,969.8,,44.0,33.0,22.0,,,30.0,N,0.8,1,44,
-2012-06-21,1.9,-2.0,0.2,-1.2,0/6/0,966.2,958.0,963.4,,44.0,34.0,25.0,,,23.0,N,1.3,0,43,
-2012-06-22,2.0,-0.7,0.4,-1.1,0/6/0,961.0,952.2,955.5,,37.0,30.0,13.0,,,53.0,E,0.0,0,43,
-2012-06-23,-0.5,-6.9,-3.4,-1.2,0/6/0,974.3,954.9,966.2,,21.0,17.0,7.0,,,223.0,W,0.0,3,51,
-2012-06-24,-1.5,-6.8,-3.7,-1.3,0/6/0,974.6,962.5,971.7,,35.0,27.0,8.0,,,46.0,E,0.3,1,51,
-2012-06-25,-0.6,-6.2,-3.9,-0.9,0/6/0,962.9,954.6,958.9,,45.0,34.0,20.0,,,50.0,E,0.0,0,47,
-2012-06-26,-4.1,-8.3,-6.1,-1.4,0/6/0,969.9,959.0,964.5,,29.0,24.0,9.0,,,39.0,E,0.0,0,45,
-2012-06-27,-5.4,-9.6,-8.0,-1.5,0/6/0,978.4,969.9,973.6,,24.0,21.0,8.0,,,29.0,NE,0.0,0,45,
-2012-06-28,-6.2,-8.2,-7.1,-1.7,0/6/0,979.2,975.6,977.5,,36.0,26.0,12.0,,,69.0,E,0.0,0,45,
-2012-06-29,-1.0,-7.8,-3.9,-1.4,0/6/0,977.0,969.0,972.5,,32.0,15.0,6.0,,,290.0,N,5.6,0,44,
-2012-06-30,-2.0,-4.4,-2.9,-1.6,0/4/0,974.1,967.0,969.8,,28.0,22.0,6.0,,,152.0,SE,0.0,9,45,
-2012-07-01,-2.1,-5.8,-3.8,-1.6,21670,984.7,974.1,979.6,,17.0,14.0,4.0,,,232.0,NE,0.0,1,54,
-2012-07-02,-4.0,-8.1,-6.1,-1.7,21670,987.3,984.6,985.9,,27.0,20.0,5.0,,,71.0,E,0.0,0,53,
-2012-07-03,-4.3,-8.0,-6.3,-1.3,0/6/0,995.1,987.1,991.1,,38.0,25.0,14.0,,,100.0,E,0.0,0,50,
-2012-07-04,-2.7,-4.8,-3.6,-1.6,0/6/0,1006.0,995.2,1000.5,,24.0,19.0,11.0,,,19.0,N,0.0,0,49,
-2012-07-05,-4.3,-6.0,-5.2,-1.6,21670,1007.3,1004.7,1006.1,,29.0,23.0,9.0,,,23.0,N,1.0,0,49,
-2012-07-06,-5.4,-9.3,-7.4,-1.6,21670,1004.7,1000.8,1002.4,,9.0,7.0,4.0,,,84.0,NE,0.0,4,56,
-2012-07-07,-1.2,-9.3,-5.6,-1.7,21670,1000.8,991.5,996.7,,36.0,31.0,8.0,,,42.0,SE,0.0,0,55,
-2012-07-08,1.0,-1.3,0.1,-1.6,0/6/0,999.7,990.7,993.2,,41.0,33.0,26.0,,,50.0,NE,0.0,0,45,
-2012-07-09,-0.9,-4.6,-2.9,-1.5,21670,1006.7,999.6,1004.5,,15.0,11.0,3.0,,,77.0,N,0.0,0,45,
-2012-07-10,-1.7,-3.5,-2.6,-1.7,21670,1005.8,1000.4,1002.3,,7.0,6.0,2.0,,,150.0,SE,0.0,1,46,
-2012-07-11,-3.3,-6.6,-5.0,-1.6,21670,1002.9,1001.1,1002.0,,14.0,12.0,3.0,,,50.0,NE,0.0,1,46,
-2012-07-12,-0.7,-4.1,-2.5,-1.6,21670,1001.4,984.2,994.0,,50.0,40.0,17.0,,,39.0,NE,0.0,0,46,
-2012-07-13,-0.6,-5.8,-3.0,-1.7,0/6/0,990.0,972.8,980.0,,63.0,48.0,27.0,,,41.0,N,1.3,0,45,
-2012-07-14,-2.8,-8.1,-5.6,-1.7,32670,997.9,990.0,995.2,,25.0,20.0,6.0,,,272.0,NE,1.3,1,47,
-2012-07-15,0.5,-4.1,-2.2,-1.7,32670,1010.3,987.4,997.4,,24.0,17.0,5.0,,,158.0,N,0.0,1,47,
-2012-07-16,0.3,-5.6,-3.0,-1.7,32670,1011.5,999.9,1007.9,,16.0,12.0,3.0,,,129.0,NE,0.0,1,48,
-2012-07-17,1.9,-1.1,0.3,-1.6,0/6/0,1000.0,987.8,991.9,,54.0,46.0,18.0,,,36.0,NE,1.0,0,46,
-2012-07-18,3.0,-1.1,1.3,-1.5,0/4/0,987.8,966.9,973.9,,45.0,35.0,14.0,,,27.0,NE,12.2,0,45,
-2012-07-19,-0.7,-7.2,-2.7,-1.7,21470,987.0,970.6,977.5,,14.0,11.0,2.0,,,340.0,NW,3.1,14,58,
-2012-07-20,1.2,-8.5,-1.5,-1.6,0/4/0,987.1,974.4,980.4,,60.0,47.0,23.0,,,37.0,NE,0.0,2,46,
-2012-07-21,1.9,-2.1,0.1,-1.6,0/4/0,983.1,978.0,980.8,,43.0,33.0,20.0,,,28.0,NE,1.3,4,48,
-2012-07-22,1.9,-0.3,0.7,-1.6,0/4/0,979.1,970.4,974.9,,56.0,43.0,24.0,,,28.0,NE,0.0,0,46,
-2012-07-23,2.1,-3.8,-0.8,-1.6,0/4/0,978.9,969.2,972.4,,27.0,22.0,8.0,,,232.0,SW,1.3,3,48,
-2012-07-24,-0.3,-4.5,-2.3,-1.6,0/4/0,979.4,953.9,968.6,,23.0,19.0,9.0,,,34.0,N,0.0,1,49,
-2012-07-25,0.2,-9.1,-6.5,-1.8,0/4/0,966.7,952.5,960.0,,46.0,37.0,25.0,,,216.0,SW,0.0,0,48,
-2012-07-26,-1.2,-8.6,-4.5,-1.8,0/4/0,980.9,965.6,973.2,,31.0,26.0,10.0,,,244.0,S,0.0,0,48,
-2012-07-27,-3.7,-7.1,-5.4,-1.7,20470,985.6,980.2,982.5,,28.0,22.0,6.0,,,28.0,NE,0.0,0,48,
-2012-07-28,-3.8,-6.9,-4.9,-1.7,20430,986.9,983.5,985.8,,31.0,25.0,13.0,,,22.0,NE,0.0,0,48,
-2012-07-29,-2.0,-7.8,-5.0,-1.8,0/4/0,983.8,967.1,975.8,,55.0,44.0,19.0,,,27.0,E,0.5,0,48,
-2012-07-30,-0.9,-5.9,-3.5,-1.8,0/4/0,975.8,951.8,963.4,,56.0,45.0,25.0,,,57.0,NW,0.0,0,48,
-2012-07-31,-5.2,-7.6,-6.5,-1.8,20470,972.6,959.9,966.9,,40.0,31.0,16.0,,,283.0,W,0.3,0,48,
-2012-08-01,-7.3,-9.4,-8.6,-1.8,21470,997.3,972.3,986.5,,35.0,27.0,16.0,,,243.0,SW,0.0,3,49,
-2012-08-02,-0.6,-9.6,-5.3,-1.8,21450,997.3,975.4,986.5,,49.0,39.0,14.0,,,52.0,SE,1.0,0,49,
-2012-08-03,-2.5,-4.3,-3.5,-1.8,21650,981.8,972.6,977.7,,32.0,26.0,11.0,,,23.0,NE,2.8,10,55,
-2012-08-04,-3.4,-8.0,-5.8,-1.7,32660,986.4,974.8,982.0,,30.0,25.0,10.0,,,227.0,SW,0.0,0,50,
-2012-08-05,-2.9,-7.2,-4.2,-1.7,21670,993.0,977.8,987.8,,57.0,42.0,13.0,,,30.0,W,0.0,0,49,
-2012-08-06,-3.0,-8.0,-5.4,-1.8,21670,990.7,970.3,979.1,,44.0,33.0,10.0,,,75.0,E,0.0,0,49,
-2012-08-07,-1.3,-4.0,-2.8,-1.8,0/6/0,982.0,971.8,975.4,,45.0,36.0,16.0,,,32.0,NE,0.3,1,49,
-2012-08-08,-3.3,-9.9,-7.9,-1.8,31650,991.4,982.1,988.6,,24.0,20.0,7.0,,,259.0,W,0.0,5,55,
-2012-08-09,-2.4,-8.1,-5.1,-1.7,31650,986.5,977.8,981.9,,38.0,32.0,9.0,,,74.0,E,0.0,0,52,
-2012-08-10,1.0,-4.0,-2.1,-1.8,0/6/0,983.6,978.0,981.1,,47.0,37.0,14.0,,,39.0,NE,0.0,0,52,
-2012-08-11,1.0,-3.3,-0.6,-1.7,0/6/0,982.8,978.3,980.5,,39.0,32.0,18.0,,,34.0,NE,0.0,0,51,
-2012-08-12,2.0,-1.7,-0.2,-1.7,0/6/0,983.4,973.1,976.9,,40.0,33.0,15.0,,,18.0,E,0.0,0,50,
-2012-08-13,1.1,-4.0,-1.7,-1.7,0/6/0,985.2,982.5,983.5,,30.0,25.0,8.0,,,42.0,SE,0.0,0,50,
-2012-08-14,-4.0,-7.6,-6.3,-1.7,0/6/0,985.6,981.4,983.5,,30.0,25.0,9.0,,,23.0,N,0.5,1,51,
-2012-08-15,-3.6,-8.8,-6.3,-1.7,41642,997.4,985.4,991.3,,21.0,18.0,6.0,,,29.0,N,0.0,0,50,
-2012-08-16,0.6,-5.3,-1.3,-1.7,0/6/0,994.9,981.0,989.1,,58.0,44.0,22.0,,,42.0,N,0.0,0,49,
-2012-08-17,1.2,-0.9,0.5,-1.7,0/4/0,989.6,980.0,984.6,,55.0,43.0,24.0,,,19.0,N,0.8,0,49,
-2012-08-18,3.7,-0.5,1.8,-1.6,21440,983.1,969.3,978.5,,50.0,39.0,17.0,,,34.0,NE,5.1,2,52,
-2012-08-19,2.8,-4.1,-0.6,-1.7,0/4/0,973.1,959.7,966.2,,60.0,46.0,29.0,,,34.0,NW,10.4,0,43,
-2012-08-20,-0.1,-6.4,-3.3,-1.7,51640,983.1,973.1,979.6,,45.0,33.0,16.0,,,352.0,N,0.0,1,48,
-2012-08-21,0.0,-5.8,-1.9,-1.7,0/4/0,977.2,960.3,967.7,,58.0,40.0,24.0,,,17.0,N,1.0,0,43,
-2012-08-22,-4.0,-10.1,-7.5,-1.8,51640,970.4,958.6,966.8,,56.0,45.0,12.0,,,338.0,N,0.3,0,44,
-2012-08-23,-8.2,-13.8,-12.0,-1.8,92647,987.8,966.3,979.2,,38.0,29.0,15.0,,,232.0,SW,0.0,0,46,
-2012-08-24,-13.3,-15.9,-14.7,-1.8,92647,1008.2,987.8,1000.8,,30.0,25.0,12.0,,,240.0,SW,0.0,5,52,
-2012-08-25,-2.4,-13.5,-8.1,-1.7,92647,1005.5,999.5,1003.7,,17.0,13.0,5.0,,,124.0,SE,0.8,1,54,
-2012-08-26,2.9,-4.5,0.2,-1.8,32640,999.6,991.1,994.9,,32.0,25.0,11.0,,,34.0,SE,1.8,0,47,
-2012-08-27,4.6,-0.5,1.8,-1.8,22640,1001.1,993.9,998.1,,31.0,25.0,8.0,,,30.0,SE,0.0,0,43,
-2012-08-28,4.2,1.0,2.3,-1.7,0/6/0,1005.5,997.1,1001.5,,55.0,43.0,23.0,,,33.0,NE,3.1,0,39,
-2012-08-29,3.3,0.8,2.3,-1.6,0/6/0,1005.0,994.6,999.4,,43.0,35.0,21.0,,,32.0,NE,0.0,0,36,
-2012-08-30,3.2,0.6,2.3,-1.5,0/6/0,995.4,991.8,993.9,,46.0,37.0,18.0,,,37.0,NE,0.0,0,33,
-2012-08-31,4.6,-0.6,1.9,-1.5,0/6/0,991.8,975.2,981.7,,40.0,31.0,12.0,,,32.0,E,0.8,0,33,
-2012-09-01,1.0,-2.1,-0.8,-1.5,0/6/0,984.0,973.8,977.2,,35.0,29.0,16.0,,,25.0,NW,0.8,1,33,
-2012-09-02,0.6,-2.0,-0.6,-1.7,21650,988.3,979.1,984.2,,40.0,32.0,18.0,,,29.0,N,0.5,1,39,
-2012-09-03,0.1,-4.8,-1.9,-1.7,20650,991.8,982.1,986.6,,43.0,34.0,10.0,,,29.0,SW,1.8,2,42,
-2012-09-04,-1.1,-4.6,-2.6,-1.7,41650,992.3,980.6,988.7,,30.0,23.0,9.0,,,333.0,N,1.3,0,41,
-2012-09-05,-0.3,-5.5,-2.5,-1.6,31650,980.6,966.0,970.2,,24.0,20.0,8.0,,,14.0,E,2.0,1,43,
-2012-09-06,-1.2,-4.0,-2.7,-1.7,0/6/0,971.1,963.1,967.1,,44.0,36.0,11.0,,,25.0,SE,0.3,1,47,
-2012-09-07,-0.7,-5.2,-2.9,-1.8,0/6/0,968.7,965.6,967.0,,21.0,16.0,6.0,,,66.0,SW,0.0,1,47,
-2012-09-08,-4.6,-7.7,-6.2,-1.7,51642,983.8,968.8,977.2,,25.0,21.0,7.0,,,23.0,SE,1.0,1,47,
-2012-09-09,-3.9,-9.2,-7.2,-1.7,0/6/0,993.0,982.4,985.9,,23.0,17.0,6.0,,,121.0,NE,0.0,1,48,
-2012-09-10,-4.9,-7.7,-6.6,-1.7,0/6/0,1001.2,993.0,998.6,,14.0,12.0,5.0,,,241.0,SE,0.5,6,53,
-2012-09-11,-7.8,-11.2,-9.3,-1.7,21650,1001.2,998.2,999.5,,19.0,16.0,6.0,,,227.0,SW,0.0,0,49,
-2012-09-12,-1.9,-10.2,-6.0,-1.7,51640,998.9,995.3,997.1,,22.0,18.0,7.0,,,226.0,SW,3.1,0,47,
-2012-09-13,-0.2,-8.5,-5.0,-1.7,41640,998.0,994.6,996.2,,11.0,9.0,4.0,,,226.0,SE,0.8,6,52,
-2012-09-14,-2.3,-10.4,-6.8,-1.7,51640,998.2,995.7,996.9,,11.0,9.0,3.0,,,136.0,NW,0.3,0,52,
-2012-09-15,-2.1,-5.0,-3.5,-1.7,41640,995.7,983.6,991.4,,32.0,26.0,8.0,,,23.0,N,0.0,0,51,
-2012-09-16,-2.4,-9.1,-5.8,-1.7,51640,993.3,983.4,990.1,,26.0,21.0,7.0,,,229.0,SW,0.5,1,50,
-2012-09-17,-0.3,-5.5,-1.9,-1.7,51640,993.4,981.8,988.2,,40.0,31.0,14.0,,,337.0,N,1.0,1,53,
-2012-09-18,1.1,-7.5,-2.9,-1.8,51640,992.0,975.4,985.0,,50.0,39.0,15.0,,,30.0,N,0.3,0,52,
-2012-09-19,1.5,-2.8,-0.3,-1.8,21640,993.8,975.6,982.1,,33.0,26.0,9.0,,,32.0,SE,0.5,0,51,
-2012-09-20,-1.8,-5.2,-3.9,-1.7,21640,1002.3,993.9,1000.0,,20.0,17.0,7.0,,,22.0,N,0.3,2,53,
-2012-09-21,0.2,-6.3,-4.3,-1.7,21640,1002.0,1000.0,1001.2,,7.0,6.0,3.0,,,302.0,N,0.0,0,51,
-2012-09-22,-1.6,-6.8,-4.8,-1.7,21640,1000.0,992.3,995.0,,16.0,10.0,4.0,,,81.0,N,0.0,0,50,
-2012-09-23,1.9,-5.5,-3.0,-1.7,21640,1011.1,997.2,1006.3,,20.0,15.0,4.0,,,19.0,N,0.0,0,50,
-2012-09-24,0.5,-3.5,-0.8,-1.7,21640,1010.8,996.5,1001.7,,57.0,38.0,18.0,,,35.0,N,10.7,0,50,
-2012-09-25,-0.2,-1.2,-0.7,-1.7,41642,1004.2,996.7,1000.5,,26.0,19.0,11.0,,,295.0,NW,3.8,12,77,
-2012-09-26,1.5,-1.8,-1.0,-1.7,41642,1003.2,997.8,999.9,,18.0,15.0,4.0,,,309.0,NW,1.5,1,78,
-2012-09-27,1.1,-3.8,-1.4,-1.7,51642,1010.4,1001.4,1005.6,,13.0,11.0,4.0,,,299.0,NW,0.5,0,76,
-2012-09-28,4.5,-2.1,0.8,-1.7,526//,1013.6,1009.7,1011.9,,33.0,25.0,8.0,,,18.0,N,0.0,0,76,
-2012-09-29,2.8,-0.5,1.3,-1.6,2/640,1009.9,993.2,999.8,,51.0,42.0,21.0,,,25.0,NE,4.1,0,70,
-2012-09-30,1.6,-2.3,-0.7,-1.5,32640,1004.9,993.4,1001.4,,21.0,19.0,7.0,,,24.0,SE,0.8,5,77,
-2012-10-01,1.5,-1.8,-0.4,-1.5,22690,1003.6,973.9,990.2,,31.0,22.0,6.0,,,117.0,SE,2.3,0,70,
-2012-10-02,0.4,-1.7,-0.9,-1.7,22690,986.9,971.2,976.9,,33.0,28.0,15.0,,,25.0,N,0.8,4,71,
-2012-10-03,5.3,-2.8,1.3,-1.4,22690,988.3,985.3,987.1,,44.0,35.0,9.0,,,22.0,SE,0.8,1,72,
-2012-10-04,3.0,-3.4,-0.1,-1.0,22690,989.2,980.7,986.9,,21.0,17.0,3.0,,,37.0,SE,0.0,0,69,
-2012-10-05,-0.2,-4.8,-2.6,-1.5,21690,980.7,974.1,976.0,,14.0,12.0,4.0,,,336.0,NW,0.0,0,68,
-2012-10-06,-0.2,-3.4,-1.8,-1.5,22690,981.0,976.2,978.3,,15.0,13.0,6.0,,,232.0,NW,0.5,3,70,
-2012-10-07,0.3,-3.8,-2.2,-1.4,21690,981.0,969.1,975.1,,33.0,26.0,8.0,,,74.0,E,0.0,0,69,
-2012-10-08,-1.1,-5.4,-2.9,-1.4,21690,988.6,971.4,981.1,,16.0,14.0,7.0,,,246.0,W,0.5,0,67,
-2012-10-09,-4.4,-9.2,-7.0,-1.6,22690,999.6,988.3,994.0,,22.0,16.0,8.0,,,222.0,SW,0.0,0,67,
-2012-10-10,-0.5,-5.9,-3.4,-1.5,52796,1000.0,993.0,997.2,,15.0,12.0,5.0,,,225.0,NW,0.0,0,67,
-2012-10-11,1.0,-2.6,-1.0,-1.5,52796,993.0,980.3,984.5,,17.0,13.0,8.0,,,335.0,NW,7.4,1,67,
-2012-10-12,0.4,-1.2,-0.3,-1.6,42794,981.8,970.2,975.7,,41.0,34.0,18.0,,,336.0,N,2.8,8,88,
-2012-10-13,-0.1,-6.7,-2.5,-1.6,53796,980.7,964.0,970.8,,32.0,25.0,12.0,,,245.0,NW,1.5,3,92,
-2012-10-14,-1.2,-9.6,-3.4,-1.6,44794,980.0,973.0,975.0,,37.0,28.0,12.0,,,223.0,NW,0.5,1,90,
-2012-10-15,-3.7,-14.3,-10.9,-1.6,54696,996.9,977.2,990.3,,35.0,27.0,11.0,,,229.0,SW,0.0,0,89,
-2012-10-16,2.0,-7.1,-2.7,-1.6,54695,990.1,968.6,976.2,,29.0,23.0,12.0,,,246.0,N,1.5,4,91,
-2012-10-17,-6.6,-11.8,-9.1,-1.6,55696,990.1,978.1,985.9,,22.0,18.0,10.0,,,236.0,SW,0.0,2,90,
-2012-10-18,-5.9,-11.7,-9.6,-1.7,55696,990.4,974.7,985.2,,17.0,12.0,5.0,,,211.0,SW,0.0,0,89,
-2012-10-19,-1.0,-10.4,-7.6,-1.6,56695,987.6,974.4,979.4,,23.0,16.0,8.0,,,206.0,SE,0.3,4,96,
-2012-10-20,-1.7,-13.4,-9.0,-1.6,56694,996.5,987.6,991.5,,30.0,23.0,8.0,,,120.0,NE,0.0,0,92,
-2012-10-21,-1.2,-14.1,-8.6,-1.6,46694,996.7,994.9,995.7,,21.0,15.0,3.0,,,99.0,NE,0.0,0,90,
-2012-10-22,-0.8,-10.4,-5.5,-1.7,54695,996.1,979.2,991.7,,38.0,26.0,8.0,,,131.0,SE,0.0,0,89,
-2012-10-23,1.8,-2.6,-0.6,-1.7,34692,979.5,968.2,973.0,,40.0,33.0,11.0,,,26.0,SE,7.6,1,89,
-2012-10-24,3.5,-2.6,-0.9,-1.6,34691,974.8,960.5,968.8,,33.0,28.0,12.0,,,36.0,N,0.0,5,96,
-2012-10-25,-1.0,-5.5,-3.4,-1.3,24791,969.6,960.7,963.8,,38.0,29.0,12.0,,,122.0,SE,0.0,0,96,
-2012-10-26,-3.0,-6.6,-5.0,-1.4,23791,978.7,969.7,975.1,,12.0,10.0,5.0,,,340.0,NE,0.0,0,94,
-2012-10-27,-2.1,-5.9,-4.3,-1.2,23790,978.6,964.3,972.7,,22.0,18.0,9.0,,,43.0,NE,0.0,0,94,
-2012-10-28,2.3,-5.9,-3.4,-0.8,23890,965.6,958.2,960.9,,21.0,18.0,7.0,,,230.0,SW,0.0,0,93,
-2012-10-29,-5.9,-8.0,-7.4,-1.6,23890,984.2,965.6,975.2,,25.0,22.0,16.0,,,235.0,SW,0.0,0,91,
-2012-10-30,2.0,-7.5,-5.1,-1.7,22793,992.4,984.1,988.9,,22.0,19.0,9.0,,,246.0,SW,0.0,0,91,
-2012-10-31,0.4,-7.1,-3.6,-1.2,23792,992.5,985.5,990.0,,22.0,17.0,6.0,,,74.0,E,0.3,0,90,
-2012-11-01,2.7,-4.2,-1.6,-1.1,23690,985.6,978.7,980.5,,26.0,19.0,9.0,,,123.0,SE,0.0,1,91,
-2012-11-02,-1.3,-6.6,-4.5,-1.1,23990,984.2,979.2,981.8,,19.0,17.0,10.0,,,250.0,W,0.0,0,91,
-2012-11-03,-4.4,-5.9,-5.3,-1.5,23990,986.5,984.1,985.0,,14.0,12.0,6.0,,,259.0,W,0.0,0,90,
-2012-11-04,-2.3,-6.1,-4.3,-1.2,33992,991.9,986.5,988.5,,16.0,13.0,7.0,,,212.0,SW,0.0,0,90,
-2012-11-05,-3.8,-8.4,-6.1,-1.4,33992,995.1,991.8,994.1,,17.0,14.0,7.0,,,239.0,SW,0.0,0,89,
-2012-11-06,1.3,-7.3,-5.0,-1.4,43993,994.4,985.1,990.5,,34.0,27.0,6.0,,,23.0,SW,0.0,0,89,
-2012-11-07,0.7,-5.7,-2.2,-1.0,33991,985.5,976.3,979.7,,38.0,29.0,13.0,,,69.0,E,0.0,0,88,
-2012-11-08,2.8,-1.2,0.2,-0.8,23890,985.7,976.2,981.8,,40.0,33.0,16.0,,,33.0,E,0.0,0,88,
-2012-11-09,3.7,-2.9,0.1,-0.9,23890,988.0,984.3,985.3,,25.0,19.0,8.0,,,70.0,E,0.0,0,87,
-2012-11-10,1.2,-2.7,-1.6,-0.8,23890,990.7,986.9,989.1,,25.0,21.0,6.0,,,29.0,N,0.0,0,85,
-2012-11-11,2.0,-4.1,-1.5,-0.8,22790,993.4,987.2,989.7,,32.0,24.0,8.0,,,41.0,SE,0.0,0,85,
-2012-11-12,4.2,-0.4,1.7,-0.7,22790,993.1,969.4,978.9,,51.0,40.0,21.0,,,35.0,NE,5.8,0,82,
-2012-11-13,1.8,0.4,1.0,-0.9,22690,985.9,971.0,981.0,,44.0,32.0,21.0,,,337.0,N,0.5,0,81,
-2012-11-14,1.6,-2.1,-1.1,-1.6,22790,992.6,983.3,989.0,,37.0,25.0,14.0,,,338.0,NW,0.3,0,80,
-2012-11-15,-1.8,-4.0,-2.6,-1.5,22790,994.0,988.7,990.3,,22.0,19.0,11.0,,,238.0,SW,0.0,0,80,
-2012-11-16,-0.7,-5.2,-3.6,-1.2,22290,996.9,981.4,991.0,,22.0,19.0,6.0,,,237.0,SW,0.0,0,79,
-2012-11-17,3.2,-1.3,0.3,-1.1,22690,985.7,981.6,984.0,,32.0,26.0,8.0,,,29.0,SE,3.3,4,82,
-2012-11-18,3.8,-0.3,1.7,-0.8,22690,982.0,976.7,978.4,,31.0,25.0,6.0,,,18.0,SE,1.5,0,79,
-2012-11-19,1.4,-1.8,-0.5,-1.4,22690,992.2,977.7,984.6,,22.0,17.0,7.0,,,351.0,NW,0.3,0,79,
-2012-11-20,3.2,-1.6,0.8,-0.9,22690,992.8,980.9,987.0,,46.0,33.0,16.0,,,57.0,NE,0.3,0,79,
-2012-11-21,4.7,-0.9,1.1,-0.2,22690,985.0,975.4,981.5,,46.0,35.0,12.0,,,56.0,SE,0.0,0,78,
-2012-11-22,3.4,-1.2,0.2,-0.5,22690,975.4,971.5,972.4,,34.0,25.0,11.0,,,119.0,E,0.0,0,75,
-2012-11-23,0.4,-2.5,-0.9,-0.1,22690,984.1,973.0,978.3,,26.0,22.0,12.0,,,228.0,SW,0.0,0,73,
-2012-11-24,3.1,-3.6,-2.0,-0.4,22690,986.3,983.8,984.5,,23.0,19.0,9.0,,,237.0,SW,0.0,0,72,
-2012-11-25,2.6,-3.3,-1.1,-0.3,22690,990.0,982.0,988.1,,12.0,10.0,4.0,,,266.0,NE,0.0,0,69,
-2012-11-26,2.7,-2.6,-0.1,0.3,22690,985.7,971.5,976.9,,22.0,15.0,5.0,,,103.0,NW,0.0,0,68,
-2012-11-27,0.7,-2.2,-1.2,-1.0,22690,989.9,985.7,988.8,,15.0,13.0,7.0,,,244.0,SW,0.0,0,68,
-2012-11-28,0.7,-1.9,-0.9,-0.7,22690,991.7,988.9,990.3,,13.0,10.0,4.0,,,229.0,SW,0.0,0,66,
-2012-11-29,2.8,-2.1,0.0,-0.4,22690,989.8,976.3,981.6,,46.0,37.0,11.0,,,21.0,SE,1.8,2,66,
-2012-11-30,0.0,-3.5,-1.7,0.3,22690,981.6,979.8,980.7,,22.0,19.0,7.0,,,264.0,N,0.3,0,66,
-2012-12-01,1.5,-2.7,-0.8,0.4,22690,982.9,979.4,981.4,,19.0,16.0,9.0,,,192.0,NW,0.5,1,67,
-2012-12-02,3.8,-4.4,-1.2,1.0,21690,981.1,979.8,980.3,,15.0,11.0,4.0,,,212.0,NE,0.0,0,63,
-2012-12-03,-0.2,-2.4,-1.4,0.6,0/6/0,981.4,980.1,980.7,,14.0,13.0,6.0,,,246.0,SW,0.0,0,63,
-2012-12-04,3.3,-2.3,-0.5,0.7,0/7/0,981.5,979.0,980.2,,14.0,13.0,7.0,,,243.0,SW,0.0,0,61,
-2012-12-05,3.4,-2.1,-1.0,0.6,0/9/0,980.5,970.4,976.1,,18.0,15.0,8.0,,,215.0,SW,0.0,0,57,
-2012-12-06,3.1,-3.4,0.2,1.3,0/9/0,975.6,969.5,971.5,,16.0,13.0,4.0,,,60.0,NE,0.0,0,56,
-2012-12-07,3.6,-3.3,0.1,0.7,0/9/0,984.8,975.6,980.6,,19.0,14.0,7.0,,,71.0,E,0.0,0,51,
-2012-12-08,4.5,-1.0,1.0,1.3,0/9/0,985.4,984.3,984.9,,6.0,5.0,3.0,,,356.0,N,0.0,0,48,
-2012-12-09,4.4,-0.8,1.3,2.3,0/9/0,985.5,983.7,984.8,,11.0,9.0,3.0,,,218.0,NE,0.0,0,43,
-2012-12-10,5.0,-0.7,1.5,2.9,0/8/0,983.7,981.0,981.9,,10.0,8.0,3.0,,,215.0,SW,0.0,0,38,
-2012-12-11,5.6,-0.7,1.0,2.9,0/8/0,987.3,981.9,984.3,,27.0,24.0,8.0,,,19.0,NE,0.0,0,31,
-2012-12-12,4.1,-0.7,0.5,2.0,0/8/0,993.4,987.0,990.2,,29.0,25.0,17.0,,,26.0,NE,0.0,0,29,
-2012-12-13,4.7,-0.2,1.1,2.0,0/7/0,995.3,993.2,994.2,,12.0,11.0,4.0,,,342.0,SE,0.0,0,28,
-2012-12-14,4.4,-0.6,1.6,1.9,0/7/0,996.2,995.3,995.8,,20.0,17.0,4.0,,,27.0,NE,0.0,0,25,
-2012-12-15,2.9,0.7,1.8,0.9,0/7/0,996.0,994.2,995.3,,35.0,29.0,21.0,,,25.0,NE,0.0,0,20,
-2012-12-16,2.1,-1.1,0.7,0.3,0/6/0,998.0,994.9,996.6,,31.0,27.0,7.0,,,24.0,SW,0.5,0,16,
-2012-12-17,0.9,-0.8,-0.2,0.8,0/6/0,1000.1,997.7,999.2,,16.0,14.0,10.0,,,230.0,SW,0.0,0,14,
-2012-12-18,0.9,-0.6,0.0,1.3,0/6/0,1001.2,999.7,1000.2,,15.0,13.0,9.0,,,224.0,SW,0.0,0,11,
-2012-12-19,4.0,-0.2,1.3,1.5,0/6/0,1003.7,1001.2,1002.8,,13.0,11.0,5.0,,,228.0,SW,0.0,0,5,
-2012-12-20,5.3,-1.5,1.6,1.5,20692,1004.0,1002.5,1003.1,,6.0,5.0,2.0,,,214.0,NE,0.0,0,0,
-2012-12-21,5.8,-1.1,1.2,1.8,0/6/0,1003.3,1001.5,1002.8,,11.0,9.0,4.0,,,206.0,N,0.0,0,0,
-2012-12-22,5.0,0.2,1.4,1.9,0/6/0,1001.5,997.8,999.9,,10.0,9.0,4.0,,,234.0,SW,0.0,0,0,
-2012-12-23,4.3,0.3,1.4,1.9,0/6/0,997.8,989.7,992.4,,11.0,10.0,5.0,,,153.0,S,0.0,0,0,
-2012-12-24,5.4,0.8,3.0,2.6,0/6/0,1002.0,990.4,995.8,,21.0,17.0,5.0,,,121.0,N,0.0,0,0,
-2012-12-25,4.1,-0.1,1.3,1.8,0/6/0,1008.2,1002.0,1006.7,,11.0,9.0,5.0,,,249.0,N,0.0,0,0,
-2012-12-26,6.2,0.8,2.9,3.0,0/6/0,1007.9,1003.8,1005.8,,10.0,8.0,2.0,,,215.0,SW,0.0,0,0,
-2012-12-27,4.1,1.3,2.2,2.1,0/6/0,1003.8,996.8,1000.5,,6.0,5.0,2.0,,,119.0,NE,0.5,0,0,
-2012-12-28,3.1,1.2,1.9,1.7,0/6/0,996.8,993.6,994.6,,7.0,7.0,2.0,,,151.0,SE,0.8,0,0,
-2012-12-29,3.2,0.9,1.7,1.8,0/6/0,1003.5,995.4,1000.4,,12.0,10.0,4.0,,,322.0,NW,0.0,0,0,
-2012-12-30,3.4,1.0,1.9,2.1,0/6/0,1008.1,1003.2,1005.0,,12.0,11.0,5.0,,,237.0,W,0.0,0,0,
-2012-12-31,2.5,1.4,1.7,2.4,0/6/0,1009.4,1006.6,1008.4,,18.0,15.0,9.0,,,225.0,SW,0.0,0,0,
-2013-01-01,3.4,0.7,1.6,1.9,0/6/0,1006.7,998.0,1000.4,,13.0,11.0,5.0,,,304.0,SE,6.1,0,0,
-2013-01-02,1.8,0.4,0.8,0.9,0/6/0,999.0,995.8,997.6,,13.0,10.0,6.0,,,289.0,NW,4.8,0,0,
-2013-01-03,5.4,-0.6,2.0,0.4,0/6/0,996.0,992.3,994.3,,11.0,10.0,3.0,,,319.0,N,0.0,0,0,
-2013-01-04,6.1,0.4,2.8,0.7,0/6/0,994.6,991.8,992.8,,13.0,11.0,5.0,,,338.0,W,0.0,0,0,
-2013-01-05,5.1,0.5,2.2,1.5,0/6/0,995.0,986.4,992.5,,23.0,18.0,4.0,,,120.0,N,0.0,0,0,
-2013-01-06,3.9,1.6,2.4,1.9,0/6/0,986.4,981.1,983.0,,25.0,19.0,6.0,,,65.0,NW,0.0,0,0,
-2013-01-07,6.3,1.2,4.4,1.7,0/6/0,981.1,969.9,975.2,,41.0,32.0,18.0,,,122.0,SE,0.0,0,0,
-2013-01-08,8.7,2.6,5.0,0.9,0/6/0,979.1,971.0,973.9,,39.0,27.0,10.0,,,105.0,E,0.0,0,0,
-2013-01-09,7.5,1.7,4.4,1.9,0/6/0,986.0,979.1,983.7,,7.0,6.0,2.0,,,341.0,NE,0.0,0,0,
-2013-01-10,5.6,-0.2,2.8,1.8,0/6/0,990.3,986.0,988.5,,17.0,13.0,4.0,,,11.0,E,0.0,0,0,
-2013-01-11,5.4,0.5,2.5,2.2,0/6/0,989.1,976.1,982.0,,16.0,12.0,3.0,,,147.0,N,0.3,0,0,
-2013-01-12,4.8,1.6,2.4,2.3,0/6/0,990.6,976.1,983.2,,12.0,11.0,5.0,,,256.0,W,0.5,0,0,
-2013-01-13,2.6,0.8,1.7,2.5,0/6/0,999.2,990.6,995.9,,24.0,21.0,13.0,,,236.0,SW,0.0,0,0,
-2013-01-14,2.0,0.6,1.1,2.5,0/6/0,998.4,992.5,994.7,,18.0,15.0,9.0,,,235.0,SW,0.0,0,0,
-2013-01-15,2.2,0.8,1.3,2.3,0/6/0,992.7,987.3,989.6,,18.0,15.0,9.0,,,240.0,SW,0.0,0,0,
-2013-01-16,3.4,0.6,1.5,2.5,0/6/0,994.8,987.3,990.7,,22.0,18.0,9.0,,,227.0,SW,0.0,0,0,
-2013-01-17,4.8,0.6,2.0,2.2,0/6/0,995.0,991.9,993.3,,11.0,9.0,2.0,,,350.0,SW,0.0,0,0,
-2013-01-18,2.3,0.4,1.3,1.7,0/6/0,1002.7,992.2,998.2,,9.0,7.0,2.0,,,121.0,SE,3.3,0,0,
-2013-01-19,5.5,0.6,2.4,1.5,0/6/0,1002.1,988.2,993.8,,42.0,33.0,8.0,,,21.0,N,13.0,0,0,
-2013-01-20,3.6,1.7,2.5,0.5,0/6/0,992.5,988.4,990.9,,19.0,15.0,8.0,,,347.0,N,22.1,0,0,
-2013-01-21,4.5,1.4,2.5,0.8,0/6/0,992.6,988.1,990.2,,19.0,16.0,7.0,,,28.0,SE,9.1,0,0,
-2013-01-22,4.8,1.5,2.8,1.3,0/6/0,992.7,988.5,990.2,,17.0,14.0,4.0,,,126.0,SE,2.5,0,0,
-2013-01-23,2.8,1.0,2.0,1.2,0/6/0,998.9,990.1,994.5,,8.0,7.0,3.0,,,357.0,N,0.0,0,0,
-2013-01-24,2.7,0.1,1.4,1.3,0/6/0,998.5,979.0,988.9,,22.0,19.0,8.0,,,237.0,SW,2.5,0,0,
-2013-01-25,3.5,0.4,1.9,2.1,0/6/0,990.5,981.6,986.3,,25.0,18.0,9.0,,,159.0,SW,0.0,0,0,
-2013-01-26,3.8,0.9,1.9,2.3,0/6/0,992.1,988.6,991.1,,16.0,14.0,5.0,,,241.0,SW,0.0,0,0,
-2013-01-27,3.3,-0.2,1.5,1.8,0/6/0,988.7,973.0,980.7,,29.0,20.0,8.0,,,119.0,SE,9.1,4,1,
-2013-01-28,5.0,0.7,2.6,0.6,0/6/0,977.3,971.0,973.3,,28.0,23.0,8.0,,,13.0,N,10.9,1,0,
-2013-01-29,4.8,2.2,3.5,1.6,0/6/0,978.8,963.2,973.0,,35.0,26.0,14.0,,,74.0,E,0.0,0,0,
-2013-01-30,3.2,1.2,2.1,1.7,0/6/0,973.5,962.7,969.6,,33.0,19.0,10.0,,,103.0,NW,0.0,0,0,
-2013-01-31,3.3,-0.9,1.5,2.0,0/6/0,973.5,967.6,970.5,,13.0,11.0,5.0,,,2.0,N,0.0,0,0,
-2013-02-01,4.2,0.0,2.0,1.1,0/6/0,983.9,969.2,976.2,,19.0,17.0,6.0,,,243.0,S,0.0,0,0,
-2013-02-02,3.4,0.8,1.9,1.9,0/6/0,988.3,981.4,986.0,,21.0,19.0,8.0,,,234.0,SW,0.0,0,0,
-2013-02-03,3.7,0.4,1.9,1.2,0/6/0,981.4,977.0,978.4,,16.0,12.0,4.0,,,146.0,SE,11.7,1,0,
-2013-02-04,4.5,0.7,2.2,0.8,0/6/0,982.7,973.6,980.6,,27.0,23.0,6.0,,,34.0,N,4.6,0,0,
-2013-02-05,4.4,1.6,2.5,0.9,0/6/0,973.6,967.6,969.1,,30.0,23.0,6.0,,,38.0,SE,8.1,0,0,
-2013-02-06,5.4,1.3,2.3,0.4,0/6/0,975.6,970.7,973.9,,15.0,13.0,6.0,,,340.0,N,2.8,0,0,
-2013-02-07,2.6,0.8,1.4,0.5,0/6/0,985.1,975.6,981.7,,14.0,12.0,6.0,,,311.0,NW,3.8,0,0,
-2013-02-08,4.3,0.9,2.2,0.7,0/6/0,986.9,983.9,985.5,,21.0,18.0,8.0,,,20.0,SE,0.3,0,0,
-2013-02-09,6.5,2.6,4.3,1.6,0/6/0,984.9,979.3,980.6,,40.0,32.0,14.0,,,28.0,NE,0.5,0,0,
-2013-02-10,4.4,2.5,3.5,1.4,0/6/0,987.1,980.6,983.8,,26.0,22.0,14.0,,,21.0,N,0.5,0,0,
-2013-02-11,5.9,1.3,3.1,1.2,0/6/0,988.6,986.2,987.6,,32.0,25.0,13.0,,,21.0,N,1.0,0,0,
-2013-02-12,3.3,-0.1,1.2,1.4,0/6/0,988.5,986.4,987.2,,11.0,8.0,3.0,,,200.0,SW,0.0,0,0,
-2013-02-13,3.4,-1.6,0.7,1.6,0/6/0,989.9,987.9,989.0,,9.0,7.0,3.0,,,224.0,E,0.0,0,0,
-2013-02-14,4.1,1.5,2.7,1.9,0/6/0,989.2,976.6,984.7,,33.0,23.0,10.0,,,102.0,E,0.0,0,0,
-2013-02-15,5.4,2.0,3.9,1.9,0/6/0,976.8,967.7,971.6,,35.0,20.0,8.0,,,95.0,E,0.0,0,0,
-2013-02-16,5.9,-0.5,2.6,1.6,0/6/0,973.3,967.4,968.8,,26.0,23.0,7.0,,,238.0,SW,1.0,0,0,
-2013-02-17,0.3,-0.6,-0.1,1.5,0/6/0,980.7,973.3,977.5,,28.0,24.0,15.0,,,228.0,SW,0.3,1,1,
-2013-02-18,1.7,-1.6,0.3,1.3,0/6/0,977.6,963.0,966.8,,41.0,32.0,13.0,,,34.0,SE,0.3,0,0,
-2013-02-19,5.2,-2.4,0.7,1.2,0/6/0,989.2,969.5,979.9,,15.0,12.0,4.0,,,140.0,E,0.0,0,0,
-2013-02-20,6.6,-0.7,2.8,1.6,0/6/0,1004.3,989.3,997.1,,19.0,14.0,7.0,,,119.0,E,0.0,0,0,
-2013-02-21,2.1,-0.9,0.2,0.3,0/6/0,1009.6,1004.3,1006.9,,11.0,7.0,4.0,,,301.0,N,0.0,0,0,
-2013-02-22,2.6,-0.1,0.9,0.7,0/6/0,1015.5,1009.5,1012.5,,14.0,12.0,5.0,,,239.0,SW,0.0,0,0,
-2013-02-23,4.9,0.8,2.2,0.5,0/6/0,1015.6,1012.9,1014.5,,13.0,10.0,4.0,,,238.0,NW,0.0,0,0,
-2013-02-24,4.1,-0.2,1.8,0.6,0/6/0,1015.5,1010.7,1013.9,,10.0,9.0,4.0,,,337.0,NW,0.0,0,0,
-2013-02-25,1.6,-0.2,0.9,0.5,0/6/0,1011.1,1002.8,1006.4,,17.0,13.0,6.0,,,226.0,SW,0.0,0,0,
-2013-02-26,2.9,-0.5,0.9,-0.9,0/6/0,1002.7,989.5,994.4,,32.0,25.0,12.0,,,17.0,NW,5.1,1,0,
-2013-02-27,2.5,-0.3,0.9,-0.3,0/6/0,998.8,992.3,995.7,,16.0,12.0,5.0,,,244.0,SE,7.4,0,0,
-2013-02-28,2.3,0.6,1.5,-1.0,0/6/0,992.4,986.3,988.8,,24.0,19.0,11.0,,,316.0,W,4.6,0,0,
-2013-03-01,1.8,0.5,1.2,-0.6,0/6/0,993.9,990.3,992.5,,18.0,13.0,6.0,,,268.0,W,1.5,0,0,
-2013-03-02,3.0,0.4,1.7,-0.6,0/6/0,993.2,983.2,989.2,,27.0,21.0,10.0,,,18.0,N,10.2,1,0,
-2013-03-03,5.3,1.5,2.5,0.2,0/6/0,994.2,987.4,992.0,,30.0,23.0,11.0,,,31.0,N,18.0,0,0,
-2013-03-04,6.0,1.6,3.6,0.5,0/6/0,987.5,970.6,978.1,,50.0,36.0,22.0,,,30.0,NW,5.3,0,0,
-2013-03-05,1.9,0.1,1.4,0.4,0/6/0,992.3,983.1,987.6,,30.0,24.0,16.0,,,337.0,NW,3.1,0,0,
-2013-03-06,3.3,-0.6,0.8,0.9,0/6/0,998.3,992.2,994.7,,22.0,18.0,6.0,,,339.0,NW,3.6,6,7,
-2013-03-07,3.1,-0.6,0.6,0.6,0/6/0,1002.8,998.3,1001.0,,16.0,12.0,4.0,,,23.0,N,0.0,0,0,
-2013-03-08,3.2,0.0,1.1,0.8,0/6/0,1004.1,1002.2,1003.2,,24.0,20.0,4.0,,,38.0,SE,0.0,1,0,
-2013-03-09,5.4,-0.3,1.2,0.8,0/6/0,1010.7,1004.1,1006.2,,23.0,20.0,6.0,,,21.0,SE,0.0,1,0,
-2013-03-10,2.4,-1.0,0.4,1.1,0/6/0,1012.7,1010.7,1011.7,,18.0,14.0,4.0,,,34.0,NE,0.0,0,0,
-2013-03-11,0.1,-1.2,-0.4,0.4,0/6/0,1015.5,1012.6,1014.3,,15.0,12.0,6.0,,,220.0,SW,0.0,0,0,
-2013-03-12,0.1,-1.5,-0.7,1.1,0/6/0,1016.9,1015.0,1016.0,,17.0,14.0,6.0,,,232.0,SW,0.0,0,0,
-2013-03-13,3.6,-0.9,0.6,1.2,0/6/0,1020.9,1015.8,1018.0,,11.0,9.0,3.0,,,222.0,W,0.0,0,0,
-2013-03-14,3.0,-1.2,1.8,-0.1,0/6/0,1019.7,1003.7,1011.2,,26.0,20.0,9.0,,,353.0,N,17.0,0,0,
-2013-03-15,5.3,1.0,2.4,-0.1,0/6/0,1003.8,989.6,993.8,,31.0,21.0,6.0,,,1.0,SE,4.6,0,0,
-2013-03-16,2.9,-0.6,0.2,0.2,0/6/0,1009.7,993.9,1004.3,,13.0,11.0,4.0,,,120.0,SW,0.3,0,0,
-2013-03-17,4.7,3.0,3.9,0.2,0/6/0,1007.8,995.3,1001.3,,33.0,25.0,18.0,,,23.0,N,7.1,0,0,
-2013-03-18,5.7,2.9,3.9,0.3,0/6/0,996.2,985.1,992.3,,41.0,32.0,13.0,,,26.0,N,10.4,0,0,
-2013-03-19,3.7,0.6,1.5,0.2,0/6/0,990.8,985.3,988.9,,16.0,13.0,4.0,,,341.0,NW,0.3,0,0,
-2013-03-20,6.6,1.0,4.2,0.7,0/6/0,988.2,966.2,974.2,,55.0,44.0,25.0,,,37.0,NE,4.6,0,0,
-2013-03-21,4.4,0.5,1.7,0.4,0/6/0,983.7,971.1,979.7,,45.0,36.0,16.0,,,335.0,NW,1.0,1,0,
-2013-03-22,5.6,0.8,3.4,1.0,0/6/0,982.0,965.7,970.6,,48.0,28.0,13.0,,,50.0,E,0.0,0,0,
-2013-03-23,1.2,-0.3,0.4,0.9,0/1/0,997.1,982.1,992.0,,27.0,24.0,13.0,,,253.0,W,0.0,0,0,
-2013-03-24,3.5,-2.2,0.0,0.7,0/6/0,998.3,996.1,997.4,,13.0,8.0,3.0,,,353.0,NE,0.0,0,0,
-2013-03-25,4.1,0.0,2.0,0.6,0/1/0,996.1,979.4,986.5,,35.0,25.0,7.0,,,120.0,SE,0.3,0,0,
-2013-03-26,4.3,-0.5,1.8,0.6,0/6/0,983.9,979.5,981.2,,18.0,12.0,3.0,,,126.0,SE,1.5,0,0,
-2013-03-27,1.6,-0.5,0.5,-0.0,0/6/0,992.0,984.0,988.6,,13.0,10.0,5.0,,,324.0,NW,0.0,0,0,
-2013-03-28,4.0,-0.7,1.7,0.5,0/6/0,991.5,982.9,986.0,,25.0,22.0,6.0,,,50.0,E,0.8,0,0,
-2013-03-29,1.7,-0.3,0.4,0.2,0/6/0,992.3,984.4,987.5,,19.0,15.0,2.0,,,16.0,NE,3.3,4,4,
-2013-03-30,1.2,-1.0,-0.2,0.0,0/6/0,999.9,992.1,997.1,,21.0,17.0,5.0,,,29.0,NE,0.0,0,0,
-2013-03-31,5.4,-1.2,1.0,0.4,0/6/0,999.6,982.2,993.9,,56.0,45.0,7.0,,,32.0,SE,2.8,0,0,
-2013-04-01,5.9,0.4,2.8,0.6,0/6/0,987.9,970.4,981.0,,48.0,31.0,12.0,,,29.0,NE,5.1,5,7,
-2013-04-02,4.2,0.4,1.4,0.6,0/6/0,990.3,969.2,981.6,,31.0,25.0,15.0,,,259.0,W,5.6,1,0,
-2013-04-03,4.1,-0.2,2.0,0.0,6/6/0,983.9,962.2,968.0,,51.0,40.0,19.0,,,37.0,NE,21.8,0,0,
-2013-04-04,0.5,-1.5,-0.1,0.0,0/6/0,977.3,970.6,975.8,,38.0,28.0,13.0,,,306.0,W,0.0,1,5,
-2013-04-05,2.2,-0.8,0.7,0.5,0/6/0,976.9,960.3,968.0,,59.0,44.0,20.0,,,27.0,NE,0.0,0,6,
-2013-04-06,4.7,0.6,2.0,0.6,0/6/0,960.4,952.8,956.2,,46.0,35.0,15.0,,,37.0,NE,0.5,0,6,
-2013-04-07,1.6,-1.0,-0.2,0.1,0/6/0,972.8,957.2,965.0,,31.0,25.0,11.0,,,18.0,N,0.0,0,6,
-2013-04-08,3.6,-1.0,1.0,-0.6,0/6/0,974.1,970.6,972.4,,44.0,31.0,16.0,,,357.0,N,4.6,2,8,
-2013-04-09,3.8,2.6,3.0,-0.3,0/6/0,979.3,969.9,973.2,,50.0,37.0,25.0,,,5.0,N,4.1,0,0,
-2013-04-10,7.5,0.6,2.9,0.3,0/6/0,983.7,971.3,978.8,,48.0,37.0,12.0,,,24.0,N,4.3,0,0,
-2013-04-11,2.7,-1.3,0.2,-0.4,0/6/0,1003.6,974.3,996.4,,44.0,34.0,18.0,,,28.0,W,0.5,0,1,
-2013-04-12,4.7,1.1,3.7,0.3,0/6/0,1003.0,997.4,1000.5,,46.0,36.0,19.0,,,26.0,N,0.0,0,0,
-2013-04-13,5.0,-1.6,1.0,0.2,0/6/0,997.7,995.7,996.6,,27.0,21.0,6.0,,,23.0,N,3.6,0,0,
-2013-04-14,4.7,0.3,2.6,0.7,0/6/0,995.7,979.6,986.3,,61.0,48.0,28.0,,,40.0,NE,21.1,0,0,
-2013-04-15,0.9,-1.3,-0.3,0.3,0/6/0,993.6,983.7,990.1,,45.0,35.0,19.0,,,20.0,W,2.3,1,3,
-2013-04-16,-0.4,-2.8,-1.3,-0.6,0/6/0,1000.7,992.4,997.9,,33.0,27.0,13.0,,,253.0,W,0.0,1,4,
-2013-04-17,-1.1,-2.9,-1.9,-0.2,0/6/0,1000.3,987.5,995.0,,16.0,14.0,6.0,,,24.0,NE,0.0,0,4,
-2013-04-18,2.2,-1.5,0.2,-0.1,0/6/0,987.4,974.1,977.8,,11.0,9.0,3.0,,,313.0,SE,17.5,0,4,
-2013-04-19,3.9,-0.4,1.3,-0.3,0/6/0,987.6,975.1,980.3,,33.0,25.0,10.0,,,355.0,N,1.3,1,5,
-2013-04-20,2.5,-0.7,1.2,-1.1,0/6/0,998.8,979.2,988.0,,38.0,27.0,17.0,,,21.0,NW,4.3,1,4,
-2013-04-21,2.7,-1.6,0.1,-0.7,0/6/0,998.6,983.3,989.0,,48.0,37.0,19.0,,,19.0,SW,4.8,1,3,
-2013-04-22,-1.5,-3.7,-2.4,-0.5,0/6/0,1000.1,984.6,993.7,,41.0,32.0,18.0,,,226.0,SW,0.0,1,4,
-2013-04-23,1.3,-3.1,-0.7,-0.1,0/6/0,997.1,984.9,989.7,,26.0,18.0,7.0,,,147.0,SE,8.4,5,9,
-2013-04-24,-0.1,-1.8,-1.1,-0.5,0/6/0,989.3,985.1,987.6,,12.0,10.0,3.0,,,123.0,NW,0.0,5,11,
-2013-04-25,0.0,-1.7,-0.9,-0.6,0/6/0,990.6,982.5,985.4,,8.0,7.0,2.0,,,122.0,SE,0.0,0,12,
-2013-04-26,3.2,-0.8,0.8,-0.1,0/6/0,990.8,977.9,984.7,,48.0,39.0,12.0,,,25.0,SE,2.8,3,16,
-2013-04-27,2.4,-1.9,0.5,-0.3,0/6/0,997.0,979.6,987.7,,29.0,23.0,11.0,,,262.0,W,1.8,1,17,
-2013-04-28,5.1,-2.0,2.5,0.3,0/6/0,997.2,983.4,991.5,,52.0,40.0,23.0,,,40.0,NE,2.3,0,14,
-2013-04-29,4.5,1.2,2.5,0.4,0/6/0,984.3,975.1,978.8,,58.0,44.0,23.0,,,42.0,NE,9.4,0,0,
-2013-04-30,1.7,-0.5,0.5,0.0,6/6/0,978.6,968.3,973.4,,28.0,22.0,8.0,,,17.0,N,0.5,1,1,
-2013-05-01,-0.1,-2.4,-1.6,,0/6/0,980.7,968.6,973.9,,15.0,13.0,8.0,,,266.0,W,1.3,5,7,
-2013-05-02,1.3,-4.9,-1.7,,0/6/0,983.5,971.6,978.8,,46.0,35.0,12.0,,,24.0,N,0.0,1,0,
-2013-05-03,-0.4,-3.3,-1.7,,0/6/0,995.6,971.7,983.7,,41.0,34.0,19.0,,,239.0,SW,0.5,0,0,
-2013-05-04,5.2,-4.2,-1.8,,0/6/0,996.6,982.9,992.6,,39.0,33.0,6.0,,,29.0,E,2.8,1,5,
-2013-05-05,4.6,1.4,3.0,,0/6/0,983.0,970.2,977.6,,43.0,36.0,12.0,,,30.0,E,0.3,3,0,
-2013-05-06,2.7,-3.4,-0.6,,0/6/0,972.8,970.1,971.3,,21.0,17.0,6.0,,,72.0,SE,5.1,14,3,
-2013-05-07,-2.6,-5.5,-3.7,,0/6/0,971.6,965.8,967.5,,18.0,15.0,7.0,,,234.0,SE,3.6,6,17,
-2013-05-08,-4.5,-7.7,-5.7,,0/6/0,973.5,966.8,971.3,,37.0,28.0,8.0,,,74.0,E,0.0,0,21,
-2013-05-09,0.2,-5.4,-2.8,,0/6/0,968.7,962.8,966.2,,45.0,34.0,15.0,,,57.0,E,0.0,0,22,
-2013-05-10,-1.4,-3.1,-2.1,,0/6/0,981.3,968.8,975.5,,24.0,17.0,5.0,,,79.0,E,0.0,1,20,
-2013-05-11,-1.2,-4.6,-3.1,,0/6/0,981.6,971.8,978.8,,39.0,29.0,6.0,,,76.0,NE,0.0,0,22,
-2013-05-12,0.8,-1.6,-0.3,,0/6/0,975.4,970.4,972.6,,34.0,25.0,12.0,,,76.0,E,0.0,2,18,
-2013-05-13,-0.8,-3.4,-2.0,,0/6/0,986.0,975.4,980.0,,23.0,20.0,11.0,,,230.0,SW,1.5,2,17,
-2013-05-14,-1.9,-5.1,-3.9,,0/6/0,1005.8,986.0,995.4,,27.0,22.0,8.0,,,119.0,NE,0.0,0,18,
-2013-05-15,-2.4,-4.7,-3.4,,0/6/0,1006.3,994.8,1001.9,,14.0,12.0,5.0,,,120.0,N,0.3,1,18,
-2013-05-16,-1.4,-3.3,-2.3,,0/6/0,995.0,992.0,993.3,,17.0,13.0,3.0,,,17.0,E,0.0,1,19,
-2013-05-17,-1.8,-3.5,-2.6,,0/6/0,994.2,987.6,991.7,,15.0,12.0,4.0,,,120.0,E,0.5,2,14,
-2013-05-18,2.0,-2.5,-0.1,,0/6/0,993.7,985.4,987.7,,25.0,21.0,8.0,,,18.0,SE,2.0,0,12,
-2013-05-19,2.9,0.1,2.0,,0/6/0,993.7,982.1,986.5,,53.0,41.0,23.0,,,37.0,NE,7.1,1,4,
-2013-05-20,3.3,1.5,2.4,,0/6/0,985.0,975.7,980.8,,58.0,42.0,29.0,,,17.0,N,11.7,1,2,
-2013-05-21,2.8,0.3,1.9,,0/6/0,982.8,978.6,981.4,,34.0,29.0,16.0,,,25.0,N,0.0,0,0,
-2013-05-22,1.9,-2.6,-0.6,,0/6/0,988.5,977.7,981.6,,24.0,19.0,7.0,,,17.0,NE,0.0,0,0,
-2013-05-23,-1.3,-3.2,-2.1,,0/6/0,997.1,988.1,991.2,,14.0,12.0,4.0,,,245.0,SW,0.0,0,0,
-2013-05-24,-2.0,-3.2,-2.5,,0/6/0,1006.6,997.1,1002.9,,15.0,12.0,5.0,,,230.0,SW,0.0,0,0,
-2013-05-25,-2.6,-4.1,-3.5,,0/6/0,1006.3,995.5,1001.1,,18.0,13.0,5.0,,,213.0,S,0.0,0,0,
-2013-05-26,-0.5,-4.2,-2.3,,0/6/0,1000.0,994.5,997.9,,33.0,26.0,9.0,,,120.0,E,0.0,0,0,
-2013-05-27,-1.5,-4.0,-3.0,,0/6/0,1000.5,998.5,999.6,,10.0,9.0,3.0,,,32.0,NE,0.0,0,0,
-2013-05-28,-1.4,-2.4,-1.9,,0/6/0,1002.4,999.5,1001.5,,23.0,19.0,8.0,,,242.0,SW,0.0,0,0,
-2013-05-29,-1.6,-2.8,-2.1,,0/4/0,1001.7,993.5,999.0,,20.0,17.0,10.0,,,246.0,W,0.3,1,1,
-2013-05-30,-2.3,-4.1,-3.0,,0/6/0,993.5,974.4,982.4,,28.0,23.0,6.0,,,22.0,SE,1.5,1,2,
-2013-05-31,-2.0,-8.7,-5.4,,0/6/0,978.7,972.4,974.1,,28.0,22.0,15.0,,,224.0,SW,0.0,6,9,
-2013-06-01,-5.5,-9.6,-8.8,,0/6/0,989.8,978.6,985.5,,43.0,34.0,13.0,,,20.0,SW,0.0,0,7,
-2013-06-02,-0.3,-5.7,-2.7,,346/1,988.6,983.0,987.2,,50.0,38.0,13.0,,,30.0,N,1.0,2,9,
-2013-06-03,2.4,-0.6,1.0,,0/6/0,987.2,979.2,982.9,,61.0,46.0,17.0,,,31.0,NE,2.8,0,4,
-2013-06-04,1.7,-1.6,-0.2,,0/6/0,993.7,987.1,991.1,,26.0,21.0,9.0,,,22.0,N,0.0,2,7,
-2013-06-05,1.1,-3.0,-1.2,,0/6/0,994.5,982.3,991.7,,25.0,17.0,7.0,,,99.0,N,0.0,1,8,
-2013-06-06,3.2,-0.6,1.3,,0/6/0,982.2,971.4,974.4,,42.0,34.0,21.0,,,29.0,NE,0.5,0,8,
-2013-06-07,1.3,-3.6,-0.6,,0/6/0,981.3,972.6,977.2,,42.0,33.0,13.0,,,18.0,N,2.5,3,12,
-2013-06-08,-1.0,-5.4,-3.3,,0/6/0,981.3,956.0,972.1,,57.0,45.0,12.0,,,41.0,E,0.3,3,20,
-2013-06-09,-0.3,-6.3,-3.2,,0/6/0,976.0,954.8,964.4,,54.0,44.0,19.0,,,39.0,NW,4.6,2,18,
-2013-06-10,-5.2,-8.3,-6.9,,0/6/0,983.8,976.0,980.1,,26.0,21.0,13.0,,,243.0,SW,0.0,1,18,
-2013-06-11,-2.3,-7.7,-4.9,,0/6/0,984.4,974.9,979.6,,32.0,22.0,9.0,,,129.0,SE,0.0,1,19,
-2013-06-12,-0.8,-3.3,-2.1,,0/6/0,977.9,970.1,973.4,,21.0,19.0,7.0,,,234.0,SW,5.6,7,25,
-2013-06-13,-2.4,-6.6,-4.2,,0/6/0,990.8,977.8,985.7,,22.0,18.0,10.0,,,235.0,SW,0.0,15,55,
-2013-06-14,0.2,-5.5,-1.6,,0/6/0,989.5,978.8,983.4,,53.0,40.0,16.0,,,30.0,N,0.0,0,36,
-2013-06-15,1.0,-2.5,-0.9,,0/6/0,979.9,969.4,972.7,,38.0,29.0,13.0,,,18.0,N,4.8,5,40,
-2013-06-16,-1.8,-6.0,-4.0,,0/6/0,974.7,967.8,971.8,,29.0,23.0,7.0,,,74.0,E,0.0,5,43,
-2013-06-17,-1.7,-5.3,-3.2,,0/6/0,981.4,967.3,972.5,,33.0,28.0,11.0,,,42.0,E,0.0,0,36,
-2013-06-18,-4.2,-6.4,-5.2,,0/6/0,988.3,981.3,985.8,,20.0,15.0,6.0,,,138.0,E,0.0,0,35,
-2013-06-19,-2.5,-6.8,-5.1,,0/6/0,985.3,971.6,975.6,,27.0,23.0,8.0,,,29.0,NE,0.0,0,35,
-2013-06-20,-4.7,-7.1,-5.9,,0/6/0,973.7,969.7,972.2,,14.0,10.0,3.0,,,81.0,E,0.0,0,30,
-2013-06-21,-4.5,-7.1,-5.6,,216/0,971.1,969.6,970.3,,21.0,17.0,8.0,,,230.0,SW,0.0,0,34,
-2013-06-22,-3.8,-7.6,-5.8,,0/6/0,971.4,956.9,965.7,,27.0,21.0,8.0,,,28.0,E,0.0,0,31,
-2013-06-23,-2.9,-5.1,-4.4,,0/6/0,964.1,948.1,957.2,,30.0,21.0,7.0,,,219.0,SW,0.0,0,28,
-2013-06-24,-3.2,-7.5,-5.1,,0/6/0,967.6,956.8,965.0,,24.0,20.0,9.0,,,235.0,SW,0.0,1,29,
-2013-06-25,-5.6,-8.2,-7.0,,0/6/0,976.6,966.1,969.3,,20.0,17.0,8.0,,,251.0,NE,0.0,0,28,
-2013-06-26,-3.7,-10.1,-8.0,,0/6/0,979.7,974.3,978.0,,31.0,19.0,4.0,,,79.0,E,0.3,0,27,
-2013-06-27,0.5,-4.7,-0.7,,0/6/0,987.6,971.7,979.8,,58.0,44.0,25.0,,,31.0,N,0.3,0,27,
-2013-06-28,-0.1,-3.8,-1.9,,0/6/0,993.6,987.2,989.2,,43.0,32.0,17.0,,,26.0,SW,0.3,1,28,
-2013-06-29,0.0,-5.8,-2.1,,0/6/0,999.8,993.6,996.9,,34.0,27.0,12.0,,,25.0,N,0.0,0,27,
-2013-06-30,-1.1,-6.4,-3.4,,0/6/0,1004.4,994.8,1000.3,,53.0,41.0,15.0,,,27.0,NE,0.5,1,28,
-2013-07-01,1.2,-5.1,-0.7,-1.5,0/6/0,1004.0,999.5,1001.7,,46.0,36.0,11.0,,,32.0,NE,0.0,0,27,
-2013-07-02,0.4,-3.0,-2.0,-1.5,0/6/0,1000.1,990.6,996.2,,27.0,17.0,3.0,,,96.0,NE,0.0,0,26,
-2013-07-03,0.1,-2.7,-1.9,-1.6,0/6/0,991.0,989.0,989.8,,31.0,20.0,5.0,,,96.0,E,0.0,0,26,
-2013-07-04,-2.0,-3.4,-2.6,-1.7,0/6/0,995.4,990.2,992.6,,16.0,13.0,2.0,,,21.0,NE,1.3,0,25,
-2013-07-05,-2.2,-4.4,-2.8,-1.6,0/6/0,998.3,995.4,997.1,,13.0,9.0,3.0,,,16.0,W,0.0,3,28,
-2013-07-06,-2.1,-5.0,-3.1,-1.8,216/0,995.9,981.7,990.2,,12.0,9.0,3.0,,,13.0,SE,1.3,3,32,
-2013-07-07,-2.5,-5.2,-3.8,-1.7,0/6/0,983.2,976.8,981.3,,17.0,14.0,4.0,,,16.0,N,0.0,0,32,
-2013-07-08,-3.1,-6.6,-4.5,-1.8,0/6/0,976.8,962.7,970.0,,32.0,25.0,12.0,,,28.0,N,0.0,2,35,
-2013-07-09,-3.2,-9.5,-5.7,-1.7,0/6/0,988.0,962.8,976.0,,25.0,20.0,9.0,,,157.0,SW,0.0,1,36,
-2013-07-10,0.1,-10.1,-2.9,-1.8,0/6/0,987.9,971.7,977.3,,57.0,44.0,24.0,,,35.0,NE,7.4,0,28,
-2013-07-11,0.3,-3.0,-0.7,-1.7,0/6/0,978.6,969.1,971.6,,46.0,34.0,22.0,,,20.0,N,1.5,0,26,
-2013-07-12,-3.0,-8.1,-6.4,-1.8,0/6/0,989.0,978.6,986.1,,15.0,13.0,4.0,,,307.0,W,0.3,1,38,
-2013-07-13,0.7,-7.4,-4.2,-2.0,216/0,987.3,976.0,980.7,,24.0,20.0,4.0,,,44.0,N,0.0,0,38,
-2013-07-14,-1.9,-4.9,-3.7,-1.8,21600,981.5,977.2,979.5,,21.0,17.0,4.0,,,28.0,N,0.0,0,38,
-2013-07-15,0.6,-3.9,-1.3,-1.7,0/6/0,979.4,963.6,969.6,,55.0,42.0,24.0,,,28.0,NE,0.0,0,37,
-2013-07-16,-3.1,-11.4,-8.3,-1.9,0/6/0,991.5,968.1,979.0,,25.0,22.0,14.0,,,235.0,SW,0.0,0,36,
-2013-07-17,-2.2,-13.5,-7.2,-1.9,0/6/0,992.7,976.9,984.7,,65.0,53.0,14.0,,,39.0,N,0.3,0,37,
-2013-07-18,-3.0,-9.3,-6.7,-2.0,21601,989.2,979.7,985.3,,28.0,23.0,11.0,,,223.0,SW,1.0,4,40,
-2013-07-19,-2.9,-8.0,-4.6,-1.9,0/6/0,1012.4,975.8,990.9,,25.0,21.0,8.0,,,159.0,E,0.0,0,37,
-2013-07-20,-1.8,-8.0,-5.9,-2.0,21601,1022.9,1011.9,1019.5,,42.0,32.0,6.0,,,28.0,N,0.0,0,36,
-2013-07-21,0.3,-5.1,-1.5,-1.8,0/6/0,1012.4,988.6,1000.2,,55.0,43.0,9.0,,,27.0,SE,10.7,0,34,
-2013-07-22,-1.1,-2.1,-1.7,-1.7,0/6/0,988.7,976.9,980.8,,34.0,27.0,3.0,,,243.0,NW,2.3,8,45,
-2013-07-23,0.8,-4.6,-2.0,-1.8,0/6/0,990.0,975.4,984.7,,38.0,25.0,14.0,,,240.0,N,0.8,6,46,
-2013-07-24,0.9,-1.9,-0.3,-1.8,0/6/0,975.4,945.9,963.1,,32.0,26.0,11.0,,,350.0,N,1.0,10,54,
-2013-07-25,0.9,-4.0,-1.9,-1.8,0/6/0,954.2,942.4,946.0,,32.0,22.0,10.0,,,76.0,E,0.3,0,51,
-2013-07-26,-3.9,-11.7,-8.4,-1.8,0/6/0,980.7,954.3,969.2,,32.0,28.0,16.0,,,238.0,W,1.3,3,52,
-2013-07-27,-11.6,-15.5,-14.4,-1.9,316/0,983.7,980.6,982.6,,30.0,24.0,9.0,,,242.0,W,0.0,0,52,
-2013-07-28,-7.3,-15.0,-11.0,-2.0,43606,981.1,974.1,977.1,,10.0,8.0,2.0,,,105.0,E,0.3,1,52,
-2013-07-29,-7.1,-17.6,-12.4,-2.0,43606,994.5,977.5,989.6,,19.0,16.0,6.0,,,201.0,W,0.0,5,53,
-2013-07-30,-10.6,-18.5,-14.3,-2.0,43606,1001.7,989.3,995.5,,17.0,14.0,5.0,,,211.0,W,0.0,1,50,
-2013-07-31,-5.9,-17.8,-11.9,-2.0,43606,1000.3,981.2,988.6,,48.0,38.0,12.0,,,37.0,SW,0.0,1,46,
-2013-08-01,-9.7,-18.7,-15.4,-2.0,84605,1009.5,990.3,1004.7,,24.0,18.0,9.0,,,164.0,W,0.0,1,46,
-2013-08-02,-14.5,-17.5,-15.6,-2.0,94605,1008.0,1005.5,1006.4,,20.0,16.0,6.0,,,213.0,SW,0.0,0,43,
-2013-08-03,-14.9,-15.9,-15.4,-2.0,94605,1005.6,992.5,999.3,,11.0,9.0,4.0,,,195.0,S,0.0,0,41,
-2013-08-04,-3.8,-15.7,-11.8,-2.0,94605,992.4,977.5,986.2,,30.0,21.0,6.0,,,345.0,N,0.0,0,41,
-2013-08-05,-0.6,-14.4,-8.4,-2.0,94605,986.3,969.6,981.4,,56.0,38.0,11.0,,,17.0,N,0.0,1,42,
-2013-08-06,-0.4,-14.1,-7.5,-2.0,94605,987.7,967.4,981.6,,58.0,45.0,20.0,,,249.0,NE,0.0,0,42,
-2013-08-07,0.1,-7.0,-1.7,-2.0,94605,982.5,969.8,976.0,,61.0,32.0,19.0,,,18.0,NE,6.4,0,44,
-2013-08-08,-3.0,-9.3,-5.3,-2.0,64601,984.8,963.8,980.2,,58.0,38.0,14.0,,,85.0,NE,0.0,0,46,
-2013-08-09,-0.8,-13.7,-6.9,-1.9,64601,980.8,964.1,973.1,,56.0,43.0,19.0,,,226.0,SE,0.5,0,45,
-2013-08-10,0.9,-2.4,-0.9,-1.8,21601,967.8,960.6,965.0,,43.0,24.0,15.0,,,173.0,SE,2.0,7,48,
-2013-08-11,-0.8,-6.4,-3.5,-1.8,21601,967.2,960.8,963.6,,39.0,32.0,13.0,,,242.0,N,3.6,0,48,
-2013-08-12,-5.5,-8.7,-7.3,-1.9,21601,975.5,967.2,971.2,,29.0,19.0,8.0,,,263.0,NE,0.0,6,52,
-2013-08-13,-7.2,-14.8,-11.4,-1.9,21601,991.2,975.6,984.5,,25.0,32.0,18.0,,,207.0,W,0.0,1,50,
-2013-08-14,-6.7,-16.9,-12.2,-2.0,41603,991.1,968.2,982.8,,61.0,39.0,19.0,,,105.0,SE,0.0,0,48,
-2013-08-15,-3.1,-7.0,-5.1,-1.9,21601,970.5,964.6,966.4,,53.0,46.0,30.0,,,144.0,SE,0.3,0,43,
-2013-08-16,-0.6,-4.8,-2.8,-1.7,21601,984.2,970.3,979.2,,46.0,32.0,15.0,,,132.0,SE,0.0,1,39,
-2013-08-17,-1.9,-5.9,-4.4,-1.8,21601,983.3,976.4,978.5,,46.0,35.0,20.0,,,72.0,E,0.0,0,38,
-2013-08-18,-1.2,-6.3,-4.2,-1.8,21601,992.7,978.4,984.7,,38.0,28.0,14.0,,,26.0,E,0.0,0,38,
-2013-08-19,-3.4,-6.4,-5.0,-1.7,43603,993.5,984.2,989.6,,33.0,27.0,6.0,,,120.0,N,0.0,0,38,
-2013-08-20,-4.6,-7.5,-6.3,-1.6,61600,1000.0,982.9,989.1,,39.0,28.0,12.0,,,123.0,E,0.0,0,37,
-2013-08-21,-4.2,-6.4,-5.4,-1.8,61600,1024.8,1000.0,1013.4,,10.0,7.0,4.0,,,108.0,NE,0.0,0,37,
-2013-08-22,-4.6,-8.2,-6.6,-1.9,61600,1030.5,1024.8,1028.9,,15.0,12.0,5.0,,,266.0,W,0.0,1,38,
-2013-08-23,-4.7,-8.5,-7.2,-1.9,61600,1028.6,1025.0,1026.3,,13.0,11.0,3.0,,,232.0,SW,0.0,0,38,
-2013-08-24,-3.5,-7.5,-5.7,-1.8,61600,1026.0,1019.3,1023.0,,11.0,9.0,1.0,,,84.0,N,0.0,0,38,
-2013-08-25,0.1,-6.6,-3.4,-1.8,61600,1019.4,995.3,1009.9,,45.0,36.0,6.0,,,35.0,E,0.0,0,37,
-2013-08-26,1.3,-0.8,0.4,-1.7,61600,995.1,974.0,983.9,,35.0,23.0,3.0,,,17.0,N,0.5,1,38,
-2013-08-27,0.2,-5.8,-2.5,-1.7,24602,979.9,974.4,977.9,,35.0,25.0,7.0,,,22.0,N,1.3,2,40,
-2013-08-28,-2.1,-6.2,-4.5,-1.8,24602,984.7,978.6,981.2,,14.0,10.0,1.0,,,339.0,N,0.0,0,40,
-2013-08-29,-4.9,-6.6,-5.8,-1.9,24602,988.5,985.0,986.6,,12.0,6.0,2.0,,,25.0,N,0.0,0,40,
-2013-08-30,-3.7,-6.0,-5.2,-1.9,24602,989.5,986.1,988.2,,17.0,12.0,2.0,,,121.0,SE,0.0,1,40,
-2013-08-31,-5.3,-8.0,-7.0,-2.0,24602,998.3,986.6,993.3,,24.0,16.0,7.0,,,22.0,N,0.0,1,41,
-2013-09-01,-5.8,-8.8,-7.3,,246/0,1005.3,998.2,1000.4,,10.0,8.0,2.0,,,206.0,SW,0.0,0,40,
-2013-09-02,-4.1,-9.7,-7.8,,23602,1011.7,1005.3,1009.4,,5.0,4.0,0.0,,,31.0,NE,0.0,0,40,
-2013-09-03,-0.3,-6.2,-2.5,,13606,1010.3,993.9,1001.7,,33.0,22.0,10.0,,,325.0,N,1.5,3,44,
-2013-09-04,-0.8,-9.7,-6.0,,83606,999.8,983.2,995.8,,51.0,33.0,11.0,,,30.0,N,0.0,3,48,
-2013-09-05,-0.6,-13.3,-8.8,,83606,1003.2,981.5,997.1,,62.0,43.0,17.0,,,313.0,N,0.0,0,48,
-2013-09-06,0.4,-3.3,-0.7,,83606,998.0,980.8,990.9,,52.0,35.0,22.0,,,353.0,N,0.3,0,46,
-2013-09-07,0.0,-6.7,-4.5,,83606,989.8,979.9,987.0,,46.0,34.0,9.0,,,352.0,W,0.5,1,47,
-2013-09-08,0.4,-20.7,-4.2,,83606,984.8,966.5,973.8,,48.0,32.0,18.0,,,25.0,N,0.8,0,48,
-2013-09-09,-20.8,-23.9,-22.9,,43602,980.9,974.5,976.8,,24.0,16.0,10.0,,,215.0,SW,0.0,1,48,
-2013-09-10,-22.0,-24.7,-23.6,,43602,985.7,980.9,984.3,,24.0,14.0,7.0,,,266.0,W,0.0,0,48,
-2013-09-11,-19.9,-23.2,-21.6,,53602,984.3,976.0,979.4,,20.0,12.0,4.0,,,239.0,W,0.0,0,48,
-2013-09-12,-16.3,-23.1,-20.5,,53602,996.6,984.2,991.4,,19.0,12.0,3.0,,,225.0,SW,0.0,0,47,
-2013-09-13,-12.3,-19.1,-17.2,,53602,998.1,992.8,996.6,,11.0,7.0,2.0,,,176.0,S,0.0,0,47,
-2013-09-14,-8.6,-18.6,-14.5,,53602,998.1,990.0,993.5,,7.0,6.0,1.0,,,159.0,SE,0.0,0,47,
-2013-09-15,-1.0,-13.2,-7.0,,53602,1002.7,998.1,1001.0,,9.0,7.0,1.0,,,149.0,SE,0.0,0,47,
-2013-09-16,1.5,-4.6,0.0,,53602,1001.1,988.5,996.5,,61.0,45.0,19.0,,,22.0,N,2.0,0,46,
-2013-09-17,1.3,-1.2,0.3,,53602,997.5,988.2,993.7,,61.0,39.0,24.0,,,17.0,N,0.0,0,46,
-2013-09-18,1.8,0.4,0.9,-1.4,63602,996.0,985.7,990.3,,83.0,49.0,37.0,,,34.0,NE,3.1,0,46,
-2013-09-19,1.5,-10.2,-3.1,-1.7,23602,1001.1,986.5,993.5,,49.0,32.0,,,,18.0,,0.3,2,50,
-2013-09-20,-2.2,-10.9,-6.3,-1.5,43693,1001.7,990.6,997.9,,19.0,15.0,,,,336.0,,0.0,0,50,
-2013-09-21,-0.8,-6.3,-3.2,,23691,990.5,965.1,974.2,,51.0,43.0,18.0,,,54.0,W,0.0,0,49,
-2013-09-22,-1.0,-6.4,-3.7,-1.7,32692,977.6,974.0,976.0,,19.0,13.0,7.0,,,328.0,NW,2.3,3,50,
-2013-09-23,-1.6,-7.8,-4.4,-1.6,53692,996.1,977.6,988.9,,27.0,21.0,7.0,,,267.0,W,0.5,7,61,
-2013-09-24,1.4,-7.2,-2.6,,43691,995.6,977.3,987.6,,58.0,46.0,18.0,,,25.0,SE,0.8,2,59,
-2013-09-25,-1.1,-7.9,-5.3,,54693,995.4,990.7,992.6,,21.0,15.0,4.0,,,276.0,SW,0.0,0,49,
-2013-09-26,-4.6,-10.4,-7.3,,5///6,1013.3,995.4,1004.0,,11.0,10.0,3.0,,,229.0,SW,0.8,1,49,
-2013-09-27,-6.1,-14.1,-10.7,,1//96,1024.5,1013.2,1019.4,,10.0,8.0,2.0,,,132.0,SE,0.0,1,43,
-2013-09-28,1.1,-8.5,-3.5,,44694,1025.6,1024.2,1024.8,,13.0,10.0,3.0,,,133.0,NW,1.0,3,55,
-2013-09-29,4.9,-2.3,0.2,,34692,1026.9,1025.0,1026.0,,9.0,8.0,3.0,,,135.0,SE,1.5,0,56,
-2013-09-30,3.2,-2.9,0.3,,14692,1025.0,1013.6,1019.9,,26.0,22.0,5.0,,,17.0,N,0.0,0,51,
-2013-10-01,4.8,-3.2,0.6,-1.2,43691,1013.5,1005.7,1008.3,,44.0,35.0,7.0,,,39.0,SE,0.0,0,49.0,
-2013-10-02,2.3,-3.8,-1.0,-1.5,53692,1006.6,1004.0,1005.0,,9.0,7.0,3.0,,,140.0,NW,0.0,1,50.0,
-2013-10-03,5.7,-6.6,-2.6,-1.4,54692,1007.4,1005.6,1006.8,,7.0,6.0,2.0,,,139.0,SE,0.0,0,50.0,
-2013-10-04,3.0,-3.2,-1.4,-1.2,54692,1005.7,1000.1,1003.1,,15.0,13.0,4.0,,,137.0,SE,2.0,3,52.0,
-2013-10-05,4.8,-1.8,2.4,-1.5,34691,999.9,987.9,993.9,,37.0,28.0,15.0,,,24.0,NE,0.0,0,48.0,
-2013-10-06,4.5,-0.5,1.6,-1.4,34691,988.0,979.1,983.6,,40.0,32.0,8.0,,,29.0,NE,1.3,0,44.0,
-2013-10-07,2.3,-1.0,0.1,-1.3,34691,990.9,979.6,985.7,,26.0,19.0,4.0,,,26.0,SE,3.8,6,52.0,
-2013-10-08,4.5,0.3,2.0,-1.1,24690,990.5,982.1,986.2,,39.0,31.0,14.0,,,27.0,NE,0.8,0,45.0,
-2013-10-09,2.8,-0.1,1.6,-1.1,24690,982.5,971.6,978.6,,47.0,37.0,21.0,,,45.0,NE,0.0,0,40.0,
-2013-10-10,2.0,-2.0,0.2,-1.5,2469/,982.5,974.5,978.6,,27.0,21.0,7.0,,,62.0,NW,0.8,1,39.0,
-2013-10-11,1.0,-1.4,-0.3,-1.5,24690,981.5,968.2,975.6,,50.0,41.0,21.0,,,38.0,NE,1.8,3,43.0,
-2013-10-12,1.2,-2.7,-0.4,-1.6,44693,986.2,974.5,980.9,,32.0,25.0,15.0,,,24.0,NE,0.3,1,43.0,
-2013-10-13,3.0,-2.1,1.0,-1.7,24690,984.9,954.9,968.4,,47.0,36.0,20.0,,,38.0,NE,3.6,0,43.0,
-2013-10-14,2.5,-7.2,0.1,-1.3,24690,964.4,948.2,952.2,,44.0,33.0,12.0,,,22.0,NE,4.3,0,35.0,
-2013-10-15,-1.0,-8.3,-5.5,-1.4,34692,969.6,963.2,966.7,,31.0,19.0,7.0,,,208.0,SE,1.0,7,44.0,
-2013-10-16,-6.4,-13.3,-10.9,-1.7,34692,982.9,965.8,976.4,,35.0,23.0,11.0,,,215.0,SW,0.0,0,43.0,
-2013-10-17,-8.7,-10.5,-9.5,-1.7,14693,986.1,982.9,985.0,,19.0,16.0,8.0,,,230.0,SW,0.0,0,43.0,
-2013-10-18,-1.3,-11.7,-6.8,-1.6,54693,984.0,963.9,971.3,,17.0,13.0,4.0,,,184.0,SE,0.0,0,41.0,
-2013-10-19,0.4,-6.3,-4.1,-1.4,1469/,971.6,962.4,965.4,,21.0,18.0,7.0,,,9.0,N,0.5,1,43.0,
-2013-10-20,-4.7,-10.6,-6.7,-1.4,1469/,979.8,971.6,977.2,,12.0,12.0,5.0,,,228.0,SW,0.0,0,43.0,
-2013-10-21,-8.2,-11.2,-10.0,-1.5,14693,980.8,979.5,980.2,,15.0,14.0,9.0,,,229.0,SW,0.0,0,43.0,
-2013-10-22,-6.6,-10.0,-8.7,-1.5,14691,987.7,980.3,984.8,,19.0,17.0,8.0,,,215.0,SW,0.0,0,43.0,
-2013-10-23,3.1,-9.1,-4.0,-1.5,1469/,985.8,972.8,976.8,,19.0,14.0,5.0,,,184.0,S,1.8,5,47.0,
-2013-10-24,-0.5,-5.1,-1.9,-1.4,1469/,976.9,971.7,974.9,,20.0,16.0,8.0,,,289.0,W,0.5,0,48.0,
-2013-10-25,-0.2,-7.5,-3.8,-1.4,14692,975.8,970.0,973.6,,16.0,12.0,3.0,,,129.0,W,0.0,0,47.0,
-2013-10-26,2.0,-4.2,-0.7,-1.3,14692,970.0,960.8,963.9,,36.0,30.0,15.0,,,15.0,SE,1.8,4,48.0,
-2013-10-27,-4.3,-11.0,-8.7,-1.3,54692,979.5,966.0,973.2,,26.0,21.0,11.0,,,232.0,SW,0.5,1,46.0,
-2013-10-28,-3.4,-12.6,-9.0,-1.3,14692,992.8,979.6,988.7,,23.0,20.0,8.0,,,235.0,W,0.0,0,43.0,
-2013-10-29,2.0,-4.1,0.8,-1.3,34691,991.9,977.6,983.5,,75.0,60.0,24.0,,,34.0,N,1.5,1,41.0,
-2013-10-30,2.4,-0.7,1.1,-1.4,34691,989.7,978.3,983.5,,52.0,39.0,17.0,,,27.0,NE,0.8,0,38.0,
-2013-10-31,0.9,-4.3,-2.1,-1.3,54692,988.1,981.2,984.8,,45.0,32.0,8.0,,,24.0,W,0.0,0,37.0,
-2013-11-01,1.9,0.3,1.2,-1.3,34791,983.9,981.7,983.2,,42.0,31.0,22.0,,,23.0,N,0.8,1,36.0,
-2013-11-02,2.8,0.1,1.3,-1.3,24690,982.7,952.1,966.2,,66.0,44.0,30.0,,,40.0,N,13.5,3,34.0,
-2013-11-03,1.2,-8.8,-5.7,-1.5,24690,974.7,951.6,966.1,,47.0,38.0,16.0,,,240.0,W,1.5,2,31.0,
-2013-11-04,3.0,-8.9,-4.6,-1.3,54/92,971.4,955.8,959.8,,30.0,23.0,8.0,,,245.0,SE,3.8,9,40.0,
-2013-11-05,-2.4,-9.9,-7.3,-1.1,14695,978.4,969.0,975.1,,34.0,27.0,10.0,,,17.0,W,0.3,0,35.0,
-2013-11-06,-3.6,-9.6,-6.8,-1.4,14699,977.5,968.9,972.4,,25.0,19.0,12.0,,,250.0,W,0.5,2,36.0,
-2013-11-07,-5.1,-11.6,-8.7,-1.3,14699,981.7,978.2,979.7,,22.0,17.0,6.0,,,222.0,SW,0.0,0,38.0,
-2013-11-08,-4.7,-14.8,-10.6,-1.3,14699,987.4,981.7,985.5,,14.0,12.0,5.0,,,253.0,NW,0.0,0,37.0,
-2013-11-09,-4.9,-11.2,-9.3,-1.3,14699,987.1,980.2,983.6,,16.0,12.0,6.0,,,245.0,W,0.0,0,37.0,
-2013-11-10,3.2,-16.7,-6.5,-1.3,14699,980.1,969.9,974.6,,9.0,7.0,2.0,,,131.0,SE,0.0,0,36.0,
-2013-11-11,5.8,-3.5,-0.7,-1.4,14699,974.3,969.4,971.4,,12.0,10.0,3.0,,,128.0,SE,1.5,2,36.0,
-2013-11-12,8.7,-2.8,1.2,-1.4,14699,978.6,974.3,977.2,,10.0,10.0,2.0,,,157.0,SE,2.5,3,37.0,
-2013-11-13,1.8,-2.0,-0.3,-1.3,14694,976.8,969.1,971.7,,34.0,26.0,8.0,,,36.0,NW,0.8,0,32.0,
-2013-11-14,-0.1,-7.3,-2.5,-1.4,54694,976.8,970.9,973.2,,14.0,12.0,5.0,,,312.0,NW,0.8,3,33.0,
-2013-11-15,4.2,-4.4,-1.0,-1.4,54695,979.4,976.8,978.0,,10.0,8.0,3.0,,,2.0,N,0.3,1,34.0,
-2013-11-16,4.2,-6.4,-2.2,-1.5,54695,987.9,979.1,983.4,,12.0,10.0,2.0,,,23.0,S,0.8,0,31.0,
-2013-11-17,-0.8,-8.0,-3.2,-1.5,54694,988.2,979.4,985.5,,59.0,46.0,19.0,,,39.0,NE,2.3,0,30.0,
-2013-11-18,3.0,-1.4,0.5,-1.5,24690,979.7,966.6,973.5,,57.0,47.0,29.0,,,31.0,NE,9.1,2,30.0,
-2013-11-19,1.4,-2.4,-0.5,-1.6,24690,976.8,966.1,971.5,,38.0,31.0,13.0,,,16.0,N,0.8,3,33.0,
-2013-11-20,3.3,-3.3,-1.2,-1.6,34692,994.1,976.8,984.7,,14.0,12.0,3.0,,,41.0,W,0.0,0,29.0,
-2013-11-21,1.9,-5.6,-1.5,-1.2,34691,996.1,983.9,990.6,,60.0,49.0,20.0,,,38.0,NE,0.0,0,24.0,
-2013-11-22,5.0,-1.9,0.8,-1.1,24690,992.0,985.0,989.8,,38.0,32.0,10.0,,,41.0,SE,0.0,0,23.0,
-2013-11-23,6.5,2.9,4.3,-0.7,24690,986.6,982.3,984.3,,44.0,35.0,24.0,,,16.0,NE,0.5,0,5.0,
-2013-11-24,3.4,-1.9,0.6,-0.9,24690,990.5,985.1,987.9,,35.0,27.0,17.0,,,22.0,NE,2.3,0,0.0,
-2013-11-25,0.6,-1.7,-0.8,-0.9,54693,988.4,985.3,987.0,,35.0,29.0,11.0,,,24.0,W,0.0,0,0.0,
-2013-11-26,3.8,-3.3,-0.6,-0.8,14692,989.8,972.2,985.2,,18.0,14.0,5.0,,,269.0,NW,0.0,0,0.0,
-2013-11-27,4.7,-2.1,1.0,-1.0,44691,972.3,965.5,967.0,,24.0,17.0,8.0,,,119.0,SE,0.3,1,0.0,
-2013-11-28,2.6,-4.0,-1.1,-1.0,34693,982.0,967.1,973.5,,13.0,9.0,4.0,,,101.0,NW,0.0,0,0.0,
-2013-11-29,1.4,-4.0,-1.7,-0.7,54692,986.9,981.2,985.1,,12.0,8.0,4.0,,,319.0,NW,0.0,0,0.0,
-2013-11-30,2.0,-2.4,-0.6,-0.7,54693,981.2,974.9,976.5,,22.0,12.0,6.0,,,313.0,NW,6.1,0,0.0,
-2013-12-01,-1.0,-4.6,-2.8,-0.5,54792,984.7,975.1,980.3,,20.0,14.0,8.0,,,258.0,W,0.3,1,0.0,
-2013-12-02,0.4,-4.4,-2.6,-0.6,54792,984.8,979.5,983.6,,12.0,9.0,5.0,,,306.0,NW,1.8,4,5.0,
-2013-12-03,0.2,-8.9,-2.9,-0.1,54692,983.9,977.0,979.4,,19.0,15.0,6.0,,,120.0,SE,0.0,0,0.0,
-2013-12-04,0.8,-8.5,-2.6,-0.9,54692,992.8,983.9,989.2,,10.0,9.0,3.0,,,231.0,NW,0.0,0,0.0,
-2013-12-05,2.1,-3.1,-0.8,-0.4,54691,992.7,984.4,988.8,,9.0,7.0,3.0,,,275.0,W,0.0,0,0.0,
-2013-12-06,3.0,-5.6,-0.6,-0.4,54692,989.4,984.5,986.8,,7.0,7.0,3.0,,,312.0,SW,0.0,0,0.0,
-2013-12-07,2.2,-4.1,-0.9,0.1,54692,992.2,988.8,990.1,,14.0,11.0,3.0,,,223.0,W,0.0,0,0.0,
-2013-12-08,4.8,-1.7,-0.1,0.0,54692,997.1,992.2,995.3,,14.0,12.0,5.0,,,236.0,SW,0.0,0,0.0,
-2013-12-09,1.5,-2.7,-1.4,-0.3,54692,998.6,994.2,997.0,,13.0,10.0,4.0,,,249.0,W,0.0,0,0.0,
-2013-12-10,0.3,-2.3,-1.5,-0.6,54692,994.2,983.5,987.2,,12.0,9.0,4.0,,,211.0,S,0.0,0,0.0,
-2013-12-11,-0.1,-2.6,-1.8,-0.7,54642,983.8,974.3,981.3,,12.0,10.0,5.0,,,313.0,SW,0.0,0,0.0,
-2013-12-12,4.4,-2.1,0.9,-1.0,44691,974.3,965.5,968.3,,25.0,16.0,6.0,,,133.0,SE,2.5,8,4.0,
-2013-12-13,4.0,-0.5,1.4,-0.9,34691,971.0,965.5,968.2,,25.0,19.0,5.0,,,92.0,W,0.0,0,0.0,
-2013-12-14,1.6,-1.1,-0.3,-0.8,44693,977.7,971.0,974.5,,13.0,11.0,5.0,,,305.0,W,0.0,0,0.0,
-2013-12-15,2.9,-2.1,-0.8,-0.4,54692,990.3,977.8,983.4,,13.0,9.0,4.0,,,288.0,W,1.5,2,1.0,
-2013-12-16,1.2,-2.8,-1.5,-0.7,54692,993.7,990.3,992.6,,11.0,8.0,3.0,,,296.0,W,0.0,0,0.0,
-2013-12-17,-0.2,-3.0,-1.9,-1.0,54692,994.2,992.0,992.7,,11.0,9.0,4.0,,,219.0,SW,0.0,0,0.0,
-2013-12-18,2.6,-2.6,-1.2,-0.8,44692,996.2,994.1,995.3,,9.0,7.0,3.0,,,237.0,SW,0.0,0,0.0,
-2013-12-19,1.0,-1.7,-0.7,-0.7,44692,998.0,995.2,996.1,,14.0,12.0,4.0,,,236.0,SW,0.0,0,0.0,
-2013-12-20,3.1,-1.9,-0.1,-0.8,34791,998.9,994.8,997.8,,14.0,11.0,5.0,,,241.0,SW,0.0,0,0.0,
-2013-12-21,2.7,-3.3,-0.3,-0.4,53792,994.8,991.4,992.4,,11.0,9.0,3.0,,,232.0,SW,0.0,0,0.0,
-2013-12-22,-0.1,-1.8,-0.9,-1.1,24891,993.0,991.4,992.1,,21.0,18.0,10.0,,,238.0,SW,0.0,0,0.0,
-2013-12-23,1.6,-2.0,-0.9,-1.2,24891,992.0,981.6,988.1,,21.0,18.0,7.0,,,234.0,N,1.5,4,0.0,
-2013-12-24,2.7,-1.7,0.1,-0.6,24791,981.6,973.9,977.6,,30.0,23.0,7.0,,,74.0,E,0.3,1,0.0,
-2013-12-25,4.0,0.1,1.9,0.2,25690,974.1,971.7,972.5,,33.0,21.0,12.0,,,115.0,E,0.0,0,0.0,
-2013-12-26,4.3,-0.6,1.6,0.5,25690,978.6,972.6,975.1,,15.0,13.0,7.0,,,156.0,E,0.0,0,0.0,
-2013-12-27,7.3,-0.5,3.2,0.9,25790,989.1,978.6,983.5,,19.0,13.0,5.0,,,153.0,SE,0.0,0,0.0,
-2013-12-28,8.2,2.3,5.2,1.1,25790,997.2,989.0,993.6,,19.0,15.0,8.0,,,102.0,E,0.0,0,0.0,
-2013-12-29,4.1,0.9,1.7,0.9,0/7/0,999.7,996.9,998.8,,47.0,35.0,14.0,,,23.0,NE,0.0,0,0.0,
-2013-12-30,3.9,-0.9,1.5,1.4,0/7/0,999.5,995.5,997.9,,7.0,6.0,3.0,,,1.0,N,0.0,0,0.0,
-2013-12-31,4.9,0.2,2.5,0.9,0/7/0,995.5,989.5,991.7,,27.0,19.0,9.0,,,99.0,E,0.0,0,0.0,
-2014-01-01,6.0,-0.3,2.3,0.4,0/6/0,1000.4,990.3,995.4,,12.0,10.0,3.0,,,348.0,N,0.0,0,0.0,
-2014-01-02,0.8,-1.6,-0.2,0.7,0/7/0,1001.8,1000.1,1001.2,,16.0,13.0,6.0,,,231.0,SW,0.0,0,0.0,
-2014-01-03,5.0,-0.2,1.1,1.6,0/7/0,1000.1,990.0,995.2,,17.0,14.0,7.0,,,228.0,SW,0.0,0,0.0,
-2014-01-04,4.7,0.2,1.2,1.3,0/7/0,990.0,985.4,987.1,,21.0,18.0,5.0,,,17.0,N,0.0,0,0.0,
-2014-01-05,1.8,-1.2,-0.2,1.3,0/9/0,991.5,985.5,987.9,,22.0,20.0,12.0,,,17.0,N,0.0,0,0.0,
-2014-01-06,3.8,-0.8,0.8,1.5,0/8/0,992.5,991.3,991.9,,27.0,20.0,10.0,,,18.0,NE,0.0,0,0.0,
-2014-01-07,4.6,-2.1,0.4,-1.0,45792,996.9,992.5,994.9,,8.0,7.0,3.0,,,305.0,NW,0.0,0,0.0,
-2014-01-08,0.8,-1.6,-0.6,-1.2,35791,1001.5,996.9,999.0,,13.0,10.0,6.0,,,358.0,N,4.8,4,3.0,
-2014-01-09,2.8,-1.7,-0.1,-1.2,35792,1004.8,1001.5,1003.4,,13.0,11.0,5.0,,,350.0,NW,1.3,3,1.0,
-2014-01-10,2.0,-1.5,-0.4,-1.1,25691,1004.9,1002.1,1003.7,,9.0,8.0,5.0,,,312.0,NW,1.0,0,0.0,
-2014-01-11,2.8,-1.8,0.4,-0.8,25791,1002.1,985.7,996.3,,18.0,12.0,5.0,,,103.0,N,0.0,0,0.0,
-2014-01-12,4.2,0.1,2.5,-0.4,2/690,985.6,977.6,980.1,,42.0,33.0,14.0,,,23.0,NE,2.0,0,0.0,
-2014-01-13,6.2,1.1,4.0,-0.2,0/6/0,985.6,980.6,983.7,,44.0,34.0,14.0,,,33.0,NE,6.9,0,0.0,
-2014-01-14,7.5,2.0,4.7,0.0,0/6/0,981.0,973.6,977.9,,48.0,41.0,15.0,,,16.0,SE,0.0,0,0.0,
-2014-01-15,5.0,-1.0,1.0,-0.2,0/6/0,989.0,980.5,983.6,,23.0,18.0,9.0,,,208.0,SW,3.6,6,8.0,
-2014-01-16,6.1,-1.0,1.5,0.9,0/7/0,993.5,989.0,991.3,,15.0,13.0,5.0,,,239.0,SW,0.0,0,0.0,
-2014-01-17,4.4,-0.4,1.4,0.7,0/7/0,995.7,993.4,994.9,,18.0,14.0,3.0,,,7.0,NE,0.3,0,0.0,
-2014-01-18,4.3,0.6,2.3,0.6,0/6/0,995.4,989.8,992.0,,23.0,17.0,6.0,,,79.0,E,0.0,0,0.0,
-2014-01-19,5.4,0.3,2.0,0.7,0/6/0,992.9,986.0,990.6,,12.0,8.0,3.0,,,131.0,SE,1.0,0,0.0,
-2014-01-20,4.7,1.7,2.9,0.6,0/6/0,986.0,981.8,983.0,,27.0,20.0,7.0,,,71.0,NW,0.0,0,0.0,
-2014-01-21,6.2,1.0,2.7,0.8,0/6/0,992.0,983.4,988.9,,13.0,9.0,3.0,,,338.0,N,0.0,0,0.0,
-2014-01-22,4.2,-0.1,0.9,0.4,0/6/0,993.4,991.7,992.7,,11.0,10.0,4.0,,,237.0,SW,0.0,0,0.0,
-2014-01-23,0.7,-0.6,0.0,0.7,0/7/0,992.9,987.6,990.6,,17.0,15.0,9.0,,,241.0,SW,0.0,0,0.0,
-2014-01-24,2.0,-0.5,0.3,0.8,0/7/0,987.5,979.7,982.3,,9.0,7.0,2.0,,,131.0,SE,2.0,0,0.0,
-2014-01-25,2.2,-0.3,0.6,0.5,0/7/0,984.1,979.5,981.7,,12.0,11.0,4.0,,,304.0,NW,3.1,5,0.0,
-2014-01-26,5.9,0.3,2.5,1.7,0/7/0,984.3,980.6,982.9,,21.0,17.0,5.0,,,71.0,E,0.0,0,0.0,
-2014-01-27,3.1,1.1,2.1,1.7,0/6/0,985.2,979.8,982.2,,21.0,15.0,6.0,,,105.0,W,0.0,0,0.0,
-2014-01-28,5.1,-0.6,1.6,1.1,0/6/0,989.7,985.3,988.1,,15.0,12.0,5.0,,,227.0,SW,0.0,0,0.0,
-2014-01-29,3.6,-0.5,1.2,1.2,0/6/0,988.9,985.5,986.9,,18.0,16.0,3.0,,,26.0,N,0.0,1,0.0,
-2014-01-30,3.1,-0.7,1.2,1.7,0/6/0,991.0,986.6,988.5,,14.0,10.0,5.0,,,1.0,N,0.0,0,0.0,
-2014-01-31,2.7,-0.4,1.2,0.5,0/6/0,994.4,991.1,992.8,,11.0,8.0,5.0,,,205.0,SW,0.0,0,0.0,
-2014-02-01,3.4,-0.5,0.8,1.1,0/6/0,994.6,993.9,994.3,,14.0,12.0,4.0,,,22.0,N,0.0,0,0.0,
-2014-02-02,4.3,-0.4,1.4,1.8,0/6/0,994.0,991.8,993.1,,16.0,13.0,4.0,,,17.0,NE,0.0,0,0.0,
-2014-02-03,4.9,-0.6,1.7,2.2,0/6/0,994.1,991.7,992.7,,7.0,5.0,3.0,,,50.0,NE,0.0,0,0.0,
-2014-02-04,2.5,0.0,1.1,1.8,0/6/0,994.3,988.6,991.7,,11.0,9.0,4.0,,,8.0,N,0.0,0,0.0,
-2014-02-05,1.3,-0.4,0.5,1.7,0/6/0,988.7,984.3,986.2,,17.0,13.0,6.0,,,210.0,SW,0.0,0,0.0,
-2014-02-06,2.8,0.0,0.9,1.7,0/6/0,984.3,980.6,981.3,,15.0,12.0,5.0,,,212.0,SW,0.0,0,0.0,
-2014-02-07,2.4,-1.2,-0.2,2.1,0/6/0,981.4,979.7,980.8,,20.0,17.0,5.0,,,30.0,E,0.0,0,0.0,
-2014-02-08,-0.7,-2.9,-2.0,0.7,0/6/0,979.9,970.3,973.8,,36.0,26.0,14.0,,,118.0,E,0.0,0,0.0,
-2014-02-09,0.5,-3.1,-1.4,0.6,0/6/0,977.2,971.6,975.1,,22.0,18.0,7.0,,,226.0,SW,0.0,1,1.0,
-2014-02-10,3.4,-3.6,-0.6,0.0,0/6/0,989.8,975.9,980.4,,9.0,7.0,3.0,,,73.0,NE,0.0,0,0.0,
-2014-02-11,3.3,-1.6,0.6,0.8,0/6/0,998.6,989.8,994.8,,23.0,20.0,8.0,,,36.0,NE,0.0,0,0.0,
-2014-02-12,2.1,-0.3,0.7,1.0,0/6/0,1007.9,998.6,1002.7,,20.0,17.0,7.0,,,25.0,NE,0.0,0,0.0,
-2014-02-13,3.0,0.6,1.5,0.8,0/6/0,1008.4,991.0,1001.4,,58.0,44.0,15.0,,,30.0,NE,2.8,0,0.0,
-2014-02-14,2.7,0.4,1.3,1.1,0/6/0,994.1,982.0,989.0,,21.0,16.0,4.0,,,183.0,NW,4.1,0,0.0,
-2014-02-15,3.9,-0.5,1.8,0.6,0/6/0,996.9,986.3,992.7,,49.0,34.0,13.0,,,17.0,N,9.9,4,2.0,
-2014-02-16,4.7,1.3,2.8,-0.4,0/6/0,990.0,985.4,988.6,,49.0,32.0,17.0,,,11.0,N,3.6,0,0.0,
-2014-02-17,4.2,-0.2,1.5,-0.1,0/6/0,994.4,987.5,991.4,,22.0,18.0,7.0,,,339.0,NW,3.6,0,0.0,
-2014-02-18,4.9,-0.5,2.0,0.9,0/6/0,993.5,990.0,991.2,,19.0,15.0,4.0,,,26.0,SE,3.1,0,0.0,
-2014-02-19,2.0,-0.5,0.6,0.1,0/6/0,994.6,989.0,993.0,,24.0,20.0,8.0,,,28.0,N,2.3,7,5.0,
-2014-02-20,2.0,0.1,1.1,0.2,0/6/0,989.0,976.1,979.8,,32.0,26.0,14.0,,,17.0,NW,3.3,0,0.0,
-2014-02-21,2.6,-0.5,0.7,0.5,0/6/0,985.4,977.1,980.1,,14.0,11.0,4.0,,,246.0,SW,0.0,0,0.0,
-2014-02-22,0.9,-0.1,0.3,0.8,0/6/0,993.8,985.4,989.5,,19.0,16.0,8.0,,,240.0,SW,0.0,0,0.0,
-2014-02-23,1.1,-0.4,0.3,0.8,0/6/0,1004.7,993.7,998.4,,21.0,18.0,11.0,,,228.0,SW,0.0,0,0.0,
-2014-02-24,3.0,0.2,1.4,-0.2,0/6/0,1005.4,982.9,999.3,,49.0,36.0,15.0,,,31.0,N,3.1,0,0.0,
-2014-02-25,4.0,0.3,1.5,0.3,0/6/0,989.0,977.6,983.2,,43.0,34.0,14.0,,,23.0,N,8.1,0,0.0,
-2014-02-26,4.0,0.7,2.1,0.4,0/6/0,988.4,977.5,981.1,,43.0,26.0,17.0,,,21.0,N,7.4,0,0.0,
-2014-02-27,1.2,-0.6,0.5,0.5,0/6/0,991.7,977.2,984.5,,32.0,26.0,16.0,,,267.0,W,1.0,0,0.0,
-2014-02-28,2.2,-0.6,1.3,0.3,0/6/0,991.4,981.4,985.9,,33.0,26.0,16.0,,,21.0,N,2.0,0,0.0,
-2014-03-01,2.3,-1.1,0.7,-0.7,0/6/0,984.7,978.0,980.5,,26.0,21.0,10.0,,,228.0,N,4.3,2,6.0,
-2014-03-02,2.0,-0.6,0.1,0.3,0/6/0,996.1,984.6,992.7,,28.0,23.0,10.0,,,228.0,SW,0.0,0,0.0,
-2014-03-03,2.1,-0.7,0.7,0.2,0/6/0,993.5,972.2,985.1,,53.0,40.0,17.0,,,41.0,NE,0.8,0,0.0,
-2014-03-04,1.9,-0.3,1.0,0.2,0/6/0,985.1,971.2,977.5,,35.0,29.0,15.0,,,17.0,NW,2.5,2,1.0,
-2014-03-05,5.3,0.9,3.0,0.4,0/6/0,985.0,973.1,978.1,,46.0,38.0,26.0,,,54.0,NE,3.3,0,0.0,
-2014-03-06,5.4,0.3,2.6,0.4,0/6/0,973.2,958.6,966.3,,58.0,47.0,28.0,,,30.0,NE,3.1,1,0.0,
-2014-03-07,0.7,-1.9,-0.3,0.2,0/6/0,982.5,961.4,973.1,,39.0,30.0,16.0,,,266.0,W,1.3,4,5.0,
-2014-03-08,5.8,-2.7,1.6,0.4,0/6/0,982.5,973.0,977.4,,30.0,22.0,11.0,,,139.0,E,0.0,1,4.0,
-2014-03-09,5.3,0.5,2.7,0.9,0/6/0,977.8,969.7,974.6,,44.0,29.0,9.0,,,83.0,E,0.0,0,0.0,
-2014-03-10,2.3,-1.1,0.1,0.4,0/6/0,978.0,970.4,975.7,,46.0,37.0,10.0,,,29.0,NW,2.0,4,2.0,
-2014-03-11,1.3,-0.9,-0.2,-0.1,0/6/0,975.3,972.2,974.4,,29.0,23.0,4.0,,,12.0,N,0.8,1,1.0,
-2014-03-12,0.1,-2.3,-1.1,0.2,0/6/0,973.0,970.2,971.1,,29.0,22.0,11.0,,,228.0,SW,0.5,1,6.0,
-2014-03-13,3.9,-2.5,-0.3,-0.4,0/6/0,980.1,973.1,975.7,,17.0,12.0,4.0,,,98.0,NE,0.0,0,5.0,
-2014-03-14,3.7,-2.0,0.3,-0.2,0/6/0,995.8,980.2,989.0,,15.0,13.0,4.0,,,27.0,NE,0.0,0,0.0,
-2014-03-15,2.4,-2.2,-0.7,-0.7,0/6/0,999.2,995.7,997.6,,11.0,7.0,3.0,,,32.0,NE,0.0,0,0.0,
-2014-03-16,2.0,-0.7,0.2,0.1,0/6/0,1000.6,998.2,999.0,,18.0,14.0,5.0,,,72.0,E,0.0,0,0.0,
-2014-03-17,0.0,-1.9,-1.1,-0.1,0/6/0,1003.6,1000.5,1001.6,,12.0,10.0,3.0,,,25.0,NE,0.3,1,1.0,
-2014-03-18,1.6,-1.5,-0.2,0.1,0/6/0,1003.7,984.9,995.7,,27.0,18.0,6.0,,,38.0,SE,0.3,1,1.0,
-2014-03-19,1.6,-0.1,0.8,0.1,0/6/0,985.2,966.3,976.1,,31.0,28.0,12.0,,,16.0,E,0.0,0,0.0,
-2014-03-20,2.3,-0.5,0.6,0.5,0/6/0,976.6,966.4,971.0,,33.0,27.0,13.0,,,119.0,SE,0.0,0,0.0,
-2014-03-21,0.5,-3.4,-1.0,0.4,0/6/0,978.7,975.2,977.4,,18.0,15.0,6.0,,,225.0,SW,0.0,0,0.0,
-2014-03-22,3.1,-3.8,-1.6,-0.4,0/6/0,975.2,970.0,971.8,,13.0,11.0,4.0,,,217.0,N,0.0,0,0.0,
-2014-03-23,-0.2,-2.6,-1.7,0.1,0/6/0,981.9,975.1,979.5,,18.0,15.0,6.0,,,251.0,SW,0.3,2,2.0,
-2014-03-24,-0.9,-3.2,-2.1,-0.4,0/6/0,982.8,975.3,977.6,,20.0,17.0,5.0,,,39.0,N,0.3,0,2.0,
-2014-03-25,0.4,-2.9,-1.1,-0.7,0/6/0,985.5,971.8,981.5,,31.0,25.0,12.0,,,27.0,N,1.5,5,7.0,
-2014-03-26,0.3,-1.9,-0.7,-0.7,0/6/0,978.4,970.8,973.5,,27.0,20.0,9.0,,,317.0,N,2.8,4,10.0,
-2014-03-27,0.6,-2.1,-0.6,-1.1,0/6/0,993.6,978.4,988.1,,17.0,15.0,6.0,,,43.0,N,0.5,1,9.0,
-2014-03-28,1.4,-1.9,0.5,-1.2,0/6/0,1000.0,992.9,996.2,,37.0,29.0,17.0,,,21.0,N,0.3,0,7.0,
-2014-03-29,2.4,0.6,1.7,-0.3,0/6/0,1001.5,989.8,997.7,,34.0,28.0,17.0,,,24.0,N,0.0,0,6.0,
-2014-03-30,2.0,-2.5,-0.3,-0.4,0/6/0,989.8,979.9,983.2,,32.0,26.0,14.0,,,28.0,SW,1.3,3,9.0,
-2014-03-31,-1.2,-2.4,-1.8,-0.2,0/6/0,994.4,986.7,991.6,,24.0,20.0,9.0,,,231.0,SW,0.0,0,9.0,
-2014-04-01,0.0,-1.7,-0.6,0.0,0/6/0,998.5,989.6,994.9,,35.0,29.0,19.0,,,235.0,SW,0.3,2,9.0,
-2014-04-02,0.0,-1.5,-0.7,-0.2,0/6/0,997.9,992.8,994.7,,31.0,25.0,15.0,,,230.0,SW,1.0,3,14.0,
-2014-04-03,0.0,-2.5,-1.0,-0.5,0/6/0,1002.2,986.3,993.3,,35.0,27.0,17.0,,,229.0,SW,3.1,7,24.0,
-2014-04-04,0.5,-4.5,-1.9,-1.2,0/6/0,1005.1,999.2,1001.8,,19.0,16.0,5.0,,,213.0,NE,0.0,1,23.0,
-2014-04-05,-0.1,-2.1,-1.0,-0.6,0/6/0,1005.2,996.7,1000.3,,17.0,14.0,6.0,,,258.0,SE,2.0,1,18.0,
-2014-04-06,-0.4,-3.2,-1.7,-1.3,0/6/0,998.9,990.9,995.1,,20.0,17.0,6.0,,,232.0,SW,10.2,1,20.0,
-2014-04-07,1.7,-1.0,-0.1,-1.1,0/6/0,1003.1,990.5,995.5,,43.0,32.0,10.0,,,17.0,SW,6.9,9,29.0,
-2014-04-08,5.3,-2.4,1.3,-0.2,0/6/0,1003.1,991.9,998.0,,59.0,43.0,14.0,,,28.0,N,1.3,0,28.0,
-2014-04-09,5.8,2.5,4.0,0.0,0/6/0,1003.1,991.0,997.8,,50.0,40.0,23.0,,,21.0,NE,2.3,0,20.0,
-2014-04-10,6.9,1.6,3.8,0.3,0/6/0,995.7,982.7,990.8,,49.0,39.0,22.0,,,26.0,NE,1.8,0,0.0,
-2014-04-11,4.6,-2.1,0.7,-0.2,0/6/0,984.3,979.9,982.0,,49.0,36.0,17.0,,,18.0,NE,0.5,0,0.0,
-2014-04-12,-0.6,-2.7,-2.0,-0.3,0/6/0,988.6,982.9,985.8,,23.0,19.0,9.0,,,230.0,SW,0.5,0,0.0,
-2014-04-13,-0.3,-1.9,-1.2,-0.3,0/6/0,984.7,978.8,981.3,,24.0,20.0,9.0,,,15.0,N,0.8,1,1.0,
-2014-04-14,0.7,-3.4,-0.8,-0.5,0/6/0,997.0,978.8,990.3,,39.0,30.0,15.0,,,236.0,SW,0.5,1,6.0,
-2014-04-15,1.5,-2.8,-0.8,-0.8,0/6/0,996.8,983.3,990.6,,18.0,16.0,4.0,,,332.0,SE,0.0,0,4.0,
-2014-04-16,1.4,-3.1,-0.2,-0.4,0/6/0,983.6,978.4,981.5,,38.0,23.0,9.0,,,93.0,E,0.0,0,3.0,
-2014-04-17,2.0,-3.4,-1.1,-0.4,0/6/0,983.3,974.8,977.9,,40.0,29.0,14.0,,,72.0,E,0.0,0,2.0,
-2014-04-18,-1.6,-3.9,-3.1,-0.7,0/6/0,995.6,983.3,990.0,,16.0,14.0,7.0,,,243.0,N,0.0,0,1.0,
-2014-04-19,-1.3,-4.8,-2.3,-0.8,0/6/0,1012.2,995.6,1003.8,,16.0,14.0,6.0,,,233.0,SW,0.0,1,2.0,
-2014-04-20,1.2,-4.9,-2.2,-0.7,0/6/0,1018.3,1012.1,1016.1,,11.0,10.0,4.0,,,119.0,SE,0.0,0,2.0,
-2014-04-21,0.3,-0.8,-0.3,-0.6,0/6/0,1018.3,1009.4,1014.7,,10.0,9.0,3.0,,,329.0,SE,0.0,0,2.0,
-2014-04-22,3.0,-1.5,-0.2,-0.8,0/6/0,1009.4,1005.3,1006.6,,27.0,20.0,3.0,,,23.0,SE,0.0,0,2.0,
-2014-04-23,4.5,0.9,2.6,-0.5,0/6/0,1008.2,1004.7,1006.2,,44.0,35.0,14.0,,,25.0,NE,0.0,0,2.0,
-2014-04-24,6.1,1.0,4.1,-0.3,0/6/0,1008.0,995.6,1001.7,,58.0,45.0,28.0,,,16.0,NE,5.1,0,0.0,
-2014-04-25,3.3,0.1,1.3,-0.9,0/6/0,1005.3,998.5,1003.3,,33.0,26.0,16.0,,,352.0,N,0.5,1,1.0,
-2014-04-26,5.5,0.2,2.2,-0.3,0/6/0,1000.0,979.6,985.8,,76.0,44.0,25.0,,,25.0,N,0.3,0,0.0,
-2014-04-27,1.3,-2.6,-0.6,-0.8,0/6/0,989.8,979.6,984.0,,50.0,41.0,15.0,,,15.0,N,0.8,1,3.0,
-2014-04-28,-2.4,-3.5,-2.9,-0.7,0/6/0,996.3,989.8,993.9,,15.0,12.0,5.0,,,232.0,SW,0.0,0,3.0,
-2014-04-29,0.9,-4.1,-2.3,-0.6,0/6/0,996.1,980.0,989.8,,23.0,20.0,6.0,,,50.0,E,0.8,0,3.0,
-2014-04-30,2.3,-2.4,-0.7,-0.6,0/6/0,991.0,979.8,986.6,,45.0,37.0,7.0,,,22.0,NE,0.0,1,4.0,
-2014-05-01,3.1,-1.9,0.8,-0.5,0/6/0,987.2,962.5,972.1,,35.0,26.0,10.0,,,75.0,E,4.1,2,8.0,
-2014-05-02,1.5,-1.1,0.0,-0.7,0/6/0,983.3,963.2,974.6,,35.0,30.0,14.0,,,19.0,N,0.0,0,8.0,
-2014-05-03,4.8,-0.1,2.4,-0.5,0/6/0,984.0,980.0,982.5,,49.0,41.0,25.0,,,46.0,NE,0.0,0,7.0,
-2014-05-04,5.5,2.2,3.5,-0.3,0/6/0,981.0,970.1,975.0,,35.0,29.0,14.0,,,46.0,E,1.0,0,0.0,
-2014-05-05,3.2,-1.1,0.1,-0.6,0/6/0,973.9,968.7,970.6,,34.0,27.0,6.0,,,34.0,NW,3.6,2,2.0,
-2014-05-06,1.2,-3.2,-1.4,-0.7,0/6/0,988.1,973.9,981.7,,30.0,21.0,5.0,,,38.0,NE,0.0,3,5.0,
-2014-05-07,0.7,-3.4,-1.3,-0.9,0/6/0,1011.0,988.0,1002.5,,35.0,29.0,8.0,,,24.0,SW,0.0,0,5.0,
-2014-05-08,7.2,-2.9,2.0,-0.8,0/6/0,1011.8,999.7,1007.7,,46.0,38.0,7.0,,,46.0,SE,0.0,0,0.0,
-2014-05-09,8.5,2.5,4.7,-0.4,0/6/0,999.6,990.9,994.0,,51.0,40.0,18.0,,,54.0,NE,0.5,0,0.0,
-2014-05-10,3.4,-0.3,1.2,-0.7,0/6/0,999.1,991.5,996.2,,32.0,26.0,15.0,,,16.0,N,0.8,0,0.0,
-2014-05-11,4.3,0.3,1.9,-0.5,0/6/0,999.1,984.2,992.3,,41.0,32.0,16.0,,,50.0,E,1.3,0,0.0,
-2014-05-12,3.1,-1.3,0.8,-0.5,0/6/0,985.5,979.2,982.9,,50.0,39.0,14.0,,,46.0,E,0.0,0,0.0,
-2014-05-13,0.5,-2.2,-0.6,-0.6,0/6/0,985.0,977.7,981.0,,29.0,21.0,9.0,,,117.0,SE,0.0,1,1.0,
-2014-05-14,-1.5,-3.1,-2.2,-0.7,0/6/0,994.4,985.1,989.1,,17.0,14.0,6.0,,,246.0,SW,0.0,0,1.0,
-2014-05-15,-2.5,-4.6,-3.5,-0.9,0/6/0,1004.0,994.3,998.8,,21.0,17.0,8.0,,,239.0,SW,0.0,0,0.0,
-2014-05-16,-2.9,-5.3,-4.2,-1.1,0/6/0,1006.5,1001.9,1004.9,,11.0,9.0,3.0,,,84.0,E,0.0,0,0.0,
-2014-05-17,1.0,-3.5,-0.9,-1.1,0/6/0,1005.9,997.3,1000.7,,24.0,16.0,5.0,,,137.0,SE,0.0,1,1.0,
-2014-05-18,1.4,-1.6,-0.2,-1.3,0/6/0,1014.4,1005.6,1009.0,,24.0,19.0,9.0,,,9.0,N,2.8,2,3.0,
-2014-05-19,3.9,-1.3,0.7,-1.1,0/6/0,1014.9,1003.6,1011.2,,40.0,34.0,14.0,,,22.0,N,0.0,0,3.0,
-2014-05-20,1.1,-1.3,-0.3,-1.3,0/6/0,1003.7,983.5,995.8,,44.0,35.0,18.0,,,35.0,N,1.8,1,4.0,
-2014-05-21,-0.8,-4.7,-2.9,-1.1,0/6/0,1001.1,983.8,992.4,,38.0,30.0,15.0,,,219.0,SW,0.3,1,6.0,
-2014-05-22,-3.3,-6.4,-4.7,-1.4,0/6/0,1001.3,993.0,997.1,,14.0,12.0,5.0,,,49.0,NE,0.0,1,7.0,
-2014-05-23,-3.9,-7.0,-4.7,-1.5,0/6/0,1006.3,994.9,1002.7,,17.0,14.0,6.0,,,15.0,N,0.0,0,7.0,
-2014-05-24,-4.7,-7.4,-5.8,-1.6,0/6/0,1006.0,991.8,1000.6,,22.0,18.0,5.0,,,24.0,E,0.0,0,7.0,
-2014-05-25,0.8,-5.8,-2.0,-1.6,0/6/0,991.6,980.1,983.1,,24.0,16.0,4.0,,,74.0,N,0.0,0,7.0,
-2014-05-26,0.5,-1.6,-0.7,-1.6,0/6/0,983.7,980.7,982.4,,36.0,25.0,6.0,,,75.0,N,0.0,0,6.0,
-2014-05-27,2.5,-1.8,-0.2,-1.2,0/6/0,993.5,979.6,985.5,,44.0,32.0,7.0,,,73.0,W,0.0,0,6.0,
-2014-05-28,-1.6,-4.0,-2.7,-1.2,0/6/0,996.4,977.8,991.7,,45.0,31.0,14.0,,,79.0,E,0.0,0,6.0,
-2014-05-29,3.2,-2.4,0.1,-1.1,0/6/0,979.9,967.6,972.8,,60.0,47.0,21.0,,,27.0,NE,0.0,0,6.0,
-2014-05-30,-1.3,-4.6,-2.6,-1.1,0/6/0,994.2,980.0,986.5,,23.0,19.0,4.0,,,29.0,E,0.0,0,5.0,
-2014-05-31,-3.3,-5.6,-4.4,-1.3,0/6/0,1002.5,994.3,999.8,,18.0,14.0,6.0,,,28.0,NE,0.0,0,5.0,
-2014-06-01,-3.0,-5.0,-4.3,-1.4,0/6/0,1007.3,1001.8,1003.6,,11.0,9.0,3.0,,,218.0,NE,0.0,1,3.0,
-2014-06-02,-3.5,-6.3,-4.9,-1.2,0/6/0,1009.8,1006.2,1008.5,,7.0,6.0,3.0,,,66.0,NE,0.0,0,2.0,
-2014-06-03,-2.0,-4.1,-2.8,-1.3,0/6/0,1006.3,1001.8,1003.5,,10.0,8.0,3.0,,,196.0,NE,0.0,1,3.0,
-2014-06-04,-0.4,-3.3,-2.0,-1.4,0/6/0,1010.6,1006.1,1009.4,,14.0,11.0,4.0,,,125.0,SE,1.5,0,3.0,
-2014-06-05,-3.6,-5.6,-4.6,-1.6,0/6/0,1011.5,1009.2,1010.8,,6.0,5.0,2.0,,,61.0,NE,0.0,1,4.0,
-2014-06-06,-3.6,-5.0,-4.3,-1.6,0/6/0,1009.2,997.9,1004.1,,7.0,6.0,2.0,,,138.0,NE,0.0,0,4.0,
-2014-06-07,-4.0,-5.3,-4.6,-1.7,0/6/0,997.9,992.6,994.0,,3.0,3.0,0.0,,,48.0,SE,0.0,1,6.0,
-2014-06-08,-1.5,-5.2,-3.3,-1.7,0/6/0,1002.4,993.9,999.1,,14.0,12.0,3.0,,,349.0,N,0.0,0,6.0,
-2014-06-09,-2.7,-4.3,-3.3,-1.7,0/6/0,1002.2,998.5,999.7,,14.0,12.0,4.0,,,19.0,NE,0.0,0,6.0,
-2014-06-10,-3.4,-6.4,-4.6,-1.7,0/6/0,999.0,996.1,998.3,,10.0,8.0,3.0,,,45.0,NE,0.0,0,6.0,
-2014-06-11,-4.5,-7.2,-6.1,-1.7,01600,996.1,987.8,990.4,,8.0,7.0,2.0,,,358.0,NE,0.0,0,6.0,
-2014-06-12,-3.7,-5.8,-4.7,-1.7,01600,998.0,989.4,993.2,,11.0,9.0,3.0,,,29.0,NE,0.0,0,6.0,
-2014-06-13,-2.8,-4.9,-3.9,-1.7,01600,1006.4,998.0,1002.5,,20.0,16.0,5.0,,,28.0,NE,0.0,0,6.0,
-2014-06-14,-3.9,-5.3,-4.4,-1.8,01600,1010.5,1006.2,1008.7,,28.0,23.0,14.0,,,28.0,NE,0.0,0,6.0,
-2014-06-15,-1.5,-6.5,-4.8,-1.8,01600,1010.1,998.2,1005.8,,30.0,23.0,9.0,,,30.0,NE,0.0,0,6.0,
-2014-06-16,-0.1,-3.7,-1.8,-1.6,0/6/0,998.4,989.4,992.1,,36.0,31.0,9.0,,,140.0,SE,7.9,2,7.0,
-2014-06-17,-1.0,-4.0,-1.9,-1.7,0/6/0,996.6,989.3,992.0,,37.0,28.0,13.0,,,352.0,N,0.3,9,17.0,
-2014-06-18,-0.9,-2.6,-1.4,-1.7,0/6/0,1001.0,996.6,999.7,,16.0,13.0,7.0,,,342.0,N,1.5,1,17.0,
-2014-06-19,2.3,-2.0,0.6,-1.6,0/6/0,999.0,985.2,993.1,,42.0,35.0,17.0,,,23.0,NE,0.0,0,17.0,
-2014-06-20,2.1,-4.2,-0.6,-1.6,0/6/0,985.3,957.5,969.8,,54.0,42.0,28.0,,,25.0,NE,3.8,1,18.0,
-2014-06-21,-2.7,-7.1,-5.0,-1.7,0/6/0,976.4,970.7,972.8,,44.0,33.0,24.0,,,232.0,W,0.0,3,21.0,
-2014-06-22,-0.4,-6.7,-4.2,-1.7,0/6/0,978.0,966.9,973.5,,38.0,31.0,14.0,,,249.0,SW,4.1,2,24.0,
-2014-06-23,1.4,-2.5,0.4,-1.7,0/6/0,969.7,963.3,965.8,,45.0,31.0,17.0,,,31.0,NE,4.1,3,28.0,
-2014-06-24,1.1,-2.0,-0.1,-1.7,0/6/0,976.4,968.6,971.8,,43.0,34.0,22.0,,,34.0,NE,0.3,2,29.0,
-2014-06-25,-0.3,-4.6,-2.5,-1.6,0/6/0,979.7,967.9,976.2,,49.0,39.0,17.0,,,49.0,E,0.0,0,29.0,
-2014-06-26,-0.1,-2.7,-1.6,-1.5,0/6/0,980.8,967.6,972.2,,47.0,38.0,22.0,,,47.0,NE,0.0,0,28.0,
-2014-06-27,-2.4,-5.0,-3.4,-1.7,0/6/0,987.7,977.9,984.8,,34.0,29.0,20.0,,,16.0,NE,0.0,0,27.0,
-2014-06-28,1.1,-5.4,-1.3,-1.4,0/6/0,977.9,966.4,969.2,,51.0,39.0,25.0,,,25.0,NE,0.5,0,27.0,
-2014-06-29,-0.3,-2.3,-1.3,-1.5,0/6/0,988.7,971.4,983.2,,48.0,37.0,20.0,,,30.0,NW,0.3,0,27.0,
-2014-06-30,2.4,-1.0,0.4,-1.3,0/6/0,989.7,980.7,986.0,,62.0,49.0,36.0,,,41.0,NE,9.4,0,27.0,
-2014-07-01,1.6,0.1,0.8,-1.3,0/6/0,981.2,973.1,975.6,,54.0,41.0,30.0,,,45.0,NE,5.6,2,28.0,
-2014-07-02,1.4,-0.6,0.7,-1.4,0/6/0,975.4,971.1,973.8,,51.0,41.0,25.0,,,38.0,N,1.0,1,28.0,
-2014-07-03,0.2,-2.2,-1.0,-1.5,0/6/0,978.4,973.6,976.8,,42.0,32.0,19.0,,,355.0,N,0.0,2,31.0,
-2014-07-04,-1.4,-3.7,-2.7,-1.7,0/6/0,987.7,974.6,979.5,,22.0,19.0,5.0,,,24.0,N,0.5,0,30.0,
-2014-07-05,1.4,-3.0,-0.6,-1.3,0/6/0,987.8,963.6,974.2,,52.0,42.0,25.0,,,55.0,NE,1.5,1,31.0,
-2014-07-06,-2.3,-4.5,-3.0,-1.7,0/6/0,973.5,963.2,970.3,,46.0,39.0,19.0,,,13.0,N,0.0,2,33.0,
-2014-07-07,-2.2,-10.3,-7.1,-1.7,0/6/0,978.7,962.6,968.4,,53.0,38.0,17.0,,,15.0,SE,1.8,0,32.0,
-2014-07-08,-5.1,-9.7,-6.5,-1.8,0/6/0,996.3,978.8,991.3,,28.0,21.0,7.0,,,118.0,SW,0.0,1,33.0,
-2014-07-09,-1.6,-7.4,-4.3,-1.8,0/6/0,994.9,980.7,985.8,,25.0,21.0,10.0,,,249.0,SE,3.1,3,36.0,
-2014-07-10,-2.6,-9.9,-7.4,-1.8,0/6/0,1000.0,983.2,991.3,,33.0,28.0,15.0,,,236.0,SW,0.0,4,38.0,
-2014-07-11,-0.7,-9.7,-4.9,-1.7,0/6/0,1001.4,997.7,1000.5,,16.0,13.0,4.0,,,129.0,SE,0.0,0,37.0,
-2014-07-12,3.6,-1.7,0.8,-1.7,0/6/0,997.8,976.0,985.6,,54.0,43.0,26.0,,,25.0,N,7.4,0,35.0,
-2014-07-13,0.5,-6.5,-2.8,-1.8,0/6/0,988.1,974.9,982.7,,54.0,40.0,26.0,,,13.0,N,2.8,0,33.0,
-2014-07-14,-0.9,-8.2,-4.9,-1.7,0/6/0,989.2,974.3,983.2,,72.0,46.0,22.0,,,16.0,N,1.5,1,34.0,
-2014-07-15,-0.8,-14.6,-9.8,-1.8,0/6/0,1004.7,976.4,991.9,,49.0,33.0,20.0,,,237.0,SW,0.3,1,35.0,
-2014-07-16,-0.5,-8.4,-2.2,-1.8,0/6/0,1003.0,989.3,996.4,,43.0,37.0,25.0,,,19.0,N,0.0,0,35.0,
-2014-07-17,-6.6,-11.7,-10.0,-1.8,0/6/0,1009.4,996.1,1004.5,,27.0,22.0,13.0,,,230.0,SW,0.0,0,33.0,
-2014-07-18,0.5,-12.8,-9.1,-1.8,0/6/0,1009.1,997.8,1005.1,,24.0,18.0,6.0,,,114.0,E,0.0,0,32.0,
-2014-07-19,0.3,-2.2,-1.1,-1.8,0/6/0,1005.8,996.7,1001.7,,25.0,19.0,4.0,,,147.0,E,4.1,8,44.0,
-2014-07-20,2.0,-1.0,0.7,-1.7,0/6/0,1007.2,1005.5,1006.5,,28.0,25.0,13.0,,,18.0,N,0.0,1,43.0,
-2014-07-21,0.6,-1.7,-0.6,-1.7,0/6/0,1006.2,993.9,1000.6,,39.0,27.0,9.0,,,31.0,NE,0.0,0,42.0,
-2014-07-22,-0.5,-3.6,-2.4,-1.7,0/6/0,994.0,982.1,987.3,,21.0,12.0,3.0,,,107.0,SE,0.0,0,40.0,
-2014-07-23,-2.0,-3.2,-2.5,-1.8,0/6/0,991.4,981.4,984.8,,19.0,16.0,5.0,,,19.0,N,0.0,0,38.0,
-2014-07-24,-2.9,-7.0,-5.1,-1.8,0/6/0,1010.2,991.4,1001.1,,14.0,10.0,4.0,,,24.0,NE,0.5,6,43.0,
-2014-07-25,-5.8,-9.1,-7.7,-1.7,0/6/0,1010.5,1007.8,1008.9,,13.0,10.0,4.0,,,246.0,SW,0.0,0,42.0,
-2014-07-26,-6.0,-8.8,-6.9,-1.7,01692,1009.1,1004.1,1006.9,,20.0,16.0,7.0,,,243.0,SW,0.0,0,42.0,
-2014-07-27,-3.3,-6.0,-4.3,-1.7,01692,1006.1,1002.8,1004.8,,16.0,13.0,5.0,,,280.0,N,0.0,0,41.0,
-2014-07-28,-3.5,-7.2,-5.0,-1.7,01692,1005.4,998.2,1002.1,,9.0,8.0,4.0,,,357.0,N,0.0,0,40.0,
-2014-07-29,-1.9,-7.5,-4.0,-1.8,01692,998.5,989.4,993.0,,17.0,14.0,3.0,,,22.0,SE,0.5,0,40.0,
-2014-07-30,-1.4,-7.1,-2.8,-1.8,01692,996.7,988.2,991.5,,13.0,8.0,3.0,,,145.0,SE,2.3,3,43.0,
-2014-07-31,-4.5,-9.2,-6.6,-1.8,01692,1000.0,996.7,998.8,,3.0,3.0,0.0,,,179.0,S,0.0,0,43.0,
-2014-08-01,-2.6,-9.6,-6.3,-1.8,22692,997.8,985.7,992.0,,8.0,7.0,1.0,,,335.0,N,0.5,0,44.0,
-2014-08-02,-0.4,-4.4,-2.5,-1.8,22692,988.6,984.8,985.9,,10.0,9.0,2.0,,,351.0,SE,1.0,3,47.0,
-2014-08-03,-2.4,-5.5,-4.0,-1.8,22692,1001.2,988.6,994.2,,16.0,14.0,4.0,,,22.0,NE,0.0,0,46.0,
-2014-08-04,-5.0,-7.9,-6.7,-1.7,22692,1004.6,1001.2,1003.7,,10.0,9.0,3.0,,,26.0,N,0.0,0,45.0,
-2014-08-05,-4.9,-6.7,-5.5,-1.8,22692,1003.1,997.1,1000.0,,17.0,13.0,3.0,,,140.0,SE,0.0,0,44.0,
-2014-08-06,0.7,-5.3,-1.7,-1.8,22692,998.4,996.2,997.2,,27.0,18.0,6.0,,,30.0,SE,0.8,1,45.0,
-2014-08-07,3.0,-2.0,0.4,-1.8,22692,998.0,986.6,993.4,,33.0,25.0,9.0,,,55.0,NE,0.0,0,45.0,
-2014-08-08,1.8,0.2,0.7,-1.8,22692,983.9,964.6,974.4,,47.0,32.0,16.0,,,62.0,E,0.0,0,44.0,
-2014-08-09,1.4,-3.6,-1.3,-1.7,22692,964.5,951.9,957.0,,54.0,36.0,18.0,,,103.0,E,0.3,2,44.0,
-2014-08-10,-1.9,-4.9,-3.5,-1.8,21601,975.3,962.9,969.9,,8.0,6.0,4.0,,,358.0,N,0.0,1,43.0,
-2014-08-11,-2.6,-5.1,-4.0,-1.7,21601,981.0,975.2,978.4,,17.0,14.0,3.0,,,59.0,E,0.0,1,44.0,
-2014-08-12,-3.1,-5.9,-4.5,-1.8,21601,981.1,979.1,980.2,,19.0,13.0,6.0,,,117.0,E,1.3,0,42.0,
-2014-08-13,-3.8,-10.6,-6.2,-1.8,21601,996.2,979.1,986.6,,22.0,19.0,7.0,,,220.0,SW,2.5,8,49.0,
-2014-08-14,-4.1,-10.7,-6.9,-1.7,21601,998.7,986.7,995.8,,29.0,24.0,8.0,,,39.0,NE,0.0,0,48.0,
-2014-08-15,1.4,-5.5,-1.5,-1.6,0/6/0,986.7,971.6,977.1,,62.0,46.0,24.0,,,43.0,E,0.8,0,46.0,
-2014-08-16,0.6,-2.9,-1.1,-1.7,0/6/0,978.7,974.1,976.1,,34.0,28.0,14.0,,,39.0,NE,1.8,0,45.0,
-2014-08-17,-1.9,-6.9,-4.4,-1.8,0/6/0,985.1,977.1,981.3,,23.0,16.0,8.0,,,122.0,SW,0.0,3,47.0,
-2014-08-18,-6.2,-8.6,-7.5,-1.7,22692,991.4,985.1,988.1,,15.0,13.0,7.0,,,243.0,SW,0.0,2,48.0,
-2014-08-19,-5.2,-8.5,-6.9,-1.7,22692,993.1,987.0,990.2,,32.0,26.0,9.0,,,233.0,SW,0.5,0,47.0,
-2014-08-20,-3.7,-13.2,-9.0,-1.7,22692,997.3,990.4,993.6,,29.0,24.0,11.0,,,255.0,SW,0.3,1,47.0,
-2014-08-21,-6.4,-15.5,-11.9,-1.8,42693,1004.5,997.4,1001.9,,11.0,9.0,4.0,,,145.0,NE,0.0,2,49.0,
-2014-08-22,-2.2,-9.2,-6.5,-1.8,42693,1003.8,995.4,999.1,,14.0,12.0,4.0,,,322.0,SE,3.8,6,56.0,
-2014-08-23,-2.5,-7.3,-4.8,-1.7,42693,1016.1,1002.0,1010.7,,17.0,14.0,6.0,,,242.0,N,0.0,2,57.0,
-2014-08-24,-1.1,-4.7,-2.5,-1.7,42693,1016.1,1012.0,1014.0,,25.0,19.0,12.0,,,307.0,NW,4.1,1,58.0,
-2014-08-25,0.0,-2.8,-1.5,-1.7,42693,1012.3,998.3,1005.9,,46.0,33.0,16.0,,,16.0,N,2.0,3,62.0,
-2014-08-26,-0.8,-12.9,-8.2,-1.7,42693,1015.5,1000.5,1009.5,,28.0,24.0,10.0,,,230.0,SW,0.0,2,65.0,
-2014-08-27,-4.3,-14.5,-10.5,-1.8,42693,1015.4,1012.8,1013.7,,12.0,9.0,3.0,,,116.0,SE,0.0,0,65.0,
-2014-08-28,-6.0,-10.7,-8.7,-1.8,42963,1019.3,1014.6,1017.1,,13.0,10.0,3.0,,,118.0,NE,0.0,0,64.0,
-2014-08-29,-6.1,-11.1,-9.0,-1.8,42963,1019.3,1017.2,1018.4,,10.0,8.0,3.0,,,202.0,NE,0.0,0,64.0,
-2014-08-30,-10.7,-14.5,-12.4,-1.8,42963,1018.5,1016.5,1017.2,,9.0,7.0,4.0,,,242.0,W,0.0,0,64.0,
-2014-08-31,-9.0,-16.3,-13.6,-1.8,42963,1019.3,1015.9,1018.0,,8.0,6.0,2.0,,,152.0,NE,0.0,0,64.0,
-2014-09-01,-3.6,-12.9,-9.4,-1.7,52695,1016.3,1013.5,1015.0,,13.0,11.0,2.0,,,121.0,SE,0.0,0,63.0,
-2014-09-02,1.8,-4.9,-1.5,-1.8,52695,1013.6,1010.9,1012.2,,11.0,10.0,3.0,,,161.0,N,1.3,1,64.0,
-2014-09-03,0.6,-5.8,-2.0,-1.8,42695,1016.0,1013.2,1014.9,,8.0,7.0,3.0,,,351.0,N,0.0,0,64.0,
-2014-09-04,-3.9,-9.9,-6.3,-1.8,52695,1017.0,1015.2,1016.1,,6.0,5.0,1.0,,,135.0,SE,0.0,0,64.0,
-2014-09-05,-0.1,-8.4,-4.3,-1.8,52695,1015.6,1009.9,1012.4,,11.0,9.0,3.0,,,124.0,SE,1.3,0,63.0,
-2014-09-06,1.5,-2.7,-0.3,-1.7,42695,1009.9,1004.1,1006.6,,37.0,28.0,10.0,,,16.0,SE,4.8,2,65.0,
-2014-09-07,2.4,-1.1,0.4,-1.7,52695,1005.5,1004.1,1004.9,,19.0,16.0,5.0,,,16.0,SE,2.5,5,69.0,
-2014-09-08,1.1,-4.9,-2.1,-1.7,52695,1005.9,1005.0,1005.4,,19.0,16.0,4.0,,,43.0,SE,0.0,0,69.0,
-2014-09-09,3.0,-4.2,-1.8,-1.7,52695,1006.2,1004.2,1005.0,,8.0,7.0,2.0,,,141.0,SE,3.8,0,68.0,
-2014-09-10,-0.6,-8.4,-3.1,-1.7,52695,1006.7,1001.6,1005.2,,6.0,5.0,2.0,,,75.0,SE,0.8,0,68.0,
-2014-09-11,0.0,-9.2,-4.9,-1.8,52695,1001.6,986.0,993.7,,22.0,18.0,3.0,,,44.0,SE,0.0,3,71.0,
-2014-09-12,-0.8,-6.3,-3.0,-1.7,52695,986.3,980.8,982.7,,34.0,28.0,9.0,,,68.0,E,0.0,0,70.0,
-2014-09-13,-1.7,-6.7,-4.6,-1.7,42695,985.3,979.4,983.7,,32.0,25.0,10.0,,,16.0,E,0.0,0,68.0,
-2014-09-14,0.0,-4.4,-2.9,-1.7,22695,981.2,973.0,978.4,,34.0,25.0,8.0,,,148.0,NE,0.0,0,66.0,
-2014-09-15,0.8,-2.4,-0.7,-1.7,22695,976.4,966.1,972.2,,68.0,50.0,24.0,,,36.0,NE,0.3,0,65.0,
-2014-09-16,2.4,-1.0,0.0,-1.7,22695,970.4,963.2,967.9,,61.0,47.0,25.0,,,39.0,NE,0.0,0,65.0,
-2014-09-17,-0.3,-4.4,-2.4,-1.7,22695,974.2,968.1,970.9,,51.0,39.0,14.0,,,29.0,NE,1.5,0,65.0,
-2014-09-18,0.2,-4.7,-3.2,-1.7,22695,989.9,974.3,979.9,,19.0,14.0,4.0,,,19.0,N,1.5,9,75.0,
-2014-09-19,-3.8,-9.8,-7.2,-1.7,22695,1010.5,990.0,1000.9,,16.0,13.0,6.0,,,218.0,SW,0.0,0,71.0,
-2014-09-20,-6.8,-9.7,-8.5,-1.8,22695,1020.0,1010.5,1016.7,,9.0,7.0,2.0,,,226.0,SW,0.0,0,69.0,
-2014-09-21,0.9,-8.4,-5.5,-1.7,22695,1019.7,1007.4,1014.7,,34.0,18.0,6.0,,,116.0,E,0.0,0,68.0,
-2014-09-22,2.4,-1.8,-0.1,-1.7,22695,1007.4,986.3,997.3,,59.0,43.0,19.0,,,37.0,E,0.0,0,66.0,
-2014-09-23,0.9,-1.6,-0.1,-1.7,22695,991.7,985.9,988.2,,55.0,44.0,19.0,,,38.0,N,1.5,1,66.0,
-2014-09-24,-1.3,-6.0,-2.6,-1.6,22695,992.0,988.1,990.7,,32.0,26.0,11.0,,,11.0,N,0.0,1,67.0,
-2014-09-25,-3.9,-9.5,-6.9,-1.6,22695,989.1,984.4,985.6,,28.0,23.0,11.0,,,230.0,SW,0.3,0,66.0,
-2014-09-26,-5.6,-11.0,-8.4,-1.7,22695,987.8,985.0,987.0,,26.0,21.0,10.0,,,118.0,SE,0.0,0,65.0,
-2014-09-27,-0.9,-8.4,-3.6,-1.6,22695,990.6,984.6,987.7,,37.0,28.0,14.0,,,122.0,SE,0.0,0,64.0,
-2014-09-28,-0.6,-7.4,-4.2,-1.7,22695,997.3,988.4,993.2,,44.0,32.0,16.0,,,118.0,E,0.0,0,64.0,
-2014-09-29,-0.8,-5.3,-2.9,-1.7,22695,997.7,995.2,996.6,,27.0,21.0,6.0,,,207.0,N,0.0,0,64.0,
-2014-09-30,-2.3,-6.6,-5.1,-1.7,22695,999.2,994.6,996.2,,12.0,10.0,4.0,,,217.0,W,0.0,0,64.0,
-2014-10-01,-1.1,-6.3,-4.6,-1.7,23691,999.7,991.5,996.9,,15.0,12.0,7.0,,,316.0,SE,2.0,1,65.0,
-2014-10-02,1.7,-1.8,0.3,-1.7,23691,991.7,971.9,985.7,,55.0,39.0,22.0,,,15.0,N,15.2,9,76.0,
-2014-10-03,1.1,-1.7,0.2,-1.7,22691,989.1,969.4,974.3,,45.0,36.0,22.0,,,334.0,N,2.8,0,75.0,
-2014-10-04,3.8,-1.5,0.7,-1.6,23100,996.2,989.0,993.0,,32.0,27.0,13.0,,,16.0,N,0.3,0,74.0,
-2014-10-05,4.1,-0.3,2.0,-1.6,13100,991.4,976.7,983.6,,54.0,42.0,25.0,,,25.0,N,7.6,0,74.0,
-2014-10-06,1.6,-4.9,-0.3,-1.6,13100,984.9,973.2,977.2,,55.0,40.0,20.0,,,14.0,N,3.1,0,73.0,
-2014-10-07,-4.7,-7.4,-6.1,-1.6,23100,991.4,984.9,989.7,,18.0,15.0,8.0,,,210.0,S,0.3,8,86.0,
-2014-10-08,0.1,-7.4,-4.4,-1.7,23100,990.6,969.9,980.8,,29.0,24.0,6.0,,,19.0,NW,2.0,1,84.0,
-2014-10-09,-0.6,-6.5,-2.7,-1.7,43192,969.9,957.4,962.8,,21.0,16.0,6.0,,,243.0,N,1.5,3,87.0,
-2014-10-10,-5.0,-10.7,-7.4,-1.7,53192,975.0,967.0,971.4,,24.0,19.0,7.0,,,319.0,SW,0.5,1,84.0,
-2014-10-11,-4.2,-11.6,-10.2,-1.7,53192,978.6,968.4,976.3,,32.0,25.0,7.0,,,20.0,SW,0.3,0,86.0,
-2014-10-12,1.0,-7.9,-2.1,-1.7,33192,968.4,951.6,958.4,,41.0,34.0,17.0,,,12.0,N,1.5,5,86.0,
-2014-10-13,-7.0,-11.7,-9.4,-1.7,53192,976.2,957.1,964.5,,24.0,21.0,11.0,,,242.0,W,0.0,1,81.0,
-2014-10-14,-3.5,-14.8,-9.9,-1.7,53192,985.3,976.3,983.0,,19.0,17.0,4.0,,,231.0,SW,0.0,0,81.0,
-2014-10-15,0.3,-8.6,-3.5,-1.7,53192,984.1,979.4,980.8,,22.0,16.0,6.0,,,117.0,SE,7.1,8,89.0,
-2014-10-16,6.6,-3.1,-0.4,-1.7,53192,985.8,982.1,984.5,,9.0,7.0,2.0,,,120.0,SE,0.3,0,92.0,
-2014-10-17,-1.0,-6.3,-2.8,-1.7,43192,991.4,984.8,988.3,,21.0,18.0,6.0,,,21.0,N,4.3,7,92.0,
-2014-10-18,4.6,-11.1,-2.5,-1.7,43192,1006.1,991.3,997.4,,17.0,15.0,2.0,,,15.0,SE,0.0,0,90.0,
-2014-10-19,5.6,-2.8,-0.6,-1.7,43192,1009.1,1006.0,1008.3,,25.0,22.0,8.0,,,22.0,SE,0.3,0,87.0,
-2014-10-20,6.8,-1.8,1.7,-1.7,43661,1008.5,992.5,1002.0,,20.0,18.0,9.0,,,52.0,NE,0.0,0,87.0,
-2014-10-21,4.5,-2.3,1.5,-1.6,33661,992.4,975.0,981.0,,37.0,30.0,11.0,,,28.0,NE,1.0,0,81.0,
-2014-10-22,0.2,-7.0,-2.0,-1.7,43692,979.8,963.3,974.3,,45.0,33.0,16.0,,,30.0,NE,0.0,0,89.0,
-2014-10-23,-0.4,-5.6,-3.0,-1.7,33490,970.7,961.2,965.2,,45.0,35.0,19.0,,,29.0,W,1.3,1,78.0,
-2014-10-24,-1.3,-6.1,-4.2,-1.7,53692,972.5,950.7,963.6,,54.0,43.0,13.0,,,23.0,W,0.5,0,78.0,
-2014-10-25,1.6,-3.2,-1.7,-1.7,53692,966.7,955.4,961.8,,34.0,27.0,12.0,,,252.0,W,0.0,0,78.0,
-2014-10-26,0.8,-5.1,-3.3,-1.7,53692,971.3,957.5,963.3,,21.0,17.0,6.0,,,285.0,NW,1.3,0,77.0,
-2014-10-27,-0.1,-12.5,-5.0,-1.7,13692,971.6,963.6,968.5,,38.0,25.0,11.0,,,71.0,E,1.5,0,81.0,
-2014-10-28,0.4,-3.1,-2.0,-1.7,23661,971.5,963.1,965.3,,39.0,31.0,15.0,,,119.0,SE,0.0,1,98.0,
-2014-10-29,-0.1,-4.4,-2.9,-1.5,22660,986.5,971.6,978.6,,29.0,23.0,8.0,,,122.0,E,0.0,0,98.0,
-2014-10-30,-1.5,-5.3,-3.3,-1.4,20660,1000.9,986.5,994.1,,44.0,33.0,15.0,,,120.0,SE,0.0,0,97.0,
-2014-10-31,-2.2,-6.1,-5.0,-1.4,0/6/0,1006.2,996.9,1003.2,,18.0,15.0,7.0,,,235.0,W,0.3,0,96.0,
-2014-11-01,3.3,-4.1,-0.9,-1.5,0/6/0,997.0,986.6,994.2,,30.0,24.0,8.0,,,348.0,NW,0.8,0,94.0,
-2014-11-02,1.0,-1.7,-0.4,-1.4,0/6/0,986.6,964.2,979.5,,48.0,37.0,20.0,,,347.0,NW,4.6,1,98.0,
-2014-11-03,0.7,-5.4,-2.7,-1.5,33690,966.8,960.5,964.2,,43.0,31.0,13.0,,,2.0,NW,3.6,2,96.0,
-2014-11-04,-3.4,-7.2,-5.5,-1.6,53795,979.9,963.4,970.4,,21.0,16.0,7.0,,,258.0,W,0.0,5,100.0,
-2014-11-05,-0.3,-6.7,-4.0,-1.6,13795,983.6,979.9,982.6,,21.0,17.0,7.0,,,20.0,N,0.0,0,99.0,
-2014-11-06,5.4,-3.8,0.4,-1.5,42745,981.5,975.9,978.6,,23.0,16.0,5.0,,,32.0,SE,1.5,2,100.0,
-2014-11-07,7.1,-2.5,1.2,-1.3,42745,977.2,974.4,975.4,,17.0,13.0,3.0,,,73.0,NW,0.0,0,96.0,
-2014-11-08,2.0,-1.3,-0.1,-1.3,53795,984.8,977.2,981.4,,20.0,17.0,7.0,,,17.0,N,0.0,0,94.0,
-2014-11-09,7.2,-1.7,0.6,-1.2,53795,993.4,984.7,990.3,,24.0,20.0,6.0,,,12.0,N,0.0,0,93.0,
-2014-11-10,0.4,-6.3,-2.0,-1.3,53795,991.7,971.1,981.8,,50.0,38.0,13.0,,,73.0,E,0.0,0,90.0,
-2014-11-11,3.6,-1.5,0.4,-1.4,19600,974.8,970.5,973.3,,43.0,32.0,20.0,,,53.0,E,0.0,0,89.0,
-2014-11-12,4.0,-1.0,0.4,-1.3,0/6/0,974.3,972.5,973.1,,30.0,24.0,13.0,,,71.0,E,0.0,0,87.0,
-2014-11-13,2.0,-2.8,-1.3,-1.1,0/6/0,976.4,973.0,974.5,,18.0,16.0,6.0,,,280.0,E,0.0,0,86.0,
-2014-11-14,-2.2,-6.1,-4.9,-1.3,0/6/0,978.4,975.7,977.1,,19.0,16.0,8.0,,,224.0,SW,0.0,0,86.0,
-2014-11-15,2.2,-6.7,-3.6,-1.5,0/6/0,978.2,973.5,975.4,,11.0,10.0,4.0,,,216.0,E,0.0,0,86.0,
-2014-11-16,0.8,-6.6,-3.2,-1.0,0/6/0,979.6,973.2,976.7,,20.0,17.0,6.0,,,41.0,E,0.0,0,85.0,
-2014-11-17,-2.3,-4.4,-3.4,-1.2,0/6/0,976.8,961.8,967.1,,34.0,26.0,15.0,,,116.0,E,0.0,0,84.0,
-2014-11-18,0.3,-4.3,-2.6,-1.2,0/6/0,972.2,961.3,964.3,,20.0,16.0,5.0,,,233.0,SE,0.3,1,84.0,
-2014-11-19,-2.8,-6.3,-5.1,-1.3,0/6/0,984.6,972.2,980.5,,26.0,23.0,12.0,,,247.0,SW,0.0,0,84.0,
-2014-11-20,0.9,-4.5,-1.1,-1.2,0/6/0,982.1,963.6,968.4,,41.0,29.0,13.0,,,119.0,SE,2.0,0,83.0,
-2014-11-21,3.1,-1.7,-0.1,-1.5,0/6/0,973.3,963.6,967.4,,11.0,10.0,3.0,,,334.0,NW,1.8,3,88.0,
-2014-11-22,1.9,-2.8,-1.1,-1.2,0/6/0,986.2,973.3,980.5,,16.0,13.0,4.0,,,323.0,W,1.3,1,89.0,
-2014-11-23,6.2,-3.4,-0.5,-1.2,0/6/0,988.5,986.2,987.7,,8.0,7.0,3.0,,,271.0,W,0.0,0,91.0,
-2014-11-24,3.2,-4.5,0.0,-1.0,0/6/0,988.4,983.7,986.1,,20.0,15.0,6.0,,,117.0,E,0.0,0,86.0,
-2014-11-25,3.8,-2.5,-0.1,-0.9,0/6/0,989.1,983.3,984.8,,15.0,12.0,6.0,,,80.0,E,0.0,0,83.0,
-2014-11-26,2.2,-1.9,0.0,-0.7,0/6/0,999.4,989.1,994.9,,13.0,11.0,5.0,,,24.0,NW,0.0,0,82.0,
-2014-11-27,4.1,-2.4,0.2,-0.5,0/6/0,999.5,984.0,993.0,,41.0,31.0,16.0,,,30.0,NE,0.0,0,80.0,
-2014-11-28,4.3,-0.3,1.7,-0.7,0/6/0,984.1,977.5,981.5,,43.0,35.0,17.0,,,33.0,NE,4.8,0,75.0,
-2014-11-29,1.2,-0.9,-0.4,-0.6,0///0,981.1,978.8,979.8,,34.0,28.0,16.0,,,20.0,NW,0.3,1,79.0,
-2014-11-30,4.7,-1.7,0.1,-0.6,0/6/0,978.8,972.9,975.4,,18.0,15.0,5.0,,,322.0,NW,0.3,0,83.0,
-2014-12-01,0.7,-1.3,-0.5,-0.3,0/6/0,979.4,973.8,976.3,,15.0,12.0,5.0,,,237.0,N,0.0,0,75.0,
-2014-12-02,0.1,-2.9,-1.5,-1.3,0/6/0,980.9,978.4,979.5,,21.0,18.0,8.0,,,221.0,W,1.0,1,76.0,
-2014-12-03,-2.7,-4.5,-3.7,-1.4,0/6/0,989.4,980.2,985.3,,26.0,21.0,14.0,,,224.0,SW,0.0,0,76.0,
-2014-12-04,2.6,-4.4,-2.3,-0.8,0/6/0,990.7,989.1,989.8,,15.0,12.0,5.0,,,233.0,SE,0.0,0,76.0,
-2014-12-05,4.9,-1.5,1.5,-0.5,0/6/0,989.1,974.9,981.5,,18.0,15.0,5.0,,,27.0,NW,0.0,0,75.0,
-2014-12-06,6.4,-0.7,2.0,0.3,0/6/0,975.9,971.7,974.5,,22.0,18.0,4.0,,,30.0,SE,0.0,0,71.0,
-2014-12-07,4.6,-0.7,1.5,-0.1,0/6/0,971.7,967.9,969.4,,8.0,8.0,2.0,,,338.0,NW,0.0,0,68.0,
-2014-12-08,1.9,-1.3,0.2,0.0,0/6/0,980.5,971.6,976.2,,18.0,15.0,5.0,,,252.0,NW,1.3,0,67.0,
-2014-12-09,1.0,-1.4,-0.6,-0.5,0/6/0,983.8,979.4,982.4,,26.0,21.0,8.0,,,23.0,W,0.5,2,67.0,
-2014-12-10,1.8,-0.9,0.3,-0.3,0/6/0,979.4,964.2,968.7,,41.0,32.0,13.0,,,23.0,NW,0.5,0,64.0,
-2014-12-11,4.4,-1.3,0.4,-0.2,83653,968.8,960.1,962.8,,23.0,20.0,6.0,,,20.0,SE,1.8,5,67.0,
-2014-12-12,1.1,-2.0,-1.2,-1.4,83665,984.6,968.8,977.4,,23.0,18.0,12.0,,,230.0,SW,0.0,0,64.0,
-2014-12-13,5.2,-2.5,0.2,-1.4,83665,987.2,983.1,984.6,,17.0,13.0,3.0,,,232.0,SW,0.0,0,64.0,
-2014-12-14,4.2,-1.3,0.5,-1.4,83695,987.4,979.6,983.3,,11.0,8.0,3.0,,,122.0,SE,0.8,0,62.0,
-2014-12-15,2.6,-0.6,1.2,-1.5,136/4,986.6,978.4,982.7,,25.0,18.0,8.0,,,1.0,N,4.1,1,61.0,
-2014-12-16,6.0,-0.3,1.5,-1.6,136/5,986.8,981.7,984.1,,14.0,11.0,3.0,,,117.0,SE,0.0,0,58.0,
-2014-12-17,2.6,-0.4,0.4,-1.5,134/5,981.9,981.1,981.5,,9.0,7.0,3.0,,,243.0,W,0.5,1,55.0,
-2014-12-18,5.8,-1.1,1.2,-1.5,83655,981.6,980.2,980.8,,6.0,5.0,2.0,,,306.0,S,0.0,0,53.0,
-2014-12-19,5.9,-2.5,1.8,-1.5,83665,985.0,981.6,982.9,,7.0,5.0,2.0,,,324.0,NW,0.0,0,49.0,
-2014-12-20,4.3,-3.5,0.6,-1.4,83665,991.4,984.9,988.0,,10.0,8.0,3.0,,,274.0,NE,0.0,0,44.0,
-2014-12-21,1.7,-1.2,-0.1,-1.5,83665,996.4,991.4,994.1,,11.0,9.0,3.0,,,227.0,NW,0.0,0,41.0,
-2014-12-22,4.1,-0.7,1.3,-1.3,33661,996.0,975.2,986.6,,19.0,15.0,6.0,,,76.0,SE,0.0,0,41.0,
-2014-12-23,4.1,0.6,2.0,-0.9,1/6/0,975.2,968.0,970.4,,31.0,24.0,10.0,,,58.0,E,0.0,0,38.0,
-2014-12-24,6.1,-0.5,2.4,-0.7,0/6/0,974.4,969.9,972.1,,8.0,6.0,2.0,,,323.0,N,0.0,0,37.0,
-2014-12-25,5.1,-0.1,1.3,0.3,0/6/0,977.0,974.4,975.9,,29.0,25.0,8.0,,,15.0,N,0.0,0,28.0,
-2014-12-26,1.8,-1.6,-0.2,-0.1,0/6/0,976.0,972.8,974.4,,26.0,23.0,6.0,,,242.0,NW,2.5,0,28.0,
-2014-12-27,-0.1,-1.6,-0.8,0.0,0/6/0,992.0,975.9,984.6,,29.0,25.0,14.0,,,233.0,SW,0.0,2,30.0,
-2014-12-28,1.3,-2.2,-0.2,-0.1,0/6/0,992.8,987.9,990.0,,16.0,13.0,6.0,,,14.0,NW,2.5,2,32.0,
-2014-12-29,3.4,-0.7,0.8,-0.9,0/6/0,1001.8,992.8,997.6,,10.0,7.0,3.0,,,213.0,SW,0.0,0,30.0,
-2014-12-30,3.4,-1.0,0.8,-0.9,0/6/0,1009.2,1001.7,1005.0,,5.0,5.0,2.0,,,251.0,SW,0.0,0,30.0,
-2014-12-31,1.5,-0.6,0.1,-0.3,0/6/0,1012.3,1009.2,1011.3,,13.0,12.0,6.0,,,240.0,SW,0.0,0,26.0,
-2015-01-01,2.6,-0.9,0.1,-0.2,0/6/0,1011.8,1009.4,1010.4,,10.0,8.0,3.0,,,244.0,SW,0.0,0,22.0,
-2015-01-02,0.9,-2.2,-0.9,0.1,0/6/0,1009.6,1006.2,1008.5,,11.0,9.0,3.0,,,229.0,SW,0.0,0,20.0,
-2015-01-03,2.9,-0.8,0.4,0.1,0/6/0,1006.2,993.9,1000.3,,16.0,13.0,4.0,,,225.0,SW,0.0,0,20.0,
-2015-01-04,3.8,-2.1,0.2,0.2,0/6/0,993.9,985.2,989.2,,11.0,10.0,4.0,,,118.0,SE,0.0,0,20.0,
-2015-01-05,4.6,0.4,1.9,0.0,0/6/0,985.2,981.7,983.1,,15.0,10.0,3.0,,,348.0,NW,0.8,0,17.0,
-2015-01-06,7.9,1.0,3.1,0.4,0/6/0,985.2,981.2,982.6,,15.0,11.0,3.0,,,281.0,W,0.0,0,10.0,
-2015-01-07,4.2,0.5,1.5,0.4,0/6/0,991.8,985.1,987.8,,23.0,17.0,5.0,,,30.0,N,0.0,0,5.0,
-2015-01-08,2.8,-0.9,0.5,0.4,0/6/0,995.4,991.8,994.6,,13.0,11.0,4.0,,,19.0,NW,0.0,0,2.0,
-2015-01-09,2.3,-0.3,0.7,0.5,0/6/0,994.4,986.8,990.9,,9.0,7.0,3.0,,,329.0,SE,0.0,0,0.0,
-2015-01-10,3.5,-0.2,1.2,0.7,0/6/0,986.8,982.7,983.9,,9.0,8.0,2.0,,,125.0,SE,0.0,0,0.0,
-2015-01-11,4.4,0.1,1.6,0.5,0/6/0,986.8,982.9,984.3,,7.0,6.0,2.0,,,299.0,NW,0.0,0,0.0,
-2015-01-12,2.7,0.0,0.8,1.1,0/6/0,990.5,986.8,989.1,,10.0,9.0,4.0,,,316.0,NW,2.0,1,0.0,
-2015-01-13,4.6,0.2,1.3,1.2,0/6/0,993.9,990.3,992.1,,9.0,8.0,3.0,,,279.0,NW,0.0,0,0.0,
-2015-01-14,3.8,0.2,1.8,1.0,0/6/0,993.5,980.4,987.2,,16.0,14.0,5.0,,,18.0,NW,0.8,1,0.0,
-2015-01-15,4.8,0.2,2.3,1.2,0/6/0,988.2,979.1,982.6,,23.0,16.0,8.0,,,223.0,E,0.0,0,0.0,
-2015-01-16,4.5,-0.3,1.0,1.8,0/6/0,998.5,988.2,992.9,,25.0,19.0,9.0,,,120.0,SW,0.0,0,0.0,
-2015-01-17,5.1,-1.3,1.1,1.7,0/7/0,1000.6,996.2,999.4,,16.0,13.0,5.0,,,206.0,NE,0.0,0,0.0,
-2015-01-18,1.2,-0.4,0.4,2.2,0/7/0,996.4,993.1,994.7,,21.0,18.0,8.0,,,233.0,SW,0.0,0,0.0,
-2015-01-19,2.5,-0.1,0.8,1.7,0/7/0,996.3,977.4,988.0,,26.0,18.0,7.0,,,358.0,SE,7.6,0,0.0,
-2015-01-20,2.9,0.5,1.4,1.2,0/7/0,985.8,977.2,982.7,,28.0,22.0,12.0,,,242.0,SW,0.8,0,0.0,
-2015-01-21,5.8,0.8,2.5,0.6,0/7/0,985.6,975.5,979.6,,16.0,14.0,5.0,,,335.0,SE,0.0,0,0.0,
-2015-01-22,5.2,1.2,2.6,0.8,0/7/0,979.0,974.5,977.0,,26.0,22.0,5.0,,,18.0,SE,21.3,0,0.0,
-2015-01-23,4.8,0.5,2.2,-0.5,0/7/0,990.0,978.7,984.3,,45.0,26.0,13.0,,,56.0,NW,3.8,0,0.0,
-2015-01-24,3.0,0.6,1.4,0.5,0/7/0,993.1,979.8,989.1,,35.0,23.0,13.0,,,309.0,NW,0.8,0,0.0,
-2015-01-25,4.4,-0.6,1.6,0.5,0/7/0,993.4,990.7,992.5,,24.0,15.0,8.0,,,137.0,SE,0.0,0,0.0,
-2015-01-26,6.9,2.1,4.5,0.5,0/7/0,990.8,984.3,988.2,,39.0,31.0,9.0,,,23.0,NE,0.3,0,0.0,
-2015-01-27,6.1,0.9,3.2,0.7,0/7/0,989.9,983.0,986.9,,45.0,35.0,17.0,,,22.0,N,2.5,0,0.0,
-2015-01-28,5.3,1.1,2.4,0.9,0/7/0,992.0,989.5,990.7,,23.0,19.0,8.0,,,340.0,N,5.1,0,0.0,
-2015-01-29,5.9,2.2,4.0,0.1,0/7/0,990.1,985.1,988.0,,40.0,34.0,14.0,,,23.0,N,5.8,0,0.0,
-2015-01-30,7.0,1.4,3.2,0.5,0/7/0,989.9,985.0,987.4,,30.0,26.0,5.0,,,20.0,SE,0.0,0,0.0,
-2015-01-31,5.9,2.1,4.2,0.7,0/7/0,985.0,980.1,981.8,,42.0,33.0,16.0,,,34.0,N,1.8,0,0.0,
-2015-02-01,4.5,1.3,2.9,0.7,0/7/0,981.8,974.3,979.9,,25.0,22.0,11.0,,,23.0,N,1.5,0,0.0,
-2015-02-02,3.4,0.6,1.4,0.5,0/6/0,985.8,973.1,978.3,,21.0,16.0,6.0,,,227.0,NW,2.5,0,0.0,
-2015-02-03,5.1,0.6,1.6,0.7,0/7/0,1001.5,985.8,995.7,,24.0,19.0,10.0,,,238.0,SW,0.0,0,0.0,
-2015-02-04,5.6,-1.3,1.7,0.8,0/7/0,1001.8,989.0,996.3,,40.0,26.0,8.0,,,76.0,SE,9.9,0,0.0,
-2015-02-05,6.9,1.4,4.7,0.8,0/7/0,993.9,986.3,989.9,,65.0,49.0,24.0,,,29.0,NE,5.3,0,0.0,
-2015-02-06,4.5,2.5,3.3,0.8,0/6/0,987.3,977.4,981.7,,52.0,40.0,29.0,,,16.0,N,5.6,0,0.0,
-2015-02-07,4.0,1.3,2.5,0.1,0/7/0,981.3,976.9,980.0,,40.0,33.0,15.0,,,12.0,N,3.3,0,0.0,
-2015-02-08,2.3,0.2,1.1,0.6,0/6/0,989.9,981.3,985.7,,16.0,13.0,4.0,,,250.0,NW,0.0,0,0.0,
-2015-02-09,1.6,-0.9,0.3,0.0,0/7/0,990.0,975.2,984.5,,17.0,14.0,7.0,,,285.0,N,0.5,1,0.0,
-2015-02-10,5.2,-0.1,2.9,0.6,0/7/0,975.2,968.2,970.1,,34.0,25.0,10.0,,,43.0,E,0.0,0,0.0,
-2015-02-11,5.6,0.4,2.3,-0.1,0/7/0,980.8,970.9,975.2,,11.0,9.0,3.0,,,121.0,SE,0.0,0,0.0,
-2015-02-12,1.7,-0.3,0.4,0.3,0/7/0,987.7,980.8,982.8,,11.0,10.0,5.0,,,244.0,NW,2.3,1,0.0,
-2015-02-13,2.9,0.3,1.4,0.7,0/7/0,999.8,987.7,995.0,,23.0,19.0,9.0,,,235.0,SW,0.0,0,0.0,
-2015-02-14,6.4,0.2,2.9,0.9,0/7/0,999.8,982.8,993.0,,53.0,40.0,11.0,,,28.0,NE,0.0,0,0.0,
-2015-02-15,5.5,2.4,3.7,1.0,0/7/0,984.3,974.5,980.6,,52.0,41.0,20.0,,,21.0,N,2.0,0,0.0,
-2015-02-16,3.2,1.9,2.6,0.7,0/7/0,988.7,980.6,985.3,,32.0,24.0,18.0,,,355.0,N,0.5,0,0.0,
-2015-02-17,4.1,-1.0,1.9,0.4,0/7/0,988.1,986.5,987.3,,28.0,23.0,5.0,,,21.0,N,1.0,0,0.0,
-2015-02-18,4.6,0.5,2.7,0.5,0/7/0,993.5,986.7,989.6,,25.0,22.0,6.0,,,21.0,NE,0.0,0,0.0,
-2015-02-19,1.5,-0.5,0.2,0.9,0/7/0,996.5,993.5,995.5,,12.0,10.0,4.0,,,243.0,SW,0.0,0,0.0,
-2015-02-20,1.6,-1.6,-0.1,0.36,0///0,995.5,988.6,991.3,,24.0,21.0,7.0,,,19.0,SE,1.8,5,0.0,
-2015-02-21,3.5,-1.2,1.8,0.5,0/7/0,990.0,976.7,981.5,,43.0,34.0,13.0,,,29.0,N,0.0,0,0.0,
-2015-02-22,3.5,0.3,1.5,0.4,0/7/0,979.1,975.4,977.2,,24.0,19.0,6.0,,,41.0,SW,0.0,0,0.0,
-2015-02-23,0.8,-1.0,0.0,0.5,0/6/0,978.3,974.9,976.3,,27.0,23.0,11.0,,,236.0,SW,0.5,0,0.0,
-2015-02-24,0.7,-1.5,0.0,0.5,0/7/0,992.0,977.9,984.1,,67.0,30.0,19.0,,,241.0,SW,0.0,1,0.0,
-2015-02-25,0.7,-1.1,0.1,0.5,0/6/0,992.7,979.0,986.3,,33.0,27.0,9.0,,,262.0,SE,3.6,1,0.0,
-2015-02-26,0.8,-0.5,0.1,-1.0,0/6/0,989.8,979.0,984.0,,24.0,20.0,10.0,,,235.0,SW,0.5,4,0.0,
-2015-02-27,1.2,-3.2,-0.8,-0.2,0/6/0,992.1,984.2,989.4,,26.0,21.0,7.0,,,28.0,NE,0.8,0,0.0,
-2015-02-28,0.9,-1.0,-0.2,0.3,0/6/0,986.2,981.2,983.0,,17.0,12.0,4.0,,,98.0,SE,0.8,1,0.0,
-2015-03-01,4.8,-1.0,1.2,0.0,0/6/0,992.4,986.0,990.5,,23.0,19.0,5.0,,,15.0,SE,1.3,2,0.0,
-2015-03-02,3.2,-1.5,0.7,0.3,0/6/0,989.0,977.7,981.1,,23.0,17.0,4.0,,,70.0,E,0.5,0,0.0,
-2015-03-03,3.2,0.1,1.3,0.5,0/6/0,979.0,977.1,977.9,,25.0,18.0,5.0,,,113.0,NW,0.0,0,0.0,
-2015-03-04,1.9,-0.4,0.4,0.4,0/6/0,984.8,979.0,982.4,,32.0,27.0,6.0,,,20.0,NE,0.3,0,0.0,
-2015-03-05,3.1,-0.2,0.7,0.2,0/6/0,987.1,984.1,986.0,,29.0,24.0,7.0,,,26.0,N,0.0,0,0.0,
-2015-03-06,1.6,-1.7,-0.2,-0.1,0/7/0,990.7,984.8,987.9,,10.0,8.0,3.0,,,354.0,N,0.0,0,0.0,
-2015-03-07,1.9,-1.3,0.1,-0.9,0/7/0,991.1,981.2,988.5,,17.0,14.0,7.0,,,325.0,N,0.0,0,0.0,
-2015-03-08,1.9,-1.1,0.4,-0.1,0/7/0,981.1,973.3,975.1,,19.0,14.0,3.0,,,105.0,N,6.6,8,0.0,
-2015-03-09,0.8,-1.0,0.1,-0.1,0/6/0,986.2,975.7,981.7,,9.0,8.0,4.0,,,241.0,NW,0.8,0,3.0,
-2015-03-10,0.5,-1.5,-0.6,-0.1,0/6/0,985.9,978.9,981.9,,12.0,10.0,4.0,,,321.0,NW,1.3,0,2.0,
-2015-03-11,3.0,-2.6,0.0,-0.3,0/6/0,995.5,984.3,992.1,,17.0,12.0,4.0,,,56.0,E,1.3,3,4.0,
-2015-03-12,5.9,1.1,3.8,0.5,0/6/0,992.3,977.9,981.7,,61.0,47.0,30.0,,,49.0,NE,6.9,0,2.0,
-2015-03-13,4.8,1.1,3.0,0.6,0/6/0,978.8,970.0,976.0,,42.0,34.0,14.0,,,43.0,NE,1.3,0,0.0,
-2015-03-14,1.4,-1.7,0.1,0.2,0/7/0,978.3,970.0,973.9,,23.0,19.0,10.0,,,314.0,SW,1.8,0,0.0,
-2015-03-15,0.6,-2.4,-0.7,0.0,0/6/0,986.8,978.3,983.0,,27.0,23.0,11.0,,,61.0,SW,0.0,0,0.0,
-2015-03-16,3.8,-1.1,1.5,0.4,0/6/0,984.1,958.4,967.6,,59.0,45.0,27.0,,,53.0,NE,3.6,0,0.0,
-2015-03-17,2.2,-0.4,1.2,0.5,0/6/0,965.6,960.3,963.0,,42.0,34.0,19.0,,,53.0,N,0.0,0,0.0,
-2015-03-18,1.0,-1.6,-0.6,0.1,0/6/0,975.6,965.7,972.1,,22.0,17.0,10.0,,,249.0,W,1.8,2,2.0,
-2015-03-19,0.1,-2.1,-0.6,0.1,0/6/0,977.0,965.4,970.5,,28.0,24.0,11.0,,,208.0,SW,0.0,0,1.0,
-2015-03-20,-0.2,-2.9,-1.3,-0.3,0/6/0,992.6,977.0,985.1,,42.0,21.0,10.0,,,201.0,SW,1.3,2,3.0,
-2015-03-21,1.9,-4.1,-1.6,0.0,0/6/0,997.4,992.7,995.7,,21.0,17.0,6.0,,,126.0,E,1.3,0,2.0,
-2015-03-22,2.2,-0.9,-0.1,0.2,0/6/0,1006.7,992.9,997.5,,17.0,14.0,3.0,,,133.0,SE,1.3,5,6.0,
-2015-03-23,2.2,-0.8,0.6,-0.1,0/6/0,1012.7,1006.5,1011.0,,17.0,13.0,4.0,,,124.0,SE,4.6,0,4.0,
-2015-03-24,8.9,1.0,3.8,0.2,0/6/0,1011.6,987.8,1000.0,,59.0,46.0,24.0,,,54.0,NE,4.3,0,0.0,
-2015-03-25,1.7,-0.1,1.0,0.4,0/6/0,1015.7,1003.4,1011.3,,35.0,26.0,14.0,,,251.0,W,0.3,0,0.0,
-2015-03-26,1.8,0.0,0.9,0.2,0/6/0,1012.1,999.4,1006.4,,28.0,22.0,11.0,,,26.0,NW,11.9,1,0.0,
-2015-03-27,2.0,-0.7,0.6,-1.0,0/6/0,999.6,992.1,994.3,,31.0,23.0,12.0,,,26.0,SW,7.6,3,0.0,
-2015-03-28,0.0,-0.9,-0.6,-0.5,0/6/0,1001.6,996.0,999.3,,23.0,19.0,12.0,,,204.0,SW,0.0,0,0.0,
-2015-03-29,-0.2,-2.4,-1.2,-0.5,0/6/0,1000.6,989.6,995.6,,18.0,13.0,5.0,,,68.0,NE,0.0,0,0.0,
-2015-03-30,2.8,-2.3,0.2,-0.4,0/6/0,989.5,975.4,980.5,,35.0,26.0,8.0,,,44.0,SE,1.0,1,0.0,
-2015-03-31,2.9,0.6,1.5,-0.6,0/6/0,978.4,969.3,973.6,,42.0,31.0,18.0,,,57.0,NE,1.5,0,0.0,
-2015-04-01,1.9,-0.3,0.9,-0.5,0/6/0,970.6,966.8,968.8,,33.0,28.0,15.0,,,41.0,NE,1.0,2,0.0,
-2015-04-02,1.8,-2.4,-0.9,-0.5,0/6/0,970.6,968.5,969.3,,12.0,10.0,5.0,,,184.0,E,0.0,0,0.0,
-2015-04-03,2.4,-3.3,-1.0,-0.4,0/6/0,978.1,969.5,973.0,,24.0,18.0,7.0,,,129.0,SE,0.0,0,0.0,
-2015-04-04,-0.8,-3.3,-1.6,-0.7,0/6/0,987.4,978.0,983.6,,21.0,18.0,9.0,,,206.0,SW,0.0,0,0.0,
-2015-04-05,0.2,-3.4,-1.2,-0.3,0/6/0,996.2,983.2,987.6,,23.0,18.0,6.0,,,206.0,SW,3.1,6,6.0,
-2015-04-06,0.1,-2.7,-1.1,-0.4,0/6/0,1005.8,996.2,1002.6,,26.0,21.0,12.0,,,209.0,SW,0.0,1,8.0,
-2015-04-07,0.4,-3.6,-1.7,-1.4,0/6/0,1010.1,1005.6,1008.5,,7.0,6.0,3.0,,,310.0,E,0.0,0,7.0,
-2015-04-08,0.0,-3.0,-1.4,-1.3,0/6/0,1009.4,1003.2,1006.8,,9.0,8.0,3.0,,,148.0,SE,0.0,0,6.0,
-2015-04-09,6.0,-3.0,0.0,-1.1,0/6/0,1003.2,992.3,998.1,,35.0,29.0,5.0,,,51.0,SE,2.8,0,4.0,
-2015-04-10,6.1,2.2,4.2,-0.4,0/6/0,993.2,984.8,990.2,,44.0,34.0,21.0,,,54.0,NE,2.0,0,0.0,
-2015-04-11,2.4,-4.5,-0.1,-0.1,0/6/0,993.8,980.0,983.8,,40.0,31.0,18.0,,,29.0,N,5.1,0,0.0,
-2015-04-12,-1.2,-5.2,-3.9,-0.2,0/6/0,1004.7,993.9,1000.8,,34.0,27.0,15.0,,,197.0,S,0.3,0,2.0,
-2015-04-13,-0.2,-2.7,-1.3,-0.5,0/6/0,1000.1,984.6,991.3,,32.0,27.0,13.0,,,213.0,SW,3.3,3,10.0,
-2015-04-14,-1.8,-3.2,-2.4,-0.7,0/6/0,995.4,979.8,985.5,,34.0,28.0,15.0,,,204.0,SW,0.5,3,12.0,
-2015-04-15,1.4,-3.2,-1.2,-0.8,0/6/0,997.7,980.3,991.3,,28.0,22.0,10.0,,,43.0,NE,0.8,0,9.0,
-2015-04-16,1.2,-2.7,-0.4,-1.3,0/6/0,980.3,973.8,975.9,,32.0,25.0,16.0,,,354.0,SW,5.6,3,12.0,
-2015-04-17,-0.1,-3.2,-1.4,-1.1,0/6/0,980.5,975.5,976.4,,13.0,11.0,5.0,,,353.0,SE,1.8,6,29.0,
-2015-04-18,3.1,-1.7,-0.5,-1.4,0/6/0,983.6,973.3,980.2,,29.0,20.0,7.0,,,62.0,SE,1.5,7,34.0,
-2015-04-19,3.3,-2.3,0.7,-0.6,0/6/0,977.8,966.7,970.7,,42.0,31.0,18.0,,,66.0,NE,1.5,2,29.0,
-2015-04-20,1.5,-2.6,-0.7,-0.9,0/6/0,979.7,962.5,974.9,,55.0,40.0,14.0,,,71.0,E,0.8,2,25.0,
-2015-04-21,1.7,-1.5,0.1,-0.5,0/6/0,966.3,960.9,963.4,,51.0,41.0,13.0,,,66.0,NE,1.0,1,25.0,
-2015-04-22,-0.7,-2.6,-1.5,-0.8,0/6/0,970.2,962.5,967.8,,21.0,18.0,8.0,,,332.0,NW,0.8,2,27.0,
-2015-04-23,-1.4,-3.7,-2.5,-1.5,0/6/0,981.8,970.1,973.4,,15.0,12.0,5.0,,,288.0,NE,1.8,5,32.0,
-2015-04-24,0.6,-3.1,-1.6,-1.1,0/6/0,988.8,981.9,986.6,,25.0,19.0,9.0,,,43.0,SW,3.3,0,28.0,
-2015-04-25,0.2,-2.7,-1.4,-1.4,0/6/0,997.7,988.6,994.7,,15.0,12.0,5.0,,,131.0,N,0.0,7,38.0,
-2015-04-26,2.4,-1.6,0.2,-1.1,0/6/0,1007.0,992.6,997.8,,44.0,35.0,14.0,,,51.0,NE,7.4,4,40.0,
-2015-04-27,3.6,-1.3,0.0,-1.2,0/6/0,1012.0,1007.0,1010.4,,23.0,18.0,7.0,,,49.0,SE,2.3,2,40.0,
-2015-04-28,7.8,0.7,3.7,-1.0,0/6/0,1009.6,988.3,999.1,,50.0,40.0,15.0,,,54.0,NE,0.0,0,35.0,
-2015-04-29,4.3,2.3,3.0,-0.5,0/6/0,991.1,985.4,988.1,,56.0,45.0,25.0,,,49.0,N,4.1,0,12.0,
-2015-04-30,4.7,1.9,3.0,-1.1,0/6/0,995.9,991.0,993.7,,34.0,26.0,16.0,,,70.0,N,1.5,0,5.0,
-2015-05-01,4.2,-0.8,2.1,-0.5,0/6/0,993.9,990.8,992.5,,39.0,29.0,10.0,,,63.0,NE,1.3,0,0.0,
-2015-05-02,0.2,-5.0,-2.3,-0.5,0/6/0,990.8,978.5,984.7,,8.0,7.0,3.0,,,195.0,SE,0.0,0,0.0,
-2015-05-03,-1.0,-5.1,-3.4,-0.8,0/6/0,981.5,978.4,980.0,,22.0,18.0,5.0,,,202.0,N,0.0,0,0.0,
-2015-05-04,0.0,-3.3,-2.2,-0.7,0/6/0,993.9,979.5,985.4,,17.0,15.0,5.0,,,201.0,S,0.0,0,0.0,
-2015-05-05,-0.2,-2.2,-1.3,-0.9,0/6/0,999.6,993.9,997.5,,19.0,17.0,8.0,,,210.0,SW,0.8,0,0.0,
-2015-05-06,-0.6,-2.8,-1.4,-1.4,0/6/0,1007.8,999.6,1005.8,,8.0,6.0,3.0,,,312.0,W,0.3,1,1.0,
-2015-05-07,-0.6,-4.6,-2.0,-1.5,0/6/0,1017.5,1007.4,1011.6,,0.0,1.0,1.0,,,319.0,NW,0.0,0,3.0,
-2015-05-08,-3.2,-5.2,-4.2,-1.3,0/6/0,1021.9,1017.5,1020.6,,6.0,6.0,1.0,,,123.0,SE,0.0,0,3.0,
-2015-05-09,1.7,-4.3,-2.2,-1.1,0/6/0,1021.9,1018.2,1020.1,,27.0,23.0,5.0,,,51.0,SE,0.0,0,2.0,
-2015-05-10,3.9,-1.2,0.6,-1.1,0/6/0,1018.8,1011.8,1015.2,,24.0,14.0,5.0,,,144.0,SE,2.8,1,2.0,
-2015-05-11,5.0,-1.0,1.4,-0.9,0/6/0,1011.8,997.5,1002.4,,21.0,16.0,5.0,,,288.0,SE,5.1,0,3.0,
-2015-05-12,0.8,-2.1,-0.7,-1.2,0/6/0,1005.0,998.1,1002.5,,11.0,10.0,4.0,,,130.0,SE,0.0,1,4.0,
-2015-05-13,4.4,-1.7,1.5,-1.2,0/6/0,998.1,976.6,987.7,,30.0,23.0,9.0,,,125.0,SE,1.0,0,3.0,
-2015-05-14,3.2,-0.6,0.8,-0.6,0/6/0,973.4,971.2,972.1,,37.0,28.0,4.0,,,91.0,NW,0.5,0,2.0,
-2015-05-15,0.0,-1.4,-0.5,-1.0,0/6/0,974.9,971.9,973.7,,6.0,5.0,2.0,,,325.0,SE,0.3,4,6.0,
-2015-05-16,0.1,-1.4,-0.6,-0.9,0/6/0,975.8,970.4,973.7,,34.0,27.0,11.0,,,93.0,SE,0.0,0,4.0,
-2015-05-17,1.2,-1.6,-0.4,-0.5,0/6/0,980.2,970.0,974.7,,46.0,37.0,15.0,,,64.0,SE,0.0,0,4.0,
-2015-05-18,-0.2,-3.9,-2.5,-0.7,0/6/0,992.4,980.1,987.2,,26.0,19.0,8.0,,,232.0,SW,1.5,3,7.0,
-2015-05-19,-3.0,-5.4,-3.6,-1.1,0/6/0,1003.4,992.5,999.1,,19.0,15.0,7.0,,,199.0,SW,0.0,1,10.0,
-2015-05-20,3.5,-5.4,-2.5,-1.1,0/6/0,1002.7,970.6,987.9,,35.0,22.0,7.0,,,83.0,SE,0.0,0,10.0,
-2015-05-21,3.4,-3.1,0.1,-0.5,0/6/0,970.8,956.6,961.2,,28.0,19.0,9.0,,,125.0,SE,5.6,0,10.0,
-2015-05-22,-1.2,-5.2,-3.1,-0.6,0/6/0,961.3,958.5,959.2,,32.0,26.0,8.0,,,210.0,SW,2.3,8,18.0,
-2015-05-23,-5.0,-9.1,-6.8,-1.1,0/6/0,964.0,956.9,959.4,,32.0,24.0,12.0,,,127.0,SE,0.0,0,23.0,
-2015-05-24,-5.8,-10.0,-8.5,-1.1,0/6/0,979.7,964.1,971.8,,21.0,16.0,7.0,,,133.0,SE,0.0,0,23.0,
-2015-05-25,-2.6,-5.8,-3.6,-1.1,0/6/0,993.4,979.6,986.5,,28.0,20.0,7.0,,,133.0,S,0.0,0,20.0,
-2015-05-26,-3.5,-5.4,-4.3,-1.2,0/6/0,1002.4,993.4,999.0,,12.0,10.0,4.0,,,45.0,E,0.0,0,19.0,
-2015-05-27,-3.6,-4.6,-4.0,-1.4,0/6/0,1002.6,1001.3,1002.1,,12.0,9.0,3.0,,,216.0,SW,0.0,0,18.0,
-2015-05-28,-2.8,-6.2,-4.8,-1.4,0/6/0,1000.8,985.9,995.3,,14.0,11.0,4.0,,,127.0,SE,0.0,0,18.0,
-2015-05-29,-1.4,-12.6,-8.8,-1.5,0/8/0,987.3,980.6,984.5,,38.0,28.0,17.0,,,184.0,SW,0.0,0,19.0,
-2015-05-30,-7.3,-12.6,-8.7,-1.2,0/8/0,991.4,985.2,989.8,,31.0,24.0,14.0,,,187.0,SW,0.0,0,19.0,
-2015-05-31,-3.9,-12.1,-7.0,-1.2,0/8/0,991.1,979.4,984.2,,32.0,24.0,9.0,,,207.0,SW,0.0,0,18.0,
-2015-06-01,-8.3,-11.0,-9.2,-1.7,0/8/0,987.6,979.9,985.3,,37.0,30.0,11.0,,,182.0,SW,0.0,0,20.0,
-2015-06-02,-7.8,-10.8,-9.5,-1.6,0/9/0,987.6,981.4,984.3,,20.0,16.0,6.0,,,190.0,SW,0.0,0,18.0,
-2015-06-03,-8.1,-10.6,-9.1,-1.7,0/9/0,994.7,982.2,987.4,,24.0,17.0,9.0,,,215.0,SW,0.0,0,18.0,
-2015-06-04,-8.4,-9.7,-9.1,-1.7,0/9/0,1001.8,994.7,999.3,,16.0,12.0,6.0,,,216.0,SW,0.0,2,20.0,
-2015-06-05,-5.6,-12.0,-8.4,-1.7,0/9/0,1001.8,996.3,999.4,,21.0,17.0,7.0,,,179.0,SE,0.0,6,26.0,
-2015-06-06,-1.6,-12.4,-5.6,-1.7,0/9/0,1001.8,974.9,987.4,,55.0,42.0,15.0,,,57.0,NE,0.0,0,26.0,
-2015-06-07,-1.8,-5.0,-3.8,-1.4,0/9/0,992.5,975.5,986.7,,41.0,32.0,10.0,,,124.0,SE,0.0,2,19.0,
-2015-06-08,-1.0,-3.4,-2.0,-1.7,0/9/0,989.5,976.3,982.8,,33.0,25.0,11.0,,,51.0,NE,0.0,5,25.0,
-2015-06-09,-2.1,-7.4,-5.2,-1.4,0/9/0,978.6,964.3,972.2,,60.0,47.0,19.0,,,56.0,SW,0.0,0,19.0,
-2015-06-10,-5.5,-12.5,-9.1,-1.7,01900,973.3,969.0,970.3,,35.0,27.0,15.0,,,199.0,SW,0.0,0,19.0,
-2015-06-11,-9.3,-10.5,-9.9,-1.7,01900,984.5,973.4,979.2,,25.0,19.0,10.0,,,190.0,S,0.0,0,19.0,
-2015-06-12,-8.4,-10.4,-9.2,-1.7,01900,987.5,984.5,986.5,,12.0,9.0,4.0,,,188.0,NE,0.0,0,18.0,
-2015-06-13,-7.2,-9.6,-8.2,-1.7,0/9/0,986.0,979.8,982.6,,19.0,16.0,5.0,,,66.0,E,0.0,0,18.0,
-2015-06-14,-6.2,-9.7,-8.2,-1.8,0/9/0,985.3,979.6,982.0,,12.0,8.0,4.0,,,68.0,E,0.0,0,18.0,
-2015-06-15,-7.7,-10.3,-8.9,-1.8,0/9/0,987.8,985.2,986.6,,11.0,9.0,5.0,,,98.0,E,0.0,0,18.0,
-2015-06-16,-8.7,-10.7,-10.1,-1.7,0/9/0,990.3,987.8,989.2,,12.0,10.0,3.0,,,93.0,E,0.0,0,18.0,
-2015-06-17,-6.9,-11.1,-8.4,-1.7,01900,987.8,982.0,984.0,,32.0,25.0,9.0,,,175.0,S,0.0,0,18.0,
-2015-06-18,-6.0,-9.7,-8.0,-1.7,01900,994.7,984.1,990.7,,33.0,25.0,12.0,,,75.0,E,0.0,0,18.0,
-2015-06-19,-1.4,-7.3,-4.6,-1.8,01900,994.5,984.5,988.0,,35.0,28.0,15.0,,,127.0,SE,0.0,0,18.0,
-2015-06-20,-2.1,-7.0,-4.1,-1.7,0/9/0,990.0,986.2,988.3,,22.0,19.0,8.0,,,202.0,S,0.0,1,19.0,
-2015-06-21,-4.0,-7.5,-5.7,-1.7,0/9/0,992.6,989.2,990.5,,16.0,13.0,5.0,,,73.0,E,0.0,0,19.0,
-2015-06-22,-2.8,-8.8,-5.9,-1.7,0/9/0,993.5,976.6,989.2,,31.0,23.0,9.0,,,116.0,SE,0.0,1,20.0,
-2015-06-23,1.8,-3.5,-0.2,-1.3,0/9/0,977.1,963.9,967.0,,44.0,37.0,21.0,,,53.0,NE,0.0,2,22.0,
-2015-06-24,1.4,-2.0,-0.6,-1.0,0/9/0,988.1,965.2,975.1,,47.0,39.0,24.0,,,47.0,NE,0.0,0,21.0,
-2015-06-25,3.3,-2.0,-0.6,-1.4,0/8/0,991.6,974.8,986.9,,40.0,31.0,15.0,,,72.0,NE,0.0,0,21.0,
-2015-06-26,3.5,-2.5,0.1,-0.9,0/8/0,979.8,970.1,974.7,,38.0,30.0,18.0,,,58.0,NE,0.0,0,21.0,
-2015-06-27,1.3,-2.9,-0.8,-1.1,0/8/0,973.8,953.0,962.2,,46.0,35.0,18.0,,,59.0,NE,0.0,4,25.0,
-2015-06-28,-1.9,-9.7,-6.0,-1.2,0/8/0,961.0,951.3,954.7,,32.0,25.0,8.0,,,89.0,SE,0.0,1,26.0,
-2015-06-29,-6.8,-9.1,-8.0,-1.6,0/8/0,969.9,961.0,966.2,,16.0,12.0,5.0,,,188.0,E,0.0,0,25.0,
-2015-06-30,-5.5,-9.8,-7.9,-1.7,0/8/0,985.5,969.9,975.9,,22.0,17.0,7.0,,,183.0,S,0.0,0,25.0,
-2015-07-01,-2.9,-10.3,-7.2,-1.7,0/8/0,992.3,980.1,987.4,,40.0,28.0,13.0,,,25.0,SW,0.0,0,27.0,
-2015-07-02,-7.3,-18.0,-15.7,-1.6,0/8/0,985.9,980.0,983.3,,32.0,25.0,17.0,,,236.0,SW,0.0,5,32.0,
-2015-07-03,-9.8,-17.2,-12.5,-1.7,21952,998.3,985.5,992.8,,36.0,26.0,17.0,,,197.0,S,0.0,0,29.0,
-2015-07-04,-10.3,-12.6,-11.6,-1.7,21952,1005.6,998.1,1001.9,,22.0,16.0,8.0,,,123.0,SW,0.0,0,29.0,
-2015-07-05,-12.0,-14.5,-12.8,-1.7,21952,1009.8,1005.6,1007.8,,10.0,9.0,4.0,,,92.0,SW,0.0,0,29.0,
-2015-07-06,-11.1,-13.5,-12.1,-1.6,21952,1011.5,1009.7,1010.8,,12.0,9.0,3.0,,,317.0,NW,0.0,0,29.0,
-2015-07-07,-12.0,-15.7,-14.0,-1.7,32923,1011.1,1003.9,1007.8,,9.0,8.0,3.0,,,201.0,S,0.0,0,29.0,
-2015-07-08,-3.6,-16.4,-11.5,-1.7,32923,1003.9,994.8,999.8,,40.0,31.0,8.0,,,49.0,NE,0.0,0,29.0,
-2015-07-09,-0.1,-3.9,-2.0,-1.6,32923,995.0,978.6,985.4,,65.0,57.0,32.0,,,53.0,NE,0.0,0,29.0,
-2015-07-10,1.2,-6.6,-1.9,-1.6,22934,982.1,958.8,973.4,,50.0,39.0,17.0,,,75.0,E,0.0,0,29.0,
-2015-07-11,-0.5,-5.0,-3.0,-1.6,22935,959.5,950.9,955.0,,42.0,32.0,18.0,,,75.0,NE,0.0,0,29.0,
-2015-07-12,-3.4,-16.5,-10.7,-1.6,0/8/0,965.0,954.5,961.5,,33.0,26.0,9.0,,,79.0,W,0.0,1,30.0,
-2015-07-13,-13.2,-18.7,-16.6,-1.6,21830,975.0,964.4,968.8,,17.0,14.0,8.0,,,210.0,SW,0.0,6,36.0,
-2015-07-14,-11.4,-18.8,-17.1,-1.7,0/8/0,975.6,966.6,973.4,,20.0,14.0,3.0,,,111.0,SW,0.0,3,39.0,
-2015-07-15,-2.0,-10.9,-4.3,-1.6,0/8/0,966.5,953.0,958.2,,42.0,33.0,19.0,,,66.0,SE,0.0,0,39.0,
-2015-07-16,0.8,-7.2,-2.2,-1.7,0/8/0,968.3,957.9,964.1,,65.0,48.0,23.0,,,42.0,NE,0.0,0,38.0,
-2015-07-17,0.6,-13.7,-9.9,-1.6,0/8/0,970.7,957.6,966.2,,43.0,33.0,9.0,,,35.0,S,0.0,0,38.0,
-2015-07-18,-4.0,-9.0,-5.8,-1.7,0/8/0,964.1,952.9,959.2,,36.0,31.0,14.0,,,53.0,NE,0.0,0,38.0,
-2015-07-19,-5.0,-12.8,-8.6,-1.7,0/8/0,975.5,951.5,960.1,,35.0,28.0,17.0,,,201.0,SW,0.0,0,38.0,
-2015-07-20,-2.9,-16.8,-12.4,-1.7,42852,986.1,964.3,978.2,,49.0,40.0,12.0,,,56.0,W,0.0,0,36.0,
-2015-07-21,-2.6,-19.2,-14.8,-1.7,52852,978.0,961.9,971.6,,43.0,34.0,15.0,,,41.0,SW,0.0,0,36.0,
-2015-07-22,-9.6,-23.3,-16.8,-1.7,52845,982.4,960.7,971.2,,45.0,36.0,15.0,,,53.0,SW,0.0,0,36.0,
-2015-07-23,-20.2,-22.4,-21.3,-1.7,52845,996.3,982.4,987.1,,24.0,20.0,11.0,,,217.0,SW,0.0,0,36.0,
-2015-07-24,-11.2,-23.0,-19.8,-1.7,52845,1006.3,996.3,1003.0,,20.0,16.0,6.0,,,211.0,NW,0.0,0,36.0,
-2015-07-25,-4.6,-11.2,-7.0,-1.7,52845,1002.5,998.0,1001.2,,33.0,26.0,5.0,,,39.0,SE,0.0,13,49.0,
-2015-07-26,-8.1,-16.6,-12.7,-1.7,52845,1004.3,1001.7,1003.0,,7.0,4.0,1.0,,,83.0,E,0.0,0,49.0,
-2015-07-27,-7.5,-16.8,-13.5,-1.7,52845,1002.2,996.4,998.8,,2.0,3.0,1.0,,,142.0,E,0.0,0,49.0,
-2015-07-28,-8.7,-12.7,-10.9,-1.7,52855,998.0,994.0,995.3,,5.0,4.0,1.0,,,225.0,E,0.0,0,49.0,
-2015-07-29,-10.2,-19.1,-15.0,-1.7,52855,1002.7,998.0,1001.2,,4.0,3.0,1.0,,,237.0,SE,0.0,0,49.0,
-2015-07-30,-0.1,-18.5,-7.8,-1.8,52855,1001.3,992.9,996.2,,14.0,11.0,3.0,,,131.0,SE,0.0,0,49.0,
-2015-07-31,0.5,-3.0,-0.7,-1.7,52855,994.5,990.4,992.6,,32.0,25.0,14.0,,,54.0,NE,0.0,0,48.0,
-2015-08-01,-3.1,-12.1,-7.6,-1.7,52855,995.2,991.6,994.0,,8.0,7.0,3.0,,,19.0,NW,0.0,4,52.0,
-2015-08-02,-1.9,-21.9,-8.2,-1.7,52855,993.4,982.5,988.5,,35.0,28.0,13.0,,,51.0,NE,0.0,0,52.0,
-2015-08-03,-1.9,-22.7,-9.9,-1.8,52855,994.4,983.8,990.1,,53.0,44.0,13.0,,,51.0,NE,0.0,0,40.0,
-2015-08-04,1.2,-3.9,-0.4,-1.7,42755,997.8,990.2,994.3,,54.0,44.0,26.0,,,52.0,N,0.0,0,36.0,
-2015-08-05,0.9,-1.8,-0.2,-1.7,22755,997.9,970.3,987.7,,78.0,61.0,37.0,,,74.0,E,0.0,0,35.0,
-2015-08-06,2.7,-1.8,0.2,-1.7,22761,986.2,968.6,976.6,,63.0,51.0,34.0,,,62.0,NE,0.0,0,34.0,
-2015-08-07,1.2,-2.8,-0.1,-1.5,0/7/0,987.4,981.9,985.0,,63.0,47.0,35.0,,,51.0,NE,0.0,0,34.0,
-2015-08-08,-0.9,-6.7,-4.4,-1.5,0/7/0,984.3,964.5,975.6,,39.0,27.0,10.0,,,111.0,E,0.0,0,34.0,
-2015-08-09,-0.2,-5.1,-2.9,-1.7,0/7/0,982.0,967.7,975.5,,43.0,33.0,10.0,,,45.0,NE,0.0,3,37.0,
-2015-08-10,-3.3,-7.1,-5.5,-1.7,0/7/0,989.6,978.3,986.4,,46.0,35.0,12.0,,,58.0,NE,0.0,0,37.0,
-2015-08-11,-1.5,-8.3,-5.5,-1.8,0/7/0,978.3,965.3,969.7,,69.0,52.0,23.0,,,54.0,W,0.0,3,40.0,
-2015-08-12,-2.1,-13.5,-10.2,-1.8,51755,984.2,967.7,978.4,,37.0,28.0,9.0,,,42.0,SW,0.0,0,40.0,
-2015-08-13,-0.7,-6.2,-2.3,-1.8,51755,976.5,958.9,966.6,,38.0,26.0,13.0,,,353.0,NW,0.0,10,50.0,
-2015-08-14,-0.7,-16.0,-8.2,-1.8,51755,963.2,945.2,955.2,,56.0,46.0,18.0,,,54.0,NE,0.0,0,45.0,
-2015-08-15,-2.0,-18.1,-7.0,-1.8,0/7/0,952.4,926.3,939.0,,65.0,53.0,24.0,,,65.0,NE,0.0,0,45.0,
-2015-08-16,-17.4,-22.4,-20.0,-1.8,51755,958.9,945.7,953.4,,34.0,27.0,10.0,,,234.0,SE,0.0,0,45.0,
-2015-08-17,-17.5,-20.9,-18.9,-1.8,51755,958.9,944.8,949.8,,23.0,17.0,8.0,,,231.0,SW,0.0,0,45.0,
-2015-08-18,-12.9,-19.7,-16.7,-1.8,51755,988.2,959.0,974.2,,41.0,20.0,5.0,,,132.0,SE,0.0,0,45.0,
-2015-08-19,-4.5,-18.2,-13.8,-1.8,51755,990.3,971.4,982.5,,31.0,24.0,8.0,,,245.0,SE,0.0,0,45.0,
-2015-08-20,-10.0,-21.5,-16.7,-1.8,52755,985.3,975.4,982.0,,30.0,24.0,9.0,,,242.0,SW,0.0,7,52.0,
-2015-08-21,-17.8,-23.0,-20.3,-1.8,52755,1002.3,985.4,995.3,,15.0,13.0,4.0,,,218.0,NW,0.0,0,52.0,
-2015-08-22,-13.1,-20.4,-17.0,-1.8,52755,1006.4,1001.9,1004.0,,11.0,8.0,3.0,,,111.0,SE,0.0,0,52.0,
-2015-08-23,-6.7,-13.7,-11.2,-1.8,52755,1007.9,1002.3,1005.6,,13.0,11.0,3.0,,,352.0,NW,0.0,0,52.0,
-2015-08-24,-8.3,-11.6,-9.8,-1.8,52755,1008.7,1004.2,1007.6,,11.0,9.0,3.0,,,126.0,SE,0.0,1,53.0,
-2015-08-25,-5.0,-12.1,-7.5,-1.8,52755,1008.1,1005.8,1006.4,,7.0,5.0,2.0,,,284.0,N,0.0,0,52.0,
-2015-08-26,-7.4,-16.8,-12.8,-1.8,52755,1007.1,999.4,1004.5,,4.0,4.0,1.0,,,141.0,SE,0.0,0,52.0,
-2015-08-27,1.9,-15.7,-6.0,-1.8,52755,999.4,983.3,989.6,,35.0,21.0,6.0,,,235.0,S,0.0,0,52.0,
-2015-08-28,-10.4,-14.4,-13.3,-1.8,52755,991.8,989.8,991.1,,17.0,13.0,3.0,,,219.0,SE,0.0,2,54.0,
-2015-08-29,-4.1,-15.2,-9.7,-1.8,52755,990.4,987.1,988.9,,12.0,9.0,3.0,,,122.0,SE,0.0,0,52.0,
-2015-08-30,-6.9,-15.4,-10.6,-1.8,52755,987.2,977.8,981.9,,7.0,6.0,2.0,,,291.0,E,0.0,0,52.0,
-2015-08-31,0.2,-14.1,-6.1,-1.8,52755,985.6,967.8,978.8,,45.0,35.0,12.0,,,60.0,NE,0.0,0,52.0,
-2015-09-01,-1.7,-10.2,-4.7,-1.8,52755,977.2,953.2,966.5,,46.0,34.0,15.0,,,227.0,SW,0.0,0,52.0,
-2015-09-02,-10.3,-17.5,-14.8,-1.8,52755,995.2,968.3,985.4,,42.0,30.0,14.0,,,217.0,SW,0.0,0,45.0,
-2015-09-03,-3.6,-17.8,-13.1,-1.8,52755,994.3,979.9,990.6,,39.0,20.0,5.0,,,128.0,SE,0.0,0,43.0,
-2015-09-04,-0.4,-9.1,-5.2,-1.8,52755,980.1,958.9,965.8,,59.0,47.0,19.0,,,56.0,SW,0.0,13,56.0,
-2015-09-05,-8.5,-14.7,-11.1,-1.8,52755,978.4,967.1,971.1,,26.0,21.0,10.0,,,223.0,SW,0.0,0,54.0,
-2015-09-06,-6.2,-16.7,-13.4,-1.8,52755,984.1,974.9,981.6,,21.0,16.0,6.0,,,224.0,SW,0.0,0,53.0,
-2015-09-07,0.4,-6.2,-2.8,-1.8,32755,974.8,967.9,970.5,,33.0,28.0,13.0,,,49.0,SE,0.0,0,53.0,
-2015-09-08,-2.0,-16.2,-12.2,-1.8,32755,975.2,971.4,973.4,,21.0,16.0,7.0,,,16.0,NW,0.0,0,53.0,
-2015-09-09,-9.0,-17.6,-13.6,-1.8,42755,997.4,975.3,985.9,,11.0,9.0,3.0,,,1.0,NW,0.0,0,53.0,
-2015-09-10,-11.6,-18.4,-15.6,-1.8,42755,997.7,978.2,988.0,,12.0,9.0,5.0,,,264.0,W,0.0,0,53.0,
-2015-09-11,-7.2,-15.0,-11.8,-1.8,52755,985.0,978.0,980.9,,14.0,12.0,5.0,,,222.0,SW,0.0,2,55.0,
-2015-09-12,-11.5,-16.1,-15.1,-1.8,52755,985.0,973.9,979.0,,12.0,10.0,4.0,,,225.0,SW,0.0,0,55.0,
-2015-09-13,-7.8,-19.1,-14.7,-1.8,52755,973.9,964.9,967.9,,8.0,6.0,2.0,,,299.0,NW,0.0,0,55.0,
-2015-09-14,-12.9,-20.4,-16.2,-1.8,52755,977.9,971.2,975.6,,15.0,12.0,5.0,,,15.0,NW,0.0,0,55.0,
-2015-09-15,-4.7,-14.2,-9.7,-1.8,52755,973.8,958.2,963.5,,30.0,22.0,8.0,,,127.0,SE,0.0,2,57.0,
-2015-09-16,-7.8,-15.8,-10.8,-1.8,52755,994.6,968.1,983.9,,27.0,21.0,12.0,,,127.0,SE,0.0,0,54.0,
-2015-09-17,-9.9,-18.2,-13.5,-1.8,42755,994.9,982.3,989.9,,11.0,9.0,3.0,,,288.0,NW,0.0,0,53.0,
-2015-09-18,-5.7,-12.4,-8.8,-1.8,42755,994.6,981.5,988.3,,19.0,14.0,4.0,,,205.0,NW,0.0,4,57.0,
-2015-09-19,-6.7,-12.8,-11.0,-1.8,42755,1000.9,994.6,998.5,,14.0,12.0,5.0,,,257.0,N,0.0,3,60.0,
-2015-09-20,-3.3,-10.8,-7.2,-1.8,42755,998.0,984.8,989.6,,26.0,20.0,6.0,,,199.0,NW,0.0,0,58.0,
-2015-09-21,-1.5,-8.9,-5.1,-1.8,42755,994.7,990.4,993.4,,18.0,13.0,5.0,,,207.0,W,0.0,0,58.0,
-2015-09-22,-0.1,-3.9,-1.5,-1.8,42755,992.9,971.5,985.0,,46.0,29.0,14.0,,,311.0,NW,0.0,7,65.0,
-2015-09-23,-3.1,-18.1,-13.0,-1.8,52755,980.1,972.3,976.1,,41.0,31.0,20.0,,,230.0,SW,0.0,0,60.0,
-2015-09-24,-1.6,-19.5,-11.8,-1.7,52755,982.7,973.7,977.9,,39.0,31.0,11.0,,,269.0,SE,0.0,0,59.0,
-2015-09-25,-3.1,-17.4,-11.6,-1.7,52755,994.3,973.4,981.9,,39.0,30.0,14.0,,,293.0,SW,0.0,0,64.0,
-2015-09-26,-5.2,-17.1,-12.4,-1.8,52755,995.7,987.4,992.2,,34.0,23.0,6.0,,,128.0,SE,0.0,0,64.0,
-2015-09-27,0.8,-5.9,-3.5,-1.8,42755,1007.9,985.2,995.0,,46.0,29.0,9.0,,,150.0,SE,0.0,15,79.0,
-2015-09-28,2.7,-7.1,-4.0,-1.8,42755,1012.5,1008.0,1011.3,,11.0,9.0,3.0,,,286.0,N,0.0,0,78.0,
-2015-09-29,3.8,-7.2,-1.7,-1.8,32755,1011.5,989.3,1002.8,,65.0,56.0,19.0,,,51.0,NE,0.5,0,78.0,
-2015-09-30,1.6,-2.4,0.2,-1.7,32755,989.6,976.8,982.4,,66.0,51.0,31.0,,,58.0,NE,19.8,2,80.0,
-2015-10-01,-1.3,-7.4,-3.9,-1.7,32555,997.5,980.9,991.3,,25.0,21.0,9.0,,,247.0,NW,0.0,2,82,
-2015-10-02,1.5,-2.7,0.2,-1.7,32555,997.9,984.9,992.8,,47.0,41.0,22.0,,,6.0,N,11.9,15,97,
-2015-10-03,3.8,-0.5,1.3,-1.7,32555,988.3,980.7,983.6,,32.0,26.0,7.0,,,23.0,E,3.8,0,96,
-2015-10-04,4.8,-0.9,0.8,-1.7,32555,996.8,988.2,993.1,,45.0,42.0,7.0,,,31.0,E,3.3,0,89,
-2015-10-05,5.2,-3.1,2.0,-1.7,32555,989.0,983.5,985.8,,53.0,45.0,14.0,,,3.0,N,9.9,0,76,
-2015-10-06,-2.2,-7.9,-4.4,-1.7,32555,991.0,982.5,986.1,,33.0,30.0,9.0,,,342.0,SW,0.5,13,89,
-2015-10-07,0.0,-6.9,-4.0,-1.7,51755,993.2,981.6,988.3,,45.0,38.0,12.0,,,7.0,NW,6.9,0,89,
-2015-10-08,-0.4,-6.0,-2.9,-1.7,32755,992.9,987.5,990.4,,28.0,26.0,10.0,,,320.0,NW,1.8,16,105,
-2015-10-09,0.3,-2.8,-0.8,-1.7,32755,992.1,988.7,990.6,,23.0,21.0,12.0,,,320.0,NW,3.0,11,116,
-2015-10-10,1.1,0.2,0.6,-1.7,32755,991.4,983.7,986.9,,38.0,33.0,24.0,,,303.0,NW,14.7,15,131,
-2015-10-11,0.3,-4.6,-2.2,-1.7,42255,990.2,984.9,987.9,,27.0,25.0,9.0,,,304.0,NW,0.3,0,131,
-2015-10-12,-2.3,-7.8,-3.7,-1.7,42255,994.5,989.0,990.9,,26.0,24.0,9.0,,,308.0,NW,0.3,0,127,
-2015-10-13,-7.1,-12.0,-9.2,-1.7,52255,998.6,994.1,995.4,,14.0,13.0,4.0,,,203.0,NW,0.0,0,124,
-2015-10-14,-7.5,-9.8,-8.7,-1.7,52255,1005.4,998.6,1001.3,,15.0,13.0,7.0,,,195.0,SW,0.0,0,124,
-2015-10-15,0.0,-10.6,-4.2,-1.7,52255,1005.4,984.0,995.2,,42.0,39.0,18.0,,,303.0,N,8.6,0,117,
-2015-10-16,-1.2,-3.8,-2.5,-1.7,52255,984.5,975.7,978.4,,30.0,27.0,10.0,,,315.0,NW,1.8,0,143,
-2015-10-17,-1.9,-4.3,-3.3,-1.7,52255,982.6,978.3,980.9,,23.0,19.0,5.0,,,67.0,NW,0.3,0,153,
-2015-10-18,-3.5,-6.8,-5.2,-1.7,42255,978.5,966.1,971.6,,51.0,43.0,26.0,,,78.0,E,0.0,0,149,
-2015-10-19,-2.6,-7.4,-5.0,-1.7,22744,990.2,971.8,980.7,,39.0,34.0,10.0,,,93.0,E,0.0,0,147,
-2015-10-20,-6.3,-11.0,-9.4,-1.7,22744,996.4,990.2,994.6,,15.0,13.0,8.0,,,280.0,NW,0.0,0,147,
-2015-10-21,-6.0,-10.1,-7.8,-1.7,32744,1003.6,995.8,999.5,,21.0,18.0,9.0,,,187.0,S,0.0,0,147,
-2015-10-22,0.6,-6.1,-2.2,-1.7,32744,1003.0,993.5,998.9,,24.0,21.0,6.0,,,343.0,NW,0.5,2,148,
-2015-10-23,-0.3,-2.4,-0.9,-1.7,32/44,1001.7,989.2,994.2,,17.0,15.0,7.0,,,215.0,NW,4.8,16,154,
-2015-10-24,0.2,-4.4,-1.7,-1.7,32744,1002.7,997.3,999.7,,18.0,16.0,7.0,,,317.0,NW,0.3,0,154,
-2015-10-25,1.9,-1.4,-0.2,-1.7,32744,999.9,997.7,999.1,,17.0,15.0,5.0,,,305.0,NW,10.2,1,154,
-2015-10-26,1.8,-1.0,0.5,-1.7,52744,997.8,987.1,993.4,,24.0,23.0,7.0,,,319.0,NW,6.3,3,154,
-2015-10-27,2.0,-1.6,-0.2,-1.7,52744,987.1,976.8,980.7,,35.0,32.0,9.0,,,323.0,N,6.9,2,152,
-2015-10-28,2.1,-5.8,-1.6,-1.7,22754,982.6,974.5,978.4,,37.0,33.0,16.0,,,227.0,NW,1.0,4,157,
-2015-10-29,-2.1,-6.2,-4.5,-1.6,32754,983.7,974.4,980.8,,22.0,18.0,9.0,,,227.0,SW,0.0,0,157,
-2015-10-30,0.3,-2.8,-1.3,-1.7,22754,974.6,963.5,967.8,,19.0,17.0,8.0,,,112.0,E,4.3,13,172,
-2015-10-31,-1.7,-5.2,-2.8,-1.7,22754,982.9,964.0,971.9,,14.0,13.0,6.0,,,117.0,E,1.5,3,170,
-2015-11-01,-0.9,-8.0,-4.7,-1.7,32754,984.1,957.8,973.8,,59.0,51.0,15.0,,,6.0,N,2.8,0,159,
-2015-11-02,-2.1,-6.0,-4.1,-1.7,22754,978.4,955.2,964.0,,33.0,28.0,16.0,,,91.0,S,0.0,5,158,
-2015-11-03,-5.9,-9.1,-8.1,-1.7,22764,983.1,977.5,981.5,,23.0,19.0,9.0,,,196.0,SW,0.0,0,158,
-2015-11-04,-6.2,-8.7,-7.3,-1.7,32765,998.1,975.9,986.8,,18.0,17.0,7.0,,,222.0,SW,0.0,0,156,
-2015-11-05,-0.4,-8.7,-4.8,-1.7,42853,998.3,988.8,993.6,,19.0,17.0,4.0,,,314.0,NW,0.0,0,156,
-2015-11-06,0.2,-1.8,-0.9,-1.7,42/45,991.8,986.8,988.6,,26.0,21.0,11.0,,,318.0,NW,0.3,3,158,
-2015-11-07,-1.3,-4.5,-2.7,-1.7,52665,991.8,974.7,984.2,,30.0,25.0,7.0,,,165.0,W,0.0,0,157,
-2015-11-08,-1.0,-6.6,-3.9,-1.6,42665,985.1,972.4,981.4,,46.0,39.0,12.0,,,10.0,NW,2.0,0,157,
-2015-11-09,0.8,-2.0,-0.5,-1.6,/2/64,974.1,960.3,968.5,,48.0,43.0,27.0,,,4.0,N,13.2,0,156,
-2015-11-10,0.6,-1.0,-0.3,-1.6,22665,978.5,960.7,971.3,,28.0,24.0,10.0,,,336.0,NW,2.5,0,157,
-2015-11-11,2.6,-1.7,0.1,-1.5,22764,972.9,945.4,953.7,,50.0,46.0,17.0,,,30.0,E,0.3,0,157,
-2015-11-12,1.5,-7.1,-2.4,-1.6,22865,969.3,957.6,965.5,,30.0,26.0,9.0,,,125.0,E,0.0,0,155,
-2015-11-13,3.0,-0.3,1.1,-1.3,22861,964.8,959.1,961.6,,35.0,31.0,19.0,,,3.0,E,0.0,0,155,
-2015-11-14,1.0,-1.9,-0.1,-1.2,22861,974.1,964.8,969.2,,30.0,26.0,12.0,,,360.0,E,0.0,0,154,
-2015-11-15,0.4,-2.6,-1.0,-1.3,22762,976.5,972.9,974.5,,34.0,31.0,17.0,,,83.0,E,0.0,0,154,
-2015-11-16,0.6,-2.0,-0.5,-1.3,22762,987.8,976.0,980.9,,33.0,30.0,18.0,,,8.0,N,0.0,0,153,
-2015-11-17,0.5,-3.1,-0.8,-1.2,22851,995.8,987.8,993.1,,30.0,26.0,8.0,,,5.0,N,0.3,4,155,
-2015-11-18,1.6,-2.0,-0.3,-1.2,22861,991.4,986.5,988.4,,32.0,29.0,15.0,,,97.0,E,0.0,0,147,
-2015-11-19,0.4,-4.0,-1.3,-1.2,22761,996.0,991.1,994.5,,28.0,26.0,7.0,,,340.0,N,0.0,0,146,
-2015-11-20,3.0,-1.3,0.3,-1.3,22761,994.5,985.5,989.3,,57.0,51.0,23.0,,,4.0,N,2.3,2,144,
-2015-11-21,1.5,-3.0,-1.4,-1.3,22661,989.1,977.6,982.1,,51.0,46.0,18.0,,,8.0,NW,3.6,0,142,
-2015-11-22,-1.6,-3.8,-2.8,-1.2,22661,982.9,974.9,978.4,,15.0,14.0,7.0,,,170.0,SW,0.3,0,143,
-2015-11-23,3.2,-4.9,-0.7,-1.3,22661,982.9,959.6,969.8,,52.0,45.0,19.0,,,8.0,N,5.1,0,142,
-2015-11-24,2.0,-0.9,0.3,-1.2,12750,965.9,959.0,963.6,,48.0,43.0,23.0,,,9.0,NW,3.8,0,141,
-2015-11-25,0.9,-1.1,-0.4,-1.2,12750,971.8,956.6,962.8,,32.0,28.0,15.0,,,1.0,NW,0.5,0,142,
-2015-11-26,1.6,-2.2,-0.1,-1.1,12750,978.6,971.8,975.9,,31.0,28.0,11.0,,,345.0,N,0.5,0,143,
-2015-11-27,2.4,-1.4,0.4,-1.1,127/0,994.1,978.6,988.0,,31.0,29.0,15.0,,,198.0,NW,0.3,2,145,
-2015-11-28,4.0,-0.7,1.9,-1.1,12840,994.2,976.8,985.7,,49.0,44.0,18.0,,,354.0,N,3.6,0,137,
-2015-11-29,0.0,-1.2,-0.6,-1.3,12840,980.1,974.0,976.9,,22.0,20.0,7.0,,,341.0,NW,5.6,4,138,
-2015-11-30,0.6,-1.8,-0.5,-1.2,32753,978.3,973.5,975.5,,33.0,29.0,17.0,,,337.0,NW,3.6,10,154,
-2015-12-01,0.0,-2.3,-1.1,-1.2,42855,984.3,976.9,980.1,,28.0,25.0,12.0,,,305.0,W,0.0,1,153,
-2015-12-02,3.2,-2.1,0.4,-1.2,42855,983.7,963.9,975.2,,58.0,48.0,13.0,,,19.0,N,1.5,0,152,
-2015-12-03,2.1,-2.7,-0.5,-1.4,32853,985.1,962.4,971.1,,36.0,32.0,19.0,,,282.0,SW,4.1,9,150,
-2015-12-04,-0.4,-3.7,-2.0,-1.4,53895,994.0,985.1,989.5,,22.0,18.0,6.0,,,254.0,W,0.5,1,141,
-2015-12-05,1.1,-2.1,-0.8,-1.3,53895,992.8,987.7,989.2,,13.0,12.0,4.0,,,118.0,E,0.3,0,138,
-2015-12-06,5.5,0.2,3.3,-1.2,33841,987.8,966.3,976.5,,49.0,41.0,19.0,,,11.0,N,16.0,0,131,
-2015-12-07,2.6,-1.0,0.7,-1.2,33742,976.7,966.7,973.2,,35.0,31.0,15.0,,,314.0,NW,1.3,1,122,
-2015-12-08,0.9,-1.1,-0.4,-1.2,33742,976.8,974.1,975.6,,19.0,18.0,10.0,,,305.0,NW,0.3,0,122,
-2015-12-09,-0.3,-2.7,-1.4,-1.3,43755,974.1,967.3,970.2,,20.0,17.0,8.0,,,353.0,NW,2.0,5,128,
-2015-12-10,0.5,-2.7,-1.7,-1.4,43755,967.3,964.2,965.3,,18.0,15.0,4.0,,,211.0,SW,0.0,0,124,
-2015-12-11,3.0,-2.7,0.6,-1.3,43755,971.3,966.2,968.2,,46.0,41.0,17.0,,,96.0,E,1.0,0,123,
-2015-12-12,4.0,-0.7,1.9,-0.8,33852,976.6,968.9,971.5,,41.0,38.0,16.0,,,104.0,E,0.3,0,121,
-2015-12-13,5.4,0.2,2.8,-0.9,33852,988.3,976.4,982.9,,30.0,25.0,7.0,,,90.0,SE,0.0,0,120,
-2015-12-14,2.0,-3.6,-1.5,-0.5,33852,990.4,988.2,989.3,,6.0,5.0,1.0,,,334.0,W,0.0,0,119,
-2015-12-15,-0.6,-4.0,-2.2,-0.4,336/2,999.3,990.4,994.9,,6.0,5.0,2.0,,,99.0,W,0.0,0,118,
-2015-12-16,-1.0,-2.3,-1.6,-0.5,33845,1004.2,999.2,1002.1,,12.0,11.0,4.0,,,195.0,SW,0.0,0,118,
-2015-12-17,-0.3,-2.2,-1.4,-1.0,43845,1004.2,1000.8,1002.9,,17.0,13.0,8.0,,,202.0,SW,0.0,0,117,
-2015-12-18,3.5,-1.0,0.3,-0.8,33845,1000.8,981.3,991.9,,23.0,18.0,6.0,,,129.0,SE,0.0,0,116,
-2015-12-19,2.3,-0.3,1.0,-0.7,43845,981.3,974.0,976.8,,17.0,12.0,3.0,,,127.0,SE,0.0,0,114,
-2015-12-20,2.5,0.1,1.1,-0.5,43845,977.8,974.6,975.7,,27.0,24.0,10.0,,,312.0,NW,0.0,0,111,
-2015-12-21,1.8,-0.4,0.6,-0.2,33842,981.0,977.7,979.6,,16.0,15.0,3.0,,,338.0,NW,0.0,0,107,
-2015-12-22,3.3,-0.8,0.2,-0.5,23851,983.7,977.3,979.9,,31.0,27.0,5.0,,,55.0,NW,0.3,1,104,
-2015-12-23,1.5,-1.2,-0.1,-0.2,23852,985.3,983.0,984.6,,17.0,14.0,3.0,,,96.0,E,1.3,5,110,
-2015-12-24,4.0,0.7,1.9,-0.6,12880,983.1,978.9,980.7,,30.0,27.0,14.0,,,92.0,E,0.0,0,102,
-2015-12-25,2.2,-1.8,0.5,0.2,12880,985.2,981.5,982.9,,10.0,9.0,4.0,,,231.0,W,0.0,0,99,
-2015-12-26,0.1,-2.0,-1.1,0.2,12880,985.4,980.7,984.2,,16.0,15.0,7.0,,,340.0,SW,0.0,0,97,
-2015-12-27,-0.2,-5.8,-2.2,0.6,12880,980.7,974.8,977.2,,15.0,14.0,5.0,,,277.0,S,0.0,0,98,
-2015-12-28,0.1,-2.5,-1.5,0.5,33845,981.7,975.2,978.9,,9.0,8.0,4.0,,,242.0,W,0.0,0,97,
-2015-12-29,0.6,-2.9,-1.6,-0.1,33845,990.8,981.7,985.3,,8.0,7.0,2.0,,,290.0,W,0.0,0,96,
-2015-12-30,2.6,-0.7,0.6,0.3,33945,997.6,990.8,995.0,,9.0,8.0,2.0,,,101.0,E,0.0,0,91,
-2015-12-31,3.7,0.4,1.5,0.8,22982,1001.3,997.3,999.4,,7.0,6.0,2.0,,,294.0,E,0.0,0,88,
-2016-01-01,7.9,1.4,5.0,0.5,12980,1001.2,996.6,998.9,,40.0,36.0,15.0,,,5.0,N,1.0,0,84,
-2016-01-02,9.4,2.4,6.2,0.7,12980,996.8,984.3,993.4,,37.0,32.0,13.0,,,7.0,N,0.0,0,61,
-2016-01-03,8.6,-0.1,3.4,0.6,12980,984.4,973.1,977.4,,48.0,42.0,21.0,,,16.0,N,6.3,0,50,
-2016-01-04,1.0,-1.6,-0.1,0.4,12980,982.8,980.2,981.7,,30.0,26.0,12.0,,,298.0,NW,0.5,1,52,
-2016-01-05,0.9,-1.4,0.0,0.9,12980,984.2,980.3,981.5,,20.0,17.0,6.0,,,202.0,S,0.0,0,45,
-2016-01-06,1.4,-1.9,-0.5,1.0,12980,985.9,977.6,983.5,,16.0,13.0,6.0,,,227.0,SW,0.0,0,44,
-2016-01-07,4.2,-1.3,0.6,0.9,12980,985.5,974.1,977.9,,19.0,15.0,6.0,,,150.0,SE,0.8,1,40,
-2016-01-08,1.0,-1.5,-0.5,0.2,12970,990.4,985.4,988.5,,17.0,15.0,8.0,,,227.0,SW,0.0,0,36,
-2016-01-09,2.0,-1.3,-0.1,0.5,12970,989.7,980.1,984.1,,15.0,13.0,4.0,,,167.0,S,0.0,0,34,
-2016-01-10,-0.2,-1.6,-1.0,0.0,12980,980.4,977.8,979.1,,13.0,11.0,7.0,,,233.0,SW,0.8,0,34,
-2016-01-11,1.6,-1.3,0.3,0.5,12980,982.6,977.1,980.1,,28.0,25.0,10.0,,,86.0,E,0.3,2,35,
-2016-01-12,0.3,-4.0,-1.3,0.6,12901,988.4,982.0,985.5,,17.0,15.0,8.0,,,81.0,NE,0.0,0,29,
-2016-01-13,1.0,-3.6,-0.8,0.7,1/900,994.4,988.4,992.1,,20.0,18.0,5.0,,,101.0,S,0.0,0,14,
-2016-01-14,0.9,-1.7,-0.2,1.0,1/9/0,996.6,988.4,993.7,,15.0,12.0,5.0,,,215.0,SW,0.0,0,11,
-2016-01-15,0.2,-0.6,-0.1,0.6,1/9/0,988.5,978.6,983.7,,18.0,16.0,7.0,,,226.0,SW,0.3,0,0,
-2016-01-16,0.8,-1.0,-0.4,0.5,1/9/0,981.7,977.2,978.6,,20.0,17.0,9.0,,,202.0,SW,1.0,2,2,
-2016-01-17,0.0,-0.8,-0.4,0.9,1/9/0,983.3,980.9,982.1,,18.0,15.0,8.0,,,210.0,SW,0.0,0,0,
-2016-01-18,0.4,-0.6,-0.2,1.0,1/9/0,992.3,982.3,988.2,,14.0,13.0,6.0,,,201.0,SW,0.0,0,0,
-2016-01-19,0.4,-0.6,-0.3,1.2,1/9/0,992.9,989.6,992.1,,12.0,11.0,5.0,,,210.0,SW,0.0,0,0,
-2016-01-20,4.7,-1.2,0.4,1.3,1/9/0,989.7,976.3,983.9,,21.0,16.0,3.0,,,100.0,E,1.8,0,0,
-2016-01-21,4.8,-0.1,1.2,0.5,1/9/0,979.1,973.9,977.1,,46.0,42.0,18.0,,,332.0,NW,3.0,0,0,
-2016-01-22,0.0,-1.0,-0.4,-0.2,1/9/0,985.1,976.1,981.1,,22.0,20.0,10.0,,,309.0,SW,1.3,2,3,
-2016-01-23,1.0,-0.6,0.0,-0.2,1/9/0,989.1,985.1,987.9,,16.0,14.0,8.0,,,208.0,SW,0.0,0,0,
-2016-01-24,2.6,-1.8,0.4,0.2,1/9/0,986.5,980.3,982.3,,14.0,13.0,5.0,,,285.0,NW,0.0,0,0,
-2016-01-25,3.0,-0.6,1.0,0.3,1/9/0,990.7,981.0,984.9,,10.0,10.0,3.0,,,290.0,NW,0.0,0,0,
-2016-01-26,3.1,-1.0,0.9,0.5,1/9/0,992.2,985.2,990.1,,40.0,33.0,8.0,,,17.0,N,0.0,0,0,
-2016-01-27,4.0,0.4,1.9,0.6,1/9/0,990.5,985.3,989.0,,30.0,26.0,9.0,,,302.0,NW,0.0,0,0,
-2016-01-28,5.3,1.0,2.5,0.8,0/9/0,989.8,985.8,988.4,,21.0,19.0,6.0,,,96.0,E,0.0,0,0,
-2016-01-29,7.2,2.2,4.6,0.6,0/9/0,986.3,979.8,982.8,,50.0,42.0,25.0,,,3.0,N,4.8,0,0,
-2016-01-30,4.1,1.9,2.7,0.0,0/9/0,986.4,975.6,980.9,,50.0,43.0,25.0,,,3.0,NW,8.9,0,0,
-2016-01-31,3.9,0.3,2.1,0.0,0/9/0,986.3,978.8,981.0,,33.0,27.0,16.0,,,319.0,NW,13.2,0,0,
-2016-02-01,1.7,0.0,0.6,-0.4,0/9/0,1002.3,986.3,994.3,,19.0,16.0,8.0,,,219.0,SW,0.0,0,0,
-2016-02-02,2.6,-0.2,0.7,-0.4,0/9/0,1005.1,1001.7,1003.7,,17.0,15.0,5.0,,,228.0,SW,0.5,0,0,
-2016-02-03,2.0,-0.3,0.5,0.1,0/9/0,1002.2,994.7,997.4,,16.0,15.0,4.0,,,102.0,E,4.6,0,0,
-2016-02-04,2.7,-0.2,1.1,-0.2,0/9/0,995.5,985.8,990.9,,17.0,15.0,5.0,,,306.0,NW,7.1,0,0,
-2016-02-05,1.2,-0.3,0.7,-0.9,0/9/0,993.7,985.9,989.2,,32.0,26.0,16.0,,,242.0,W,2.0,0,0,
-2016-02-06,2.9,-0.6,0.5,-0.9,0/9/0,995.3,993.0,994.4,,17.0,14.0,6.0,,,226.0,SW,0.0,0,0,
-2016-02-07,5.2,0.8,3.6,-0.3,0/9/0,993.2,981.6,985.9,,45.0,42.0,20.0,,,5.0,N,6.9,0,0,
-2016-02-08,4.3,0.2,1.9,0.1,0/9/0,981.8,971.7,976.8,,31.0,26.0,7.0,,,299.0,E,9.7,0,0,
-2016-02-09,4.9,1.4,3.2,0.3,0/9/0,971.7,961.2,964.9,,32.0,28.0,12.0,,,79.0,E,0.0,0,0,
-2016-02-10,3.1,-1.0,1.5,0.5,0/9/0,981.4,967.6,976.4,,30.0,25.0,9.0,,,92.0,E,0.0,0,0,
-2016-02-11,1.7,-2.9,-0.5,0.7,0/9/0,981.2,972.7,977.2,,19.0,17.0,5.0,,,166.0,E,0.0,0,0,
-2016-02-12,1.5,-0.6,0.3,0.9,0/9/0,980.8,974.7,977.9,,14.0,13.0,4.0,,,333.0,S,0.0,0,0,
-2016-02-13,1.9,-0.7,0.2,1.3,0/9/0,983.8,980.2,982.5,,10.0,8.0,3.0,,,284.0,E,0.0,0,0,
-2016-02-14,0.4,-0.8,-0.2,1.1,0/9/0,985.6,982.8,984.6,,10.0,9.0,2.0,,,336.0,NW,1.3,0,0,
-2016-02-15,0.9,-1.8,-0.6,0.7,0/9/0,982.8,968.9,976.9,,21.0,17.0,4.0,,,60.0,SE,0.5,1,0,
-2016-02-16,1.6,-1.0,0.4,0.6,0/9/0,968.9,957.4,961.3,,41.0,34.0,17.0,,,51.0,E,0.0,0,0,
-2016-02-17,1.2,-0.6,0.0,0.6,0/9/0,980.3,964.2,972.9,,16.0,15.0,4.0,,,205.0,NW,0.0,0,0,
-2016-02-18,1.5,-0.9,0.3,0.2,0/9/0,984.1,976.3,981.6,,47.0,41.0,15.0,,,5.0,N,3.3,0,0,
-2016-02-19,5.1,0.9,2.9,0.1,0/9/0,981.5,976.5,979.4,,41.0,34.0,17.0,,,353.0,N,2.0,0,0,
-2016-02-20,6.8,3.5,4.9,0.4,0/9/0,977.2,964.5,969.4,,44.0,38.0,21.0,,,37.0,NE,18.5,0,0,
-2016-02-21,7.1,1.0,2.5,0.5,0/9/0,970.3,962.9,966.3,,20.0,18.0,4.0,,,126.0,NW,1.3,0,0,
-2016-02-22,2.8,0.4,1.3,0.4,0/9/0,972.0,966.2,969.3,,12.0,11.0,3.0,,,323.0,NW,0.0,0,0,
-2016-02-23,2.3,0.0,1.0,0.4,0/9/0,972.6,966.4,968.4,,10.0,9.0,3.0,,,115.0,NW,0.0,0,0,
-2016-02-24,0.9,-0.6,0.1,-0.2,0/9/0,977.3,972.4,975.0,,15.0,12.0,7.0,,,228.0,SW,0.0,0,0,
-2016-02-25,2.1,-1.1,0.9,0.4,0/9/0,990.9,977.2,983.6,,19.0,17.0,5.0,,,149.0,W,0.0,0,0,
-2016-02-26,1.8,-1.0,0.2,0.3,0/9/0,995.7,990.9,994.4,,12.0,11.0,5.0,,,100.0,NW,0.0,0,0,
-2016-02-27,7.2,0.9,3.4,0.2,0/9/0,995.3,987.0,991.0,,44.0,38.0,17.0,,,3.0,N,0.0,0,0,
-2016-02-28,3.8,0.2,1.3,0.5,0/9/0,999.1,987.2,992.7,,38.0,35.0,14.0,,,360.0,SW,0.5,0,0,
-2016-02-29,6.1,-0.4,1.3,0.3,0/9/0,1000.4,997.9,999.8,,12.0,9.0,3.0,,,234.0,NW,0.0,0,0,
-2016-03-01,7.3,1.2,4.6,0.5,0/9/0,997.9,989.6,994.1,,35.0,31.0,8.0,,,21.0,E,0.0,0,0,
-2016-03-02,3.2,-1.0,0.4,0.0,0/9/0,1002.8,997.1,1001.3,,15.0,10.0,4.0,,,311.0,SE,0.0,0,0,
-2016-03-03,5.6,0.2,2.5,0.0,0/9/0,998.6,981.8,988.6,,43.0,35.0,10.0,,,20.0,NW,7.9,0,0,
-2016-03-04,1.0,-0.6,0.2,-0.3,0/9/0,991.5,982.3,987.0,,17.0,14.0,9.0,,,227.0,SW,1.5,1,0,
-2016-03-05,0.7,-1.8,-0.8,0.0,0/9/0,991.0,971.0,980.5,,10.0,9.0,2.0,,,9.0,NW,5.6,0,0,
-2016-03-06,0.6,-1.0,-0.2,-0.6,0/9/0,989.2,971.7,980.5,,21.0,18.0,5.0,,,221.0,SW,7.4,7,7,
-2016-03-07,3.5,-0.9,1.0,-0.3,0/9/0,989.1,971.7,978.4,,45.0,40.0,15.0,,,360.0,N,0.8,0,7,
-2016-03-08,1.3,-1.4,0.2,-0.5,0/9/0,989.1,974.8,980.2,,19.0,16.0,5.0,,,259.0,NW,0.0,1,3,
-2016-03-09,1.3,-1.7,-0.3,-0.5,0/9/0,989.5,984.7,987.5,,17.0,15.0,7.0,,,302.0,NW,1.8,0,3,
-2016-03-10,3.7,0.3,1.5,-0.3,0/9/0,987.6,960.5,975.8,,39.0,33.0,11.0,,,49.0,E,0.5,0,0,
-2016-03-11,0.9,-1.4,-0.1,-0.2,0/9/0,967.0,960.2,961.9,,19.0,17.0,7.0,,,148.0,W,8.6,11,8,
-2016-03-12,-0.2,-3.8,-1.2,-0.3,0/9/0,981.2,967.0,976.8,,27.0,25.0,10.0,,,204.0,S,0.3,1,10,
-2016-03-13,1.6,-3.4,-0.6,-0.1,0/9/0,977.9,967.5,971.5,,28.0,25.0,10.0,,,63.0,E,0.0,0,5,
-2016-03-14,-0.7,-3.0,-1.5,-0.3,0/9/0,983.9,976.5,980.8,,16.0,14.0,5.0,,,288.0,SW,0.0,0,3,
-2016-03-15,2.1,-5.0,-1.3,-0.4,0/9/0,984.0,975.9,980.9,,33.0,29.0,8.0,,,335.0,E,0.0,0,0,
-2016-03-16,3.7,0.8,2.5,-0.1,0/9/0,983.5,961.5,971.4,,56.0,50.0,31.0,,,15.0,N,27.7,0,0,
-2016-03-17,1.5,-1.2,0.2,-0.1,0/9/0,983.3,965.7,978.0,,39.0,34.0,13.0,,,302.0,NW,0.3,1,0,
-2016-03-18,-1.1,-3.3,-1.9,-0.4,0/9/0,985.4,982.0,983.6,,29.0,25.0,16.0,,,199.0,S,0.0,0,0,
-2016-03-19,0.1,-4.2,-2.2,,0/9/0,986.7,973.0,983.9,,35.0,31.0,7.0,,,8.0,N,0.0,0,0,
-2016-03-20,1.9,-2.9,0.5,,0/9/0,973.1,961.5,964.3,,66.0,50.0,19.0,,,360.0,NW,5.3,5,5,
-2016-03-21,0.3,-3.2,-1.2,-0.5,0/9/0,989.8,966.3,977.3,,30.0,27.0,14.0,,,200.0,NW,0.8,1,6,
-2016-03-22,3.2,-4.9,-1.6,-0.5,0/9/0,989.7,970.8,981.4,,54.0,46.0,12.0,,,1.0,NE,0.0,0,0,
-2016-03-23,5.2,1.2,3.2,0.0,0/9/0,980.5,972.4,976.3,,47.0,38.0,18.0,,,2.0,N,2.3,0,0,
-2016-03-24,2.7,0.8,1.7,-0.1,0/9/0,981.3,971.8,978.0,,59.0,51.0,23.0,,,11.0,N,4.8,0,0,
-2016-03-25,4.1,-1.1,1.7,-0.1,0/9/0,975.8,964.2,972.0,,55.0,47.0,15.0,,,6.0,NW,18.0,0,0,
-2016-03-26,5.4,-0.6,2.4,-0.3,0/9/0,985.2,966.6,978.5,,59.0,52.0,23.0,,,206.0,N,5.8,0,0,
-2016-03-27,6.0,1.3,3.2,-0.1,0/9/0,985.2,968.3,978.6,,53.0,46.0,25.0,,,3.0,NW,10.4,0,0,
-2016-03-28,4.4,-0.4,1.5,-0.4,0/9/0,982.1,969.5,972.6,,57.0,45.0,33.0,,,321.0,NW,4.6,0,5,
-2016-03-29,-0.3,-4.1,-2.4,-0.9,0/9/0,996.0,982.0,991.7,,21.0,19.0,6.0,,,103.0,SW,1.5,1,7,
-2016-03-30,5.1,-1.6,2.0,-0.2,0/9/0,986.9,966.4,972.9,,50.0,42.0,23.0,,,2.0,E,0.0,0,5,
-2016-03-31,1.3,-1.9,-0.8,-0.2,0/9/0,983.0,969.2,978.2,,48.0,42.0,14.0,,,6.0,NW,0.0,0,2,
-2016-04-01,-0.9,-2.9,-2.0,-0.9,0/9/0,982.7,979.5,980.9,,19.0,16.0,6.0,,,276.0,NW,0.3,4,8,
-2016-04-02,-1.8,-3.6,-2.6,-0.8,0/9/0,983.7,979.8,981.2,,24.0,22.0,7.0,,,200.0,S,0.0,0,6,
-2016-04-03,-2.9,-4.8,-4.0,-0.8,0/9/0,991.7,983.7,989.0,,25.0,22.0,10.0,,,206.0,S,0.0,0,4,
-2016-04-04,1.6,-5.4,-2.6,-0.7,0/9/0,990.9,983.7,987.2,,20.0,18.0,7.0,,,360.0,NE,0.0,0,4,
-2016-04-05,5.2,0.4,3.4,-0.3,0/9/0,983.9,956.9,973.2,,57.0,50.0,26.0,,,341.0,N,8.1,0,0,
-2016-04-06,4.5,-1.2,0.7,-0.2,0/7/0,965.6,942.9,957.2,,70.0,62.0,32.0,,,281.0,NW,15.0,0,0,
-2016-04-07,1.3,-3.1,-0.5,-0.7,0/7/0,981.7,965.6,971.7,,26.0,23.0,12.0,,,2.0,NW,2.0,0,0,
-2016-04-08,-0.4,-3.2,-1.8,-0.8,0/9/0,997.6,981.5,991.9,,26.0,23.0,9.0,,,22.0,SW,0.0,8,8,
-2016-04-09,1.7,-2.3,-0.8,-1.0,0/9/0,997.7,986.6,995.2,,29.0,26.0,6.0,,,200.0,NW,2.5,0,6,
-2016-04-10,2.6,-4.1,-1.1,-1.3,0/9/0,986.6,980.0,983.4,,33.0,29.0,14.0,,,354.0,NW,2.3,23,29,
-2016-04-11,-0.9,-2.5,-1.7,-1.5,0/9/0,986.8,978.9,983.3,,31.0,27.0,13.0,,,193.0,SW,0.0,12,41,
-2016-04-12,-0.2,-4.5,-2.5,-1.5,0/9/0,980.8,966.2,972.4,,41.0,34.0,19.0,,,351.0,SW,2.3,0,26,
-2016-04-13,0.3,-4.6,-1.0,-1.3,0/9/0,977.3,967.0,973.2,,32.0,27.0,15.0,,,222.0,N,0.5,0,26,
-2016-04-14,0.2,-4.2,-2.6,-1.2,0/9/0,972.4,966.8,970.5,,34.0,29.0,13.0,,,17.0,N,0.3,7,33,
-2016-04-15,-2.4,-4.5,-3.7,-0.7,0/9/0,972.6,964.2,967.4,,40.0,35.0,20.0,,,65.0,E,0.0,0,21,
-2016-04-16,-3.6,-9.4,-6.0,-0.7,0/9/0,981.9,972.6,976.5,,25.0,22.0,11.0,,,104.0,E,0.0,0,20,
-2016-04-17,-4.0,-9.9,-6.1,-1.0,0/9/0,984.7,981.8,983.6,,18.0,15.0,8.0,,,230.0,S,0.0,0,19,
-2016-04-18,-3.6,-7.8,-5.7,-1.2,0/9/0,986.9,983.7,985.5,,17.0,14.0,6.0,,,200.0,S,0.0,0,18,
-2016-04-19,-3.8,-6.6,-5.0,-1.2,0/9/0,985.8,971.4,977.2,,25.0,21.0,10.0,,,223.0,SW,0.0,5,23,
-2016-04-20,-6.2,-11.3,-8.9,-1.1,0/9/0,978.4,968.4,972.8,,26.0,23.0,12.0,,,49.0,E,0.0,0,20,
-2016-04-21,-1.8,-7.6,-4.1,-1.1,0/9/0,979.2,975.6,977.1,,28.0,25.0,14.0,,,198.0,S,0.0,0,17,
-2016-04-22,-2.6,-6.4,-4.1,-1.4,0/9/0,990.1,979.2,984.6,,21.0,18.0,7.0,,,107.0,S,0.0,0,17,
-2016-04-23,-3.4,-6.6,-5.2,-1.5,0/9/0,1000.8,990.1,996.7,,15.0,15.0,5.0,,,254.0,N,0.0,0,16,
-2016-04-24,-2.0,-4.5,-3.2,-1.5,0/9/0,1007.9,992.8,999.2,,29.0,22.0,8.0,,,116.0,E,0.8,3,19,
-2016-04-25,-1.6,-3.5,-2.5,-1.5,008/0,1012.6,1007.9,1011.2,,8.0,7.0,2.0,,,86.0,NW,0.0,3,22,
-2016-04-26,1.1,-1.9,-0.5,-1.5,008/0,1010.0,988.3,998.8,,41.0,36.0,9.0,,,1.0,N,5.6,0,22,
-2016-04-27,-0.5,-3.7,-2.4,-1.7,008/0,1001.6,986.9,992.3,,35.0,29.0,13.0,,,209.0,SW,1.5,3,25,
-2016-04-28,-0.4,-3.7,-1.5,-1.7,0/9/0,1002.2,989.6,995.2,,32.0,28.0,17.0,,,206.0,SW,1.3,10,35,
-2016-04-29,-0.2,-2.3,-0.8,-1.7,0/9/0,996.3,975.9,986.8,,36.0,30.0,16.0,,,276.0,NW,0.0,1,36,
-2016-04-30,-2.3,-6.5,-5.3,-1.7,0/9/0,980.7,973.3,977.8,,42.0,34.0,18.0,,,236.0,SW,0.0,0,35,
-2016-05-01,-5.3,-8.8,-7.3,-1.7,0/9/0,992.2,973.1,980.0,,39.0,34.0,21.0,,,198.0,SW,0.0,1,36.0,
-2016-05-02,-5.7,-7.4,-7.0,-1.8,0/9/0,998.3,988.0,995.3,,22.0,17.0,8.0,,,209.0,SW,0.3,0,35.0,
-2016-05-03,-1.3,-5.7,-2.6,0.0,0/9/0,991.1,981.0,983.8,,19.0,16.0,7.0,,,293.0,SE,0.8,5,40.0,
-2016-05-04,-2.9,-6.1,-4.4,-1.7,0/9/0,1003.0,991.1,1000.1,,21.0,19.0,10.0,,,294.0,SW,0.0,15,55.0,
-2016-05-05,-3.3,-6.0,-4.5,-1.7,0/9/0,1010.6,1001.8,1006.5,,17.0,14.0,6.0,,,207.0,SW,0.5,0,54.0,
-2016-05-06,-0.4,-4.8,-1.9,-1.7,0/9/0,1011.5,1008.6,1010.3,,13.0,12.0,7.0,,,327.0,NW,0.3,0,52.0,
-2016-05-07,-0.2,-3.5,-1.9,-1.6,0/9/0,1008.6,994.9,1000.5,,11.0,10.0,2.0,,,297.0,NW,0.5,0,51.0,
-2016-05-08,-1.3,-2.7,-2.0,-1.6,0/9/0,1002.6,996.6,1000.7,,0.0,0.0,0.0,,,173.0,0,0.0,0,50.0,
-2016-05-09,-0.3,-1.5,-0.9,-1.6,0/9/0,1007.9,1001.6,1005.3,,0.0,0.0,0.0,,,295.0,0,0.0,0,50.0,
-2016-05-10,-0.5,-2.2,-1.1,-1.6,0/9/0,1012.9,1007.8,1010.7,,0.0,0.0,0.0,,,294.0,0,1.0,0,49.0,
-2016-05-11,0.6,-1.2,-0.8,-1.6,0/9/0,1013.0,1010.1,1011.7,,17.0,16.0,6.0,,,306.0,NW,0.0,1,50.0,
-2016-05-12,0.7,-1.3,-0.4,-1.6,0/9/0,1012.6,1009.5,1011.0,,17.0,15.0,4.0,,,313.0,NW,1.5,0,50.0,
-2016-05-13,-0.3,-2.4,-1.2,-1.6,0/9/0,1012.8,1007.5,1009.5,,12.0,10.0,2.0,,,314.0,NW,0.0,0,50.0,
-2016-05-14,-0.9,-2.6,-1.9,-1.7,0/9/0,1018.9,1012.8,1016.5,,0.0,0.0,0.0,,,313.0,0,0.0,0,50.0,
-2016-05-15,1.1,-2.6,-1.3,-1.7,0/9/0,1019.2,1012.8,1017.4,,0.0,0.0,0.0,,,313.0,0,0.0,0,46.0,
-2016-05-16,0.7,-2.1,-0.9,-1.7,0/9/0,1012.8,1001.8,1005.2,,19.0,17.0,4.0,,,301.0,NW,1.0,2,48.0,
-2016-05-17,-0.8,-1.8,-1.2,-1.7,0/9/0,1002.8,998.7,1000.4,,0.0,0.0,0.0,,,324.0,0,0.0,4,52.0,
-2016-05-18,-1.2,-3.7,-1.9,-1.7,0/9/0,999.9,992.2,997.2,,0.0,0.0,0.0,,,258.0,0,1.3,4,56.0,
-2016-05-19,-1.1,-2.5,-1.7,-1.6,0/9/0,992.9,988.0,990.0,,0.0,0.0,0.0,,,102.0,0,11.2,6,62.0,
-2016-05-20,0.8,-5.0,-2.2,-1.3,0/9/0,993.5,967.7,982.2,,39.0,35.0,6.0,,,16.0,N,3.3,0,61.0,
-2016-05-21,0.8,-6.4,-2.4,-1.3,0/9/0,980.9,962.9,968.8,,34.0,30.0,15.0,,,14.0,N,2.0,0,59.0,
-2016-05-22,-4.9,-9.2,-7.3,-1.6,0/9/0,989.7,980.9,987.7,,17.0,15.0,8.0,,,226.0,SW,0.0,1,60.0,
-2016-05-23,-0.1,-8.8,-3.6,-1.7,0/9/0,986.9,972.6,976.8,,27.0,23.0,11.0,,,355.0,W,1.0,3,63.0,
-2016-05-24,-1.9,-4.2,-3.3,-1.8,0/9/0,1012.6,974.2,994.4,,34.0,30.0,11.0,,,199.0,SW,0.0,0,60.0,
-2016-05-25,0.1,-3.0,-1.3,-1.8,0/9/0,1017.8,1012.5,1015.6,,15.0,14.0,6.0,,,312.0,NW,0.3,0,59.0,
-2016-05-26,0.4,-3.0,-0.9,-1.7,0/9/0,1018.1,1005.2,1012.9,,10.0,8.0,1.0,,,313.0,NW,0.3,0,59.0,
-2016-05-27,-0.9,-2.4,-1.8,-1.8,0/9/0,1007.1,1004.3,1005.7,,0.0,0.0,0.0,,,307.0,0,0.0,1,60.0,
-2016-05-28,0.6,-1.9,-0.5,-1.7,0/9/0,1010.0,1005.3,1007.7,,8.0,7.0,1.0,,,159.0,SE,1.8,2,62.0,
-2016-05-29,3.7,-0.1,1.0,-1.6,0/9/0,1010.1,1008.4,1009.5,,13.0,11.0,2.0,,,129.0,N,4.8,0,58.0,
-2016-05-30,4.1,-0.1,1.1,-1.6,0/9/0,1008.9,995.5,1002.1,,33.0,30.0,7.0,,,10.0,N,6.1,0,55.0,
-2016-05-31,2.3,-2.9,-0.8,-1.5,0/9/0,1002.3,995.6,999.2,,25.0,22.0,8.0,,,311.0,NW,1.5,0,52.0,
-2016-06-01,-2.4,-3.4,-2.9,-1.6,0/9/0,1001.7,987.8,992.4,,15.0,,4.0,,131.0,,ESE,0.5,1,53,
-2016-06-02,-1.7,-6.4,-3.8,-1.7,0/9/0,993.5,990.2,991.7,,26.9,,12.0,,210.0,,SW,0,1,54,
-2016-06-03,-6.3,-9.8,-8.3,-1.8,0/9/0,1003.4,992.9,999.2,,22.7,,9.1,,242.0,,SW,0,0,53,
-2016-06-04,-3.2,-8.7,-5.7,-1.8,0/9/0,1003.3,997.7,999.7,,11.2,,2.3,,123.0,,WNW,0,0,53,
-2016-06-05,-2.8,-3.6,-3.1,-1.7,0/9/0,1001.3,998.9,1000.0,,13.4,,3.3,,104.0,,ESE,0,0,53,
-2016-06-06,-2.1,-5.0,-3.2,-1.6,0/9/0,1004.4,1001.3,1002.4,,29.4,,8.8,,10.0,,SE,0,0,53,
-2016-06-07,-3.5,-6.1,-4.9,-1.7,0/9/0,1004.4,996.7,1001.4,,21.2,,7.3,,224.0,,SW,0,2,55,
-2016-06-08,-4.3,-7.9,-6.3,-1.7,0/9/0,1002.2,997.2,1000.2,,15.1,,6.8,,220.0,,SW,0,2,57,
-2016-06-09,0.0,-4.8,-2.2,-1.7,0/9/0,999.1,989.7,994.6,,21.5,,4.8,,344.0,,NNW,1.8,2,59,
-2016-06-10,-0.2,-2.8,-1.6,-1.7,0/9/0,989.7,980.9,984.5,,15.9,,2.9,,107.0,,ESE,0.3,2,61,
-2016-06-11,2.2,-1.3,-0.2,-1.7,0/9/0,985.1,962.8,979.5,,26.7,,7.2,,19.0,,ESE,2.3,3,64,
-2016-06-12,2.3,-3.2,-1.1,-1.7,0/9/0,980.3,960.7,972.3,,45.4,,12.2,,256.0,,NNW,0.5,0,63,
-2016-06-13,-0.4,-3.3,-1.8,-1.6,0/9/0,977.1,955.7,963.3,,46.2,,17.2,,69.0,,ESE,0,0,63,
-2016-06-14,-2.1,-7.4,-4.8,-1.7,0/9/0,989.0,969.1,982.6,,18.5,,7.2,,360.0,,WSW,0,0,62,
-2016-06-15,3.2,-5.8,-0.3,-1.7,0/9/0,987.4,974.9,979.7,,38.5,,14.4,,8.0,,N,8.6,6,68,
-2016-06-16,1.8,-2.8,-1.0,-1.6,0/9/0,991.6,974.7,986.3,,39.0,,9.7,,16.0,,NNW,1.5,1,69,
-2016-06-17,4.5,-2.2,1.1,-1.5,0/9/0,990.9,980.2,985.8,,48.7,,11.7,,11.0,,ESE,5.6,0,61,
-2016-06-18,2.6,-1.3,0.0,-1.4,0/9/0,990.5,983.3,986.8,,37.3,,13.8,,8.0,,NNE,4.3,1,62,
-2016-06-19,2.7,-1.1,1.2,-1.4,0/9/0,986.6,977.3,981.4,,53.6,,18.2,,333.0,,NNW,11.4,0,60,
-2016-06-20,-1.0,-3.3,-2.3,-1.6,0/9/0,993.7,973.8,984.2,,34.1,,13.5,,208.0,,SSW,2.3,0,58,
-2016-06-21,1.3,-2.4,-0.1,-1.4,0/9/0,991.9,974.8,978.9,,47.5,,24.0,,23.0,,NNE,4.1,1,59,
-2016-06-22,-0.3,-2.8,-1.5,-1.6,0/9/0,998.3,975.4,988.0,,19.8,,10.7,,269.0,,W,0.3,12,71,
-2016-06-23,4.4,-2.9,1.0,-1.4,0/9/0,998.2,982.9,990.8,,50.8,,25.7,,29.0,,NNE,8.4,0,71,
-2016-06-24,2.7,-3.4,-0.6,-1.3,0/9/0,990.4,972.1,985.1,,71.4,,16.3,,8.0,,NNE,12.4,0,61,
-2016-06-25,3.4,0.0,1.3,-1.2,0/9/0,977.7,956.1,966.6,,57.8,,32.9,,4.0,,NNW,6.1,2,63,
-2016-06-26,0.8,-1.0,-0.1,-1.2,0/9/0,982.7,968.4,973.0,,46.2,,21.8,,327.0,,NW,0,0,62,
-2016-06-27,0.3,-3.1,-1.4,-1.2,0/9/0,989.9,982.1,984.8,,37.6,,12.2,,321.0,,NW,0,0,62,
-2016-06-28,0.8,-5.0,-1.4,-1.5,0/9/0,996.0,985.1,990.5,,59.6,,19.3,,16.0,,N,7.1,0,62,
-2016-06-29,1.1,-1.7,-0.6,-1.4,0/9/0,985.3,968.1,974.7,,34.7,,6.2,,11.0,,ESE,3.6,7,69,
-2016-06-30,-1.5,-6.2,-4.4,-1.6,0/9/0,974.8,968.2,970.8,,25.8,,8.1,,239.0,,WSW,0.8,0,65,
-2016-07-01,-5.0,-8.3,-6.4,-1.7,0/9/0,992.1,974.8,986.1,,17.7,,7.3,,235.0,,SW,0,0,65,
-2016-07-02,0.3,-5.6,-1.8,-1.7,0/9/0,991.7,961.0,979.5,,57.5,,23.5,,340.0,,NNW,5.8,4,69,
-2016-07-03,-3.8,-9.8,-6.5,-1.8,0/9/0,968.0,949.4,958.3,,46.2,,19.5,,289.0,,WNW,0,0,67,
-2016-07-04,-6.6,-15.9,-11.7,-1.8,0/9/0,965.9,953.0,961.1,,37.1,,18.1,,226.0,,SSW,0,0,66,
-2016-07-05,-14.7,-15.8,-15.3,-1.8,30933,974.0,964.3,970.1,,31.0,,14.6,,206.0,,SSW,0,0,66,
-2016-07-06,-9.3,-16.0,-14.1,-1.7,30953,987.0,973.9,978.0,,28.5,,10.8,,116.0,,S,0,0,66,
-2016-07-07,-7.6,-11.4,-9.7,-1.8,31953,1000.4,987.0,995.7,,11.2,,3.0,,98.0,,NNE,2,1,67,
-2016-07-08,-8.6,-10.4,-9.5,-1.8,31951,1001.6,1000.3,1001.1,,12.0,,3.4,,210.0,,NNW,0,0,67,
-2016-07-09,-9.8,-11.6,-10.4,-1.7,31952,1007.2,1000.5,1003.0,,8.9,,2.5,,326.0,,ENE,0,0,67,
-2016-07-10,-9.2,-13.5,-11.1,-1.7,31952,1008.0,1006.1,1007.2,,6.9,,1.3,,76.0,,NNE,0,0,67,
-2016-07-11,-9.3,-13.2,-11.4,-1.7,31952,1008.6,1005.9,1007.6,,6.9,,,,,,NE,0,0,67,
-2016-07-12,-7.3,-10.0,-8.6,-1.7,32952,1005.9,1000.4,1002.5,,2.9,,,,116.0,,NNE,0,0,67,
-2016-07-13,-6.7,-10.1,-8.3,-1.7,32941,1011.1,1001.3,1005.9,,9.3,,1.5,,332.0,,N,0,0,67,
-2016-07-14,-1.0,-9.3,-4.5,-1.8,32941,1015.6,1011.1,1013.2,,13.3,,2.6,,99.0,,ESE,0.3,1,68,
-2016-07-15,2.5,-3.1,-1.3,-1.8,22941,1018.9,1015.2,1017.1,,28.7,,2.2,,19.0,,ESE,0,0,68,
-2016-07-16,4.4,-2.7,1.9,-1.7,12950,1017.3,1009.9,1014.2,,57.5,,28.4,,13.0,,NNE,1.3,0,68,
-2016-07-17,2.3,0.2,1.0,-1.5,0/9/0,1013.0,998.2,1006.4,,57.9,,28.1,,9.0,,NNE,4.8,0,68,
-2016-07-18,3.3,-0.3,1.2,-1.5,0/9/0,1002.3,991.7,997.4,,43.1,,13.5,,352.0,,N,1,0,66,
-2016-07-19,3.2,0.1,1.0,-1.4,0/9/0,991.9,977.7,983.4,,44.6,,27.1,,1.0,,N,4.3,0,66,
-2016-07-20,1.1,-4.7,-0.8,-1.5,0/9/0,982.7,973.6,977.7,,45.5,,22.3,,360.0,,N,0.3,4,70,
-2016-07-21,-2.6,-6.4,-4.5,-1.7,0/9/0,975.1,962.6,968.9,,37.0,,12.5,,10.0,,NNE,0.8,0,69,
-2016-07-22,-4.1,-7.8,-6.0,-1.7,0/9/0,974.9,961.2,966.6,,32.6,,10.9,,48.0,,NNE,1.8,0,69,
-2016-07-23,-6.8,-12.7,-9.7,-1.8,20952,986.6,974.9,981.4,,19.4,,10.2,,259.0,,SW,0,0,67,
-2016-07-24,-11.8,-13.9,-12.9,-1.7,21943,993.5,986.5,991.4,,19.0,,6.7,,189.0,,SW,0,0,67,
-2016-07-25,-12.1,-15.2,-13.4,-1.7,21943,999.7,991.1,993.7,,14.5,,4.9,,195.0,,SSW,0,0,67,
-2016-07-26,-7.8,-14.4,-12.6,-1.7,21943,1009.1,999.7,1006.1,,12.6,,4.5,,328.0,,NW,0,0,67,
-2016-07-27,-1.0,-8.1,-3.7,-1.7,21943,1008.7,1004.7,1006.8,,15.2,,7.6,,322.0,,NW,0,0,67,
-2016-07-28,-0.7,-6.1,-2.5,-1.7,21941,1007.2,1004.4,1006.4,,15.0,,5.3,,322.0,,NW,0,5,72,
-2016-07-29,-2.8,-7.6,-5.5,-1.8,21842,1004.5,999.5,1001.2,,15.0,,,,,,NW,0,0,71,
-2016-07-30,-2.6,-8.4,-6.4,-1.8,21842,1004.8,1000.3,1003.2,,15.0,,,,,,W,0,1,72,
-2016-07-31,1.0,-9.7,-5.4,-1.8,,1005.3,985.7,999.0,,41.8,,6.3,,316.0,,NNW,1.8,,,
-2016-08-01,-0.8,-8.3,-2.9,-1.8,21842,988.3,979.1,982.8,,44.8,,19.7,,227.0,,W,0,14,86,
-2016-08-02,-6.8,-11.0,-9.1,-1.8,31843,998.5,988.0,994.5,,31.8,,9.5,,207.0,,SSW,0,0,86,
-2016-08-03,-0.8,-9.6,-2.9,-1.8,31853,995.8,976.2,982.1,,50.1,,17.2,,360.0,,NNW,2.8,5,91,
-2016-08-04,-2.6,-12.0,-7.7,-1.8,31853,985.3,979.2,982.8,,19.6,,6.9,,286.0,,WNW,0,11,102,
-2016-08-05,-0.9,-7.6,-2.4,-1.8,31851,983.7,977.1,981.2,,58.0,,20.3,,3.0,,NNE,0.3,0,92,
-2016-08-06,2.4,-1.8,0.5,-1.7,31851,982.8,969.2,976.5,,60.8,,30.9,,12.0,,NNE,18.8,0,82,
-2016-08-07,0.0,-3.4,-1.7,-1.7,11850,974.5,962.6,969.1,,47.0,,19.5,,1.0,,N,1,0,80,
-2016-08-08,-2.9,-8.0,-5.0,-1.7,11850,964.7,962.3,963.8,,31.7,,15.9,,319.0,,NNW,0,8,88,
-2016-08-09,-5.7,-13.2,-9.5,-1.8,21853,977.5,960.5,965.8,,31.3,,15.1,,221.0,,SW,0,0,88,
-2016-08-10,-11.4,-14.2,-13.1,-1.8,31853,1005.9,977.5,992.9,,34.2,,13.1,,201.0,,SW,0,0,87,
-2016-08-11,-11.5,-14.0,-12.7,-1.8,31853,1011.7,1005.8,1009.9,,6.5,,2.4,,5.0,,NNE,0.5,0,87,
-2016-08-12,-9.7,-14.0,-12.1,-1.8,32853,1014.2,1009.6,1012.5,,7.2,,2.0,,76.0,,NNE,0,0,87,
-2016-08-13,-3.9,-12.5,-7.2,-1.7,32851,1009.6,997.7,1003.3,,41.5,,12.1,,100.0,,ESE,0,0,84,
-2016-08-14,-4.1,-9.2,-6.0,-1.8,32851,997.8,987.0,992.2,,27.1,,5.2,,113.0,,N,0,0,84,
-2016-08-15,-4.6,-10.6,-7.9,-1.7,32851,993.0,981.8,987.5,,46.1,,16.7,,106.0,,ESE,0,0,80,
-2016-08-16,-4.4,-10.2,-8.1,-1.7,32851,993.7,991.6,992.5,,24.7,,5.6,,141.0,,NNE,0,0,80,
-2016-08-17,-8.4,-11.9,-9.8,-1.7,32851,996.8,993.6,995.5,,11.2,,4.1,,202.0,,SW,0,1,81,
-2016-08-18,-10.5,-14.2,-12.5,-1.7,32851,997.0,994.3,995.4,,11.2,,2.0,,202.0,,ESE,0,1,82,
-2016-08-19,-9.1,-13.2,-11.3,-1.7,32853,996.3,993.4,994.6,,24.5,,7.4,,130.0,,WSW,0,2,84,
-2016-08-20,-11.4,-14.2,-12.7,-1.7,32852,1012.1,996.2,1007.0,,26.7,,8.3,,119.0,,ESE,0,0,84,
-2016-08-21,-13.6,-16.3,-14.8,-1.7,32852,1011.1,1004.8,1008.8,,7.1,,3.7,,8.0,,NNE,0,0,83,
-2016-08-22,-13.0,-17.6,-15.1,-1.7,32852,1004.8,999.1,1001.1,,11.5,,2.9,,47.0,,NNE,0,0,82,
-2016-08-23,-10.9,-15.4,-13.0,-1.8,11850,1001.7,999.0,999.8,,19.2,,5.4,,35.0,,NNE,0,0,82,
-2016-08-24,-9.9,-12.6,-11.3,-1.7,11850,1003.5,1001.6,1003.0,,16.5,,4.2,,30.0,,NNE,0,0,82,
-2016-08-25,-3.1,-10.2,-8.1,-1.7,11850,1003.4,995.3,1000.6,,21.9,,7.1,,135.0,,NNE,0,0,82,
-2016-08-26,-3.3,-7.2,-4.8,-1.6,11800,1004.7,994.9,999.7,,18.6,,6.2,,126.0,,NNW,0.5,4,86,
-2016-08-27,2.5,-8.3,-4.0,-1.7,11800,1005.3,999.5,1003.7,,37.0,,6.1,,12.0,,NNE,0,0,86,
-2016-08-28,2.8,0.7,1.7,-1.3,11800,999.5,980.4,989.4,,55.2,,36.3,,6.0,,NNE,31.2,0,75,
-2016-08-29,2.8,-1.1,0.9,-1.0,0/8//,981.7,969.0,977.8,,50.1,,24.0,,3.0,,N,1.3,0,75,
-2016-08-30,3.2,-7.0,-1.3,-1.0,0/8//,969.0,959.0,961.6,,29.0,,12.5,,96.0,,ESE,0,0,75,
-2016-08-31,-6.9,-10.2,-8.7,-1.3,0/8//,976.8,963.6,967.1,,23.8,,13.1,,204.0,,SSW,0,5,80,
-2016-09-01,-7.7,-11.0,-9.7,-1.5,0/8//,998.0,976.8,989.3,,24.7,,11.9,,239.0,,SW,0,0,76,
-2016-09-02,-1.5,-7.7,-3.3,-1.6,10800,1017.6,997.9,1008.5,,21.7,,8.0,,236.0,,WSW,0,0,75,
-2016-09-03,1.2,-4.9,-2.5,-1.5,10800,1019.4,997.0,1014.3,,47.0,,14.0,,29.0,,NNE,1,0,75,
-2016-09-04,2.4,-1.0,0.6,-1.5,//8//,996.9,967.9,982.8,,60.0,,21.3,,8.0,,NNE,26.7,0,75,
-2016-09-05,1.7,-1.5,-0.4,-1.6,//8//,981.6,966.8,974.7,,52.1,,31.2,,354.0,,NW,3.3,3,78,
-2016-09-06,2.9,-0.6,0.8,-1.5,//8//,980.0,970.5,976.6,,68.3,,33.0,,350.0,,NNW,11.2,1,79,
-2016-09-07,2.4,-7.8,-0.6,-1.4,//8//,970.9,961.6,964.3,,58.6,,30.6,,349.0,,NNW,22.1,0,77,
-2016-09-08,-3.9,-10.7,-8.0,-1.3,20850,973.0,964.0,969.6,,26.7,,9.6,,24.0,,WSW,0,4,81,
-2016-09-09,-2.2,-8.5,-5.9,-1.4,20851,972.3,954.0,964.9,,44.0,,17.4,,352.0,,NNW,2.5,0,78,
-2016-09-10,-2.9,-18.7,-13.4,-1.4,51853,991.4,960.1,980.8,,39.6,,12.4,,229.0,,WSW,0.8,0,76,
-2016-09-11,-0.2,-2.8,-1.2,-1.4,51853,994.5,990.4,992.9,,27.1,,14.1,,342.0,,NW,0.5,6,82,
-2016-09-12,0.8,-0.8,-0.4,-1.4,51853,996.9,987.9,991.7,,28.9,,14.5,,321.0,,NW,2.8,16,98,
-2016-09-13,1.7,0.6,1.1,-1.5,51852,999.4,979.2,992.5,,72.3,,33.0,,23.0,,N,18.5,1,99,
-2016-09-14,1.4,-0.8,0.2,-1.5,51852,984.8,976.3,981.1,,52.3,,26.5,,23.0,,N,5.6,0,95,
-2016-09-15,0.2,-7.8,-3.2,-1.6,41851,977.6,969.1,974.6,,35.1,,10.9,,35.0,,NW,0.5,0,94,
-2016-09-16,1.8,-2.1,-0.2,-1.6,41851,983.9,971.5,976.3,,32.4,,14.9,,13.0,,NNW,2.5,0,94,
-2016-09-17,1.3,-0.9,0.6,-1.6,21851,983.4,968.0,977.1,,48.3,,30.6,,354.0,,N,5.8,0,93,
-2016-09-18,0.7,-1.1,-0.1,-1.6,21851,984.1,972.1,977.6,,49.3,,26.8,,360.0,,NNW,3.3,5,98,
-2016-09-19,1.3,0.2,0.7,-1.6,21851,989.3,982.9,986.9,,43.1,,30.9,,328.0,,NNW,2.3,1,99,
-2016-09-20,2.9,-4.3,0.2,-1.6,21851,985.7,975.8,979.3,,37.4,,15.5,,14.0,,N,1,0,99,
-2016-09-21,1.5,-6.4,-1.2,-1.6,21853,985.3,967.5,977.2,,54.5,,20.3,,11.0,,NNE,14,4,103,
-2016-09-22,1.0,-5.8,-2.5,-1.6,32853,996.7,963.4,980.8,,47.5,,19.0,,350.0,,WSW,4.1,0,101,
-2016-09-23,1.1,-3.1,0.2,-1.6,11800,994.5,971.6,977.1,,68.7,,37.5,,360.0,,NNW,15.2,0,100,
-2016-09-24,1.3,-3.8,-0.4,-1.6,21853,988.3,971.9,981.5,,61.5,,25.6,,350.0,,NW,0,1,101,
-2016-09-25,1.0,-3.6,-0.5,-1.6,21853,999.0,988.2,993.9,,32.5,,14.8,,346.0,,NW,0.5,2,104,
-2016-09-26,2.8,-4.4,-1.3,-1.4,21853,998.5,983.4,989.7,,21.6,,3.3,,66.0,,NW,1.8,2,106,
-2016-09-27,1.3,-2.8,-0.9,-1.5,21853,990.5,983.2,985.2,,26.1,,8.1,,353.0,,WNW,0,3,109,
-2016-09-28,4.4,-5.7,-0.8,-1.4,21853,993.4,990.4,991.8,,37.0,,9.6,,2.0,,SE,3.6,0,109,
-2016-09-29,2.0,-4.3,-0.3,-1.4,21853,1000.7,991.6,996.5,,35.9,,14.6,,338.0,,NW,9.9,0,106,
-2016-09-30,0.6,-5.4,-1.7,-1.5,,999.0,988.2,993.6,,53.4,,14.5,,344.0,,NW,0.5,,,
-2016-10-01,0.4,-0.4,0.1,-1.6,21853,1007.6,995.6,1001.5,,31.3,,19.0,,310.0,,NW,0.8,30,135,
-2016-10-02,1.0,-0.8,0.0,-1.4,21853,1008.8,999.4,1005.9,,17.6,,5.7,,325.0,,NW,0.8,0,128,
-2016-10-03,3.1,-0.9,0.1,-1.2,21853,999.4,993.3,996.7,,20.1,,3.2,,128.0,,NW,2.3,0,124,
-2016-10-04,5.2,-1.0,2.3,-1.4,21853,993.8,982.0,986.6,,46.9,,26.2,,24.0,,N,8.4,0,110,
-2016-10-05,0.7,-1.3,-0.4,-1.5,21853,1008.7,992.2,1001.3,,23.1,,11.4,,309.0,,NW,1.5,5,115,
-2016-10-06,3.1,-2.0,0.4,-1.4,21853,1010.2,1007.0,1009.2,,21.8,,5.5,,9.0,,SE,0,0,115,
-2016-10-07,5.6,-0.1,2.9,-1.3,21853,1008.1,1004.0,1005.6,,35.7,,12.4,,13.0,,NNE,0,0,115,
-2016-10-08,5.2,1.7,3.9,-1.3,21853,1009.2,1007.0,1008.2,,35.9,,16.8,,23.0,,NNE,0.3,0,100,
-2016-10-09,3.5,-2.0,-0.2,-1.2,21853,1008.1,1000.4,1005.0,,30.6,,5.2,,22.0,,NW,0,0,97,
-2016-10-10,0.3,-2.4,-1.2,-1.0,21853,1000.4,993.0,996.7,,7.8,,1.5,,304.0,,ESE,0,0,96,
-2016-10-11,0.1,-3.1,-1.6,-1.0,21853,993.0,977.1,984.6,,8.7,,2.6,,323.0,,NNE,0,0,96,
-2016-10-12,3.0,-1.3,0.8,-1.0,21853,977.1,968.2,971.9,,22.3,,7.1,,102.0,,ESE,2,4,100,
-2016-10-13,2.5,-4.8,-1.8,-1.0,21853,970.3,967.8,968.4,,21.6,,3.7,,68.0,,NW,0,0,97,
-2016-10-14,-3.2,-7.5,-5.9,-1.0,21853,979.2,970.3,975.8,,14.4,,4.7,,327.0,,NW,0,0,97,
-2016-10-15,-5.6,-9.4,-7.1,-1.1,41853,990.6,979.2,985.2,,13.1,,4.5,,203.0,,SSW,0,0,97,
-2016-10-16,-7.2,-9.0,-8.2,-1.2,41853,997.3,987.1,990.5,,15.5,,6.4,,196.0,,SW,0,1,98,
-2016-10-17,-5.7,-9.5,-7.8,-1.2,41853,1004.8,997.3,1002.4,,13.5,,3.3,,188.0,,S,0,0,97,
-2016-10-18,-0.6,-6.2,-3.5,-1.2,41853,1004.8,994.8,1000.8,,9.8,,2.8,,296.0,,NW,0,0,97,
-2016-10-19,1.9,-2.2,-0.3,-1.1,41853,994.8,972.0,980.0,,25.1,,4.9,,360.0,,ESE,5.6,8,105,
-2016-10-20,-0.7,-2.0,-1.1,-1.0,41853,976.8,965.2,972.1,,27.7,,14.3,,311.0,,NW,1.3,5,110,
-2016-10-21,-1.9,-6.6,-3.8,-1.2,41853,965.4,957.2,960.9,,26.1,,11.1,,210.0,,WNW,0.8,6,116,
-2016-10-22,-3.9,-7.6,-5.6,-1.1,41853,992.2,965.4,978.1,,15.8,,4.0,,216.0,,SW,0,0,111,
-2016-10-23,-0.6,-7.1,-4.7,-1.0,41853,995.5,987.8,991.9,,14.2,,6.3,,116.0,,SE,1.3,0,109,
-2016-10-24,2.1,-2.3,0.4,-1.2,41853,990.2,970.5,979.7,,54.9,,22.5,,339.0,,NNW,9.4,4,113,
-2016-10-25,0.3,-2.6,-1.3,-1.3,41853,985.6,975.6,980.7,,37.1,,17.5,,285.0,,WNW,0,0,110,
-2016-10-26,0.2,-1.3,-0.5,-1.2,41853,999.6,985.6,993.5,,29.3,,11.1,,238.0,,WSW,0,0,109,
-2016-10-27,0.6,-2.0,-0.8,-1.2,41853,999.1,995.2,996.3,,12.8,,4.0,,127.0,,SE,1.3,3,112,
-2016-10-28,1.6,-1.2,-0.5,-1.1,41853,996.0,991.4,993.1,,9.5,,2.4,,85.0,,WNW,0,0,110,
-2016-10-29,4.9,-1.8,0.6,-1.0,41853,992.1,982.5,988.7,,44.2,,12.1,,18.0,,NNE,4.8,0,105,
-2016-10-30,4.6,2.0,3.4,-1.2,31850,982.6,975.9,979.6,,43.5,,27.8,,23.0,,NNE,11.9,0,95,
-2016-10-31,4.2,1.4,2.5,-0.9,31850,975.9,969.6,972.0,,55.0,,28.9,,17.0,,N,21.6,0,82,
-2016-11-01,2.3,-1.8,1.0,-0.8,31850,969.7,956.4,962.6,,50.9,,23.4,,22.0,,NNE,3.3,0,78,
-2016-11-02,2.2,-1.8,-0.5,-0.8,31850,973.5,959.7,969.3,,31.6,,13.7,,9.0,,NW,0.3,3,81,
-2016-11-03,3.7,-0.4,1.6,-0.8,31850,959.7,950.3,953.8,,37.4,,18.5,,18.0,,NNE,2,0,79,
-2016-11-04,0.8,-2.8,-1.3,-1.0,31850,958.9,952.4,957.1,,31.1,,17.9,,343.0,,NNW,0.5,5,84,
-2016-11-05,-1.5,-6.0,-3.3,-1.0,41850,962.3,953.0,956.1,,17.9,,6.5,,224.0,,SW,0,0,82,
-2016-11-06,-0.7,-3.7,-2.1,-0.8,51853,969.9,962.3,966.4,,12.6,,6.5,,258.0,,NW,0,0,82,
-2016-11-07,-1.2,-3.3,-2.3,-0.7,51853,974.6,969.9,971.8,,10.6,,4.5,,301.0,,NW,0,0,80,
-2016-11-08,-0.5,-7.5,-3.6,-0.7,51853,977.9,974.6,975.9,,8.7,,2.0,,148.0,,N,0,0,80,
-2016-11-09,-1.2,-7.2,-3.4,-0.7,51853,991.0,977.9,983.8,,7.8,,2.6,,11.0,,WNW,0,0,78,
-2016-11-10,-2.4,-8.2,-4.7,-0.8,51853,998.5,991.0,996.2,,8.2,,2.6,,186.0,,NNE,0,0,78,
-2016-11-11,-1.2,-4.1,-3.1,-0.8,51853,997.6,984.5,991.7,,8.7,,2.4,,82.0,,NW,0,0,78,
-2016-11-12,-0.3,-6.7,-3.2,-0.8,51853,984.5,980.8,981.9,,17.9,,6.5,,59.0,,E,0,0,78,
-2016-11-13,-1.2,-5.8,-3.1,-1.1,41851,980.9,977.8,979.5,,23.8,,12.0,,57.0,,E,0,0,77,
-2016-11-14,-1.2,-4.6,-2.8,-1.1,31850,981.9,978.3,979.9,,16.3,,5.0,,172.0,,S,0,0,77,
-2016-11-15,-2.3,-5.0,-3.8,-0.9,31850,986.0,981.8,984.0,,10.4,,2.8,,210.0,,NNE,0,0,77,
-2016-11-16,-3.4,-5.1,-4.5,-0.7,41850,988.4,986.0,987.4,,11.3,,4.7,,205.0,,SSW,0,0,76,
-2016-11-17,-1.5,-5.6,-4.2,-0.9,51853,993.5,986.9,990.9,,8.4,,2.0,,203.0,,ESE,0,0,76,
-2016-11-18,1.2,-4.6,-1.9,-0.8,41850,1001.8,993.5,996.6,,6.8,,1.6,,312.0,,NNW,0,9,76,
-2016-11-19,2.1,-3.9,-0.7,-1.0,41853,1010.8,1001.7,1007.0,,8.1,,2.5,,279.0,,NNE,0,0,72,
-2016-11-20,2.2,-1.7,-0.2,-1.1,41850,1010.6,996.0,1005.7,,13.9,,2.9,,102.0,,SE,0.8,0,69,
-2016-11-21,0.6,-1.5,-0.5,-0.9,41853,999.0,992.2,995.0,,13.2,,4.0,,220.0,,SW,1.8,1,70,
-2016-11-22,2.0,-2.3,-1.2,-0.9,41853,1001.3,990.5,998.5,,22.3,,4.1,,145.0,,ESE,0.8,0,66,
-2016-11-23,5.4,1.1,2.7,-1.2,31850,990.8,976.3,980.5,,45.5,,21.2,,19.0,,NNW,14,0,60,
-2016-11-24,2.3,-0.6,0.8,-1.3,21853,981.1,978.3,979.8,,29.3,,15.7,,348.0,,NNW,0.8,0,57,
-2016-11-25,0.3,-1.8,-0.6,-1.2,21850,984.0,978.2,980.1,,22.9,,8.2,,335.0,,NW,3.6,8,65,
-2016-11-26,1.1,-2.4,-0.9,-1.1,21853,991.3,984.0,988.7,,9.5,,2.1,,1.0,,NW,0,0,58,
-2016-11-27,3.3,-1.4,0.6,-0.9,21850,989.6,974.8,980.4,,26.4,,6.9,,87.0,,ESE,4.6,0,58,
-2016-11-28,4.7,0.5,1.9,-0.8,21850,983.5,974.6,977.2,,21.4,,3.8,,360.0,,SE,2.8,0,54,
-2016-11-29,3.1,0.1,1.1,-0.7,21850,985.8,969.6,981.0,,29.3,,5.2,,62.0,,ESE,0,0,53,
-2016-11-30,6.1,1.0,2.8,-0.8,1/850,970.8,958.8,963.4,,45.9,,21.7,,73.0,,E,0,0,49,
-2016-12-01,2.9,-1.2,-0.3,-0.7,1/850,987.8,970.5,980.4,,13.1,,7.0,,307.0,,NW,0,0,47,
-2016-12-02,1.1,-2.3,-0.9,-0.7,41853,997.4,987.8,993.6,,15.9,,5.6,,226.0,,WSW,0,0,45,
-2016-12-03,2.6,-2.7,-0.3,-0.5,51853,997.3,992.8,995.4,,9.8,,1.8,,334.0,,NE,0,0,39,
-2016-12-04,2.6,0.0,0.8,-1.0,51853,993.3,990.3,992.5,,23.5,,3.1,,67.0,,SE,0,0,37,
-2016-12-05,3.2,0.2,1.6,-1.2,31851,990.3,983.3,986.7,,45.4,,16.3,,5.0,,N,0,0,34,
-2016-12-06,1.1,-1.2,0.1,-0.9,21850,987.3,983.9,985.3,,22.8,,12.0,,6.0,,N,1.8,0,30,
-2016-12-07,0.7,-2.7,-1.0,-0.8,21850,994.7,984.8,991.4,,16.5,,4.1,,92.0,,WNW,0,1,31,
-2016-12-08,0.6,-3.2,-1.5,-0.9,21852,994.4,990.4,992.6,,10.8,,3.8,,117.0,,ESE,0,0,26,
-2016-12-09,1.3,-0.6,0.2,-0.3,21851,990.4,988.2,989.2,,13.8,,3.8,,12.0,,ESE,0,0,23,
-2016-12-10,0.5,-0.5,0.0,-0.3,21850,992.8,989.1,991.2,,8.5,,2.7,,1.0,,E,0,0,21,
-2016-12-11,0.2,-1.3,-0.6,-0.6,21853,992.4,990.1,991.1,,10.8,,1.9,,220.0,,SSW,0,0,20,
-2016-12-12,0.2,-1.8,-1.1,-0.8,41853,995.8,990.9,993.3,,9.9,,4.8,,212.0,,SW,0,0,17,
-2016-12-13,1.2,-0.9,0.1,-1.0,51853,997.7,995.7,996.8,,11.4,,6.3,,323.0,,NW,0.5,0,14,
-2016-12-14,6.1,-0.4,1.4,-1.1,41851,996.2,979.2,987.8,,19.9,,4.7,,45.0,,SE,0.5,0,10,
-2016-12-15,4.4,0.4,1.7,-0.7,31851,979.2,973.6,975.7,,25.5,,3.1,,1.0,,SE,1.3,0,6,
-2016-12-16,6.2,-3.4,1.1,-0.7,41853,977.3,969.7,974.6,,29.3,,5.4,,112.0,,ESE,0,0,0,
-2016-12-17,4.7,1.2,3.1,-0.4,2/850,972.8,968.6,970.1,,35.4,,9.8,,75.0,,ESE,0,0,0,
-2016-12-18,6.4,1.6,3.5,0.2,2/850,984.3,972.8,979.1,,25.4,,2.8,,55.0,,NW,0,0,0,
-2016-12-19,4.6,0.4,2.2,0.5,2/850,989.7,984.3,987.3,,16.3,,3.7,,104.0,,ESE,0,0,0,
-2016-12-20,2.7,0.8,1.6,0.9,2/850,991.3,989.2,990.6,,10.5,,2.9,,257.0,,WNW,0,0,0,
-2016-12-21,2.0,0.5,1.1,0.8,2/853,990.4,989.1,989.8,,6.7,,2.1,,310.0,,NW,0.3,0,0,
-2016-12-22,4.6,-0.8,1.7,0.8,2/850,989.5,987.0,987.9,,22.5,,6.0,,83.0,,ESE,0,0,0,
-2016-12-23,5.0,1.3,2.6,0.8,2/850,994.6,989.4,991.8,,18.1,,4.6,,17.0,,E,0,0,0,
-2016-12-24,2.2,0.5,1.4,1.0,2/850,995.7,993.3,994.9,,9.0,,1.5,,349.0,,SE,0,0,0,
-2016-12-25,1.3,-0.5,0.5,1.0,2/850,993.3,987.6,990.2,,11.7,,3.6,,288.0,,NNW,0,0,0,
-2016-12-26,3.9,-0.1,1.5,1.4,2/850,987.6,982.1,984.3,,11.5,,3.9,,45.0,,NNW,0,0,0,
-2016-12-27,4.5,-0.4,2.0,1.6,2/850,989.1,982.6,986.2,,17.7,,6.2,,90.0,,NNW,0,0,0,
-2016-12-28,3.2,-0.1,1.2,1.7,2/850,989.4,988.7,989.1,,14.7,,4.3,,2.0,,N,1,0,0,
-2016-12-29,3.6,-0.7,1.0,2.0,2/850,991.2,988.1,989.1,,11.1,,3.7,,354.0,,ESE,0,0,0,
-2016-12-30,3.0,-0.2,1.2,2.0,2/850,994.6,991.2,992.9,,13.9,,3.5,,254.0,,NNW,0,0,0,
-2016-12-31,4.3,0.2,1.7,,,996.5,994.4,995.4,,13.0,,4.2,,263.0,,NNW,0.5,2.4,,
-2017-01-01,3.9,-0.8,1.5,2.9,2/850,996.6,990.5,994.3,,9.6,,4.9,,347.0,,NNW,0,0,0,
-2017-01-02,3.0,0.7,1.5,3.2,2/850,990.5,983.7,986.2,,26.0,,5.8,,16.0,,NNW,0,0,0,
-2017-01-03,4.3,0.1,2.0,2.7,2/850,997.0,984.1,990.5,,21.3,,4.2,,74.0,,NNW,0.5,0,0,
-2017-01-04,3.0,1.4,1.9,2.8,2/8/0,997.5,989.7,994.6,,12.0,,5.9,,219.0,,SW,0,0,0,
-2017-01-06,1.8,0.6,1.1,2.5,2/8/0,973.6,971.9,972.8,,13.1,,6.7,,191.0,,S,0,0,0,
-2017-01-07,3.7,-1.0,1.6,2.2,0/8/0,984.7,973.6,979.8,,28.4,,8.2,,8.0,,N,0,0,0,
-2017-01-08,3.9,1.3,2.3,2.2,0/8/0,985.2,981.6,984.0,,28.4,,7.1,,20.0,,ESE,0,0,0,
-2017-01-09,4.8,2.1,3.2,2.0,0/8/0,981.6,974.7,977.2,,32.9,,15.6,,104.0,,ESE,0,0,0,
-2017-01-10,5.3,1.7,3.6,1.5,0/8/0,975.1,972.6,973.8,,29.5,,8.9,,99.0,,E,0,0,0,
-2017-01-11,5.8,2.6,4.1,1.3,0/8/0,981.2,972.5,976.7,,30.6,,16.4,,108.0,,E,0,0,0,
-2017-01-12,5.5,0.8,2.9,1.7,0/8/0,985.7,981.0,982.9,,20.5,,7.2,,99.0,,ESE,0,0,0,
-2017-01-13,3.4,0.4,1.7,1.9,0/8/0,990.7,985.6,988.8,,9.0,,2.2,,343.0,,N,0,0,0,
-2017-01-14,2.1,0.2,1.1,1.9,0/8/0,990.7,988.3,989.9,,11.8,,3.0,,104.0,,ESE,0,0,0,
-2017-01-15,3.5,0.7,1.7,1.5,0/8/0,988.7,983.5,986.8,,13.7,,3.2,,142.0,,NNW,0,0,0,
-2017-01-16,3.2,-0.8,1.4,1.8,0/8/0,984.1,980.4,981.9,,20.2,,8.8,,125.0,,ESE,0,0,0,
-2017-01-17,3.2,-1.5,0.9,1.5,0/8/0,986.0,981.2,983.1,,19.4,,8.2,,101.0,,ESE,0,0,0,
-2017-01-18,3.4,-0.5,1.4,1.5,0/8/0,993.4,986.1,989.8,,11.6,,3.7,,179.0,,NNE,0,0,0,
-2017-01-19,4.1,0.3,2.0,1.6,0/8/0,997.1,993.4,995.4,,11.1,,4.1,,194.0,,SSW,0,0,0,
-2017-01-20,4.8,0.0,2.3,2.1,0/8/0,997.0,988.1,994.1,,30.1,,6.7,,80.0,,ENE,0,0,0,
-2017-01-21,4.5,0.8,2.5,1.6,0/8/0,988.4,982.4,984.1,,35.1,,12.8,,68.0,,E,1,0,0,
-2017-01-22,5.6,3.3,4.3,2.0,0/8/0,984.6,983.4,984.0,,30.3,,10.9,,18.0,,NNE,0,0,0,
-2017-01-23,4.3,0.4,2.7,1.6,0/8/0,989.6,984.0,986.1,,12.4,,3.0,,340.0,,NNW,0,0,0,
-2017-01-24,4.8,1.4,3.1,1.6,0/8/0,997.0,989.7,993.8,,12.2,,2.8,,336.0,,NE,0,0,0,
-2017-01-25,6.5,2.1,3.6,1.7,0/7/0,996.8,987.4,991.8,,28.7,,8.2,,32.0,,ESE,0,0,0,
-2017-01-26,7.4,3.0,5.1,1.9,0/7/0,987.4,974.6,980.9,,40.4,,11.1,,26.0,,NNE,0.3,0,0,
-2017-01-27,6.1,3.3,4.7,2.1,0/7/0,976.2,970.1,972.8,,39.4,,23.2,,19.0,,NNE,5.8,0,0,
-2017-01-28,6.2,2.7,4.1,1.5,0/8/0,978.5,968.8,974.4,,44.3,,19.8,,10.0,,NNW,7.1,0,0,
-2017-01-29,5.2,3.5,4.1,2.1,0/8/0,972.3,970.0,971.4,,37.2,,23.0,,346.0,,N,7.1,0,0,
-2017-01-30,4.4,1.0,2.3,2.1,0/8/0,977.8,971.1,974.9,,26.9,,6.6,,11.0,,SSW,3.6,0,0,
-2017-01-31,3.7,1.5,2.2,2.1,0/8/0,978.5,976.4,978.0,,12.0,,4.0,,204.0,,SW,0,0,0,
-2017-02-01,4.5,-0.1,2.0,2.0,0/8/0,976.6,972.0,973.6,,10.9,,3.2,,91.0,,E,0,0,0,
-2017-02-02,4.2,1.3,2.3,2.0,0/8/0,986.8,974.2,980.0,,15.1,,3.6,,243.0,,N,0,0,0,
-2017-02-03,2.4,0.2,1.4,2.0,0/8/0,996.5,986.8,992.2,,17.1,,7.0,,298.0,,WSW,1,0,0,
-2017-02-04,3.3,0.3,1.6,1.9,0/8/0,999.9,996.4,999.0,,13.5,,4.9,,218.0,,SW,0,0,0,
-2017-02-05,4.7,0.9,2.0,2.2,0/8/0,1007.0,999.1,1001.8,,19.0,,5.5,,72.0,,S,0,0,0,
-2017-02-06,4.0,-0.3,2.0,1.8,0/8/0,1010.2,1006.9,1009.3,,20.1,,6.4,,14.0,,NNE,0,0,0,
-2017-02-07,3.1,0.5,1.8,1.6,0/8/0,1009.1,1002.3,1005.6,,12.0,,3.9,,350.0,,N,0,0,0,
-2017-02-08,4.7,0.8,2.6,2.1,0/8/0,1002.3,994.9,998.9,,12.2,,3.2,,296.0,,ESE,1.5,0,0,
-2017-02-09,7.1,2.1,4.2,2.1,0/8/0,995.1,985.7,990.9,,26.6,,5.0,,21.0,,SE,2.8,0,0,
-2017-02-10,7.8,2.8,5.2,2.0,0/8/0,985.7,972.2,978.0,,45.7,,17.2,,25.0,,ENE,0,0,0,
-2017-02-11,6.7,2.4,3.9,2.4,0/8/0,981.8,977.8,979.6,,20.4,,4.7,,106.0,,ESE,0,0,0,
-2017-02-12,6.7,3.8,5.4,2.5,0/8/0,987.1,980.6,983.3,,33.2,,15.9,,20.0,,NNE,0.8,0,0,
-2017-02-13,8.1,3.6,5.0,2.2,0/8/0,987.5,974.7,982.5,,35.5,,14.9,,30.0,,NNE,0,0,0,
-2017-02-14,5.5,2.9,4.2,2.2,0/8/0,994.9,973.5,981.4,,32.6,,14.2,,130.0,,ESE,0,0,0,
-2017-02-15,5.8,1.9,4.0,1.6,0/8/0,999.1,991.3,995.5,,44.8,,18.0,,9.0,,N,1.3,0,0,
-2017-02-16,7.0,3.3,4.6,2.0,0/8/0,993.9,986.2,989.8,,25.3,,10.9,,5.0,,NNE,0.3,0,0,
-2017-02-17,5.2,1.3,3.2,2.2,0/8/0,995.4,986.7,992.5,,21.2,,3.2,,143.0,,ESE,0,0,0,
-2017-02-18,3.1,-1.3,0.8,2.2,0/8/0,995.3,990.1,992.6,,8.7,,3.4,,180.0,,SSW,0,0,0,
-2017-02-19,2.0,-2.4,-0.4,1.8,0/8/0,992.2,989.7,990.9,,13.5,,4.1,,44.0,,N,0,0,0,
-2017-02-20,2.0,0.2,1.1,1.8,0/8/0,994.5,992.2,993.4,,17.1,,6.1,,4.0,,ENE,0,0,0,
-2017-02-21,2.8,-0.1,1.1,1.6,0/8/0,994.4,991.8,993.1,,14.7,,3.7,,144.0,,SE,2.5,0,0,
-2017-02-22,4.9,0.6,2.7,1.5,0/8/0,995.2,989.9,991.4,,6.2,,1.7,,123.0,,N,0,0,0,
-2017-02-23,5.0,1.3,2.8,1.9,0/8/0,997.2,988.2,994.8,,36.7,,6.2,,13.0,,ESE,0,0,0,
-2017-02-24,4.8,0.9,3.4,1.9,0/7/0,991.0,982.0,987.5,,43.7,,17.3,,18.0,,WNW,9.7,0,0,
-2017-02-25,5.3,2.3,3.5,1.3,0/7/0,990.4,972.2,983.9,,31.9,,8.3,,79.0,,NNW,6.6,0,0,
-2017-02-26,5.4,1.0,2.8,2.2,0/7/0,976.9,970.9,972.6,,40.7,,21.8,,68.0,,ENE,0,0,0,
-2017-02-27,2.3,-0.4,0.9,1.6,0/7/0,992.9,976.7,986.8,,24.3,,11.0,,2.0,,NNW,1.3,0,0,
-2017-02-28,2.6,-0.9,0.7,1.1,0/7/0,999.3,992.9,996.8,,38.1,,11.8,,103.0,,E,0,0,0,
-2017-03-01,2.1,-2.1,0.1,1.8,0/6/0,998.7,995.7,996.9,,30.5,,8.0,,102.0,,N,0,0,0,
-2017-03-02,2.0,-0.5,0.8,1.4,0/6/0,996.4,994.4,995.3,,10.7,,4.0,,20.0,,N,0,0,0,
-2017-03-03,1.9,-1.9,0.0,1.2,0/6/0,1000.9,995.3,997.9,,13.4,,3.9,,16.0,,NNE,0,0,0,
-2017-03-04,1.7,-1.9,0.0,1.0,0/6/0,1006.9,1000.9,1003.3,,17.2,,7.2,,128.0,,NNE,0,0,0,
-2017-03-05,0.5,-1.1,-0.3,1.1,0/6/0,1012.2,1006.9,1010.7,,16.0,,5.4,,9.0,,ESE,0,0,0,
-2017-03-06,1.5,-1.0,0.2,1.3,0/6/0,1012.0,1007.6,1009.6,,9.0,,1.5,,219.0,,NNE,0,0,0,
-2017-03-07,1.1,-0.4,0.3,1.2,0/6/0,1008.2,1005.4,1006.8,,14.4,,5.3,,220.0,,SSW,0,0,0,
-2017-03-08,2.2,-0.4,0.7,0.9,0/6/0,1008.4,1004.5,1005.6,,12.2,,2.1,,211.0,,N,0.3,0,0,
-2017-03-09,4.0,-1.3,1.0,0.7,0/6/0,1009.7,1008.3,1009.2,,11.3,,2.2,,200.0,,NNW,0,0,0,
-2017-03-10,3.3,0.9,1.9,1.3,0/6/0,1009.6,1004.9,1007.6,,5.6,,1.3,,31.0,,NNE,0,0,0,
-2017-03-11,2.6,-0.9,0.7,1.3,0/6/0,1004.9,997.9,1001.4,,10.4,,2.8,,118.0,,ESE,0,0,0,
-2017-03-12,5.4,0.5,2.8,1.6,0/6/0,997.9,986.5,992.0,,31.5,,7.3,,23.0,,ESE,0,0,0,
-2017-03-13,6.4,2.0,3.9,1.3,0/6/0,993.3,985.7,988.8,,33.7,,4.6,,33.0,,NE,0.5,0,0,
-2017-03-14,3.5,1.5,2.3,1.2,0/6/0,1002.6,993.2,997.9,,10.8,,2.1,,98.0,,ESE,3.8,0,0,
-2017-03-15,3.5,0.8,2.1,1.4,0/6/0,1010.9,1002.6,1006.8,,12.8,,1.2,,12.0,,NE,0,0,0,
-2017-03-16,4.6,0.6,2.3,1.2,0/6/0,1011.6,1000.3,1008.7,,32.2,,10.7,,7.0,,NNE,1.8,0,0,
-2017-03-17,5.7,2.1,4.2,1.9,0/6/0,1000.7,982.9,988.9,,49.4,,27.6,,25.0,,NNE,9.1,0,0,
-2017-03-18,4.5,0.5,2.8,1.7,0/6/0,990.8,983.3,985.3,,29.2,,8.8,,341.0,,N,3.6,0,0,
-2017-03-19,3.2,-0.3,1.7,1.3,0/6/0,1002.8,990.8,999.1,,12.7,,3.3,,109.0,,NNW,3,0,0,
-2017-03-20,9.3,1.2,6.1,1.4,0/6/0,1002.8,985.7,996.3,,48.3,,15.2,,16.0,,NNE,2,0,0,
-2017-03-21,5.9,2.7,3.9,0.9,0/6/0,990.5,981.2,988.3,,35.2,,11.1,,12.0,,NNW,1.8,0,0,
-2017-03-22,4.5,0.2,1.9,1.3,0/6/0,985.8,978.0,981.7,,26.0,,10.1,,237.0,,WSW,18.3,0,0,
-2017-03-23,2.4,1.1,1.7,1.2,0/6/0,994.7,985.8,990.5,,24.5,,6.3,,239.0,,SW,0,0,0,
-2017-03-24,2.5,0.4,1.3,0.7,0/6/0,997.3,992.0,995.8,,17.4,,3.3,,38.0,,NNW,0,0,0,
-2017-03-25,4.8,1.2,2.4,1.0,0/6/0,992.4,987.9,989.6,,35.3,,9.3,,12.0,,ESE,2.5,0,0,
-2017-03-26,4.1,0.7,2.3,0.9,0/6/0,1007.3,992.4,1001.7,,21.6,,4.1,,11.0,,NNW,0,0,0,
-2017-03-27,5.4,2.3,3.8,0.8,0/4/0,1007.2,990.6,998.9,,61.1,,35.5,,23.0,,N,43.7,0,0,
-2017-03-28,6.0,2.9,3.8,0.5,0/6/0,997.0,988.7,993.6,,44.9,,22.4,,345.0,,N,25.1,0,0,
-2017-03-29,5.1,1.1,2.9,0.6,0/6/0,994.8,988.4,991.1,,45.9,,20.7,,350.0,,NW,1.8,0,0,
-2017-03-30,2.8,-0.2,1.3,-0.1,0/6/0,1000.1,987.6,993.7,,30.2,,11.3,,230.0,,W,4.8,0,0,
-2017-03-31,3.8,-0.9,2.0,0.4,0/6/0,1001.0,985.3,992.8,,42.8,,15.8,,4.0,,NNW,12.7,0,0,
-2017-04-01,3.6,1.0,2.2,0.2,0/6/0,994.7,979.1,985.3,,31.3,,17.7,,335.0,,W,10.2,0,0,
-2017-04-02,2.0,0.1,1.0,0.6,0/6/0,1002.5,994.7,999.8,,26.9,,12.1,,208.0,,SW,0,0,0,
-2017-04-03,0.2,-1.3,-0.7,0.5,0/6/0,1001.0,991.8,996.5,,20.9,,5.1,,188.0,,NNE,0,0,0,
-2017-04-04,-0.2,-3.0,-1.6,0.7,0/6/0,994.1,988.4,990.3,,18.5,,7.2,,190.0,,S,0,0,0,
-2017-04-05,-1.5,-3.2,-2.2,0.6,0/6/0,994.9,988.1,991.9,,25.6,,9.7,,202.0,,SSW,0,0,0,
-2017-04-06,0.8,-3.1,-1.4,0.4,0/6/0,998.0,987.3,991.4,,26.0,,6.0,,210.0,,SSW,0,0,0,
-2017-04-07,1.6,-1.5,-0.2,0.5,0/6/0,1000.5,995.6,998.4,,17.5,,4.9,,236.0,,ESE,0,0,0,
-2017-04-08,5.2,0.1,2.7,0.9,0/6/0,995.7,968.8,979.7,,48.4,,16.6,,20.0,,N,8.6,0,0,
-2017-04-09,2.9,1.3,2.1,0.3,0/6/0,983.5,972.4,978.7,,26.7,,17.6,,305.0,,NNW,5.8,0,0,
-2017-04-10,3.0,0.2,1.8,0.3,0/6/0,993.0,983.5,987.8,,22.0,,7.8,,1.0,,N,0,0,0,
-2017-04-11,1.9,0.2,0.8,0.2,0/6/0,993.2,982.4,986.7,,24.4,,8.2,,17.0,,NNW,0.3,0,0,
-2017-04-12,0.8,-0.7,0.2,0.5,0/6/0,986.5,981.9,983.7,,19.3,,4.9,,202.0,,SW,0,1,0.8,
-2017-04-13,1.8,-1.2,-0.1,-0.1,0/6/0,990.1,983.7,987.7,,29.0,,7.5,,360.0,,NNW,2.8,1,2.2,
-2017-04-14,1.1,-0.3,0.5,-0.5,0/6/0,998.6,986.5,993.3,,19.4,,8.2,,225.0,,WSW,1.5,5,6.8,
-2017-04-15,3.0,-0.3,0.7,-0.5,0/6/0,997.6,991.9,994.7,,34.2,,10.0,,16.0,,SW,1,0,5.2,
-2017-04-16,0.5,-1.8,-0.6,-0.3,0/6/0,1003.2,996.5,1000.5,,22.9,,8.8,,208.0,,SSW,0.3,0,4.8,
-2017-04-17,0.8,-1.6,0.1,-0.7,0/6/0,1001.0,987.6,997.5,,17.7,,7.3,,235.0,,NW,0.8,0,1.2,
-2017-04-18,4.1,0.1,2.4,-0.4,0/6/0,987.9,975.6,982.5,,37.0,,12.4,,350.0,,NNW,7.6,0,0,
-2017-04-19,3.7,-2.3,-0.2,0.0,0/6/0,975.6,966.4,970.6,,35.8,,5.4,,66.0,,SE,4.8,0,0,
-2017-04-20,-1.5,-3.9,-2.9,0.3,0/6/0,981.8,974.5,976.9,,22.9,,7.0,,58.0,,ESE,3,18,18.4,
-2017-04-21,-2.8,-4.8,-3.7,-0.1,0/6/0,995.3,981.8,989.3,,33.1,,13.3,,1.0,,NNE,0,0,16.2,
-2017-04-22,-2.5,-3.9,-3.1,-0.1,0/6/0,997.5,994.9,996.0,,16.6,,7.0,,195.0,,SSW,0,0,16.2,
-2017-04-23,-2.9,-3.8,-3.5,0.2,0/6/0,999.6,996.6,997.7,,21.0,,10.2,,197.0,,SW,0,0,14.8,
-2017-04-24,-3.2,-4.3,-3.9,0.0,0/6/0,1003.3,999.5,1001.7,,19.8,,6.7,,212.0,,SSW,0,0,13.4,
-2017-04-25,-1.8,-3.3,-2.4,-0.2,0/6/0,1003.2,999.0,1001.2,,18.0,,4.4,,171.0,,SW,0,0,11.2,
-2017-04-26,-1.6,-5.4,-2.6,-0.1,0/6/0,999.1,993.1,995.7,,16.7,,4.3,,8.0,,NNE,0,0,10.8,
-2017-04-27,-2.0,-3.4,-2.7,-0.4,0/6/0,996.4,993.5,995.4,,21.9,,12.6,,6.0,,N,0,0,10.8,
-2017-04-28,-2.1,-4.5,-3.0,-0.8,0/6/0,993.5,988.2,990.6,,14.8,,5.2,,6.0,,NNE,0,0,10.8,
-2017-04-29,-2.8,-5.1,-3.8,-1.0,0/6/0,988.5,986.4,987.4,,10.8,,2.1,,188.0,,NNE,0,0,10.8,
-2017-04-30,-2.3,-4.3,-3.4,-0.9,0/6/0,991.5,988.3,990.1,,16.6,,3.7,,95.0,,NNE,0,0,10.4,
-2017-05-01,4.3,-3.6,1.3,-0.5,0/6/0,990.5,972.6,984.4,,50.1,,18.8,,31.0,,NNE,3.6,2,12,
-2017-05-02,3.3,1.8,2.7,0.2,0/6/0,974.5,971.7,973.2,,49.9,,25.4,,28.0,,N,2.3,0,6.2,
-2017-05-03,2.0,-0.9,0.7,0.2,0/6/0,976.2,969.7,971.8,,42.2,,23.5,,27.0,,NNE,0.3,0,3,
-2017-05-04,-0.7,-5.1,-3.8,0.0,0/6/0,996.4,976.1,993.9,,26.0,,13.4,,45.0,,N,0,7,9.8,
-2017-05-05,1.2,-4.8,-1.8,0.1,0/6/0,996.6,984.1,992.6,,48.3,,20.6,,13.0,,NNE,0,0,9.4,
-2017-05-06,1.4,-2.1,-0.5,0.1,0/6/0,994.2,982.5,987.1,,43.9,,10.7,,26.0,,NNE,1.3,0,8.6,
-2017-05-07,1.9,-2.0,-1.0,0.2,0/6/0,997.3,991.0,995.5,,19.8,,5.4,,351.0,,SW,5.8,0,8,
-2017-05-08,2.0,-2.2,0.1,-0.7,0/6/0,991.0,981.8,984.3,,41.8,,20.5,,268.0,,WSW,9.1,0,8,
-2017-05-09,1.8,-2.1,0.1,-0.9,0/6/0,986.4,967.6,975.5,,36.8,,17.0,,8.0,,W,9.4,0,8.2,
-2017-05-10,0.6,-1.5,0.0,-0.9,0/6/0,982.3,976.0,978.5,,16.3,,5.3,,276.0,,NW,2.8,6,13.8,
-2017-05-11,0.9,-1.6,-0.4,-0.7,0/6/0,983.6,981.1,982.3,,19.1,,3.9,,119.0,,ESE,8.4,13,26.8,
-2017-05-12,-0.2,-1.7,-1.0,-0.8,0/6/0,999.2,983.3,991.3,,,,,,,,,5.1,2,28.6,
-2017-05-13,1.6,-2.1,-1.0,-1.0,0/6/0,1004.6,999.2,1002.6,,16.3,,1.3,,109.0,,NE,0,0,25,
-2017-05-14,6.3,-1.3,1.8,-0.8,0/6/0,1002.8,984.0,994.5,,40.5,,10.6,,70.0,,ESE,0,0,20.2,
-2017-05-15,4.3,0.1,2.0,0.0,0/6/0,984.7,979.0,981.6,,50.1,,10.2,,67.0,,ESE,9.7,0,9.4,
-2017-05-16,4.6,-0.3,1.9,-0.1,0/6/0,986.4,981.6,984.4,,31.3,,10.1,,4.0,,N,0,0,6.6,
-2017-05-17,3.4,-0.7,1.2,-0.2,0/6/0,994.7,985.8,991.1,,41.0,,13.5,,25.0,,NNE,0,0,4.4,
-2017-05-18,3.4,-0.2,2.0,-0.1,0/6/0,986.0,971.1,981.2,,44.6,,19.5,,22.0,,N,7.9,0,2.8,
-2017-05-19,4.5,-1.2,1.5,0.0,0/6/0,980.9,960.0,973.4,,53.2,,15.9,,2.0,,NNE,5.1,0,2.6,
-2017-05-20,1.6,-1.2,0.6,-0.1,0/6/0,975.7,958.7,970.5,,54.8,,24.4,,350.0,,NW,2.5,0,2.2,
-2017-05-21,2.3,-1.4,0.5,-0.4,0/6/0,980.7,971.7,976.4,,43.2,,16.8,,10.0,,N,0.8,0,2.2,
-2017-05-22,0.7,-5.7,-2.2,-0.1,0/6/0,978.4,967.2,971.3,,40.5,,20.6,,83.0,,E,0,0,2.2,
-2017-05-23,-3.8,-6.1,-5.0,-0.4,0/6/0,978.1,969.0,973.2,,18.3,,6.6,,88.0,,E,0,0,2.2,
-2017-05-24,-2.2,-6.8,-4.6,-0.7,0/6/0,981.6,977.1,978.5,,27.8,,7.1,,74.0,,ENE,0,0,2.2,
-2017-05-25,-2.5,-4.7,-3.9,-0.9,0/6/0,988.5,981.3,986.0,,26.4,,14.9,,28.0,,NNE,1,0,2.2,
-2017-05-26,-3.8,-7.6,-5.4,-1.1,0/6/0,997.3,988.4,994.4,,26.2,,10.4,,108.0,,SW,0,6,7.8,
-2017-05-27,-5.1,-8.6,-6.5,-1.1,0/6/0,1001.3,996.6,999.0,,20.3,,5.5,,177.0,,NE,0,0,7,
-2017-05-28,-3.1,-5.4,-4.1,-1.3,0/6/0,1007.2,1001.1,1004.2,,12.0,,4.4,,205.0,,SSW,0,0,6,
-2017-05-29,4.0,-3.8,-1.6,-1.4,0/6/0,1006.7,992.3,1001.4,,31.9,,5.8,,23.0,,NNE,0,0,3.6,
-2017-05-30,3.3,-0.7,0.5,-0.9,0/6/0,995.8,987.7,990.2,,36.1,,7.0,,14.0,,SW,7.4,2,5.4,
-2017-05-31,1.0,-1.1,-0.2,-1.4,0/6/0,1001.0,995.8,999.5,,12.6,,4.5,,114.0,,NNW,0.3,0,4.4,
-2017-06-01,3.9,-0.1,0.9,-0.9,0/6/0,1000.2,997.5,998.8,,15.3,,4.8,,73.0,,SE,1,0,4,
-2017-06-02,3.7,1.0,2.7,-0.9,0/6/0,997.6,993.3,995.0,,39.1,,17.7,,19.0,,NNE,0,0,4,
-2017-06-03,3.3,-0.7,1.1,-0.7,0/6/0,994.7,988.0,991.2,,27.5,,4.6,,40.0,,ESE,0.3,0,4.4,
-2017-06-04,2.7,-2.9,0.1,-0.7,0/6/0,988.1,984.1,986.5,,40.4,,14.4,,23.0,,NNE,0,1,5.8,
-2017-06-05,-2.3,-6.0,-4.3,-0.9,0/6/0,986.6,980.8,982.8,,11.1,,1.6,,83.0,,NE,0,1,7.6,
-2017-06-06,-0.5,-5.0,-3.1,-1.0,0/6/0,981.0,975.7,979.1,,54.9,,10.1,,18.0,,NNE,0,2,7,
-2017-06-07,-1.1,-2.8,-2.1,-0.7,0/6/0,985.8,975.9,982.0,,54.9,,30.0,,18.0,,NNE,0.3,0,6,
-2017-06-08,-1.4,-3.5,-2.3,-0.9,0/6/0,986.0,975.7,982.5,,39.4,,21.9,,354.0,,N,0.8,2,8,
-2017-06-09,-1.1,-3.3,-2.4,-0.5,0/6/0,976.2,967.4,971.6,,43.7,,19.6,,57.0,,ENE,0,0,6.4,
-2017-06-10,-1.6,-3.8,-2.7,-1.0,0/6/0,986.4,976.2,981.5,,22.5,,5.7,,20.0,,NNE,0,0,6.2,
-2017-06-11,-2.7,-4.4,-3.5,-1.1,0/6/0,992.9,986.3,990.1,,21.3,,5.6,,24.0,,NNE,0,0,6.2,
-2017-06-12,-2.8,-4.4,-3.4,-1.0,0/6/0,998.2,992.5,994.7,,19.2,,4.3,,110.0,,NNE,0,0,6.2,
-2017-06-13,-2.8,-5.1,-3.9,-0.9,0/6/0,1010.0,998.0,1003.7,,21.5,,7.3,,121.0,,ESE,0,0,6,
-2017-06-14,-4.1,-6.2,-4.9,-1.2,0/6/0,1013.0,1010.0,1011.9,,10.8,,3.1,,347.0,,NNE,0,0,5.6,
-2017-06-15,-4.5,-6.6,-5.4,-1.3,0/6/0,1012.5,1007.4,1010.2,,12.0,,4.2,,181.0,,NNE,0,4,9.4,
-2017-06-16,0.6,-6.0,-3.2,-1.4,0/6/0,1007.5,989.8,1000.4,,41.2,,10.0,,8.0,,N,2,0,9.2,
-2017-06-17,0.0,-4.2,-2.9,-1.6,0/6/0,993.7,973.8,987.1,,42.4,,16.5,,217.0,,W,1,2,10.6,
-2017-06-18,-3.7,-8.8,-6.7,-1.5,0/6/0,980.8,975.0,977.9,,54.6,,24.0,,208.0,,SSW,0,15,25.6,
-2017-06-19,-1.2,-6.4,-4.2,-1.5,0/6/0,977.0,958.9,971.4,,30.8,,10.9,,202.0,,SSW,0.3,0,14.8,
-2017-06-20,-3.1,-6.8,-4.8,-1.6,0/6/0,965.6,957.3,960.7,,35.3,,15.1,,234.0,,SW,0.5,15,29.4,
-2017-06-21,-6.2,-9.3,-7.4,-1.6,0/6/0,967.1,963.6,965.2,,33.2,,14.8,,3.0,,NNE,0,0,28.6,
-2017-06-22,-8.2,-10.8,-9.8,-1.4,0/6/0,982.1,967.0,974.3,,26.9,,12.2,,104.0,,E,0,0,25.4,
-2017-06-23,-6.9,-12.2,-9.4,-1.4,0/6/0,986.6,981.5,983.3,,37.0,,10.9,,140.0,,E,0,0,25.2,
-2017-06-24,-3.7,-8.2,-5.5,-1.4,0/6/0,993.3,986.5,990.8,,18.1,,7.1,,200.0,,SW,0,0,22.6,
-2017-06-25,-0.2,-4.7,-1.5,-1.5,0/6/0,991.7,968.7,982.1,,44.2,,17.8,,319.0,,NW,0,0,20.6,
-2017-06-26,-0.9,-8.9,-5.2,-1.6,0/6/0,982.9,962.5,975.2,,41.1,,22.9,,213.0,,SW,0,10,30.6,
-2017-06-27,2.1,-2.8,-1.1,-1.7,0/6/0,975.2,961.8,970.5,,37.0,,18.6,,9.0,,WSW,1,1,31.2,
-2017-06-28,1.4,-6.9,-1.7,-1.4,0/6/0,962.9,950.6,956.2,,40.6,,24.2,,12.0,,N,8.4,0,29.6,
-2017-06-29,-1.5,-8.2,-5.2,-1.5,0/6/0,971.0,958.9,964.0,,33.6,,13.6,,211.0,,SW,0,2,31.6,
-2017-06-30,-0.3,-5.3,-1.7,-1.6,0/6/0,978.7,970.4,974.3,,30.8,,16.1,,338.0,,NNW,0.8,4,36,
-2017-07-01,3.0,-1.4,0.6,-1.6,0/6/0,980.2,958.1,973.3,,39.5,,16.6,,31.0,,NNE,0,0,33.6,
-2017-07-02,2.3,-8.3,-3.1,-1.4,0/6/0,982.2,956.4,968.9,,23.8,,9.4,,229.0,,SW,0.3,0,33.8,
-2017-07-03,0.8,-8.2,-2.0,-1.5,0/6/0,985.7,978.3,982.0,,46.8,,19.7,,10.0,,N,1,0,34,
-2017-07-04,1.7,-3.6,-1.1,-1.2,0/6/0,989.9,972.3,979.4,,42.7,,11.1,,24.0,,ESE,0,0,34,
-2017-07-05,2.4,-2.8,0.8,,0/6/0,990.5,975.4,983.5,,66.0,,41.7,,18.0,,NNE,65.5,0,19.4,
-2017-07-06,1.4,-3.1,-0.9,-0.9,0/6/0,980.8,975.6,979.0,,55.0,,6.7,,8.0,,N,11.9,14,33.4,
-2017-07-07,1.1,-2.0,-0.1,-1.0,0/6/0,978.3,966.3,973.2,,53.5,,23.1,,24.0,,NNE,6.1,0,31,
-2017-07-08,1.1,-2.1,-0.1,-0.9,0/6/0,975.2,962.7,970.2,,46.0,,19.6,,348.0,,NNW,1.3,1,31.6,
-2017-07-09,-0.3,-3.5,-1.9,-1.3,0/6/0,971.1,957.2,966.4,,66.6,,28.1,,6.0,,N,4.6,0,31.6,
-2017-07-10,0.0,-6.0,-3.1,-1.4,0/6/0,969.6,953.5,960.6,,64.3,,20.5,,13.0,,W,4.3,0,31.6,
-2017-07-11,-4.6,-7.7,-6.4,-1.6,0/6/0,976.8,968.7,972.8,,38.5,,12.2,,16.0,,NNE,0,3,34.4,
-2017-07-12,-0.1,-6.5,-3.1,-1.3,0/6/0,979.9,973.9,975.4,,48.6,,16.1,,349.0,,E,1,0,33.6,
-2017-07-13,0.4,-2.6,-1.0,-1.2,0/6/0,986.0,979.9,984.8,,40.2,,14.5,,12.0,,ENE,0.8,1,34.2,
-2017-07-14,-0.3,-4.4,-2.9,-1.4,0/6/0,985.3,975.6,979.4,,18.8,,4.0,,201.0,,NNE,0,0,34.2,
-2017-07-15,-3.0,-6.5,-4.8,-1.5,0/6/0,979.1,969.8,976.9,,25.6,,12.9,,237.0,,SW,0,0,34.2,
-2017-07-16,-2.0,-7.0,-5.1,-1.7,0/6/0,986.1,969.0,978.9,,28.1,,13.7,,208.0,,SW,0,12,46.4,
-2017-07-17,-5.0,-10.1,-7.3,-1.6,20660,987.4,970.2,982.3,,24.0,,7.4,,222.0,,SW,0,0,45.2,
-2017-07-18,-1.8,-10.7,-7.3,-1.7,20660,979.3,966.6,973.5,,36.2,,12.8,,228.0,,SW,0.3,0,44.2,
-2017-07-19,-1.7,-9.0,-6.2,-1.8,20660,994.7,967.9,981.0,,37.3,,19.5,,19.0,,SW,0.3,0,44.2,
-2017-07-20,-5.9,-9.8,-7.9,-1.8,21660,1008.3,994.6,1001.6,,11.7,,4.1,,221.0,,SW,0,0,44.2,
-2017-07-21,-4.8,-9.1,-6.9,-1.8,21650,1013.2,1008.3,1011.9,,32.4,,14.2,,16.0,,NNE,0,0,43.8,
-2017-07-22,-5.1,-9.6,-8.0,-1.8,21650,1012.0,1004.0,1008.8,,18.3,,6.9,,12.0,,NNE,0,0,43.8,
-2017-07-23,-7.8,-10.2,-8.7,-1.8,21650,1004.0,990.6,997.2,,13.0,,3.8,,12.0,,NE,0,0,43.4,
-2017-07-24,-4.6,-10.1,-7.4,-1.7,21650,990.7,985.6,987.2,,13.0,,2.6,,108.0,,ESE,0,0,43,
-2017-07-25,-3.4,-5.5,-4.4,-1.6,21650,988.9,984.9,987.9,,15.4,,5.6,,101.0,,E,0,0,42.4,
-2017-07-26,1.7,-4.0,-0.5,-1.5,21650,985.1,965.8,971.6,,59.7,,22.0,,26.0,,NNE,15.2,2,44.4,
-2017-07-27,-0.5,-9.9,-5.4,-1.6,21650,968.5,964.0,965.9,,28.0,,9.9,,308.0,,W,1.8,6,50.4,
-2017-07-28,-8.0,-9.9,-8.8,-1.7,21650,987.6,968.3,979.5,,22.0,,9.8,,245.0,,WSW,0.5,4,54.2,
-2017-07-29,-1.6,-9.5,-6.0,-1.7,21650,987.1,966.5,977.1,,53.3,,21.2,,22.0,,WSW,0.8,0,45.4,
-2017-07-30,-4.0,-8.9,-6.5,-1.6,21650,978.9,949.3,966.7,,41.3,,12.3,,132.0,,ESE,0,1,46.8,
-2017-07-31,-6.1,-10.8,-9.3,-1.7,21650,985.0,952.6,975.0,,46.6,,19.0,,201.0,,SW,2.3,3,50,
-2017-08-01,0.1,-7.2,-2.8,-1.6,0/6/0,982.9,949.3,961.2,,53.3,,24.7,,59.0,,N,0,0,48.6,
-2017-08-02,-3.3,-9.7,-7.1,-1.7,0/6/0,971.7,950.1,962.0,,42.6,,19.5,,272.0,,WNW,0.3,0,48,
-2017-08-03,0.4,-4.9,-1.1,-1.7,0/6/0,968.1,954.8,960.9,,51.8,,22.1,,23.0,,NNE,4.3,1,49.2,
-2017-08-04,-1.9,-7.4,-4.0,-1.7,0/6/0,972.7,961.3,967.3,,40.3,,18.9,,296.0,,WNW,0.3,3,52,
-2017-08-05,-5.6,-9.0,-7.6,-1.8,0/6/0,994.9,972.6,983.0,,35.8,,17.4,,287.0,,SW,0,1,53.2,
-2017-08-06,-2.9,-8.2,-6.3,-1.8,20660,1011.5,994.9,1003.9,,14.2,,3.4,,232.0,,ESE,0.3,2,55,
-2017-08-07,-2.2,-5.2,-3.2,-1.8,20660,1020.1,1011.5,1017.0,,7.2,,1.5,,317.0,,NE,0,0,54.6,
-2017-08-08,0.5,-4.7,-2.1,-1.8,0/6/0,1021.1,1017.1,1019.8,,23.4,,8.2,,20.0,,NNE,0,0,54,
-2017-08-09,2.0,-1.2,0.1,-1.7,0/6/0,1017.2,1004.2,1012.8,,18.5,,7.2,,97.0,,ESE,1.5,0,54.4,
-2017-08-10,4.1,-0.7,1.5,-1.7,0/6/0,1004.1,994.1,997.7,,38.5,,10.1,,3.0,,NNW,5.8,0,51.2,
-2017-08-11,3.5,-1.4,1.1,-1.7,0/6/0,1000.5,995.3,998.3,,30.1,,9.8,,1.0,,N,0,0,49.6,
-2017-08-12,1.8,-5.8,-3.5,-1.7,0/6/0,995.4,988.7,990.6,,24.6,,3.2,,16.0,,ESE,0,0,48.2,
-2017-08-13,4.2,-1.4,2.3,-1.5,0/6/0,989.3,979.3,984.2,,42.5,,20.4,,37.0,,NNE,2.8,0,45.4,
-2017-08-14,2.5,-2.8,-0.6,-1.5,0/6/0,979.3,967.0,971.4,,35.5,,10.0,,86.0,,E,0,0,45.4,
-2017-08-15,-1.8,-4.1,-3.0,-1.6,0/6/0,973.3,970.1,971.9,,22.3,,5.5,,9.0,,NNE,0,0,45.4,
-2017-08-16,-2.2,-4.2,-3.4,-1.7,0/6/0,975.5,969.7,971.7,,18.3,,6.7,,343.0,,NNW,1.3,3,48,
-2017-08-17,-3.8,-7.1,-4.9,-1.7,0/6/0,986.0,975.4,980.2,,24.4,,9.3,,11.0,,NNE,0.5,2,49.8,
-2017-08-18,-5.6,-8.3,-6.7,-1.8,10651,993.5,986.0,990.1,,13.8,,4.8,,21.0,,NNE,0,0,49.6,
-2017-08-19,-5.5,-7.4,-6.4,-1.8,0/6/0,994.2,992.9,993.8,,22.1,,10.5,,14.0,,NNE,0,0,44.8,
-2017-08-20,-4.5,-7.2,-5.6,-1.8,0/6/0,992.9,973.0,985.0,,15.0,,3.9,,32.0,,ESE,0,0,44.8,
-2017-08-21,-2.1,-7.2,-4.7,-1.7,0/6/0,973.0,963.7,967.2,,33.4,,14.3,,67.0,,ENE,0,0,44.8,
-2017-08-22,-5.8,-9.7,-7.2,-1.7,0/6/0,974.3,962.7,970.1,,49.9,,18.4,,96.0,,E,0,0,44.8,
-2017-08-23,-6.1,-10.4,-8.5,-1.1,0/6/0,974.7,957.8,964.4,,56.3,,29.1,,94.0,,E,0,0,44.8,
-2017-08-24,-4.6,-7.0,-5.7,-1.5,0/6/0,988.5,974.7,984.5,,18.5,,6.4,,6.0,,NNE,0,1,46,
-2017-08-25,-4.5,-6.7,-5.4,-1.6,0/6/0,987.9,984.6,986.1,,29.2,,8.6,,213.0,,N,0,0,46,
-2017-08-26,-1.4,-9.6,-7.0,-1.7,0/6/0,992.0,963.2,984.1,,55.1,,23.6,,352.0,,SW,0.5,1,47.4,
-2017-08-27,-1.4,-12.3,-10.1,-1.7,0/6/0,985.6,963.2,980.4,,48.2,,21.6,,262.0,,SW,0,2,49,
-2017-08-28,-7.7,-12.0,-9.4,-1.6,0/6/0,987.0,978.9,981.5,,32.2,,12.1,,204.0,,SSW,0,2,50.8,
-2017-08-29,-9.1,-14.2,-12.1,-1.7,30963,995.8,986.9,992.1,,24.0,,8.0,,236.0,,NNE,0,0,51.2,
-2017-08-30,-2.7,-9.7,-4.6,-1.7,30963,995.4,984.2,991.3,,23.0,,10.5,,329.0,,NNW,0.3,0,50.8,
-2017-08-31,-0.4,-7.5,-3.0,-1.7,30963,984.2,965.3,972.3,,28.5,,9.3,,242.0,,ESE,0,3,54.2,
-2017-09-01,-0.4,-9.3,-5.3,-1.7,30963,983.5,972.0,978.8,,58.6,,22.9,,5.0,,NNE,11.2,0,53.2,
-2017-09-02,0.4,-11.8,-5.7,-1.7,00760,984.8,969.5,977.8,,51.7,,19.7,,4.0,,N,13,0,49.2,
-2017-09-03,-1.2,-9.1,-3.4,-1.7,0/6/0,984.5,965.2,971.1,,68.3,,27.6,,16.0,,NNE,0.5,0,47.6,
-2017-09-04,1.2,-7.4,-3.1,-1.7,0/6/0,986.7,973.8,981.5,,44.5,,17.6,,340.0,,WSW,3.6,2,49.4,
-2017-09-05,1.4,-3.8,-1.1,-1.7,0/6/0,983.3,963.2,973.2,,59.3,,29.7,,9.0,,N,22.6,5,54.6,
-2017-09-06,1.2,-2.0,0.0,-1.7,0/6/0,986.3,980.1,983.7,,62.1,,42.7,,5.0,,N,18,1,55.8,
-2017-09-07,0.6,-5.5,-1.7,-1.7,0/6/0,984.2,972.2,978.7,,69.6,,31.8,,19.0,,NNE,7.6,2,58,
-2017-09-08,-1.1,-4.9,-2.9,-1.7,0/6/0,988.0,971.5,981.4,,67.8,,28.8,,9.0,,N,1.8,7,65,
-2017-09-09,0.3,-8.7,-3.7,-1.8,0/6/0,979.7,964.6,971.1,,63.7,,23.1,,9.0,,NNW,3.6,1,66.4,
-2017-09-10,-1.5,-9.0,-5.5,-1.8,30662,980.9,966.1,974.6,,63.5,,25.6,,349.0,,N,1,0,64.8,
-2017-09-11,-2.9,-16.4,-10.3,-1.8,31662,976.3,958.0,969.2,,56.5,,20.8,,315.0,,SW,0,1,61.2,
-2017-09-12,-11.7,-17.5,-15.6,-1.8,31662,980.3,963.4,975.0,,34.7,,8.6,,228.0,,SW,0,0,60.8,
-2017-09-13,-11.3,-20.9,-18.3,-1.8,31662,963.4,956.1,958.9,,30.1,,11.0,,220.0,,SW,0,0,60.8,
-2017-09-14,-17.8,-19.8,-18.8,-1.8,31662,967.7,956.9,962.6,,20.3,,11.7,,212.0,,SSW,0,0,60.8,
-2017-09-15,-10.7,-20.6,-16.3,-1.8,42662,967.8,948.5,958.5,,25.8,,7.1,,110.0,,ESE,0,0,60.8,
-2017-09-16,-9.5,-15.4,-12.6,-1.8,42662,976.0,948.6,961.6,,30.8,,12.6,,238.0,,ESE,0,0,60.8,
-2017-09-17,-0.8,-16.4,-7.2,-1.7,31650,976.0,941.5,953.6,,62.6,,20.2,,5.0,,ESE,5.1,6,67,
-2017-09-18,-5.5,-16.7,-13.3,-1.7,31650,980.3,944.1,965.0,,31.9,,17.5,,245.0,,WSW,0,9,75.8,
-2017-09-19,0.2,-17.2,-9.2,-1.7,41662,982.0,974.4,979.0,,31.0,,9.1,,338.0,,NNW,0,0,76,
-2017-09-20,0.6,-0.4,0.1,-1.7,31662,981.4,964.8,977.3,,56.5,,31.3,,6.0,,NNW,5.6,1,77.2,
-2017-09-21,0.3,-14.7,-8.3,-1.7,41662,980.3,960.3,970.0,,63.0,,18.5,,19.0,,WSW,4.8,0,70.2,
-2017-09-22,-2.1,-13.3,-10.0,-1.7,42663,981.8,967.3,976.5,,74.5,,20.5,,352.0,,N,1.3,0,69.2,
-2017-09-23,0.9,-11.2,-1.4,-1.8,42663,977.1,965.3,968.9,,43.6,,19.5,,1.0,,NNW,3.6,3,72,
-2017-09-24,-0.3,-12.8,-9.5,-1.8,42663,979.2,970.9,977.2,,22.4,,2.3,,328.0,,S,0,0,72,
-2017-09-25,-2.5,-14.3,-8.3,-1.8,42663,979.9,973.5,976.0,,20.7,,3.5,,231.0,,NW,0.3,0,72.4,
-2017-09-26,0.6,-6.7,-2.2,-1.8,42663,979.5,955.1,967.8,,44.7,,24.9,,349.0,,N,8.1,2,74,
-2017-09-27,-5.7,-14.5,-11.9,-1.8,42663,973.4,960.2,967.6,,34.2,,11.1,,286.0,,W,0.3,0,73.6,
-2017-09-28,0.5,-9.2,-2.4,-1.8,42663,969.1,950.1,961.6,,53.7,,23.6,,3.0,,NW,10.7,0,73.4,
-2017-09-29,-8.3,-11.8,-10.7,-1.8,42663,999.8,959.6,982.0,,38.1,,16.5,,275.0,,SW,0,0,71.2,
-2017-09-30,-6.5,-11.9,-10.5,-1.8,52663,1006.1,999.8,1004.0,,13.0,,2.7,,190.0,,SSW,0,0,70.6,
-2017-10-01,1.1,-9.9,-1.7,-1.8,42661,1001.1,980.4,991.0,,54.1,,29.4,,23.0,,NNE,14.5,2,72.4,
-2017-10-02,3.0,0.3,1.4,-1.8,42661,981.0,966.7,972.9,,43.7,,11.3,,24.0,,ESE,7.4,0,72.4,
-2017-10-03,1.7,-2.8,-1.3,-1.8,32661,968.3,953.9,963.8,,43.7,,10.5,,52.0,,E,3,6,78.8,
-2017-10-04,0.6,-3.2,-0.7,-1.8,32661,961.9,952.0,956.4,,38.8,,19.8,,18.0,,NNE,0.3,0,75.4,
-2017-10-05,3.1,-1.9,0.2,-1.8,22660,963.7,954.2,959.4,,51.2,,23.6,,24.0,,ENE,1,0,72.6,
-2017-10-06,0.4,-2.7,-1.7,-1.8,12660,962.3,955.6,960.7,,46.4,,18.5,,15.0,,NNW,0,1,73.8,
-2017-10-07,-1.7,-6.5,-3.9,-1.8,12760,966.8,957.7,961.5,,34.3,,20.2,,360.0,,WNW,0.3,0,72.6,
-2017-10-08,-5.2,-8.1,-6.5,-1.7,12662,975.2,966.6,971.4,,21.1,,8.3,,322.0,,NW,0.3,0,73,
-2017-10-09,-6.2,-10.3,-8.5,-1.7,52662,991.4,975.2,982.5,,13.5,,4.6,,241.0,,W,0,0,72.8,
-2017-10-10,-7.5,-9.9,-8.9,-1.8,52662,998.6,991.4,996.4,,15.4,,3.7,,100.0,,SE,0,3,75.8,
-2017-10-11,-0.3,-9.8,-4.1,-1.8,52662,993.0,980.8,984.6,,27.5,,9.6,,325.0,,SE,2.8,1,77,
-2017-10-12,-1.3,-9.5,-5.2,-1.8,42661,986.2,974.1,980.7,,44.1,,11.1,,7.0,,N,3,0,75.4,
-2017-10-13,-0.7,-4.0,-2.1,-1.7,21660,974.1,954.2,959.3,,47.9,,16.3,,23.0,,NW,11.4,5,80.4,
-2017-10-14,-4.0,-9.6,-6.3,-1.7,42661,968.9,954.8,961.5,,21.0,,6.2,,231.0,,WSW,0,7,87.6,
-2017-10-15,-3.5,-12.3,-7.2,-1.7,52662,978.2,968.6,972.2,,14.2,,4.0,,343.0,,NNW,0,0,84.8,
-2017-10-16,0.6,-5.3,-2.6,-1.7,32661,978.6,971.2,975.2,,42.3,,11.2,,73.0,,ESE,0.8,0,81.8,
-2017-10-17,-1.4,-4.3,-2.7,-1.7,22660,977.3,970.1,972.4,,40.2,,14.4,,64.0,,E,0,0,81,
-2017-10-18,-2.4,-4.7,-3.5,-1.6,62660,990.3,977.3,983.8,,20.9,,4.3,,59.0,,SSW,1.3,2,82.6,
-2017-10-19,-4.6,-7.3,-6.4,-1.7,62660,995.6,990.3,992.9,,14.5,,7.3,,194.0,,SSW,0,0,81.8,
-2017-10-20,-5.5,-8.7,-7.1,-1.6,62660,997.0,994.3,996.3,,13.7,,3.5,,109.0,,SW,0,0,80.8,
-2017-10-21,1.6,-6.0,-2.4,-1.4,22660,994.4,985.5,990.0,,24.7,,6.7,,125.0,,ESE,0,0,81.2,
-2017-10-22,3.9,0.0,2.0,-1.4,22660,985.7,972.3,978.8,,35.4,,12.0,,13.0,,ESE,0,0,79.6,
-2017-10-23,4.5,-0.8,1.7,-1.4,22660,972.6,962.3,965.9,,47.3,,12.1,,23.0,,ESE,0,0,78,
-2017-10-24,2.8,-0.8,0.9,-1.4,22660,973.4,962.1,966.9,,44.1,,13.6,,16.0,,NNE,1.3,0,77.2,
-2017-10-25,-0.3,-4.2,-3.0,-1.6,22660,989.4,973.3,982.0,,20.8,,6.4,,289.0,,SW,3.6,8,85.2,
-2017-10-26,-1.5,-5.6,-3.4,-1.3,22660,1000.3,989.4,994.8,,8.9,,3.8,,185.0,,NW,3.3,4,89.4,
-2017-10-27,-3.4,-6.8,-5.6,-1.3,32662,1004.8,1000.3,1003.5,,11.3,,4.7,,15.0,,NNE,0,0,85.2,
-2017-10-28,-2.2,-7.1,-4.3,-1.3,32661,1004.9,1001.6,1002.9,,14.0,,3.9,,241.0,,SW,0,0,85.2,
-2017-10-29,-1.3,-4.4,-2.8,-1.3,22661,1002.3,997.9,999.7,,26.0,,11.5,,224.0,,SW,0.3,0,85,
-2017-10-30,-1.3,-6.6,-2.8,-1.4,22661,997.9,981.4,987.6,,26.6,,14.4,,234.0,,NW,1.8,7,91.8,
-2017-10-31,-6.0,-7.7,-7.1,-1.5,92662,982.9,977.8,980.8,,28.8,,14.2,,210.0,,SW,0,0,91.6,
-2017-11-01,-1.6,-8.8,-5.4,-1.6,92661,977.9,968.6,972.0,,28.4,,7.0,,7.0,,SE,0.5,0,91,
-2017-11-02,-2.3,-6.7,-5.5,-1.6,92661,979.5,969.2,975.7,,30.0,,9.9,,360.0,,SW,0.3,9,100,
-2017-11-03,-4.2,-8.2,-6.0,-1.6,92661,994.4,979.5,985.8,,25.9,,12.3,,120.0,,SSW,0,0,98.6,
-2017-11-04,-5.0,-7.3,-6.3,-1.6,92661,1002.6,994.3,998.4,,22.9,,10.7,,228.0,,SW,0,0,95.8,
-2017-11-05,-2.5,-6.6,-4.6,-1.6,92663,1004.7,1002.6,1003.6,,11.7,,2.5,,209.0,,WNW,0,0,97.2,
-2017-11-06,0.9,-4.2,-0.9,-1.6,92662,1004.7,1000.5,1003.3,,7.8,,1.9,,311.0,,NW,0,0,95.8,
-2017-11-07,4.6,-0.8,0.8,-1.6,92662,1001.1,996.6,998.6,,21.0,,5.0,,114.0,,NW,0,0,91,
-2017-11-08,5.1,0.0,2.7,-1.5,92661,1001.5,996.3,1000.0,,34.0,,13.0,,350.0,,N,0.3,0,86.2,
-2017-11-09,4.0,-0.6,2.5,-1.5,82661,996.5,993.1,994.4,,46.4,,25.6,,5.0,,N,2.8,0,74,
-2017-11-10,-0.6,-3.2,-2.2,-1.4,82661,995.5,987.1,992.2,,21.9,,8.1,,208.0,,SSW,0,0,71.2,
-2017-11-11,-1.4,-4.2,-2.9,-1.3,92663,988.2,984.3,987.1,,18.9,,5.5,,212.0,,SW,0.3,0,70.2,
-2017-11-12,-0.3,-2.8,-1.6,-1.3,92661,984.5,977.5,980.1,,11.5,,3.5,,112.0,,SE,2.8,6,76.4,
-2017-11-13,0.0,-1.8,-1.1,-1.2,82661,986.8,978.9,984.3,,12.3,,4.8,,249.0,,NW,0,1,77.4,
-2017-11-14,2.5,-1.6,-0.1,-1.2,82661,987.0,983.9,985.3,,26.7,,4.9,,345.0,,SE,1.8,0,73,
-2017-11-15,5.7,-0.8,2.5,-1.0,82661,985.7,983.0,984.7,,32.4,,9.6,,23.0,,N,0.3,0,70.8,
-2017-11-16,6.6,2.9,4.6,-1.0,82660,984.0,980.6,982.8,,43.0,,21.0,,36.0,,NNE,1.3,0,62.4,
-2017-11-17,3.2,-0.4,1.5,-1.0,82660,985.5,978.5,983.9,,37.8,,16.6,,29.0,,NNE,0.3,0,58.2,
-2017-11-18,1.6,-1.3,-0.2,-0.9,82660,980.2,973.7,977.3,,30.8,,8.9,,21.0,,WNW,0,0,58.2,
-2017-11-19,1.8,-2.4,-0.4,-0.7,82660,986.2,980.2,982.4,,15.8,,4.2,,212.0,,SSW,0,0,57.8,
-2017-11-20,-0.8,-2.9,-2.1,-1.0,82660,987.9,985.6,986.6,,18.1,,7.0,,229.0,,SW,0,0,57.4,
-2017-11-21,1.3,-2.7,-1.1,-0.6,82660,989.0,984.9,987.1,,12.8,,4.1,,215.0,,SW,0,0,57.4,
-2017-11-22,-0.3,-4.1,-2.5,-0.2,82663,988.5,981.7,984.8,,11.3,,4.3,,311.0,,NNW,0,0,57.2,
-2017-11-23,-0.6,-2.8,-1.9,-0.9,82662,981.8,966.5,977.2,,22.0,,8.1,,223.0,,SW,0,0,57.6,
-2017-11-24,1.2,-2.8,-1.0,-0.7,82660,966.4,957.8,959.9,,20.5,,6.6,,74.0,,ESE,0,0,56.4,
-2017-11-25,-0.7,-3.9,-2.3,-0.8,82660,965.8,961.5,964.0,,24.2,,10.2,,214.0,,SW,0,0,55.8,
-2017-11-26,-2.9,-4.3,-3.6,-0.8,82660,975.8,964.5,969.1,,28.8,,14.6,,215.0,,SW,0,0,54.6,
-2017-11-27,0.6,-5.6,-2.6,-0.8,82660,975.4,971.2,972.7,,16.5,,4.7,,354.0,,ESE,0,0,54.2,
-2017-11-28,4.3,-1.2,0.6,-0.7,82660,979.9,967.9,975.7,,40.9,,10.6,,6.0,,N,0.5,0,54,
-2017-11-29,4.6,-0.6,1.6,-1.0,82660,981.4,959.2,969.5,,50.9,,24.6,,31.0,,NW,25.4,1,54.8,
-2017-11-30,3.1,0.1,1.7,-1.1,85660,989.0,978.9,982.9,,43.8,,20.2,,8.0,,N,2.8,0,49.8,
-2017-12-01,3.0,0.1,1.4,-0.7,85660,989.4,979.8,983.0,,45.5,,17.4,,13.0,,NNE,2.3,0,47.4,
-2017-12-02,0.8,-1.9,-0.4,-0.8,85660,998.0,982.7,988.2,,30.4,,12.9,,232.0,,NW,2.8,4,51.8,
-2017-12-03,1.8,-2.3,-0.6,-0.8,85660,997.9,988.7,995.1,,14.4,,4.7,,296.0,,ESE,0.5,0,48.6,
-2017-12-04,3.5,0.0,1.2,-0.7,85660,988.7,971.6,977.8,,33.3,,7.2,,9.0,,ESE,5.6,0,48,
-2017-12-05,1.7,-0.5,0.3,-0.5,85660,974.9,971.4,973.4,,17.8,,5.5,,293.0,,NW,1,0,48.2,
-2017-12-06,-0.1,-1.7,-0.9,-0.4,85660,980.6,974.0,977.1,,20.7,,9.3,,227.0,,WSW,0,0,48.2,
-2017-12-07,0.7,-1.3,-0.6,-0.4,85660,981.0,979.7,980.3,,18.0,,5.0,,243.0,,ESE,0,0,48.6,
-2017-12-08,3.6,-0.7,0.8,-0.3,29600,982.2,978.0,980.8,,24.5,,3.4,,24.0,,SE,0,0,48.4,
-2017-12-09,5.3,0.1,2.0,-0.4,29600,978.1,972.8,974.8,,31.7,,9.3,,81.0,,E,0.5,0,46.8,
-2017-12-10,4.5,-0.1,1.3,-0.5,29660,980.5,972.1,978.1,,29.7,,9.0,,2.0,,N,0.5,0,45.6,
-2017-12-11,2.5,-0.5,0.8,-0.2,29760,974.9,968.7,971.2,,20.3,,5.9,,101.0,,WNW,0,0,42.2,
-2017-12-12,0.6,-1.7,-0.8,-0.8,29760,981.4,975.0,979.1,,18.3,,9.5,,219.0,,SW,0,0,40.8,
-2017-12-13,2.0,-3.0,-0.5,-0.2,29760,980.4,971.7,976.0,,8.9,,2.3,,289.0,,WNW,0,0,40.6,
-2017-12-14,3.5,0.3,1.3,-0.2,29760,972.6,969.6,970.9,,29.7,,7.7,,58.0,,WSW,0,0,36.4,
-2017-12-15,1.8,-0.5,0.5,-0.2,29760,973.3,972.3,972.8,,9.9,,3.9,,319.0,,NW,0,0,36,
-2017-12-16,4.2,-1.0,1.0,0.0,29760,975.7,973.3,974.4,,16.4,,3.5,,126.0,,NNE,0,0,34.8,
-2017-12-17,4.0,-0.3,1.9,,29760,978.0,974.2,976.5,,21.5,,5.7,,109.0,,ESE,0,0,27.2,
-2017-12-18,3.4,-0.2,1.6,1.3,29760,976.7,972.4,973.8,,9.5,,2.7,,83.0,,NNE,0,0,25.8,
-2017-12-19,3.9,-0.3,1.1,0.9,29760,987.2,976.7,983.3,,14.9,,1.9,,113.0,,ESE,1,0,24.6,
-2017-12-20,7.5,1.6,4.0,1.1,29760,986.6,963.5,977.6,,36.2,,10.3,,30.0,,ESE,0.3,0,22.6,
-2017-12-21,6.8,1.9,3.6,0.2,29760,963.4,947.1,957.0,,58.6,,29.6,,84.0,,NNE,3.3,0,15.2,
-2017-12-22,4.3,1.0,2.3,0.0,29760,973.2,962.7,969.5,,31.3,,11.7,,26.0,,N,0.3,0,13.6,
-2017-12-23,2.3,-0.8,0.7,0.0,29760,973.7,957.8,969.0,,35.4,,16.8,,104.0,,E,0,0,12.6,
-2017-12-24,3.3,-0.2,1.5,0.1,29760,957.9,955.5,956.4,,30.5,,9.9,,89.0,,E,1.5,1,13.2,
-2017-12-25,3.7,-0.6,1.6,0.3,29760,964.2,956.2,959.3,,16.3,,4.5,,119.0,,ESE,0,0,12.4,
-2017-12-26,3.9,-0.3,1.4,0.9,29760,976.0,964.2,970.2,,11.7,,5.9,,335.0,,NNW,0,0,10.8,
-2017-12-27,4.0,-1.1,1.2,1.5,29860,980.3,976.0,978.9,,12.0,,2.8,,347.0,,ESE,0,0,9,
-2017-12-28,3.6,1.2,2.4,0.8,29860,977.5,969.4,972.3,,40.9,,20.9,,68.0,,ENE,0,0,6.8,
-2017-12-29,5.8,1.8,3.7,0.5,0/8/0,971.0,968.6,969.8,,23.8,,12.9,,72.0,,ESE,0,0,5.6,
-2017-12-30,4.3,1.1,2.4,0.7,0/8/0,981.0,970.9,976.5,,21.5,,4.9,,62.0,,WNW,0,0,4.6,
-2017-12-31,2.4,0.1,0.7,0.8,0/7/0,987.2,981.0,984.5,,8.1,,2.8,,178.0,,S,0,0,4,
-2018-01-01,2.4,-0.5,0.6,0.7,0/7/0,989.6,987.2,988.6,,16.5,,5.8,,216.0,,SSW,0,0,3.8,
-2018-01-02,1.2,-0.6,0.0,1.0,0/7/0,990.5,989.5,990.1,,15.9,,5.5,,205.0,,SSW,0,0,3.4,
-2018-01-03,0.6,-1.7,-0.6,0.8,0/6/0,990.4,986.0,988.0,,15.1,,3.0,,18.0,,E,4.1,0,3.8,
-2018-01-04,-0.3,-1.6,-1.0,0.6,0/6/0,989.6,986.0,987.3,,18.1,,5.8,,2.0,,ESE,3.3,1,5,
-2018-01-05,1.7,-2.2,-0.4,1.2,0/6/0,994.8,989.6,992.6,,8.0,,2.7,,125.0,,SSW,0,1,5.8,
-2018-01-06,2.3,-0.1,0.6,1.8,0/6/0,994.7,992.2,993.4,,11.6,,3.5,,217.0,,SSW,0,0,3.8,
-2018-01-07,3.0,-0.8,0.7,2.1,0/6/0,994.8,992.0,992.7,,13.8,,5.7,,2.0,,ESE,0,0,3.4,
-2018-01-08,6.6,0.1,2.0,1.4,0/6/0,997.2,989.8,995.4,,17.2,,3.6,,288.0,,ESE,0,0,3.2,
-2018-01-09,6.1,0.2,2.6,1.2,0/6/0,989.8,978.7,982.7,,37.6,,10.2,,91.0,,E,24.6,0,2,
-2018-01-10,5.7,1.3,3.5,1.1,0/6/0,982.9,978.4,981.5,,33.9,,10.8,,8.0,,N,1,0,0,
-2018-01-11,4.5,1.5,2.8,1.1,0/6/0,986.8,978.3,982.1,,12.9,,5.0,,136.0,,NW,0,0,0,
-2018-01-12,3.3,0.6,2.0,1.3,0/6/0,986.7,971.3,979.0,,28.4,,7.2,,107.0,,ESE,0,0,0,
-2018-01-13,4.8,1.2,2.9,1.3,0/6/0,974.3,970.7,972.8,,29.7,,10.7,,117.0,,ESE,0,0,0,
-2018-01-14,4.5,0.8,2.6,1.9,0/6/0,981.6,974.1,977.0,,19.5,,5.6,,119.0,,ESE,0,0,0,
-2018-01-15,2.6,0.6,1.4,2.0,0/6/0,983.2,978.0,981.7,,16.6,,4.7,,115.0,,SW,0,0,0,
-2018-01-16,6.4,1.1,3.1,1.7,0/6/0,978.3,971.0,973.6,,26.6,,7.3,,8.0,,ESE,2.8,0,0,
-2018-01-17,3.1,0.5,1.9,1.4,0/6/0,983.1,973.3,977.2,,10.8,,3.4,,294.0,,WNW,2.8,0,0,
-2018-01-18,4.1,0.8,1.9,1.5,0/6/0,984.7,975.2,981.9,,30.2,,7.8,,10.0,,NNW,0.5,0,0,
-2018-01-19,5.1,1.0,2.4,1.7,0/6/0,976.4,973.5,975.1,,19.2,,5.6,,103.0,,ESE,3.3,0,0,
-2018-01-20,3.5,0.7,2.0,0.8,0/6/0,977.9,974.1,975.9,,10.4,,2.9,,312.0,,NNW,0,0,0,
-2018-01-21,5.8,0.4,2.2,1.1,0/6/0,976.4,965.8,969.0,,24.6,,5.0,,48.0,,ESE,1,0,0,
-2018-01-22,4.1,0.7,1.7,1.3,0/6/0,978.3,967.7,971.5,,15.0,,4.0,,162.0,,NNW,0,0,0,
-2018-01-23,3.4,0.4,1.7,1.3,0/6/0,983.4,978.2,982.0,,25.5,,8.3,,6.0,,NNW,0,0,0,
-2018-01-24,3.8,0.8,2.5,0.8,0/6/0,983.1,972.9,977.7,,50.1,,21.3,,13.0,,N,3,0,0,
-2018-01-25,3.1,0.5,1.6,1.0,0/1/0,979.7,977.4,979.0,,23.4,,9.9,,351.0,,NW,3.6,0,0,
-2018-01-26,2.1,-0.7,1.0,0.5,0/6/0,984.1,979.2,980.8,,18.3,,6.8,,302.0,,NW,2.5,0,0,
-2018-01-27,4.3,0.4,2.2,0.8,0/6/0,986.8,976.2,983.6,,29.8,,9.1,,91.0,,E,0,0,0,
-2018-01-28,6.4,3.1,4.8,1.4,0/6/0,977.9,974.9,976.4,,38.8,,12.5,,27.0,,E,0,0,0,
-2018-01-29,5.1,1.9,3.0,1.3,0/6/0,977.9,975.6,976.7,,13.3,,2.0,,112.0,,NNW,0.8,0,0,
-2018-01-30,3.5,0.4,1.7,1.3,0/6/0,983.9,976.8,980.3,,6.4,,1.8,,103.0,,SE,1.8,0,0,
-2018-01-31,3.7,0.3,2.0,1.1,0/6/0,984.9,982.3,984.2,,6.7,,2.0,,347.0,,NNW,0,0,0,
-2018-02-01,6.9,-0.4,2.3,1.4,0/6/0,982.4,969.6,977.9,,32.1,,5.1,,25.0,,ESE,0,0,0,
-2018-02-02,4.9,1.7,2.8,1.4,0/6/0,969.6,962.2,965.6,,37.6,,14.7,,88.0,,E,1.8,0,0,
-2018-02-03,3.9,0.9,2.3,1.1,0/6/0,975.9,969.3,972.5,,20.1,,7.4,,342.0,,ESE,0,0,0,
-2018-02-04,4.8,2.0,3.3,1.7,0/6/0,981.0,965.0,972.3,,23.1,,9.4,,116.0,,ESE,0,0,0,
-2018-02-05,5.3,1.2,3.1,1.8,0/6/0,984.3,981.0,982.7,,35.2,,10.4,,15.0,,N,0.5,0,0,
-2018-02-06,5.2,3.1,4.0,1.4,0/6/0,981.1,967.7,971.7,,48.1,,26.3,,40.0,,N,9.4,0,0,
-2018-02-07,6.6,3.1,4.3,1.4,0/6/0,968.7,965.6,967.2,,29.0,,17.1,,6.0,,N,0.3,0,0,
-2018-02-08,6.6,2.2,3.8,1.6,0/6/0,979.2,965.1,970.8,,30.0,,11.6,,60.0,,ESE,0,0,0,
-2018-02-09,3.2,1.0,1.5,1.7,0/6/0,994.0,979.2,987.5,,15.0,,6.9,,216.0,,SW,0,0,0,
-2018-02-10,1.8,0.9,1.3,1.6,0/6/0,996.1,992.2,994.4,,26.1,,13.8,,204.0,,SW,0,0,0,
-2018-02-11,1.9,0.3,0.8,1.6,0/6/0,992.9,978.4,988.0,,21.4,,7.5,,204.0,,SW,0,0,0,
-2018-02-12,3.2,0.3,1.4,1.4,0/6/0,978.4,967.3,971.0,,14.4,,3.7,,282.0,,ESE,4.6,0,0,
-2018-02-13,3.4,0.8,2.1,0.2,0/6/0,968.7,960.4,966.7,,15.4,,3.8,,331.0,,N,0.8,0,0,
-2018-02-14,1.9,0.2,0.9,-0.5,0/6/0,969.9,959.7,963.8,,19.3,,6.6,,197.0,,NNW,5.3,0,0,
-2018-02-15,5.0,0.5,2.4,0.3,0/6/0,987.1,969.9,980.6,,12.8,,2.5,,121.0,,NNW,0,0,0,
-2018-02-16,6.6,2.7,5.1,1.0,0/6/0,985.4,977.3,980.8,,44.6,,22.3,,3.0,,NNE,7.4,0,0,
-2018-02-17,4.5,1.2,2.3,1.3,0/6/0,989.9,976.7,984.0,,19.8,,4.4,,57.0,,NNW,0,0,0,
-2018-02-18,6.0,-0.5,1.3,1.3,0/6/0,993.5,989.8,991.0,,12.5,,3.4,,19.0,,ESE,0,0,0,
-2018-02-19,4.0,-2.5,0.0,1.2,0/6/0,996.4,993.5,995.4,,15.8,,4.7,,351.0,,ESE,0,0,0,
-2018-02-20,6.4,-0.1,2.5,1.3,0/6/0,995.5,983.4,990.9,,34.1,,8.0,,24.0,,ESE,0,0,0,
-2018-02-21,9.7,1.2,5.2,1.2,0/6/0,986.2,973.9,982.6,,47.8,,18.6,,52.0,,NNE,2.3,0,0,
-2018-02-22,9.2,1.9,4.5,1.7,0/6/0,983.3,964.3,971.5,,54.7,,16.1,,37.0,,E,0,0,0,
-2018-02-23,6.0,1.2,3.5,1.6,0/6/0,986.2,977.9,984.0,,36.6,,10.7,,14.0,,N,0.3,0,0,
-2018-02-24,6.6,2.1,3.9,1.6,0/6/0,979.1,969.5,974.0,,41.0,,20.9,,18.0,,NNW,1.5,0,0,
-2018-02-25,4.2,2.4,3.2,1.0,0/6/0,980.4,978.5,979.5,,20.1,,8.6,,1.0,,NNW,0.3,0,0,
-2018-02-26,3.8,1.5,2.3,0.9,0/6/0,988.4,979.3,983.5,,11.0,,3.1,,330.0,,NNW,0,0,0,
-2018-02-27,2.0,0.8,1.4,1.2,0/6/0,992.8,988.4,991.1,,12.0,,4.5,,232.0,,WSW,0.8,0,0,
-2018-02-28,3.5,-0.6,1.2,1.3,0/6/0,992.4,968.8,983.3,,23.4,,4.8,,104.0,,NNW,0,0,0,
-2018-03-01,5.3,1.4,3.2,1.2,0/6/0,970.5,963.6,966.4,,31.0,,7.3,,17.0,,ESE,3,0,0,
-2018-03-02,3.9,0.3,1.5,1.3,0/6/0,979.2,970.5,973.8,,25.9,,3.3,,23.0,,ESE,5.1,0,0,
-2018-03-03,4.0,0.3,1.6,1.3,0/6/0,982.7,979.2,980.7,,36.5,,9.0,,6.0,,ESE,0,0,0,
-2018-03-04,5.6,2.5,4.3,1.4,0/6/0,983.5,980.9,982.5,,35.4,,15.9,,11.0,,NNE,0,0,0,
-2018-03-05,4.7,1.3,2.6,1.5,0/6/0,982.0,974.8,976.6,,28.4,,9.8,,126.0,,ESE,0,0,0,
-2018-03-06,1.4,-0.6,0.3,1.0,0/6/0,979.8,973.0,975.4,,17.2,,6.6,,339.0,,NW,0,0,0,
-2018-03-07,2.8,-0.7,0.7,0.7,0/6/0,982.0,979.2,980.8,,28.2,,8.9,,7.0,,ESE,0,0,0,
-2018-03-08,2.5,-0.2,0.8,1.1,0/6/0,989.1,979.5,984.1,,28.2,,7.0,,7.0,,SSW,1,0,0,
-2018-03-09,2.0,-1.0,0.5,0.8,0/6/0,991.4,989.1,990.6,,26.4,,11.3,,3.0,,N,0,0,0,
-2018-03-10,4.5,1.2,3.0,1.1,0/6/0,990.5,986.1,988.2,,39.7,,25.2,,26.0,,NNE,7.4,0,0,
-2018-03-11,3.7,-1.4,1.8,1.2,0/6/0,992.3,982.8,989.0,,46.8,,12.8,,14.0,,NNE,9.4,0,0,
-2018-03-12,4.4,-1.6,0.7,1.0,00690,992.2,973.6,982.3,,15.8,,2.7,,96.0,,NNE,0,0,0,
-2018-03-13,4.6,-0.1,2.1,1.0,0/6/0,979.5,971.7,974.9,,26.6,,5.5,,13.0,,ESE,5.1,0,0,
-2018-03-14,5.3,1.3,3.0,0.9,0/6/0,980.4,976.7,978.9,,23.3,,5.7,,101.0,,ESE,0,0,0,
-2018-03-15,2.6,-1.3,0.1,1.2,0/6/0,978.4,974.7,976.6,,22.1,,10.7,,122.0,,ESE,2.5,5,4.8,
-2018-03-16,0.2,-1.7,-1.0,1.1,0/6/0,978.8,974.8,976.8,,15.9,,7.7,,238.0,,SW,0,0,4.8,
-2018-03-17,-1.2,-2.8,-2.0,0.7,0/6/0,979.2,972.8,974.7,,19.8,,8.0,,45.0,,E,0,3,2.6,
-2018-03-18,-2.1,-5.7,-3.0,0.8,0/6/0,984.1,979.2,982.5,,15.2,,6.8,,212.0,,ESE,0,0,1,
-2018-03-19,-0.6,-2.8,-1.9,0.7,0/6/0,981.5,972.1,976.4,,41.6,,14.3,,203.0,,SSW,0,0,0.4,
-2018-03-20,1.5,-2.2,-0.2,0.5,0/6/0,979.8,967.1,974.3,,38.1,,16.8,,269.0,,SSW,3,3,3.6,
-2018-03-21,3.3,-0.6,1.5,0.2,0/6/0,973.9,946.2,961.9,,49.1,,26.1,,18.0,,N,20.6,0,1.8,
-2018-03-22,3.2,-1.7,0.8,0.3,0/6/0,963.6,947.2,959.3,,43.9,,21.4,,35.0,,NE,3.6,0,0,
-2018-03-23,4.0,-0.3,2.1,0.9,0/6/0,979.8,956.9,964.8,,54.2,,32.4,,6.0,,N,12.4,0,0,
-2018-03-24,2.4,-1.1,0.5,0.3,0/6/0,989.1,971.6,983.7,,58.7,,25.4,,14.0,,N,25.1,9,9,
-2018-03-25,4.9,1.5,3.3,0.8,0/6/0,972.6,960.0,967.0,,64.7,,28.5,,32.0,,NNW,30,0,0,
-2018-03-26,4.1,0.3,1.5,0.7,0/6/0,972.3,961.6,968.6,,46.3,,20.7,,332.0,,NNW,3.6,0,0,
-2018-03-27,4.2,-1.2,1.8,0.9,0/6/0,974.2,952.9,962.2,,40.5,,17.2,,39.0,,E,14.7,6,5.8,
-2018-03-28,4.4,-1.5,2.8,0.4,0/6/0,973.9,965.6,969.3,,52.9,,25.7,,3.0,,N,24.4,0,0,
-2018-03-29,3.0,-0.3,1.1,0.3,0/6/0,977.0,965.3,972.9,,30.2,,13.9,,20.0,,N,6.6,3,2.6,
-2018-03-30,5.7,1.8,3.6,0.6,0/6/0,975.8,971.7,973.8,,38.0,,15.1,,34.0,,NE,3.3,0,0,
-2018-03-31,4.3,-0.3,1.4,0.7,0/6/0,984.7,975.3,980.2,,21.6,,3.9,,35.0,,NW,0,0,0,
-2018-04-01,2.9,-0.1,0.9,0.6,0/6/0,988.2,977.9,982.8,,40.0,,7.8,,346.0,,WSW,0.8,0,0,
-2018-04-02,2.6,-1.2,1.5,0.5,0/6/0,988.3,975.9,982.9,,43.1,,19.5,,8.0,,NNE,6.6,0,0,
-2018-04-03,0.8,-1.6,-0.2,0.1,0/6/0,979.9,976.8,977.8,,20.3,,9.3,,302.0,,NW,0.8,0,0,
-2018-04-04,2.2,-1.5,0.0,-0.7,0/6/0,983.1,977.7,980.8,,38.9,,13.6,,346.0,,NW,4.1,5,5,
-2018-04-05,2.4,0.4,1.8,-0.5,0/6/0,981.6,977.9,979.8,,40.9,,23.1,,354.0,,N,1.5,0,0,
-2018-04-06,1.0,-2.0,-0.6,0.4,0/6/0,986.9,976.6,980.8,,32.8,,12.6,,81.0,,ENE,0,0,0,
-2018-04-07,-1.4,-4.4,-2.5,0.1,0/6/0,999.0,986.9,994.0,,13.5,,3.6,,11.0,,NNE,0,0,0,
-2018-04-08,-0.5,-2.2,-1.3,0.0,0/6/0,998.8,990.4,994.9,,37.2,,17.2,,13.0,,NNE,0,0,0,
-2018-04-09,0.9,-1.7,-0.6,0.3,0/6/0,990.4,978.7,983.1,,42.2,,18.2,,67.0,,E,0,0,0,
-2018-04-10,0.8,-1.2,0.1,0.3,0/6/0,982.9,979.3,981.3,,25.8,,7.9,,75.0,,E,0,0,0,
-2018-04-11,1.2,-1.0,0.1,0.2,0/6/0,982.0,976.6,978.6,,22.9,,4.4,,134.0,,NNW,0,0,0,
-2018-04-12,0.6,-1.4,-0.5,-0.4,0/6/0,993.5,981.9,986.8,,12.4,,4.2,,360.0,,NW,0.5,0,0,
-2018-04-13,5.8,-2.4,1.2,-0.3,0/6/0,995.1,987.1,991.9,,37.7,,10.2,,10.0,,ESE,0,4,3.6,
-2018-04-14,6.4,1.8,4.4,0.3,0/6/0,990.6,984.5,988.1,,45.3,,14.7,,16.0,,NNE,5.8,0,0,
-2018-04-15,5.3,0.0,2.1,0.2,0/6/0,984.5,975.0,980.9,,44.7,,17.6,,18.0,,NW,5.6,0,0,
-2018-04-16,1.7,-1.1,0.2,-0.2,0/6/0,988.5,983.1,986.2,,34.7,,13.9,,10.0,,NW,1,5,5.4,
-2018-04-17,4.4,1.1,2.2,0.0,0/6/0,985.0,968.2,977.9,,55.2,,28.7,,19.0,,N,4.1,0,0,
-2018-04-18,3.1,0.2,1.2,0.3,0/6/0,982.8,966.0,976.9,,51.2,,21.7,,5.0,,NNW,1.8,0,0,
-2018-04-19,2.8,0.7,1.9,0.3,0/6/0,977.3,963.4,970.2,,45.7,,22.7,,107.0,,N,2,0,0,
-2018-04-20,3.5,-0.6,1.4,0.0,0/6/0,978.3,976.6,977.7,,32.6,,7.3,,4.0,,ESE,0,0,0,
-2018-04-21,2.4,-0.8,0.4,0.0,0/6/0,979.2,974.8,977.0,,28.6,,5.8,,36.0,,ESE,0.5,3,3.4,
-2018-04-22,0.7,-2.6,-1.0,-0.1,0/6/0,979.2,970.5,974.5,,15.7,,4.4,,166.0,,NNE,0,0,0,
-2018-04-23,-1.0,-3.0,-1.9,-0.8,0/6/0,986.3,972.0,978.0,,14.6,,4.3,,34.0,,NNE,0,0,0,
-2018-04-24,-0.9,-3.4,-1.8,-0.8,0/6/0,993.7,986.4,990.7,,17.6,,4.6,,71.0,,ESE,0,0,0,
-2018-04-25,-1.2,-2.9,-2.1,-0.8,0/6/0,999.0,992.9,995.4,,19.2,,4.8,,212.0,,E,0,0,0,
-2018-04-26,0.0,-3.4,-2.0,-0.6,0/6/0,999.1,992.9,996.8,,18.1,,9.5,,332.0,,SW,0.5,0,0,
-2018-04-27,-0.3,-3.2,-2.0,-0.9,0/6/0,993.6,987.1,991.0,,20.7,,8.6,,217.0,,SW,0,8,7.6,
-2018-04-28,1.0,-3.2,-1.1,-0.7,0/6/0,987.1,974.1,978.3,,42.3,,10.7,,12.0,,NNE,3.3,3,11,
-2018-04-29,-0.7,-1.8,-1.1,-0.8,0/6/0,988.7,977.6,983.6,,28.5,,9.5,,2.0,,N,0,0,7.4,
-2018-04-30,1.6,-1.6,0.6,-0.7,0/6/0,989.1,967.1,980.5,,42.4,,28.2,,17.0,,N,27.7,2,9.8,
-2018-05-01,1.5,-2.1,-0.5,-0.7,0/6/0,984.2,965.5,977.8,,42.4,,18.7,,351.0,,N,8.1,0,10.2,
-2018-05-02,2.6,-3.6,0.2,-0.2,0/6/0,981.1,962.5,968.2,,54.2,,25.0,,27.0,,NW,12.7,0,10.4,
-2018-05-03,-1.7,-4.5,-2.7,-0.5,0/6/0,971.8,966.8,969.9,,26.9,,10.8,,234.0,,WSW,1,2,12,
-2018-05-04,-2.0,-5.3,-3.6,-0.8,0/6/0,975.4,969.1,972.8,,23.2,,9.4,,200.0,,NNW,1,2,13.8,
-2018-05-05,-0.9,-4.1,-2.7,-0.8,0/6/0,979.6,961.5,969.1,,41.4,,16.7,,224.0,,SW,0.3,2,15.8,
-2018-05-06,-2.2,-5.0,-4.0,-0.8,0/6/0,992.7,979.4,989.1,,41.3,,14.5,,212.0,,SW,0.8,2,17.6,
-2018-05-07,0.7,-5.1,-2.6,-1.0,0/6/0,986.6,977.8,983.1,,54.8,,22.9,,3.0,,SW,0.3,3,21,
-2018-05-08,-3.3,-7.6,-5.5,-1.1,0/6/0,984.5,977.4,980.3,,31.1,,8.4,,206.0,,SSW,0,0,20,
-2018-05-09,-2.7,-5.7,-4.2,-0.9,0/6/0,985.1,978.4,980.9,,39.2,,17.1,,12.0,,SW,0,3,22.6,
-2018-05-10,-3.5,-6.1,-4.5,-1.1,0/6/0,998.3,985.0,992.9,,33.2,,16.6,,206.0,,SSW,0,0,21.4,
-2018-05-11,-1.5,-4.3,-2.5,-1.2,0/6/0,1000.8,995.3,998.0,,17.4,,8.2,,181.0,,SW,0,0,20,
-2018-05-12,-1.6,-3.7,-2.5,-1.1,0/6/0,1000.4,996.0,998.4,,17.0,,5.1,,214.0,,SW,0,0,19.8,
-2018-05-13,-2.1,-3.0,-2.6,-1.1,0/6/0,999.6,995.2,997.9,,15.7,,3.5,,209.0,,SSW,0.3,0,19.8,
-2018-05-14,-1.2,-3.2,-2.1,-1.3,0/6/0,999.4,995.2,996.8,,42.6,,14.1,,203.0,,SSW,0,0,19.6,
-2018-05-15,-0.8,-2.3,-1.5,-1.0,0/6/0,1003.2,999.3,1001.7,,30.3,,13.1,,195.0,,SW,0,0,19.6,
-2018-05-16,-1.9,-4.9,-3.4,-1.1,0/6/0,1008.9,1001.8,1005.2,,17.2,,7.6,,114.0,,NNE,0,0,19.6,
-2018-05-17,-3.0,-4.8,-3.7,-1.3,0/6/0,1010.3,1008.3,1009.2,,15.4,,4.0,,18.0,,NNE,0,0,19.6,
-2018-05-18,-1.2,-4.2,-2.5,-1.5,0/6/0,1010.0,1007.5,1009.1,,10.0,,2.8,,57.0,,NW,0,0,19.4,
-2018-05-19,4.6,-2.4,-0.5,-1.2,0/6/0,1007.5,989.6,999.2,,44.9,,6.8,,29.0,,ESE,0,0,19.4,
-2018-05-20,5.3,1.3,3.8,-0.5,0/6/0,989.7,985.5,987.0,,42.9,,21.2,,9.0,,NNE,0.3,0,12.4,
-2018-05-21,3.2,-0.4,0.3,-0.4,0/6/0,988.0,984.0,985.6,,13.1,,2.4,,323.0,,NW,2.3,0,11.8,
-2018-05-22,-0.3,-3.0,-1.5,-0.6,0/6/0,988.5,987.2,987.7,,15.8,,5.3,,238.0,,WSW,0,0,11.8,
-2018-05-23,-0.6,-4.3,-3.2,-0.7,0/6/0,991.3,979.2,988.3,,42.5,,15.3,,26.0,,SW,0.8,0,11.8,
-2018-05-24,0.0,-5.4,-3.6,-1.0,0/6/0,985.0,971.7,978.7,,43.3,,16.7,,341.0,,SW,1.5,2,13.4,
-2018-05-25,-3.7,-6.3,-4.9,-1.4,0/6/0,989.0,985.0,987.5,,22.2,,10.4,,228.0,,SW,0,1,14.6,
-2018-05-26,-5.1,-9.1,-7.1,-1.2,0/6/0,986.3,976.7,981.9,,18.6,,6.8,,13.0,,ENE,0,1,15.2,
-2018-05-27,-3.9,-5.4,-4.8,-1.0,0/6/0,976.8,971.5,973.6,,42.6,,20.0,,18.0,,NNE,0,0,14.8,
-2018-05-28,-0.5,-6.1,-2.4,-0.9,0/6/0,976.9,961.8,966.7,,67.1,,25.9,,25.0,,NNW,0,2,16.8,
-2018-05-29,-0.4,-6.6,-4.1,-1.3,0/6/0,971.7,960.1,966.7,,27.3,,12.4,,206.0,,N,0.3,1,18.2,
-2018-05-30,-2.3,-5.3,-3.9,-1.4,0/6/0,974.7,968.7,972.0,,39.7,,15.2,,4.0,,WSW,1.8,0,18.2,
-2018-05-31,-0.4,-6.2,-3.5,-1.4,0/6/0,979.8,962.7,971.0,,56.7,,22.9,,2.0,,WSW,1,0,18.2,
-2018-06-01,-5.3,-7.4,-6.6,-1.4,0/6/0,994.7,979.7,989.5,,31.3,,13.1,,203.0,,SSW,0,0,17.8,
-2018-06-02,-0.7,-7.3,-4.3,-1.4,0/6/0,997.6,988.2,993.4,,27.8,,9.0,,126.0,,ESE,1.8,0,18,
-2018-06-03,3.7,-2.7,-1.2,-1.2,0/6/0,996.5,988.7,993.5,,40.4,,4.2,,7.0,,WNW,6.4,2,19.6,
-2018-06-04,4.7,-0.5,1.9,-1.2,0/6/0,992.9,976.5,984.7,,36.3,,23.5,,351.0,,N,20.6,0,18,
-2018-06-05,-0.5,-3.7,-1.7,-1.5,0/6/0,995.3,979.8,990.8,,23.4,,7.9,,237.0,,SW,0.8,2,19.8,
-2018-06-06,2.8,-4.5,0.0,-1.3,0/6/0,995.2,989.6,992.4,,42.4,,17.9,,9.0,,N,1.8,0,20.2,
-2018-06-07,3.1,-1.6,0.1,-1.3,0/6/0,997.9,991.7,995.3,,53.3,,14.6,,20.0,,NNW,3.8,0,20,
-2018-06-08,4.3,0.1,2.5,-1.0,0/6/0,1003.1,996.4,999.4,,52.5,,25.4,,13.0,,N,0.3,0,16.2,
-2018-06-09,2.4,-1.7,0.1,-0.9,0/6/0,1005.3,1003.0,1004.8,,31.1,,4.1,,9.0,,SE,0,0,14.4,
-2018-06-10,1.1,-2.3,-0.4,-1.1,0/6/0,1004.2,997.4,1000.8,,41.1,,14.6,,13.0,,N,1.5,0,14.2,
-2018-06-11,-2.1,-4.1,-2.9,-1.2,0/6/0,1006.9,1003.5,1005.7,,19.5,,7.3,,219.0,,SW,0,0,14.2,
-2018-06-12,-0.6,-5.4,-2.7,-1.5,0/6/0,1008.4,1000.8,1004.8,,35.5,,16.5,,6.0,,SW,1.8,3,16.8,
-2018-06-13,-2.9,-7.3,-5.8,-1.4,0/6/0,1008.8,999.7,1004.6,,23.8,,5.6,,200.0,,ESE,0.3,3,19.8,
-2018-06-14,1.9,-3.0,-0.7,-1.3,0/6/0,999.7,982.6,995.0,,41.7,,12.4,,14.0,,NNE,3.6,5,25,
-2018-06-15,4.6,0.2,1.7,-1.0,0/6/0,982.6,963.3,969.3,,35.6,,15.0,,36.0,,ESE,0.8,2,26.8,
-2018-06-16,0.8,-3.1,-1.8,-1.1,0/6/0,979.1,968.2,976.9,,27.9,,4.8,,339.0,,NW,1.8,5,31.6,
-2018-06-17,-2.4,-4.9,-3.8,-1.4,0/6/0,981.2,978.3,979.5,,21.9,,6.6,,17.0,,N,0,0,31.6,
-2018-06-18,-2.4,-5.2,-4.0,-1.4,0/6/0,981.6,968.3,978.1,,22.2,,5.9,,102.0,,ESE,0.8,3,34.2,
-2018-06-19,0.2,-4.5,-1.9,-1.1,0/6/0,968.4,962.4,965.3,,27.5,,12.4,,82.0,,E,0,0,34,
-2018-06-20,-2.2,-6.3,-4.1,-1.1,0/6/0,973.0,966.9,970.2,,35.5,,12.3,,7.0,,N,0,3,37,
-2018-06-21,-3.8,-7.3,-5.1,-1.2,0/6/0,982.0,973.1,977.4,,25.6,,5.3,,91.0,,E,0,0,37,
-2018-06-22,-4.2,-8.5,-5.8,-0.8,0/6/0,993.9,981.8,988.6,,38.4,,20.1,,117.0,,E,0,0,37,
-2018-06-23,-5.3,-9.1,-7.0,-1.0,0/6/0,996.4,992.9,995.3,,36.5,,8.9,,113.0,,NNE,0,0,37,
-2018-06-24,-6.4,-9.4,-7.8,-1.4,0/6/0,1002.6,995.5,997.9,,14.1,,6.9,,22.0,,NNE,0,0,34.6,
-2018-06-25,-4.9,-6.8,-5.7,-1.4,0/6/0,1005.0,1002.6,1004.0,,17.3,,5.2,,14.0,,NE,0,0,32.4,
-2018-06-26,-6.0,-10.5,-8.4,-1.5,0/6/0,1002.8,992.9,998.8,,19.3,,8.5,,11.0,,NNE,0,0,31.6,
-2018-06-27,-2.5,-9.3,-5.0,-1.6,0/6/0,992.9,981.6,986.6,,17.4,,6.5,,107.0,,ESE,0,0,31.6,
-2018-06-28,0.0,-4.6,-2.8,-1.6,0/6/0,981.8,979.4,980.8,,42.8,,4.5,,6.0,,NNE,0,0,31.6,
-2018-06-29,0.5,-8.6,-5.3,-1.7,0/6/0,989.7,979.5,985.7,,42.7,,13.8,,6.0,,SSW,1,2,34,
-2018-06-30,-8.0,-10.0,-8.6,-1.7,0/6/0,990.2,986.0,988.8,,19.7,,6.8,,185.0,,SSW,0,0,34,
-2018-07-01,-8.0,-13.9,-10.8,-1.7,0/6/0,1004.4,984.7,991.2,,35.7,,14.8,,116.0,,ESE,0,0,34,
-2018-07-02,-8.5,-11.4,-9.1,-1.7,0/6/0,1011.0,1004.4,1008.8,,16.5,,6.3,,198.0,,SSW,0,0,32.8,
-2018-07-03,-7.8,-10.9,-9.0,-1.7,0/6/0,1017.1,1010.9,1014.5,,19.6,,6.5,,22.0,,NNE,0,0,32.8,
-2018-07-04,-5.9,-7.8,-6.9,-1.7,0/6/0,1016.1,1010.6,1013.4,,17.8,,6.1,,187.0,,SSW,0,0,31,
-2018-07-05,-1.9,-8.2,-4.9,-1.7,0/6/0,1010.6,996.0,1002.2,,27.7,,8.0,,232.0,,NW,0.8,5,35.6,
-2018-07-06,-1.2,-7.4,-5.1,-1.7,20932,1003.4,993.9,999.6,,26.5,,10.5,,344.0,,SW,0.8,0,35.2,
-2018-07-07,-1.4,-7.7,-5.7,-1.7,20932,1010.8,994.3,1004.2,,27.7,,12.5,,207.0,,SW,0,0,35.2,
-2018-07-08,1.7,-8.6,-4.5,-1.8,0/9/0,1010.6,989.0,1002.7,,47.2,,12.8,,9.0,,NNE,4.8,5,40,
-2018-07-09,3.6,-1.2,0.8,-1.6,0/8/0,989.1,965.6,978.4,,40.1,,13.2,,10.0,,N,9.7,3,43,
-2018-07-10,1.9,-4.4,-1.2,-1.7,0/6/0,968.3,958.7,963.7,,45.3,,20.7,,315.0,,NNW,1.8,0,43.2,
-2018-07-11,-4.1,-14.8,-10.2,-1.8,0/6/0,972.3,958.6,966.2,,44.4,,17.1,,306.0,,W,0,0,43.2,
-2018-07-12,-12.3,-14.6,-13.1,-1.8,0/6/0,987.7,972.1,981.2,,22.8,,11.9,,182.0,,SSW,0,1,43.8,
-2018-07-13,-9.7,-12.8,-11.5,-1.8,0/6/0,989.2,979.3,984.2,,19.9,,7.1,,177.0,,S,0.5,1,45,
-2018-07-14,-8.0,-10.1,-9.2,-1.8,0/6/0,995.1,989.1,992.7,,14.9,,5.3,,230.0,,SW,0,0,45.2,
-2018-07-15,-6.5,-8.2,-7.5,-1.8,0/6/0,999.1,994.7,996.7,,19.1,,7.8,,244.0,,SW,0,1,45.8,
-2018-07-16,-2.7,-7.3,-4.7,-1.8,0/6/0,1004.4,998.7,1000.3,,15.1,,5.6,,308.0,,NW,0,4,49.6,
-2018-07-17,-2.3,-4.0,-3.3,-1.7,0/6/0,1012.6,1004.4,1009.0,,14.1,,5.9,,227.0,,NW,0,2,51.4,
-2018-07-18,0.4,-4.6,-2.2,-1.7,0/6/0,1013.4,1007.6,1010.8,,34.9,,6.7,,336.0,,NW,0.5,0,51.4,
-2018-07-19,1.2,-2.4,-0.4,-1.7,0/6/0,1013.3,998.7,1009.4,,50.9,,17.8,,16.0,,NW,2,0,51.4,
-2018-07-20,2.6,0.2,1.1,-1.6,0/6/0,998.9,981.7,988.9,,60.8,,39.7,,345.0,,N,28.7,0,43,
-2018-07-21,2.4,-2.5,0.8,-1.6,0/6/0,984.2,974.2,978.7,,48.1,,28.5,,1.0,,N,5.8,0,42.2,
-2018-07-22,1.3,-5.1,-1.6,-1.5,0/6/0,987.3,979.8,984.7,,33.7,,16.1,,2.0,,N,0,5,47.2,
-2018-07-23,2.5,0.1,1.0,-1.3,0/6/0,980.0,964.3,969.5,,48.4,,28.3,,11.0,,N,2,2,49.6,
-2018-07-24,0.2,-1.9,-0.7,-1.3,0/6/0,971.1,965.1,968.1,,43.8,,18.3,,5.0,,NNW,1.5,4,53.8,
-2018-07-25,1.2,-4.7,-1.7,-1.4,0/6/0,982.3,959.8,971.9,,48.8,,22.7,,4.0,,NNW,6.6,4,58,
-2018-07-26,0.5,-2.7,-1.1,-1.4,0/6/0,987.1,968.8,978.3,,65.9,,28.4,,7.0,,N,6.9,2,60,
-2018-07-27,1.3,-5.9,-1.6,-1.6,0/6/0,979.0,964.5,971.2,,59.8,,27.4,,32.0,,N,18.8,3,62.6,
-2018-07-28,-5.0,-8.5,-6.6,-1.7,51223,986.8,975.4,982.4,,26.6,,9.7,,288.0,,WNW,0,0,62.6,
-2018-07-29,-1.8,-7.2,-4.5,-1.7,51223,986.3,979.6,981.7,,37.6,,13.0,,20.0,,NNE,0,0,62.6,
-2018-07-30,-3.6,-10.8,-7.6,-1.7,51123,984.9,978.1,981.5,,17.6,,6.7,,101.0,,ESE,0.3,3,66,
-2018-07-31,-8.3,-13.7,-10.7,-1.7,51123,978.2,969.0,971.4,,8.7,,2.2,,298.0,,NW,0,0,66,
-2018-08-01,-10.4,-17.8,-12.5,-1.8,51123,984.3,969.1,972.9,,22.9,,2.4,,241.0,,WSW,1.8,14,79.8,
-2018-08-02,-17.3,-20.8,-19.0,-1.8,51123,993.7,984.3,990.8,,20.1,,6.7,,242.0,,SW,0,0,79.8,
-2018-08-03,3.4,-20.1,-4.9,-1.8,51121,987.0,950.4,964.6,,48.3,,15.7,,3.0,,NNE,8.6,0,70.6,
-2018-08-04,0.6,-18.1,-6.9,-1.7,51121,969.4,943.2,951.9,,40.5,,14.0,,24.0,,W,0.3,0,70.6,
-2018-08-05,-17.8,-19.6,-19.1,-1.7,51121,987.1,969.4,979.8,,19.2,,9.0,,244.0,,WSW,0,10,80.6,
-2018-08-06,-17.6,-20.5,-18.7,-1.8,51121,997.7,986.6,991.0,,21.4,,7.2,,201.0,,SW,0,4,84.8,
-2018-08-07,-19.2,-21.9,-20.5,-1.8,51121,1012.2,997.5,1003.8,,27.2,,8.6,,209.0,,SSW,0,5,90.2,
-2018-08-08,-10.6,-20.9,-17.3,-1.8,51121,1017.9,1011.1,1015.5,,18.0,,2.6,,98.0,,ESE,0,0,90.2,
-2018-08-09,3.4,-12.7,0.2,-1.7,51121,1011.2,984.8,994.6,,61.5,,31.0,,16.0,,NNE,26.4,0,90.2,
-2018-08-10,3.2,-4.1,-0.1,-1.7,51121,1007.8,984.5,994.4,,37.6,,5.5,,9.0,,W,7.6,0,90.2,
-2018-08-11,-1.5,-7.4,-4.4,-1.7,1/6/0,1010.3,1006.1,1008.7,,,,,,,,,0,0,75.4,
-2018-08-12,-3.0,-5.5,-4.3,-1.6,1/6/0,1006.7,1001.1,1003.9,,,,,,,,,0,0,75.4,
-2018-08-13,2.3,-4.2,-1.0,-1.5,1/6/0,1001.1,991.5,996.3,,30.8,,3.6,,44.0,,SE,0,0,75.4,
-2018-08-14,2.1,-3.8,-0.3,-1.4,0/6/0,992.9,989.3,991.5,,37.1,,14.1,,51.0,,N,0,0,75.4,
-2018-08-15,1.9,-3.3,0.6,-1.3,0/6/0,991.0,977.7,984.4,,47.9,,27.7,,25.0,,NNE,3,0,75.4,
-2018-08-16,1.4,-0.8,0.5,-1.3,0/6/0,978.1,970.9,973.0,,46.0,,22.8,,9.0,,NNE,2.3,0,75.4,
-2018-08-17,0.3,-2.7,-1.2,-1.3,0/6/0,971.2,965.5,968.7,,31.1,,15.6,,338.0,,N,0.3,2,77.8,
-2018-08-18,-1.9,-6.0,-4.5,-1.5,0/6/0,975.4,965.2,972.3,,40.2,,16.2,,28.0,,NW,0,0,77.8,
-2018-08-19,-1.8,-8.8,-5.1,-1.5,0/6/0,977.1,947.3,958.8,,76.5,,20.9,,29.0,,SW,0.8,3,80.4,
-2018-08-20,-8.8,-12.5,-10.8,-1.7,1/6/0,987.3,977.2,982.9,,19.4,,6.5,,231.0,,SSW,0,3,83.2,
-2018-08-21,-9.7,-13.5,-12.0,-1.6,1/6/0,995.0,987.3,989.2,,11.7,,3.9,,198.0,,S,0,1,83.8,
-2018-08-22,-1.6,-13.9,-7.4,-1.6,1/6/0,998.8,995.1,997.5,,29.1,,8.3,,24.0,,ESE,0,0,83.4,
-2018-08-23,0.3,-3.8,-2.0,-1.5,0/6/0,996.7,963.9,979.7,,33.4,,16.8,,91.0,,E,0,0,82.8,
-2018-08-24,-1.5,-5.7,-3.0,-1.6,0/6/0,975.6,964.5,971.2,,30.8,,13.3,,23.0,,NW,0,0,83,
-2018-08-25,0.6,-2.4,-1.1,-1.6,0/6/0,971.9,962.3,965.6,,41.8,,10.9,,4.0,,N,0,0,83,
-2018-08-26,-1.7,-8.6,-5.0,-1.7,10660,983.7,969.0,978.8,,26.4,,10.4,,266.0,,W,0.8,1,83.6,
-2018-08-27,0.7,-6.4,-1.0,-1.7,0/6/0,981.8,967.9,972.6,,62.4,,23.7,,9.0,,N,18.8,3,86.8,
-2018-08-28,1.4,-3.0,0.1,-1.6,0/6/0,968.3,953.0,960.1,,55.3,,18.8,,40.0,,ESE,0.5,0,86.4,
-2018-08-29,-2.3,-5.1,-4.1,-1.7,0/6/0,984.1,960.1,971.5,,34.0,,8.2,,19.0,,SSW,0,1,87.2,
-2018-08-30,-4.4,-9.7,-7.9,-1.7,0/6/0,1000.3,984.1,994.7,,17.4,,5.7,,183.0,,WSW,0,2,89.2,
-2018-08-31,1.4,-6.8,-1.3,-1.7,0/6/0,1000.2,981.9,992.6,,55.4,,18.5,,345.0,,NNW,5.6,1,89.8,
-2018-09-01,2.0,-1.2,0.3,-1.6,0/6/0,982.6,972.3,979.3,,40.2,,19.7,,349.0,,NNW,4.1,3,93.2,
-2018-09-02,2.2,-8.4,-0.1,-1.6,0/6/0,972.9,956.7,962.2,,36.6,,9.4,,14.0,,ESE,2.8,7,100.2,
-2018-09-03,-8.5,-15.9,-13.5,-1.7,10623,982.3,966.5,977.4,,19.0,,7.7,,231.0,,WSW,0,7,107.4,
-2018-09-04,-10.1,-14.1,-11.9,-1.7,10623,975.7,968.7,970.9,,22.2,,8.1,,195.0,,SSW,0,0,106.6,
-2018-09-05,-1.5,-15.3,-10.8,-1.7,10623,988.4,974.3,983.2,,28.3,,6.2,,5.0,,ESE,0.5,0,105.6,
-2018-09-06,1.6,-1.5,0.5,-1.7,21623,988.0,982.4,985.9,,46.1,,30.1,,8.0,,N,7.9,11,116.4,
-2018-09-07,1.9,0.0,0.8,-1.6,0/6/0,982.6,969.5,976.7,,60.8,,36.8,,351.0,,N,5.6,0,102.4,
-2018-09-08,1.5,-0.7,0.4,-1.6,0/6/0,981.7,971.4,978.1,,51.3,,34.1,,353.0,,N,7.9,0,102.4,
-2018-09-09,1.0,-3.2,-0.9,-1.5,41621,994.1,977.1,986.0,,59.3,,28.8,,3.0,,NNW,3.6,0,102.4,
-2018-09-10,3.8,-0.5,1.1,-1.5,0/6/0,994.8,982.4,988.4,,57.8,,27.1,,343.0,,NNW,10.2,0,102.4,
-2018-09-11,3.8,0.8,2.0,-1.5,0/6/0,984.6,973.2,978.1,,56.6,,29.6,,10.0,,NNE,11.4,0,102.4,
-2018-09-12,1.8,-2.3,-0.2,-1.5,0/6/0,973.8,959.1,966.3,,54.0,,30.5,,12.0,,NNW,11.4,0,102.4,
-2018-09-13,-0.6,-5.1,-2.3,-1.6,0/6/0,969.5,938.4,952.0,,62.4,,33.1,,1.0,,NNE,2.8,0,102.4,
-2018-09-14,-3.2,-8.8,-6.0,-1.7,41632,977.0,954.8,963.1,,24.4,,9.9,,345.0,,SW,0.8,10,112.4,
-2018-09-15,-4.6,-9.5,-7.6,-1.7,41632,983.5,977.1,981.7,,14.8,,5.3,,117.0,,ESE,0.3,0,112.4,
-2018-09-16,-3.0,-9.9,-5.2,-1.7,51632,989.4,982.5,986.1,,43.1,,17.7,,5.0,,N,0.3,0,106.4,
-2018-09-17,-4.9,-15.3,-12.4,-1.7,51632,992.9,986.2,990.4,,30.9,,10.1,,280.0,,SW,0,0,106.4,
-2018-09-18,-8.3,-16.5,-13.1,-1.7,51632,996.0,983.5,988.7,,22.5,,5.5,,182.0,,S,0,0,106.4,
-2018-09-19,-4.8,-16.0,-12.5,-1.7,51632,1012.8,996.0,1006.9,,4.8,,1.2,,17.0,,NNE,0,0,106,
-2018-09-20,-4.0,-15.1,-11.1,-1.7,51632,1013.2,1006.1,1009.6,,5.7,,1.0,,349.0,,NNE,0,0,106,
-2018-09-21,-2.3,-11.3,-7.5,-1.7,51632,1007.3,1005.6,1006.5,,6.9,,1.1,,321.0,,NE,0,0,106,
-2018-09-22,-1.0,-6.3,-4.1,-1.7,51632,1005.8,1001.5,1003.7,,10.4,,1.9,,261.0,,NW,0,0,106,
-2018-09-23,-2.6,-6.7,-4.8,-1.8,51632,1001.6,995.4,998.3,,9.3,,2.5,,214.0,,NW,0,0,106,
-2018-09-24,-3.8,-9.8,-7.4,-1.7,51632,1002.9,996.5,999.3,,11.5,,3.2,,202.0,,SSW,0,0,106,
-2018-09-25,-9.0,-12.5,-11.4,-1.7,51632,1005.9,1003.0,1004.8,,10.1,,1.5,,136.0,,NNE,0,1,107.2,
-2018-09-26,0.4,-11.4,-2.5,-1.7,51632,1004.7,977.5,992.2,,54.9,,26.0,,304.0,,N,16,0,107.2,
-2018-09-27,0.2,-4.4,-2.2,-1.8,31631,981.6,963.6,974.2,,41.2,,14.9,,354.0,,ESE,4.3,2,109.2,
-2018-09-28,-2.9,-7.6,-5.2,-1.8,31631,994.2,973.2,987.8,,22.2,,5.6,,273.0,,NE,3,11,120.6,
-2018-09-29,-5.2,-11.1,-9.2,-1.8,51631,996.0,992.0,994.6,,8.9,,3.4,,355.0,,NNW,0,0,120.6,
-2018-09-30,-9.7,-13.1,-11.2,-1.8,51631,992.0,982.4,987.0,,7.4,,2.1,,217.0,,NE,0,0,119.2,
-2018-10-01,-2.2,-13.1,-9.3,-1.8,51631,982.4,977.7,979.5,,26.6,,4.4,,5.0,,NNE,0,0,119.2,
-2018-10-02,-2.8,-8.7,-4.9,-1.8,51631,986.0,978.7,982.3,,30.2,,9.3,,7.0,,N,0.8,0,116.6,
-2018-10-03,-6.8,-11.5,-8.4,-1.8,51631,1001.6,985.9,992.7,,8.5,,2.6,,24.0,,NNE,0.3,6,122.8,
-2018-10-04,-9.6,-14.1,-11.9,-1.8,41631,1004.4,999.7,1002.9,,9.8,,3.2,,305.0,,NNW,0,0,122.8,
-2018-10-05,-1.6,-12.3,-5.3,-1.8,41631,999.7,990.1,993.6,,13.2,,3.4,,101.0,,ESE,0,1,123.6,
-2018-10-06,0.5,-3.5,-2.0,-1.7,41631,990.1,983.1,987.0,,14.2,,1.7,,102.0,,NW,2.5,1,124.2,
-2018-10-07,3.6,-3.8,0.7,-1.7,3/601,983.2,968.4,974.0,,38.9,,14.8,,65.0,,ENE,0,0,114.8,
-2018-10-08,4.1,-1.3,1.5,-1.5,31601,984.0,970.6,975.6,,34.5,,15.2,,52.0,,NNW,0,0,112.2,
-2018-10-09,-0.2,-3.4,-1.8,-1.5,11601,992.2,984.0,988.8,,28.9,,9.9,,35.0,,NE,0,0,111.8,
-2018-10-10,-2.8,-5.4,-4.4,-1.5,11601,997.5,992.2,994.8,,11.5,,3.0,,220.0,,NNE,0,0,111.6,
-2018-10-11,-2.3,-5.2,-3.9,-1.5,11600,997.3,993.2,996.1,,13.4,,3.5,,209.0,,ENE,0,0,111.6,
-2018-10-12,-0.9,-6.4,-2.9,-1.4,11600,993.2,978.7,984.9,,30.5,,9.4,,67.0,,ENE,0,0,111.4,
-2018-10-13,-1.0,-5.1,-3.2,-1.3,21630,986.0,979.2,981.7,,29.7,,8.6,,67.0,,ESE,0,0,111,
-2018-10-14,-2.2,-4.9,-3.7,-1.4,21631,994.7,986.0,990.4,,14.4,,7.6,,15.0,,N,0,0,110.6,
-2018-10-15,-2.2,-5.8,-4.2,-1.4,21621,998.0,994.6,996.0,,5.8,,3.0,,338.0,,NNE,0,0,110.4,
-2018-10-16,-4.0,-7.5,-5.9,-1.3,21621,1010.4,998.0,1002.7,,10.9,,3.6,,174.0,,SW,0,0,109.8,
-2018-10-17,-1.3,-5.5,-2.9,-1.2,21621,1014.2,1010.3,1012.7,,16.4,,6.7,,227.0,,SW,0,0,110,
-2018-10-18,-0.3,-2.1,-1.0,-1.2,21681,1011.5,1007.5,1009.8,,16.2,,6.6,,308.0,,NW,0.3,1,111.2,
-2018-10-19,0.2,-1.3,-0.9,-1.2,216/2,1007.6,992.5,1002.7,,26.5,,8.8,,317.0,,NW,1,2,113.4,
-2018-10-20,-0.6,-5.6,-3.1,-1.4,31663,992.6,985.2,987.8,,36.9,,18.2,,221.0,,SW,1,9,122.6,
-2018-10-21,-4.9,-5.9,-5.3,-1.6,41763,994.0,988.0,990.9,,31.7,,15.0,,213.0,,SW,0,2,124.8,
-2018-10-22,0.5,-5.3,-1.9,-1.6,52743,994.1,987.0,989.5,,21.6,,7.3,,247.0,,WSW,3,4,129,
-2018-10-23,-0.3,-1.9,-0.9,-1.6,52743,993.5,989.6,991.9,,18.3,,8.4,,235.0,,NW,0,1,129.6,
-2018-10-24,-0.1,-1.2,-0.7,-1.6,52743,1006.4,993.3,1002.1,,18.0,,8.4,,218.0,,SW,0.3,0,129.2,
-2018-10-25,0.1,-0.5,-0.3,-1.6,52642,1010.4,1005.9,1009.0,,11.9,,4.6,,313.0,,NW,0.3,0,127.8,
-2018-10-26,0.9,-1.1,-0.2,-1.6,52642,1009.5,998.4,1004.7,,13.9,,2.6,,101.0,,NW,0,0,125.4,
-2018-10-27,5.9,-0.2,3.4,-1.5,52641,998.4,979.5,988.5,,30.2,,10.7,,28.0,,ESE,0,0,121.6,
-2018-10-28,3.3,-0.6,1.5,-1.3,22630,979.8,963.9,970.8,,48.3,,24.1,,4.0,,NNW,2.5,0,116.8,
-2018-10-29,1.2,-2.2,-0.4,-1.3,22600,978.7,971.2,975.4,,42.9,,17.3,,328.0,,NNW,2.8,5,122.2,
-2018-10-30,1.6,-2.1,-0.3,-1.3,22600,982.1,963.0,973.8,,55.6,,26.2,,1.0,,NNE,9.1,0,121.8,
-2018-10-31,2.1,-1.1,0.7,-1.3,32640,988.1,982.1,985.9,,46.3,,20.6,,346.0,,N,15.2,8,129.4,
-2018-11-01,3.2,0.6,1.4,-1.3,22612,991.7,980.0,987.5,,52.1,,25.4,,346.0,,NNW,2.8,0,122.2,
-2018-11-02,1.6,-1.7,0.2,-1.2,22600,992.1,979.7,986.2,,43.7,,21.4,,27.0,,NNW,1,2,124.4,
-2018-11-03,5.0,1.0,2.3,-1.2,22600,991.8,978.4,984.6,,63.9,,34.5,,349.0,,N,38.1,0,116.6,
-2018-11-04,5.0,1.9,3.4,-1.1,22600,979.3,969.2,973.6,,50.9,,19.9,,34.0,,NNE,4.1,0,106.6,
-2018-11-05,4.5,-2.9,-0.1,-1.0,22600,971.1,965.8,968.8,,42.0,,11.2,,14.0,,NW,8.1,0,106.2,
-2018-11-06,-2.0,-4.8,-3.1,-1.0,22600,969.5,965.6,967.1,,19.7,,7.0,,17.0,,SW,0.3,1,107.6,
-2018-11-07,-1.6,-3.7,-2.6,-1.1,32662,975.4,969.2,973.0,,10.8,,4.3,,341.0,,NNW,0,0,107,
-2018-11-08,-2.1,-2.4,-2.3,-1.0,32602,,,,,7.1,,3.9,,239.0,,WSW,0,1,107.6,
-2018-11-09,-1.2,-3.2,-2.5,-0.9,22640,,,,,10.1,,5.2,,202.0,,SSW,0,0,107,
-2018-11-10,-1.2,-4.2,-2.9,-1.0,32642,,,,,14.1,,5.5,,129.0,,ESE,1.5,0,106,
-2018-11-11,2.1,-1.8,-0.4,-1.0,22640,,,,,36.9,,11.1,,13.0,,WNW,1,5,110.8,
-2018-11-12,2.3,-0.9,0.5,-1.1,22600,,,,,25.3,,9.3,,1.0,,N,0,0,109.2,
-2018-11-13,0.8,-0.8,-0.1,-1.1,22600,972.7,968.4,970.7,,20.1,,7.5,,320.0,,NNW,0.5,0,109.2,
-2018-11-14,0.6,-1.4,-0.3,-1.1,22600,974.7,972.2,973.9,,23.2,,6.6,,14.0,,SE,0,4,92.8,
-2018-11-15,1.2,-1.4,0.3,,22600,965.9,965.4,965.6,,13.7,,4.8,,111.0,,ESE,0,0,108.8,
-2018-11-16,0.2,-4.4,-1.9,-0.2,22600,973.0,965.2,968.1,,25.1,,6.8,,205.0,,SSW,0,0,108.4,
-2018-11-17,-0.8,-4.3,-2.3,-0.6,22600,979.5,972.9,977.3,,24.7,,6.0,,204.0,,NW,0,0,107.2,
-2018-11-18,2.2,-2.0,0.1,-0.5,22600,974.8,955.3,961.9,,35.7,,12.9,,20.0,,ESE,5.3,0,107.6,
-2018-11-19,1.7,-1.2,0.0,-0.7,22600,957.6,954.9,956.1,,20.4,,5.5,,101.0,,NW,2.3,9,116.2,
-2018-11-20,1.6,-1.3,0.0,-0.7,22600,961.4,953.0,955.8,,43.0,,23.0,,22.0,,N,1.3,0,110.2,
-2018-11-21,-0.9,-2.5,-1.7,-0.8,22600,972.6,961.4,965.4,,24.5,,14.2,,316.0,,NW,0.8,6,113.2,
-2018-11-22,1.6,-2.6,-1.1,-0.9,22600,980.2,967.2,976.7,,50.1,,13.5,,20.0,,SW,1.3,1,114.2,
-2018-11-23,2.3,-0.2,1.1,-0.7,22600,968.2,960.2,964.5,,52.7,,24.0,,20.0,,NNW,1.8,0,111.2,
-2018-11-24,3.6,-0.5,0.9,-0.7,22600,971.7,965.1,968.8,,36.8,,18.0,,20.0,,NNW,0.5,1,111,
-2018-11-25,1.2,-0.7,0.2,-0.8,22600,977.9,968.5,972.7,,34.2,,20.6,,9.0,,NNW,0.3,0,110.2,
-2018-11-26,1.0,-1.4,-0.2,-0.7,22600,977.5,972.3,974.7,,27.1,,10.0,,10.0,,W,0.8,2,112.4,
-2018-11-27,0.3,-1.7,-0.8,-0.6,22600,988.2,977.4,981.9,,17.4,,8.8,,230.0,,WSW,0,0,112.6,
-2018-11-28,1.3,-1.3,-0.5,-0.4,22600,994.2,987.8,991.6,,17.7,,7.1,,125.0,,WSW,0,0,111,
-2018-11-29,4.4,0.6,2.9,-0.4,22600,987.9,979.2,982.3,,53.6,,15.3,,27.0,,N,3.6,0,104,
-2018-11-30,3.3,-0.4,0.8,-0.3,22600,987.3,977.5,981.5,,39.5,,21.4,,350.0,,N,2,0,102.6,
-2018-12-01,2.3,-1.2,1.2,-0.5,22600,986.0,968.4,977.6,,51.0,,23.3,,3.0,,N,24.4,0,100,
-2018-12-02,2.7,-0.6,0.4,-0.5,22600,976.0,966.5,971.3,,36.9,,16.6,,318.0,,NW,0,0,98.2,
-2018-12-03,0.3,-2.1,-0.9,-0.5,22600,994.2,968.6,983.7,,32.2,,16.9,,228.0,,SW,0,4,102.4,
-2018-12-04,0.6,-1.9,-0.6,-0.1,32673,999.6,993.8,997.7,,25.2,,13.4,,271.0,,WSW,0,0,90.8,
-2018-12-05,2.0,-1.8,-0.5,-0.4,32660,997.2,988.3,995.2,,36.7,,11.5,,3.0,,NW,0.5,1,102.2,
-2018-12-06,2.5,0.2,1.4,-0.6,22600,988.4,953.4,968.7,,51.3,,19.8,,22.0,,N,16.3,0,99,
-2018-12-07,1.6,-1.9,-1.1,-0.7,22600,969.8,953.0,962.1,,34.2,,12.5,,229.0,,SW,1.8,9,107.6,
-2018-12-08,1.3,-3.7,-1.2,-0.7,22600,969.5,958.5,963.5,,38.7,,10.6,,9.0,,N,0.8,0,107.4,
-2018-12-09,1.0,-2.7,-0.4,-0.5,22600,970.9,960.6,966.2,,25.9,,10.1,,326.0,,NNW,0.3,0,102,
-2018-12-10,0.9,-1.5,-0.2,-0.4,22600,984.8,970.6,977.2,,24.8,,6.3,,327.0,,W,0.3,6,88.2,
-2018-12-11,2.0,-3.4,-0.7,-0.2,22600,986.5,984.8,985.8,,32.6,,6.0,,11.0,,NNE,0,0,84.6,
-2018-12-12,4.3,0.0,1.8,-0.1,22600,985.3,971.9,981.0,,49.6,,17.5,,18.0,,ESE,0.8,0,101.6,
-2018-12-13,3.0,0.4,1.1,0.0,22600,982.7,972.2,979.9,,49.2,,18.7,,7.0,,NW,0.3,0,97.4,
-2018-12-14,2.4,-0.4,1.0,-0.1,22600,982.9,961.1,972.7,,43.7,,23.0,,26.0,,NNE,10.7,0,95.2,
-2018-12-15,2.5,-0.3,0.6,0.0,22600,962.8,961.5,962.1,,26.2,,8.8,,1.0,,NW,2,3,98.4,
-2018-12-16,0.5,-1.6,-0.5,0.1,22600,969.4,962.7,966.2,,15.4,,6.7,,242.0,,WSW,1.3,0,97.4,
-2018-12-17,0.4,-1.3,-0.7,0.4,22600,971.4,966.2,967.9,,15.5,,4.5,,243.0,,SSW,0,0,93.4,
-2018-12-18,-0.1,-1.4,-0.8,0.6,22600,978.4,971.2,974.0,,23.1,,9.5,,225.0,,SW,0,0,91.4,
-2018-12-19,0.7,-1.0,-0.3,0.6,22600,987.3,977.8,980.8,,25.5,,12.9,,238.0,,WSW,0,0,97,
-2018-12-20,2.6,-3.2,-0.5,0.5,32642,988.5,972.8,983.2,,21.6,,5.8,,98.0,,ESE,0,0,90,
-2018-12-21,4.1,0.0,1.2,0.6,22600,973.1,966.8,969.4,,20.5,,4.6,,99.0,,NNW,6.1,0,89,
-2018-12-22,3.7,-0.2,0.8,0.5,32642,976.0,964.4,972.3,,38.9,,7.5,,70.0,,NW,3,1,89.6,
-2018-12-23,3.6,0.4,1.8,0.2,22600,970.3,964.2,966.5,,37.5,,24.2,,6.0,,N,1,0,84,
-2018-12-24,3.0,-0.1,1.1,0.1,22600,973.8,968.5,970.5,,42.9,,13.9,,2.0,,NW,0,0,83.4,
-2018-12-25,0.2,-1.1,-0.5,0.2,22600,983.9,973.9,979.4,,15.3,,7.5,,235.0,,WSW,0,0,81.2,
-2018-12-26,1.4,-1.8,-0.2,0.4,22600,984.1,980.1,981.6,,14.2,,4.2,,29.0,,SE,2.8,4,85,
-2018-12-27,2.6,-1.4,0.6,0.4,22600,983.7,980.1,981.8,,6.2,,2.6,,4.0,,NNE,0,0,83.8,
-2018-12-28,4.4,0.5,1.9,0.7,22600,984.0,982.0,983.1,,16.6,,3.3,,70.0,,NNW,0.3,0,79,
-2018-12-29,5.9,0.4,3.1,0.7,22600,984.9,978.2,983.3,,34.1,,9.8,,15.0,,NNE,1.5,0,78.8,
-2018-12-30,5.4,1.2,3.1,0.6,22600,978.3,967.0,970.3,,37.0,,15.6,,89.0,,E,0,0,72.6,
-2018-12-31,4.5,0.9,2.6,0.8,22600,972.7,968.2,970.6,,13.7,,3.2,,342.0,,SE,0,0,72.6,
-2019-01-01,3.1,0.5,1.8,1.1,21600,979.6,972.7,976.0,,10.2,,3.9,,87.0,,E,0,0,68,
-2019-01-02,1.5,-1.0,0.1,1.3,21600,984.7,979.6,981.9,,11.3,,4.5,,246.0,,WSW,0,0,65.2,
-2019-01-03,0.1,-1.5,-0.9,1.3,21600,986.8,984.2,985.9,,13.7,,6.3,,219.0,,SSW,0,0,64.8,
-2019-01-04,3.1,-3.2,0.3,1.2,0/6/0,984.2,968.4,975.7,,16.7,,4.5,,126.0,,ESE,0,0,63.4,
-2019-01-05,3.4,0.3,1.7,1.2,0/6/0,971.8,967.9,969.6,,21.1,,3.3,,80.0,,NW,1.3,0,62.2,
-2019-01-06,4.0,-1.0,1.7,1.4,0/6/0,979.2,971.8,975.5,,8.2,,2.5,,25.0,,NNE,0,0,60.6,
-2019-01-07,2.2,0.3,1.2,1.5,0/6/0,988.7,979.2,983.9,,10.6,,4.7,,343.0,,NNW,0,0,57.2,
-2019-01-08,2.1,-0.3,0.9,1.0,0/6/0,993.2,988.7,991.5,,15.6,,5.2,,322.0,,NW,0,0,57.2,
-2019-01-09,2.1,-0.5,0.4,0.8,22662,991.8,986.3,989.4,,11.0,,3.6,,82.0,,NNW,0.5,5,62.2,
-2019-01-10,3.9,-0.4,1.6,1.1,0/6/0,986.2,979.5,981.6,,32.9,,13.5,,68.0,,E,1.3,0,56.6,
-2019-01-11,3.8,-0.1,1.9,1.3,0/6/0,986.6,981.6,984.4,,15.6,,4.7,,71.0,,NNW,0,0,50.4,
-2019-01-12,3.1,0.4,1.3,1.9,0/6/0,986.6,979.5,983.8,,9.3,,3.2,,240.0,,WSW,0,0,50.4,
-2019-01-13,2.5,-0.3,1.0,2.4,0/6/0,983.7,978.1,980.4,,11.6,,3.6,,271.0,,NNW,0,0,48.2,
-2019-01-14,1.7,-1.4,0.2,2.6,0/6/0,985.4,983.4,984.6,,11.5,,4.3,,292.0,,W,0.5,0,47.8,
-2019-01-15,0.9,-1.6,-0.4,2.3,0/6/0,985.1,982.3,983.1,,18.0,,6.1,,309.0,,NNW,0.5,0,47.2,
-2019-01-16,0.2,-1.6,-0.9,2.4,0/6/0,992.2,985.0,989.0,,20.9,,9.1,,213.0,,SW,0,0,46.4,
-2019-01-17,2.7,-1.9,0.0,2.2,0/6/0,992.2,980.3,987.4,,11.8,,4.2,,237.0,,ESE,0,0,44.4,
-2019-01-18,2.6,0.3,1.1,2.0,0/6/0,984.2,979.1,981.8,,14.1,,4.4,,94.0,,NW,0,0,44,
-2019-01-19,3.4,0.3,1.4,1.7,0/6/0,981.0,968.5,972.0,,25.1,,9.5,,135.0,,ESE,7.1,0,41.4,
-2019-01-20,2.9,0.6,1.4,1.1,0/6/0,976.4,968.3,971.3,,18.5,,5.4,,352.0,,NNW,1.5,0,40.4,
-2019-01-21,2.4,0.8,1.4,1.1,0/6/0,982.5,976.2,978.7,,25.5,,14.8,,350.0,,NNW,2.3,0,39.8,
-2019-01-22,3.8,0.2,1.9,1.2,0/6/0,983.7,981.7,982.7,,12.8,,2.6,,108.0,,ESE,0,0,39.4,
-2019-01-23,4.2,0.1,2.1,1.4,0/6/0,985.4,982.7,984.6,,8.9,,2.4,,110.0,,WNW,0,0,38.4,
-2019-01-24,4.2,0.2,2.1,1.3,0/6/0,982.8,963.9,970.7,,45.9,,16.9,,111.0,,E,0,0,37,
-2019-01-25,4.6,1.5,3.0,1.1,0/6/0,978.5,965.1,970.3,,31.3,,15.9,,119.0,,ESE,0,0,36.4,
-2019-01-26,4.1,0.3,1.9,1.3,0/6/0,986.7,978.5,983.9,,13.6,,5.6,,312.0,,NNW,0,0,35.2,
-2019-01-27,5.2,0.0,2.6,1.1,0/6/0,985.8,971.4,979.0,,18.5,,6.2,,103.0,,ESE,0.5,0,35,
-2019-01-28,5.4,1.3,3.2,1.1,0/6/0,971.4,968.9,970.1,,31.2,,6.4,,30.0,,N,0.8,0,33.4,
-2019-01-29,2.7,0.6,1.6,1.2,0/6/0,978.4,971.1,973.9,,5.1,,1.0,,314.0,,N,5.3,0,30.4,
-2019-01-30,1.9,-0.3,1.2,1.2,0/6/0,988.2,978.4,983.4,,13.1,,2.3,,208.0,,SSW,0.3,0,29,
-2019-01-31,2.5,-0.8,0.7,1.1,0/6/0,992.6,988.2,990.2,,10.0,,2.0,,212.0,,NNW,0,0,26.6,
-2019-02-01,2.5,0.8,1.5,1.2,0/6/0,1000.4,992.5,997.0,,12.6,,6.7,,225.0,,SW,0,0,25.2,
-2019-02-02,6.4,-0.1,2.0,1.2,0/6/0,1000.3,979.7,993.5,,18.2,,5.6,,123.0,,ESE,0.5,0,23.6,
-2019-02-03,5.8,1.4,2.2,1.0,0/6/0,987.6,977.5,983.0,,25.6,,7.8,,1.0,,NW,8.9,0,22.4,
-2019-02-04,4.2,1.1,2.5,0.0,0/6/0,982.8,976.4,979.1,,26.6,,13.6,,329.0,,NNW,6.9,0,19.8,
-2019-02-05,2.5,1.3,1.9,0.4,0/6/0,983.3,977.4,981.4,,17.0,,8.8,,326.0,,NNW,2.3,0,16.6,
-2019-02-06,7.3,0.8,3.8,0.9,0/6/0,982.1,964.4,972.3,,38.0,,13.3,,1.0,,NNE,2.5,0,15.4,
-2019-02-07,3.0,0.8,1.8,1.2,0/6/0,978.2,964.5,971.5,,34.0,,8.4,,69.0,,ESE,0,0,14.6,
-2019-02-08,1.4,0.1,0.6,1.3,0/6/0,982.0,978.2,980.5,,10.2,,3.2,,212.0,,SSW,0,0,14.6,
-2019-02-09,2.0,-0.4,0.7,1.4,0/6/0,985.5,981.8,983.8,,13.4,,3.5,,197.0,,SSW,0,0,14.6,
-2019-02-10,1.0,-0.9,-0.1,1.3,0/6/0,991.3,984.8,986.8,,35.6,,15.1,,203.0,,SSW,0,0,14.6,
-2019-02-11,1.4,-0.7,0.1,1.3,0/6/0,993.9,986.6,991.6,,26.3,,9.7,,212.0,,SSW,0,0,14.6,
-2019-02-12,2.2,-0.1,1.0,0.9,0/6/0,987.0,976.5,979.8,,17.9,,6.4,,304.0,,NW,2,0,14.6,
-2019-02-13,3.1,0.4,1.7,0.0,0/6/0,978.4,960.7,972.7,,32.8,,11.4,,23.0,,ESE,0.3,0,14,
-2019-02-14,3.5,0.3,1.2,0.7,0/6/0,969.3,960.0,963.6,,21.8,,3.9,,106.0,,ESE,4.8,0,14.6,
-2019-02-15,3.5,-0.2,1.4,0.9,0/6/0,978.0,969.4,975.1,,35.1,,9.6,,1.0,,NNE,0,0,15,
-2019-02-16,3.6,0.4,2.0,1.2,0/6/0,978.9,969.5,973.7,,29.5,,14.3,,104.0,,E,0.8,0,14.6,
-2019-02-17,2.6,-0.4,1.2,1.1,0/6/0,987.4,978.6,982.8,,41.6,,16.4,,5.0,,NNE,0,0,14.6,
-2019-02-18,2.3,-1.1,0.3,1.1,0/6/0,995.1,987.4,991.5,,11.7,,2.4,,130.0,,N,0.3,1,15.4,
-2019-02-19,3.3,-1.9,0.3,1.2,0/6/0,995.3,993.0,994.2,,16.3,,4.7,,75.0,,E,0,0,15,
-2019-02-20,2.2,-1.2,0.5,1.4,0/6/0,994.1,992.2,993.2,,19.9,,4.7,,354.0,,NNE,0,0,14.6,
-2019-02-21,2.9,0.3,1.2,1.4,0/6/0,993.5,992.4,993.1,,19.6,,4.5,,110.0,,E,0,0,14.4,
-2019-02-22,1.5,-1.5,-0.1,1.4,0/6/0,996.1,993.0,994.3,,7.3,,2.5,,187.0,,NE,0,0,14.4,
-2019-02-23,0.6,-0.6,0.0,1.4,0/6/0,1002.9,996.1,998.9,,11.4,,5.3,,196.0,,S,0,0,14.2,
-2019-02-24,-0.4,-1.8,-1.1,1.4,0/6/0,1005.9,1002.9,1005.1,,11.4,,4.2,,217.0,,SSW,0,0,14,
-2019-02-25,-1.5,-2.5,-2.0,1.4,0/6/0,1005.4,993.9,1000.9,,19.6,,3.7,,211.0,,SSW,0,0,14,
-2019-02-26,-0.1,-3.0,-1.8,1.4,0/6/0,993.9,988.6,992.2,,19.5,,3.1,,126.0,,S,0,0,13.8,
-2019-02-27,1.7,-2.0,0.0,1.2,0/6/0,1002.9,985.7,994.0,,24.4,,7.3,,73.0,,SSW,0,0,13.6,
-2019-02-28,0.6,-3.4,-1.6,0.4,0/6/0,1006.1,1002.9,1004.7,,19.6,,3.4,,320.0,,SW,0,0,13.6,
-2019-03-01,0.6,-1.0,-0.3,0.6,0/6/0,1005.6,1002.6,1003.7,,12.2,,2.8,,210.0,,SW,0,0,13.4,
-2019-03-02,1.6,-0.7,0.1,1.0,0/6/0,1002.6,998.3,1000.3,,7.2,,1.4,,120.0,,SE,0,0,13.4,
-2019-03-03,3.1,-0.9,0.8,1.0,0/6/0,998.4,985.3,993.3,,15.8,,4.1,,122.0,,SE,0.3,0,13.4,
-2019-03-04,5.1,0.8,3.0,0.8,0/6/0,985.3,978.2,980.4,,29.0,,5.7,,30.0,,NNE,8.4,0,12,
-2019-03-05,5.0,1.3,2.7,0.8,0/6/0,978.5,973.7,976.0,,21.3,,4.4,,44.0,,NNW,0.5,0,11.6,
-2019-03-06,2.3,-1.0,0.6,0.8,0/6/0,981.8,973.2,975.3,,14.3,,3.6,,240.0,,SE,1.3,1,12.4,
-2019-03-07,2.0,-0.5,0.5,0.8,0/6/0,996.5,981.8,991.3,,13.7,,4.6,,227.0,,WSW,0,0,12.8,
-2019-03-08,1.0,-1.5,-0.5,0.5,0/6/0,996.3,978.2,988.9,,19.0,,6.4,,123.0,,ESE,0,0,12,
-2019-03-09,2.5,-0.9,0.4,0.9,0/6/0,988.4,977.8,981.9,,7.5,,1.5,,148.0,,NNE,0,0,11.8,
-2019-03-10,3.1,0.4,1.4,0.7,0/6/0,988.2,978.3,983.0,,19.5,,4.8,,23.0,,NNW,0.3,0,11.8,
-2019-03-11,1.5,-1.3,0.3,0.5,0/6/0,990.2,978.1,982.4,,22.8,,5.1,,128.0,,WSW,0,0,11.6,
-2019-03-12,-0.3,-2.9,-1.4,0.5,0/6/0,999.1,990.3,996.4,,20.1,,6.7,,133.0,,WSW,0,0,11.4,
-2019-03-13,3.1,-1.8,-0.5,0.4,0/6/0,1000.8,997.9,999.7,,26.5,,3.9,,8.0,,SE,0.3,0,11.2,
-2019-03-14,3.9,1.2,2.8,0.3,0/6/0,998.0,983.4,991.1,,33.2,,17.3,,25.0,,NNE,7.4,0,10.8,
-2019-03-15,3.4,0.4,1.9,0.0,0/6/0,991.6,975.4,984.5,,23.2,,10.4,,149.0,,NNW,4.6,0,10.4,
-2019-03-16,3.5,0.8,2.0,0.3,0/6/0,988.8,979.2,985.8,,46.7,,19.7,,18.0,,NNE,5.3,0,9.2,
-2019-03-17,3.3,-0.2,1.4,0.5,0/6/0,990.4,974.0,982.1,,51.0,,20.3,,22.0,,WSW,29,1,10,
-2019-03-18,1.0,-0.6,0.2,0.6,11600,994.7,990.4,992.7,,14.9,,4.6,,235.0,,SW,0,0,9.6,
-2019-03-19,3.2,-1.1,0.9,0.8,0/6/0,994.5,987.3,991.0,,35.8,,7.8,,19.0,,NE,0.3,0,8.8,
-2019-03-20,1.8,-0.8,0.4,0.6,0/6/0,990.0,977.4,981.9,,17.5,,3.2,,73.0,,SE,3.8,0,8.6,
-2019-03-21,2.5,-0.5,0.9,0.5,0/6/0,986.1,981.2,984.0,,35.8,,11.7,,15.0,,NNE,3.6,5,13.2,
-2019-03-22,1.2,-0.8,0.3,0.5,0/6/0,1000.6,983.5,991.1,,19.2,,7.2,,228.0,,WSW,4.3,12,25.4,
-2019-03-23,1.4,-1.5,-0.1,0.5,11600,1010.9,1000.7,1007.4,,17.1,,4.3,,354.0,,NE,0,0,20.6,
-2019-03-24,4.5,0.1,2.2,0.7,0/6/0,1009.7,987.3,998.0,,49.7,,14.4,,50.0,,NE,1.8,0,11.2,
-2019-03-25,3.5,0.6,2.0,0.8,0/6/0,987.3,979.7,982.6,,40.2,,9.6,,28.0,,N,1,0,10,
-2019-03-26,2.3,-1.3,0.4,0.8,0/6/0,990.6,975.0,985.8,,62.3,,12.1,,37.0,,NNW,0.3,0,9,
-2019-03-27,3.3,1.1,2.4,0.7,0/6/0,975.9,973.5,974.8,,45.3,,22.2,,29.0,,N,6.4,0,8.8,
-2019-03-28,3.0,0.6,1.5,0.4,0/6/0,983.2,965.6,976.6,,61.5,,25.9,,27.0,,NNW,21.6,0,8.4,
-2019-03-29,1.2,-2.3,-0.4,0.4,0/6/0,973.6,966.9,970.8,,35.8,,13.0,,312.0,,NNW,1.5,2,10.8,
-2019-03-30,1.3,-3.5,-0.9,0.6,0/6/0,968.1,960.8,966.1,,46.3,,10.5,,31.0,,NE,0.8,6,17,
-2019-03-31,1.9,-0.6,1.0,0.7,0/6/0,980.1,961.6,969.7,,43.1,,15.1,,31.0,,NNE,0.5,0,14.8,
-2019-04-01,0.6,-1.7,-0.3,0.5,0/6/0,992.0,980.0,988.4,,29.9,,12.8,,15.0,,WSW,1,1,16.2,
-2019-04-02,1.4,-1.1,0.1,0.3,0/6/0,990.2,967.3,982.2,,38.0,,14.0,,99.0,,ESE,0.8,2,20.4,
-2019-04-03,1.6,-1.2,0.0,0.9,0/6/0,967.4,961.6,963.5,,47.0,,24.8,,108.0,,ESE,0,0,16.4,
-2019-04-04,1.6,-0.6,0.2,0.7,0/6/0,978.6,966.1,971.8,,15.8,,3.2,,69.0,,NE,0,0,16.4,
-2019-04-05,1.3,-1.0,0.2,0.6,0/6/0,981.2,970.8,978.8,,38.5,,11.6,,118.0,,E,0,0,15.4,
-2019-04-06,0.0,-3.0,-1.5,0.8,0/6/0,975.8,966.2,969.6,,48.5,,29.3,,117.0,,ESE,0,0,15.2,
-2019-04-07,-0.7,-2.5,-1.4,0.4,0/6/0,992.9,975.6,985.3,,30.9,,8.1,,132.0,,N,0,0,13.6,
-2019-04-08,-0.5,-2.3,-1.4,0.2,0/6/0,1002.2,992.9,997.6,,16.4,,3.7,,255.0,,NE,0,0,13.6,
-2019-04-09,2.4,-0.9,1.4,0.0,0/6/0,1002.6,997.4,1000.3,,47.4,,24.3,,18.0,,NNE,8.9,0,10,
-2019-04-10,5.0,-1.8,2.2,-0.1,0/6/0,1001.1,982.4,995.3,,48.2,,19.4,,41.0,,NE,23.6,0,6.8,
-2019-04-11,3.9,-0.3,2.2,,0/6/0,982.4,966.6,974.2,,60.9,,32.5,,344.0,,N,52.3,0,6.8,
-2019-04-12,3.1,-1.3,0.8,,0/6/0,981.6,970.7,975.9,,46.9,,20.5,,35.0,,NNE,3.8,0,6.8,
-2019-04-13,4.6,0.9,2.6,,0/6/0,971.0,948.6,957.2,,38.8,,18.9,,109.0,,ESE,2,0,6.8,
-2019-04-14,1.6,-2.0,-0.7,,0/6/0,977.8,952.8,965.5,,22.9,,8.9,,226.0,,W,0,3,9.6,
-2019-04-15,2.2,-1.9,-0.1,,0/6/0,978.2,968.2,973.5,,44.8,,15.2,,23.0,,NE,0,0,9.8,
-2019-04-16,-0.6,-3.8,-1.9,,0/6/0,972.9,969.4,970.8,,9.2,,3.9,,39.0,,NE,0,0,9.8,
-2019-04-17,-2.2,-4.8,-3.5,,0/6/0,974.2,970.1,971.9,,8.6,,3.2,,152.0,,NE,0,0,9.4,
-2019-04-18,-2.2,-4.7,-3.2,,0/6/0,980.7,974.2,977.9,,24.9,,12.1,,135.0,,SW,0,0,8.4,
-2019-04-19,-3.1,-4.8,-3.8,,0/6/0,982.9,975.1,979.4,,21.6,,8.0,,231.0,,WSW,0.8,0,8.4,
-2019-04-20,-2.5,-5.5,-3.4,,0/6/0,991.0,975.6,983.9,,21.3,,7.9,,227.0,,SW,0,0,8.4,
-2019-04-21,-3.6,-5.4,-4.3,,0/6/0,998.5,991.0,995.3,,19.5,,6.1,,229.0,,SW,0,0,8.4,
-2019-04-22,2.9,-6.3,-2.3,,0/6/0,998.4,991.6,994.8,,15.4,,3.4,,334.0,,SE,0.3,0,8.4,
-2019-04-23,2.8,-1.6,-0.1,,0/6/0,994.5,991.3,992.8,,16.4,,5.0,,147.0,,SSE,1.8,1,9.4,
-2019-04-24,5.2,0.6,3.0,,0/6/0,991.7,978.1,983.9,,38.3,,16.4,,41.0,,NNE,5.3,0,4,
-2019-04-25,2.4,0.6,1.1,,0/6/0,999.6,984.4,992.3,,32.2,,19.5,,329.0,,NW,0.3,2,6,
-2019-04-26,4.3,1.1,2.7,,0/6/0,996.8,977.2,984.5,,46.5,,19.4,,35.0,,NE,18.5,0,4,
-2019-04-27,2.4,-1.3,0.8,,0/6/0,986.6,978.3,982.2,,59.4,,22.8,,5.0,,N,9.7,6,10.2,
-2019-04-28,3.3,0.2,1.9,-0.2,0/6/0,981.7,978.0,980.1,,42.1,,21.1,,22.0,,N,13.2,0,3,
-2019-04-29,2.8,-3.0,0.5,-0.2,0/6/0,981.5,976.3,978.6,,37.5,,22.8,,13.0,,NNE,18.3,0,2.4,
-2019-04-30,-2.1,-4.3,-2.9,,0/6/0,981.3,976.7,979.3,,22.6,,12.7,,220.0,,SW,0,14,16,
-2019-05-01,-2.0,-4.6,-3.2,,0/6/0,979.3,972.4,975.7,,16.7,,6.5,,153.0,,ESE,0,0,14.6,
-2019-05-02,-2.1,-4.7,-3.1,,0/6/0,998.0,979.3,991.0,,17.1,,7.6,,23.0,,NNE,0,0,13.6,
-2019-05-03,0.8,-4.5,-1.9,,0/6/0,998.3,988.7,994.7,,22.6,,7.4,,29.0,,NE,0,0,12.6,
-2019-05-04,2.3,-1.4,0.5,,0/6/0,989.1,979.3,983.4,,27.0,,7.4,,42.0,,SE,0,0,12.6,
-2019-05-05,4.5,-1.9,1.3,,0/6/0,984.8,977.3,980.5,,41.6,,14.6,,27.0,,NNE,0.8,0,12.6,
-2019-05-06,5.5,-0.1,1.6,,0/6/0,988.1,976.4,983.9,,56.0,,18.3,,33.0,,NNE,16,0,12.6,
-2019-05-07,3.5,0.4,2.5,,0/6/0,977.5,963.7,970.9,,43.3,,22.4,,26.0,,NNE,10.4,0,0,
-2019-05-08,2.3,-0.3,1.0,,0/6/0,978.4,972.0,975.2,,47.1,,18.8,,23.0,,NNW,1.8,0,0,
-2019-05-09,1.7,-1.2,0.4,,0/6/0,981.9,971.5,975.5,,31.0,,19.1,,346.0,,NNW,0.8,0,0,
-2019-05-10,2.8,-0.6,1.3,,0/6/0,981.9,947.2,968.4,,60.0,,30.7,,43.0,,N,22.9,3,2.6,
-2019-05-11,2.9,-2.2,-0.1,,0/6/0,967.5,943.0,953.5,,47.8,,17.2,,21.0,,W,4.1,3,6,
-2019-05-12,2.2,-2.5,0.6,,0/6/0,972.7,962.4,968.5,,54.7,,22.9,,33.0,,NNE,5.3,0,3.8,
-2019-05-13,2.2,-0.9,0.4,,0/6/0,969.1,963.3,966.5,,44.3,,15.6,,32.0,,NNW,0,0,3.4,
-2019-05-14,-0.7,-3.6,-2.2,,0/6/0,981.5,963.1,971.8,,25.7,,11.3,,221.0,,WSW,0.3,0,3.6,
-2019-05-15,-3.3,-5.3,-4.4,,0/6/0,989.2,981.5,987.3,,19.4,,7.3,,220.0,,SW,0,0,3.6,
-2019-05-16,2.8,-7.0,-1.2,,0/6/0,989.5,973.3,979.8,,47.9,,17.1,,43.0,,NNE,1.8,0,3.6,
-2019-05-17,0.4,-2.8,-1.2,,0/6/0,979.9,970.4,976.4,,35.3,,9.3,,23.0,,NNW,0.8,5,8.2,
-2019-05-18,-1.6,-3.5,-2.3,,0/6/0,972.8,966.8,968.7,,37.0,,10.3,,77.0,,E,2.8,9,17,
-2019-05-19,-1.8,-5.6,-3.6,,0/6/0,983.5,972.8,980.2,,27.0,,6.7,,76.0,,E,1.5,14,31.2,
-2019-05-20,-3.8,-5.7,-4.4,,0/6/0,994.2,980.4,985.9,,23.5,,6.2,,27.0,,NNE,0,1,31.8,
-2019-05-21,-3.8,-5.6,-4.7,,0/6/0,996.6,993.9,995.6,,37.6,,12.8,,28.0,,NNE,1.5,0,26.2,
-2019-05-22,-5.2,-8.6,-6.5,,0/6/0,997.2,994.3,995.8,,22.2,,8.3,,234.0,,SW,0,0,23,
-2019-05-23,-3.8,-9.6,-6.0,,0/6/0,999.8,993.2,997.5,,20.8,,7.9,,11.0,,NNE,0,0,21.8,
-2019-05-24,-4.5,-6.2,-5.5,,0/6/0,993.4,981.0,987.2,,15.6,,6.7,,227.0,,SW,0,0,20.4,
-2019-05-25,-5.2,-7.6,-6.2,,0/6/0,982.9,979.0,981.1,,22.5,,8.0,,262.0,,SW,0,0,19.2,
-2019-05-26,-6.6,-11.8,-9.0,,0/6/0,995.4,981.9,988.0,,35.6,,16.1,,120.0,,SE,0.8,0,15.4,
-2019-05-27,-5.1,-7.8,-6.2,,0/6/0,997.4,994.8,996.4,,38.1,,12.4,,117.0,,SW,0,0,14.6,
-2019-05-28,-7.2,-8.2,-7.7,,0/6/0,995.1,991.6,992.8,,22.9,,8.6,,233.0,,SW,0,0,13.6,
-2019-05-29,-7.5,-10.2,-8.6,,0/6/0,999.6,992.0,994.4,,19.4,,7.8,,237.0,,SW,0,0,13.2,
-2019-05-30,-6.0,-10.5,-8.3,,0/9/0,1017.7,999.6,1007.5,,25.8,,8.7,,93.0,,E,0,0,13,
-2019-05-31,-3.6,-6.9,-5.2,,0/9/0,1022.2,1017.7,1020.9,,13.7,,6.5,,223.0,,NE,0,0,13,
-2019-06-01,-3.0,-4.5,-3.6,,0/9/0,1018.8,1007.2,1012.1,,15.2,,5.6,,223.0,,WSW,0,0,13.4,
-2019-06-02,-2.7,-4.0,-3.3,,0/9/0,1007.2,1000.9,1003.1,,10.2,,4.6,,284.0,,W,0,1,14.6,
-2019-06-03,0.0,-4.0,-2.7,,0/9/0,1000.9,993.7,998.1,,14.5,,4.1,,117.0,,SE,0.3,0,15,
-2019-06-04,5.4,-0.7,2.5,-1.0,0/9/0,993.9,987.0,990.1,,41.9,,13.4,,32.0,,NNE,0,0,13,
-2019-06-05,3.8,-1.8,0.0,-0.9,0/9/0,990.3,980.3,986.7,,15.7,,4.4,,45.0,,SE,0,0,9.6,
-2019-06-06,1.1,-0.8,0.0,-1.0,0/9/0,986.4,979.7,982.6,,14.1,,3.2,,319.0,,NNW,0.3,0,9.6,
-2019-06-07,0.6,-1.7,-0.7,-1.0,0/8/0,986.8,982.8,985.6,,24.8,,2.5,,19.0,,ESE,1.8,5,14.2,
-2019-06-08,-0.1,-2.0,-1.1,-1.0,0/8/0,983.1,977.2,979.8,,35.8,,12.9,,30.0,,NNE,0.5,4,18.2,
-2019-06-09,-0.8,-5.9,-3.1,-1.0,0/8/0,983.7,979.0,982.4,,25.7,,7.9,,15.0,,NNW,0.3,1,19.6,
-2019-06-10,-3.4,-5.4,-4.2,-1.3,0/8/0,991.2,982.9,985.3,,9.1,,2.6,,28.0,,NE,0,0,19.6,
-2019-06-11,-3.1,-5.3,-4.4,-1.4,0/8/0,1001.1,991.2,997.5,,11.6,,4.6,,247.0,,NE,0,0,19,
-2019-06-12,-2.6,-4.9,-3.8,-1.1,0/8/0,1006.3,1001.1,1003.9,,16.6,,4.5,,309.0,,WSW,0,0,18,
-2019-06-13,-0.3,-3.5,-1.8,-1.3,0/8/0,1004.4,997.6,1001.0,,19.4,,5.0,,335.0,,NNW,6.6,6,23.6,
-2019-06-14,1.0,-3.1,-0.4,-1.4,0/7/0,1002.3,986.7,993.5,,32.2,,15.6,,32.0,,NNE,4.8,12,35.6,
-2019-06-15,0.8,-2.6,-1.2,-1.3,0/7/0,995.7,973.2,986.3,,33.0,,8.8,,52.0,,W,1.5,6,41.8,
-2019-06-16,0.8,-2.4,-0.7,-1.3,0/7/0,984.6,972.8,978.1,,37.3,,12.9,,16.0,,WNW,0.8,5,46.8,
-2019-06-17,-1.1,-3.0,-1.9,-1.3,0/7/0,992.2,984.1,987.0,,28.7,,15.3,,288.0,,WNW,0,0,45.4,
-2019-06-18,-0.3,-5.1,-2.4,-1.4,0/7/0,993.3,987.7,990.6,,15.9,,6.6,,127.0,,SE,0.3,0,44.6,
-2019-06-19,-0.3,-3.9,-2.0,-1.2,0/7/0,987.9,975.1,982.6,,42.3,,9.5,,82.0,,E,0.3,0,44.8,
-2019-06-20,-2.0,-6.0,-4.3,-1.1,0/7/0,982.6,974.2,978.2,,39.5,,13.0,,76.0,,NNE,0,0,42,
-2019-06-21,-3.8,-7.2,-5.1,-1.1,0/7/0,989.1,982.4,985.5,,13.8,,4.2,,209.0,,E,0,0,42,
-2019-06-22,-4.3,-7.0,-5.2,-1.1,0/6/0,993.1,989.1,991.7,,17.8,,4.3,,36.0,,NE,0,0,41,
-2019-06-23,-0.2,-6.8,-2.9,-1.0,0/6/0,992.5,967.0,983.7,,60.2,,25.3,,32.0,,NE,0.8,0,34.8,
-2019-06-24,-0.7,-6.7,-3.8,-0.9,0/6/0,982.6,967.7,979.3,,58.5,,14.6,,41.0,,NNW,0.3,0,34.6,
-2019-06-25,-2.0,-6.5,-4.6,-0.9,0/6/0,978.3,970.2,973.5,,39.3,,18.0,,132.0,,SE,0,0,33.2,
-2019-06-26,-6.3,-9.9,-8.1,-0.9,0/6/0,989.4,978.1,982.8,,28.3,,13.6,,123.0,,ESE,0,0,32.4,
-2019-06-27,-6.3,-9.6,-7.7,-1.2,0/6/0,993.2,989.4,992.1,,11.4,,5.2,,239.0,,NE,0,0,32.4,
-2019-06-28,-6.4,-8.1,-7.3,-1.4,0/6/0,994.4,991.1,992.3,,14.3,,5.9,,232.0,,SSW,0,0,32.4,
-2019-06-29,-5.6,-7.3,-6.3,-1.3,0/6/0,998.9,994.2,995.8,,22.2,,8.1,,243.0,,SW,0,0,32.8,
-2019-06-30,-7.0,-10.5,-7.8,-1.4,0/6/0,999.9,996.8,998.4,,18.2,,6.1,,20.0,,NNE,0,0,32.8,
-2019-07-01,-6.6,-10.7,-7.8,-1.6,0/6/0,1015.1,997.2,1006.9,,13.0,,4.8,,207.0,,E,0,0,32.6,
-2019-07-02,-5.9,-7.2,-6.5,-1.6,0/6/0,1015.3,1010.8,1013.3,,18.1,,7.5,,234.0,,SW,0,0,32.6,
-2019-07-03,-2.4,-6.9,-4.8,-1.6,0/6/0,1010.9,999.4,1006.2,,27.8,,7.5,,19.0,,NNE,0,0,32.6,
-2019-07-04,0.2,-4.8,-2.6,-1.6,0/7/0,1002.0,994.0,998.2,,44.3,,13.7,,27.0,,NNE,1.5,5,37.6,
-2019-07-05,-4.0,-6.5,-5.3,-1.6,0/7/0,1005.1,1001.8,1003.3,,8.9,,3.7,,110.0,,NE,0,0,37.6,
-2019-07-06,-2.8,-6.1,-4.7,-1.7,0/7/0,1006.8,1004.6,1006.0,,9.3,,2.9,,345.0,,NE,0,0,37.6,
-2019-07-07,-1.9,-4.5,-3.5,-1.5,0/7/0,1011.9,1006.4,1009.7,,10.9,,3.1,,101.0,,NE,0,0,37.6,
-2019-07-08,-2.7,-5.6,-4.2,-1.5,0/7/0,1015.0,1011.5,1012.6,,8.3,,2.8,,126.0,,NE,0,0,37.6,
-2019-07-09,-3.7,-5.5,-4.6,-1.5,0/7/0,1016.2,1014.7,1015.5,,9.1,,3.6,,320.0,,N,0,0,37.6,
-2019-07-10,-2.7,-7.1,-4.8,-1.4,20710,1018.1,1014.4,1016.0,,8.7,,2.2,,332.0,,NNW,0,0,37.8,
-2019-07-11,-3.6,-7.5,-6.4,-1.4,20717,1018.3,1016.4,1017.7,,3.4,,0.6,,296.0,,NNE,0,0,37.6,
-2019-07-12,-2.6,-5.1,-3.4,-1.5,21716,1018.3,1013.3,1016.1,,9.3,,3.3,,343.0,,NW,0,0,37.6,
-2019-07-13,-4.4,-6.8,-5.6,-1.6,21716,1013.2,1011.2,1012.0,,5.1,,2.4,,8.0,,NE,0,0,37.6,
-2019-07-14,-0.3,-8.1,-5.6,-1.7,21716,1011.4,1003.6,1008.3,,11.4,,2.8,,114.0,,NE,0,0,37.6,
-2019-07-15,3.7,-1.9,0.9,-1.6,0/7/0,1003.5,991.0,995.9,,41.3,,12.5,,48.0,,NNE,0,0,37.6,
-2019-07-16,2.0,-1.3,0.2,-1.5,0/7/0,991.9,976.6,984.6,,29.2,,7.5,,26.0,,NNE,0,0,37.2,
-2019-07-17,0.6,-2.3,-1.5,-1.6,0/7/0,988.7,976.6,980.8,,25.2,,11.5,,24.0,,NNE,0.3,2,39.6,
-2019-07-18,2.2,-4.4,-1.0,-1.6,0/8/0,991.2,986.2,988.9,,38.8,,13.1,,48.0,,NE,0.3,2,41.4,
-2019-07-19,2.5,-4.0,-1.4,-1.5,0/8/0,991.4,987.4,989.8,,28.5,,6.7,,157.0,,ESE,0,0,39.6,
-2019-07-20,-3.6,-4.9,-4.1,-1.6,0/8/0,990.1,981.5,985.9,,16.3,,4.3,,12.0,,NNE,0,0,39.2,
-2019-07-21,-4.1,-7.6,-5.8,-1.7,10870,981.6,979.7,980.8,,11.6,,3.7,,207.0,,NNE,0,0,39.2,
-2019-07-22,-3.3,-6.6,-4.6,-1.6,10870,983.4,978.0,979.5,,19.2,,4.5,,222.0,,WSW,0.3,1,40.4,
-2019-07-23,-6.2,-12.2,-10.2,-1.7,10870,999.9,983.4,992.0,,16.5,,8.6,,244.0,,WSW,0,1,41.2,
-2019-07-24,-7.5,-12.7,-10.4,-1.7,10870,1004.6,999.9,1003.1,,18.1,,5.4,,89.0,,E,0,3,44.4,
-2019-07-25,3.7,-9.6,-3.9,-1.4,0/8/0,1002.8,974.9,989.2,,64.3,,23.5,,61.0,,ENE,4.8,0,44.4,
-2019-07-26,3.5,-1.4,1.1,-1.2,0/8/0,975.4,969.1,971.8,,54.6,,24.8,,23.0,,NNE,10.9,0,37.6,
-2019-07-27,0.2,-3.9,-2.2,-1.2,0/8/0,970.3,962.8,968.2,,45.9,,19.5,,47.0,,N,1,6,43.6,
-2019-07-28,-1.5,-4.2,-2.7,-1.3,0/8/0,975.4,967.7,970.3,,37.8,,13.3,,31.0,,NE,0.3,0,42.2,
-2019-07-29,-2.7,-6.1,-3.7,-1.4,0/6/0,997.9,975.4,987.7,,19.5,,9.2,,243.0,,SW,0,7,49.4,
-2019-07-30,-1.1,-6.4,-4.1,-1.5,0/6/0,1000.7,991.5,996.3,,39.2,,10.9,,22.0,,NNE,0.8,0,47.2,
-2019-07-31,-5.8,-9.1,-7.5,-1.6,0/6/0,1010.8,1000.7,1006.4,,16.9,,6.6,,25.0,,NE,0,0,46.4,
-2019-08-01,-7.2,-11.2,-9.3,-1.6,0/6/0,1009.9,997.5,1005.4,,23.2,,6.6,,98.0,,NE,0,0,46.4,
-2019-08-02,-2.8,-9.7,-5.7,-1.7,0/6/0,997.8,989.1,991.5,,25.2,,6.9,,90.0,,ESE,0,0,45.8,
-2019-08-03,0.7,-4.4,-0.9,-1.7,0/6/0,991.0,963.9,982.5,,41.4,,16.8,,120.0,,ESE,0,0,43.2,
-2019-08-04,0.1,-4.3,-2.8,-1.6,0/6/0,966.2,957.0,960.8,,45.2,,14.6,,122.0,,ESE,0.3,0,43.2,
-2019-08-05,-1.2,-4.2,-3.0,-1.7,0/6/0,966.7,955.7,962.0,,39.6,,14.1,,23.0,,NNE,0.8,0,43.2,
-2019-08-06,-3.6,-8.1,-5.7,-1.8,0/6/0,960.9,955.4,958.5,,31.1,,8.7,,5.0,,N,0.8,5,48.6,
-2019-08-07,-5.3,-9.2,-6.6,-1.8,0/6/0,979.8,960.4,968.3,,27.0,,9.4,,215.0,,NNE,0.3,8,56.2,
-2019-08-08,-5.5,-10.1,-7.7,-1.8,0/6/0,984.8,979.8,982.9,,28.0,,8.0,,225.0,,SW,0,0,55.4,
-2019-08-09,-5.0,-9.4,-6.6,-1.8,10670,980.3,974.2,976.7,,30.3,,9.6,,136.0,,SSE,0,0,55,
-2019-08-10,-4.8,-9.2,-7.0,-1.8,10870,999.4,979.8,988.0,,23.3,,10.0,,149.0,,E,0,0,51.8,
-2019-08-11,-5.2,-8.9,-7.7,-1.7,10870,1004.7,999.3,1003.2,,17.6,,7.2,,226.0,,SW,0,0,50.8,
-2019-08-12,-6.5,-7.6,-7.1,-1.7,10870,1005.7,1004.2,1005.1,,17.7,,6.6,,225.0,,SW,0,0,51,
-2019-08-13,-2.4,-7.7,-5.2,-1.7,10870,1005.4,997.1,1001.0,,16.9,,4.8,,326.0,,NNW,0,1,51.6,
-2019-08-14,-1.4,-6.2,-3.6,-1.7,20860,997.9,983.6,993.1,,23.6,,11.0,,335.0,,NNW,1.8,3,54.4,
-2019-08-15,-0.7,-10.4,-4.3,-1.7,20862,993.5,981.7,987.6,,16.6,,6.7,,129.0,,NNE,0,7,61.4,
-2019-08-16,-8.0,-11.1,-9.3,-1.7,20863,1007.2,992.9,996.7,,14.8,,4.3,,338.0,,NNW,0,0,61,
-2019-08-17,-5.8,-9.7,-8.1,-1.7,41863,1010.7,1007.2,1009.6,,15.6,,6.3,,273.0,,WNW,0,0,61,
-2019-08-18,-2.7,-6.1,-4.2,-1.7,41862,1008.3,1001.0,1004.8,,15.8,,5.6,,336.0,,NNW,0,0,60.6,
-2019-08-19,-3.2,-6.0,-4.9,-1.7,41862,1012.8,1004.0,1009.7,,12.7,,3.0,,309.0,,NNW,0,0,60.6,
-2019-08-20,-2.4,-3.9,-3.1,-1.7,41852,1014.2,1012.3,1013.2,,10.5,,3.2,,338.0,,NNW,0,0,60.4,
-2019-08-21,-2.7,-8.0,-4.7,-1.6,41852,1014.6,1013.4,1014.0,,10.6,,1.8,,211.0,,NE,0,0,60.4,
-2019-08-22,-7.0,-9.8,-8.1,-1.6,41852,1013.7,1012.2,1012.9,,15.6,,2.1,,117.0,,NE,0,0,60,
-2019-08-23,-4.7,-10.5,-8.2,-1.7,41852,1012.8,1008.8,1011.1,,8.2,,1.2,,132.0,,SE,0,0,60,
-2019-08-24,2.0,-6.3,-2.7,-1.6,41852,1008.7,995.6,1002.9,,17.2,,4.3,,129.0,,SE,0,0,59.4,
-2019-08-25,4.1,-1.0,1.3,-1.7,41852,995.5,985.7,989.6,,35.5,,8.4,,23.0,,NNE,0.5,0,58.6,
-2019-08-26,1.1,-2.8,-0.8,-1.7,41851,996.8,989.4,994.5,,20.3,,6.7,,349.0,,NNW,0,0,58,
-2019-08-27,3.5,-3.4,0.3,-1.7,21861,993.4,981.2,985.1,,37.0,,7.8,,49.0,,SE,0,0,56.6,
-2019-08-28,1.5,-2.7,-0.7,-1.7,21861,981.8,977.9,979.8,,16.8,,4.5,,105.0,,ESE,0,0,56.4,
-2019-08-29,-1.3,-7.2,-4.4,-1.6,21861,986.8,979.0,981.5,,8.9,,3.0,,12.0,,NNE,0,0,56.4,
-2019-08-30,-2.7,-8.1,-5.1,-1.6,21861,992.1,986.8,989.7,,6.9,,1.5,,147.0,,SE,0.5,0,56.2,
-2019-08-31,-0.8,-4.5,-2.6,-1.5,11960,998.3,985.7,989.6,,30.2,,8.4,,129.0,,ESE,0,6,62.6,
-2019-09-01,-3.0,-6.4,-4.8,-1.6,11980,1010.8,998.3,1007.6,,21.5,,10.1,,344.0,,N,0,0,60.8,
-2019-09-02,-1.3,-7.2,-5.1,-1.6,11980,1017.0,1004.0,1008.6,,36.2,,10.6,,133.0,,SW,0,0,59.2,
-2019-09-03,-4.6,-7.0,-6.1,-1.6,11980,1018.2,1012.5,1015.3,,13.9,,5.4,,211.0,,SSW,0,0,59.2,
-2019-09-04,-2.3,-6.2,-4.9,-1.5,21972,1013.2,1004.7,1010.3,,10.6,,3.1,,223.0,,NW,0.3,0,59.2,
-2019-09-05,-1.7,-2.7,-2.2,-1.5,21972,1004.8,1002.8,1003.9,,15.6,,6.8,,328.0,,NNW,0,1,60,
-2019-09-06,1.3,-2.3,-0.9,-1.6,21972,1003.3,991.3,998.5,,23.5,,11.2,,336.0,,NNW,0.8,3,63,
-2019-09-07,0.9,-1.9,-0.2,-1.6,31972,991.3,977.9,982.9,,41.5,,20.1,,352.0,,N,2.3,20,83,
-2019-09-08,-1.3,-11.4,-6.3,-1.6,31972,991.6,976.7,982.8,,10.9,,5.4,,254.0,,NW,0,0,81.8,
-2019-09-09,0.2,-9.6,-2.4,-1.6,31972,992.1,980.9,987.8,,40.4,,14.5,,348.0,,NNW,2.5,1,82.6,
-2019-09-10,1.1,-4.1,-0.9,-1.7,21972,987.1,957.7,975.8,,49.0,,19.4,,3.0,,NNE,9.1,9,91.6,
-2019-09-11,1.2,-21.4,-13.2,-1.7,31963,985.0,952.4,968.8,,45.1,,25.0,,344.0,,W,1.3,4,95.2,
-2019-09-12,-8.6,-20.8,-17.6,-1.7,51963,988.5,973.4,984.9,,26.1,,8.1,,221.0,,W,0,0,95.2,
-2019-09-13,-6.7,-14.0,-10.8,-1.7,51963,985.1,970.1,976.2,,24.8,,9.4,,165.0,,W,0,0,93.4,
-2019-09-14,-9.0,-13.6,-11.1,-1.7,51963,996.6,985.1,992.5,,14.0,,3.7,,265.0,,W,0,0,93.4,
-2019-09-15,-9.9,-13.8,-11.7,-1.7,51963,996.6,992.2,994.0,,13.1,,4.1,,43.0,,NE,0,0,93.4,
-2019-09-16,-9.7,-14.4,-11.8,-1.7,52963,1000.9,996.3,999.5,,8.5,,1.8,,93.0,,NE,0,0,92.6,
-2019-09-17,-3.8,-12.5,-7.9,-1.7,52963,999.2,984.9,992.8,,17.2,,3.3,,36.0,,NE,0,0,92.4,
-2019-09-18,-0.9,-6.4,-3.7,-1.7,52963,984.9,972.9,978.4,,31.8,,6.0,,34.0,,SE,0,0,92.4,
-2019-09-19,0.7,-3.5,-1.4,-1.7,52963,975.4,969.5,973.2,,35.5,,11.6,,17.0,,NNE,0.5,0,92.8,
-2019-09-20,-0.4,-3.1,-2.0,-1.7,52961,969.8,964.6,966.2,,26.4,,5.1,,63.0,,NNE,0,0,93,
-2019-09-21,-2.3,-14.4,-7.9,-1.8,52961,983.1,967.9,975.2,,13.8,,7.6,,288.0,,WNW,0,2,95,
-2019-09-22,-0.4,-15.0,-5.2,-1.8,32961,982.8,958.5,969.4,,58.5,,22.3,,40.0,,NNE,2.5,0,91.4,
-2019-09-23,-3.3,-8.9,-7.0,-1.8,32961,988.7,966.5,978.7,,27.8,,10.2,,250.0,,W,0,0,91.4,
-2019-09-24,-2.7,-10.7,-6.0,-1.8,32961,988.7,982.4,985.6,,29.2,,5.5,,105.0,,ESE,1.5,3,94.2,
-2019-09-25,2.0,-4.4,-1.4,-1.8,32961,984.1,964.8,972.2,,37.5,,16.8,,88.0,,SE,1.3,2,96.2,
-2019-09-26,0.3,-3.5,-1.3,-1.8,22961,975.9,966.9,972.4,,51.9,,21.3,,25.0,,NNW,2.3,9,104.8,
-2019-09-27,-0.9,-2.8,-1.9,-1.7,12960,984.3,971.4,976.5,,30.1,,13.6,,23.0,,NNW,0.8,1,105.4,
-2019-09-28,-1.7,-4.7,-3.2,-1.7,12960,986.6,981.8,984.6,,21.3,,6.2,,328.0,,NNW,0,0,104.2,
-2019-09-29,-4.2,-7.0,-5.5,-1.6,52963,986.8,981.7,984.2,,8.2,,2.1,,209.0,,NNE,0,0,103.8,
-2019-09-30,-3.0,-7.6,-5.4,-1.6,52963,991.3,986.6,988.8,,21.4,,3.7,,143.0,,N,0,0,103.8,
-2019-10-01,-5.8,-10.1,-8.6,-1.6,42962,991.6,979.2,988.3,,13.5,,4.0,,116.0,,N,0,0,102.2,
-2019-10-02,-2.8,-9.1,-7.4,-1.6,52963,979.4,975.9,978.4,,42.5,,12.9,,254.0,,W,1.8,4,106.2,
-2019-10-03,-7.5,-11.2,-8.8,-1.6,52963,977.9,972.4,974.7,,17.8,,6.4,,248.0,,WSW,0,0,104,
-2019-10-04,-7.6,-12.0,-10.1,-1.7,52963,985.4,972.6,978.7,,30.0,,12.9,,251.0,,SW,0,1,105.4,
-2019-10-05,-10.7,-13.0,-11.6,-1.7,52963,989.6,985.4,987.9,,25.1,,9.8,,240.0,,W,0,3,108,
-2019-10-06,-5.3,-12.9,-8.9,-1.7,52963,989.4,976.6,983.3,,13.5,,2.3,,113.0,,NE,0,0,106.6,
-2019-10-07,-2.8,-7.1,-4.3,-1.7,52963,987.4,975.9,981.4,,16.2,,6.5,,360.0,,NNW,0,0,105.8,
-2019-10-08,-2.2,-5.1,-3.9,-1.7,52963,987.6,967.3,979.9,,27.6,,7.4,,30.0,,NNE,0,0,105.2,
-2019-10-09,-2.4,-4.8,-4.0,-1.7,52963,970.1,966.1,968.2,,28.2,,5.6,,27.0,,NNE,4.3,6,111.6,
-2019-10-10,-4.6,-6.3,-5.3,-1.7,52963,980.4,970.0,974.7,,25.2,,7.5,,18.0,,NNE,0.3,3,114.4,
-2019-10-11,-3.3,-8.6,-5.8,-1.7,52963,983.5,980.4,981.8,,27.6,,6.7,,28.0,,NE,0,1,113,
-2019-10-12,-3.3,-7.9,-4.8,-1.7,52963,1002.5,983.5,993.2,,21.2,,6.3,,246.0,,SW,0,0,111.4,
-2019-10-13,-5.3,-10.2,-8.4,-1.6,52963,1008.2,1000.2,1005.5,,20.8,,7.6,,246.0,,WSW,0,0,109.2,
-2019-10-14,0.7,-5.8,-1.6,-1.7,52963,1000.2,993.8,995.6,,22.6,,8.4,,137.0,,NNW,3.8,2,111.6,
-2019-10-15,1.1,-2.1,-0.8,-1.6,52963,1004.3,998.5,1001.9,,17.5,,7.5,,345.0,,NNW,0,0,110.8,
-2019-10-16,2.8,-0.4,0.9,-1.6,52963,1002.3,994.4,999.7,,29.4,,12.0,,337.0,,NNW,3.3,0,106.4,
-2019-10-17,2.5,-0.7,1.1,-1.7,52963,994.3,978.2,984.2,,49.2,,18.6,,28.0,,NNE,0,0,106.4,
-2019-10-18,1.4,-3.8,-1.5,-1.7,32761,988.2,978.9,984.0,,44.2,,17.2,,31.0,,N,0.3,0,101.6,
-2019-10-19,4.3,-4.6,-1.1,-1.6,22761,988.3,951.8,971.8,,52.9,,14.1,,48.0,,E,0,0,100.6,
-2019-10-20,1.9,-1.6,-0.4,-1.6,22761,977.8,952.3,966.5,,44.5,,24.9,,1.0,,N,1.3,3,103.2,
-2019-10-21,3.2,-0.5,1.1,-1.6,22770,981.5,971.1,976.8,,58.8,,34.0,,23.0,,NNE,15.7,0,98,
-2019-10-22,1.4,-0.8,0.2,-1.5,22770,989.4,973.3,980.5,,49.7,,23.6,,2.0,,NNW,3,0,98,
-2019-10-23,0.4,-2.5,-1.0,-1.4,42783,1002.2,988.9,996.3,,25.6,,13.2,,342.0,,NNW,0,1,98.6,
-2019-10-24,5.4,-3.8,1.0,-1.3,12700,1002.5,985.3,992.5,,48.6,,16.8,,95.0,,NNE,0.8,0,94.8,
-2019-10-25,3.4,0.4,1.3,-1.2,12700,991.8,983.8,988.4,,48.9,,31.0,,18.0,,NNE,7.6,0,94.8,
-2019-10-26,3.4,-0.9,1.3,-1.2,12700,992.6,987.7,990.8,,42.6,,17.0,,32.0,,NNE,1.3,0,94.8,
-2019-10-27,2.8,-1.0,0.0,-1.0,12700,987.7,973.3,977.8,,14.2,,4.1,,225.0,,NNW,6.4,9,102.2,
-2019-10-28,-0.3,-3.5,-2.3,-1.1,32792,974.7,967.9,970.6,,31.0,,9.4,,340.0,,WNW,3.3,1,104.8,
-2019-10-29,0.8,-3.5,-1.4,-1.2,22761,981.2,974.7,978.2,,51.2,,21.4,,31.0,,NNE,10.9,0,104.8,
-2019-10-30,2.8,0.7,1.6,-1.4,12760,983.5,977.8,981.4,,41.3,,27.0,,17.0,,NNE,66.3,0,103,
-2019-10-31,4.5,1.9,2.9,-1.3,12760,983.4,979.5,981.7,,46.1,,24.1,,28.0,,NNE,29.7,0,89.6,
-2019-11-01,5.5,-1.4,1.6,-1.3,12760,980.4,973.0,976.9,,51.7,,10.6,,42.0,,NE,6.6,0,85.6,
-2019-11-02,-1.1,-3.5,-2.2,-1.3,32763,980.7,973.5,978.4,,17.0,,7.1,,254.0,,W,0.8,7,92.4,
-2019-11-03,2.6,-4.5,-1.0,-1.3,32782,973.5,962.6,965.3,,36.9,,7.3,,81.0,,NNW,0,0,92.4,
-2019-11-04,2.5,-3.0,-0.7,-1.2,52712,965.1,961.8,963.5,,15.4,,4.4,,133.0,,SE,0,0,88.4,
-2019-11-05,0.3,-2.8,-1.2,-0.8,72892,964.0,959.8,961.1,,8.5,,2.3,,118.0,,NW,0,0,86.2,
-2019-11-06,0.8,-4.1,-1.5,-0.7,72892,977.2,964.0,970.6,,15.9,,3.4,,132.0,,NNW,0,0,86.2,
-2019-11-07,0.4,-4.7,-1.7,-0.7,52892,990.9,977.2,984.1,,12.6,,2.4,,88.0,,N,0,0,85.8,
-2019-11-08,-1.2,-4.8,-3.0,-0.9,52892,1000.8,990.9,996.1,,14.8,,3.6,,228.0,,NE,0,0,85.2,
-2019-11-09,-1.2,-5.3,-3.9,-1.0,52892,1003.4,996.0,1001.4,,14.8,,5.7,,217.0,,WSW,0,0,80.6,
-2019-11-10,-0.4,-1.4,-0.9,-1.0,52892,996.0,986.7,989.7,,20.9,,13.1,,329.0,,NNW,3.8,4,88.2,
-2019-11-11,0.8,-1.8,-0.4,-1.2,52892,986.7,975.3,979.7,,23.5,,15.5,,332.0,,NNW,7.1,20,88.2,
-2019-11-12,2.8,-2.3,-0.4,-1.3,52893,986.6,971.8,980.8,,33.7,,10.3,,32.0,,NNE,0.3,5,113.2,
-2019-11-13,2.0,-1.2,-0.1,-1.3,52893,978.9,972.2,975.6,,22.5,,6.6,,8.0,,NNW,0.8,0,109.8,
-2019-11-14,-0.7,-6.8,-4.2,-1.3,52893,987.2,978.8,984.0,,85.6,,7.5,,209.0,,WSW,0.3,1,110.4,
-2019-11-15,3.9,-2.2,1.2,-1.4,42841,980.2,966.4,970.8,,43.3,,9.9,,34.0,,NNW,3.6,0,104.8,
-2019-11-16,0.6,-2.7,-1.3,-1.5,42841,973.6,967.1,970.9,,6.5,,1.8,,58.0,,SSE,5.6,5,109.4,
-2019-11-17,2.0,-2.5,-0.3,-1.4,52842,973.7,970.9,972.7,,10.4,,2.8,,125.0,,SSE,0.5,0,105.2,
-2019-11-18,0.0,-7.6,-4.9,-1.4,52842,981.5,970.1,974.3,,21.0,,7.8,,248.0,,W,1.3,0,101.6,
-2019-11-19,-4.1,-9.1,-6.7,-1.4,52892,982.0,978.8,981.0,,24.9,,6.9,,210.0,,SW,0.3,1,102.2,
-2019-11-20,-1.6,-7.4,-5.3,-1.3,52892,982.7,971.7,978.6,,47.4,,16.0,,37.0,,W,0.3,0,99.2,
-2019-11-21,-1.8,-9.2,-5.6,-1.3,52895,989.7,982.6,986.4,,19.1,,4.4,,269.0,,NNW,0,0,99.2,
-2019-11-22,4.0,-3.7,-0.3,-1.3,52845,992.8,986.9,988.6,,29.6,,8.7,,30.0,,SE,0.5,0,99.6,
-2019-11-23,5.0,0.6,3.3,-1.4,42844,1002.8,991.9,995.6,,42.0,,20.9,,39.0,,NNE,1.8,0,91.8,
-2019-11-24,9.0,0.2,2.8,-1.3,32881,1002.8,986.7,996.2,,43.5,,6.5,,45.0,,SE,1,0,86,
-2019-11-25,6.4,0.7,2.0,-1.2,12660,999.6,986.3,990.8,,45.1,,27.0,,3.0,,N,4.6,0,79.8,
-2019-11-26,4.1,-0.6,1.1,-1.1,12680,1000.9,993.7,998.2,,24.7,,6.8,,14.0,,SE,0.8,0,79.4,
-2019-11-27,5.6,-0.7,0.9,-1.0,12680,999.9,992.8,995.6,,18.0,,2.6,,124.0,,NNW,0,0,77,
-2019-11-28,6.8,0.0,2.5,-0.9,12680,1000.4,998.6,999.7,,4.7,,0.8,,183.0,,NNE,0,0,75.4,
-2019-11-29,5.9,0.0,2.0,-0.9,12680,998.6,993.9,995.8,,8.9,,2.0,,132.0,,SE,0,0,71.4,
-2019-11-30,4.0,-3.2,-1.7,-0.6,12680,994.6,991.5,992.6,,10.6,,4.5,,325.0,,NW,0,0,67.2,
-2019-12-01,-1.7,-3.1,-2.5,-0.5,22673,999.6,993.5,997.4,,6.7,,2.1,,139.0,,SW,0,0,67,
-2019-12-02,-0.1,-3.4,-2.1,-0.5,22673,999.1,993.0,996.2,,7.7,,2.4,,130.0,,SE,1,0,67,
-2019-12-03,2.5,-1.1,0.7,-0.6,32682,993.0,988.0,990.5,,14.4,,3.9,,117.0,,SSE,14.5,1,68,
-2019-12-04,2.2,-0.8,0.4,-0.4,32681,995.8,983.3,988.5,,35.0,,6.5,,28.0,,SE,0,0,67.6,
-2019-12-05,1.3,-1.8,-0.5,-1.0,42723,995.4,983.7,990.2,,23.8,,5.8,,108.0,,SW,0,0,66.4,
-2019-12-06,2.4,-3.0,-0.2,-0.8,32731,996.3,991.7,994.9,,9.7,,2.9,,29.0,,NW,0,0,65.8,
-2019-12-07,3.6,-1.0,1.1,-0.7,42722,992.7,989.8,991.0,,18.8,,5.0,,103.0,,NW,0,0,63.4,
-2019-12-08,3.4,-0.1,1.8,-0.4,42712,995.9,992.7,994.8,,19.1,,6.7,,127.0,,E,0,0,60.4,
-2019-12-09,3.7,-2.3,0.5,-0.4,42712,995.5,992.8,994.3,,7.8,,2.0,,139.0,,SE,0,0,57.6,
-2019-12-10,2.1,-0.9,0.4,-0.4,42792,997.1,994.6,995.7,,10.5,,2.4,,331.0,,NW,0,0,57,
-2019-12-11,2.9,-0.9,0.9,-0.5,42712,998.5,997.0,997.7,,16.6,,4.5,,41.0,,N,0,0,55.8,
-2019-12-12,0.6,-1.9,-1.2,-0.4,52792,999.0,998.3,998.6,,10.0,,4.0,,315.0,,SW,0,0,52.4,
-2019-12-13,0.3,-1.9,-1.0,-0.4,52792,998.6,997.0,997.6,,8.3,,2.8,,253.0,,SW,0,0,49.8,
-2019-12-14,0.7,-2.4,-0.9,-0.1,52792,997.2,995.6,996.4,,5.6,,1.6,,126.0,,NE,0,0,48.8,
-2019-12-15,1.6,-1.5,0.1,-0.5,52792,999.1,996.3,997.9,,6.7,,2.6,,210.0,,SW,0,0,48.2,
-2019-12-16,0.2,-2.6,-1.7,-0.3,52792,999.1,993.3,996.7,,8.7,,2.6,,208.0,,SSW,0,0,47.6,
-2019-12-17,0.2,-3.9,-1.9,-0.5,42771,993.6,989.7,991.7,,10.0,,3.9,,134.0,,SE,0,0,46.2,
-2019-12-18,1.7,-3.0,-0.6,-0.5,32771,992.7,989.4,990.6,,8.2,,2.6,,138.0,,SE,0,0,45.4,
-2019-12-19,2.9,-0.5,0.9,0.2,32771,997.8,992.4,995.7,,7.0,,2.1,,261.0,,WNW,0,0,43.8,
-2019-12-20,2.9,-1.3,1.0,0.8,32781,998.2,994.3,997.0,,7.0,,2.4,,346.0,,NE,0,0,42.4,
-2019-12-21,3.5,-0.5,1.6,0.5,32781,994.5,973.2,985.7,,51.7,,12.1,,74.0,,E,0,0,41.4,
-2019-12-22,6.8,0.8,3.4,-0.1,22700,978.5,972.9,975.9,,45.9,,14.1,,94.0,,E,0.3,0,39,
-2019-12-23,5.1,1.4,3.3,0.4,22700,975.4,966.4,969.7,,38.3,,13.6,,120.0,,ESE,0,0,35.6,
-2019-12-24,3.2,0.8,1.7,,22700,974.0,969.0,970.8,,11.1,,2.4,,126.0,,N,0,0,34.2,
-2019-12-25,2.8,0.2,1.3,,22700,976.6,974.0,975.8,,8.4,,2.5,,353.0,,SE,0,0,33.4,
-2019-12-26,3.4,0.3,1.4,0.9,22700,980.8,973.4,976.1,,15.0,,2.3,,137.0,,NNW,1,0,32.8,
-2019-12-27,5.8,1.2,3.6,1.0,22700,984.5,979.5,982.5,,24.5,,6.4,,21.0,,ESE,0,0,31.2,
-2019-12-28,5.5,1.8,3.8,1.1,22700,980.7,978.5,979.7,,15.4,,2.9,,14.0,,NW,0,0,29.6,
-2019-12-29,4.6,1.5,3.0,1.2,0/7/0,985.7,978.3,980.2,,15.6,,4.5,,153.0,,N,0,0,27,
-2019-12-30,4.7,1.0,2.6,1.8,0/7/0,992.0,985.7,989.5,,26.4,,3.5,,40.0,,SE,0.3,0,24.6,
-2019-12-31,5.2,1.8,3.8,1.5,0/7/0,994.1,986.5,990.9,,32.8,,11.3,,40.0,,NNE,0,0,16.2,
-2020-01-01,4.7,1.2,2.5,1.5,0/7/0,995.3,986.7,993.0,,14.2,,3.4,,31.0,,SE,0,0,20,
-2020-01-02,6.6,2.1,4.2,1.5,0/7/0,986.7,975.2,979.6,,31.1,,11.0,,27.0,,NE,0,0,14.4,
-2020-01-03,4.1,0.9,2.4,1.5,0/7/0,990.4,976.4,982.7,,16.5,,4.0,,344.0,,NNW,0,0,13.8,
-2020-01-04,5.5,0.8,2.4,1.6,0/7/0,992.3,990.0,991.6,,9.0,,3.5,,120.0,,NNW,0,0,12.6,
-2020-01-05,5.6,1.6,3.7,1.6,0/7/0,990.3,983.3,986.9,,29.5,,9.4,,18.0,,NNE,1.8,0,11.8,
-2020-01-06,4.2,0.4,2.0,1.6,0/7/0,984.0,979.9,982.2,,18.1,,3.1,,347.0,,NW,0,0,10.6,
-2020-01-07,10.3,1.6,5.0,1.5,0/7/0,980.9,976.5,978.4,,33.7,,6.1,,118.0,,ESE,0,0,10,
-2020-01-08,8.2,3.8,5.9,1.5,0/7/0,985.9,981.9,983.7,,17.0,,3.7,,146.0,,SE,4.6,0,9.4,
-2020-01-09,8.5,3.1,5.0,1.6,0/7/0,990.4,985.6,989.1,,26.1,,3.8,,43.0,,NE,0,0,9,
-2020-01-10,4.6,2.0,3.0,1.5,0/7/0,992.3,989.4,990.6,,6.1,,1.3,,306.0,,N,0,0,8.6,
-2020-01-11,4.4,1.4,2.6,1.5,0/7/0,993.9,990.6,993.0,,10.4,,1.9,,117.0,,NNW,0,0,8.6,
-2020-01-12,3.5,1.5,2.4,1.6,0/7/0,991.1,985.1,988.1,,6.6,,2.5,,312.0,,N,0,0,8.4,
-2020-01-13,3.6,1.8,2.6,1.9,0/7/0,985.0,982.9,984.0,,8.7,,2.1,,123.0,,NNW,2.3,0,8,
-2020-01-14,4.7,2.0,3.2,1.8,0/7/0,984.2,982.4,983.3,,10.9,,1.7,,124.0,,ESE,2.8,0,6.8,
-2020-01-15,5.9,2.1,3.6,1.8,0/7/0,989.7,983.7,986.5,,8.6,,2.4,,132.0,,N,0,0,6,
-2020-01-16,3.3,0.4,1.3,1.7,0/7/0,991.4,987.9,990.1,,20.9,,12.0,,222.0,,SW,3,0,5,
-2020-01-17,4.0,-1.2,1.4,1.7,0/7/0,988.0,978.2,982.1,,13.7,,3.6,,229.0,,N,0,0,4.8,
-2020-01-18,3.9,-0.2,1.9,2.1,0/7/0,981.8,979.0,981.2,,9.1,,4.3,,5.0,,N,0,0,4.4,
-2020-01-19,3.0,-0.1,1.6,1.7,0/7/0,,,,,7.4,,2.7,,228.0,,SW,0.5,0,4,
-2020-01-20,2.7,1.5,2.1,2.1,0/7/0,989.9,988.9,989.7,,18.7,,7.6,,223.0,,WSW,0,0,4,
-2020-01-21,3.1,1.0,1.9,2.0,0/7/0,989.8,985.7,988.3,,11.7,,2.9,,228.0,,N,0,0,4,
-2020-01-22,3.3,1.0,1.8,1.8,0/7/0,991.5,990.1,991.0,,9.1,,2.7,,146.0,,SE,0,0,4,
-2020-01-23,5.0,1.7,3.4,1.5,0/7/0,,,,,24.2,,7.4,,37.0,,SE,4.3,0,3.8,
-2020-01-24,5.8,1.4,3.1,1.6,0/7/0,,,,,17.0,,3.3,,132.0,,SE,0,0,3.8,
-2020-01-25,7.6,3.7,5.6,1.5,0/7/0,989.5,989.2,989.4,,42.1,,9.4,,87.0,,ESE,0,0,3.8,
-2020-01-26,4.8,1.1,2.9,1.5,0/7/0,989.8,986.2,988.4,,21.9,,4.6,,86.0,,N,1.8,0,3.6,
-2020-01-27,7.3,1.2,3.1,1.4,0/7/0,990.1,977.4,985.2,,35.5,,12.7,,113.0,,E,0,0,3,
-2020-01-28,7.4,2.5,4.5,1.3,0/7/0,980.2,976.9,979.3,,40.0,,6.9,,40.0,,SE,4.1,0,2.6,
-2020-01-29,4.6,1.4,2.7,1.2,0/7/0,979.2,974.2,977.1,,8.9,,2.4,,298.0,,N,4.3,0,2,
-2020-01-30,5.8,1.5,3.4,1.2,0/7/0,977.9,974.8,976.5,,9.8,,2.6,,143.0,,N,0,0,0,
-2020-01-31,4.1,1.8,2.7,1.4,0/7/0,,,,,7.6,,2.0,,105.0,,SE,0,0,0,
-2020-02-01,4.3,1.6,2.6,1.4,0/7/0,986.5,980.5,983.8,,11.4,,1.9,,118.0,,NNW,0.3,0,0,
-2020-02-02,4.7,1.1,2.7,1.3,0/7/0,981.0,974.0,975.6,,20.7,,4.1,,99.0,,NNW,6.4,0,0,
-2020-02-03,2.8,0.2,1.5,1.0,0/7/0,990.7,975.2,983.2,,18.8,,6.2,,237.0,,NNW,2.5,0,0,
-2020-02-04,2.5,0.9,1.6,0.9,0/7/0,993.0,990.5,991.3,,14.9,,6.6,,213.0,,SW,0,0,0,
-2020-02-05,2.1,0.4,1.3,1.1,0/7/0,,,,,14.5,,3.7,,252.0,,WSW,0,0,0,
-2020-02-06,3.8,0.8,2.4,0.8,0/7/0,1007.0,1003.4,1005.6,,20.0,,8.1,,348.0,,NNW,5.6,0,0,
-2020-02-07,2.6,1.3,1.9,0.7,0/7/0,1013.0,1006.9,1010.9,,12.2,,3.9,,332.0,,NNW,0,0,0,
-2020-02-08,4.7,-0.1,2.5,1.1,0/7/0,1013.1,1011.5,1012.7,,8.9,,1.9,,337.0,,NNE,0,0,0,
-2020-02-09,9.1,1.2,4.2,1.5,0/6/0,1012.5,999.6,1007.2,,15.5,,3.2,,123.0,,N,0,0,0,
-2020-02-10,10.6,3.5,5.9,1.1,0/6/0,1000.3,987.2,993.1,,38.0,,19.9,,24.0,,NNE,2.3,0,0,
-2020-02-11,5.7,2.5,3.6,0.5,0/6/0,993.9,983.1,990.9,,33.7,,17.9,,32.0,,NNW,1,0,0,
-2020-02-12,6.8,2.2,3.9,1.3,0/6/0,983.1,970.8,974.2,,31.4,,6.7,,44.0,,SE,3.3,0,0,
-2020-02-13,4.3,0.9,2.1,1.3,0/6/0,981.8,976.4,979.6,,16.8,,7.8,,137.0,,WNW,3.8,0,0,
-2020-02-14,7.9,2.0,4.2,1.4,0/6/0,982.6,978.0,980.9,,23.9,,7.4,,51.0,,NNE,0,0,0,
-2020-02-15,8.3,3.1,5.5,1.7,0/6/0,981.3,973.5,977.5,,42.0,,14.4,,73.0,,E,0.3,0,0,
-2020-02-16,5.2,2.5,3.6,1.7,0/6/0,987.0,981.2,984.1,,10.6,,2.9,,328.0,,SE,0,0,0,
-2020-02-17,3.2,0.4,1.7,1.7,0/6/0,989.4,986.7,988.1,,10.7,,2.4,,120.0,,SE,2.3,0,0,
-2020-02-18,4.2,0.5,2.0,1.7,0/6/0,996.1,989.1,991.6,,9.5,,2.4,,323.0,,N,0.8,0,0,
-2020-02-19,2.4,0.3,1.5,1.8,0/6/0,1008.5,996.1,1003.1,,16.5,,6.4,,234.0,,SW,1,0,0,
-2020-02-20,5.5,1.1,2.3,1.9,0/6/0,1009.6,1000.9,1007.0,,21.7,,5.3,,10.0,,NNE,0.3,0,0,
-2020-02-21,5.5,2.1,3.3,1.7,0/6/0,1000.9,988.1,992.8,,35.4,,13.0,,20.0,,W,3.8,0,0,
-2020-02-22,2.9,1.3,2.1,1.6,0/6/0,994.2,992.4,993.3,,19.4,,6.3,,224.0,,SW,0,0,0,
-2020-02-23,5.8,0.0,2.5,1.7,0/6/0,,,,,38.5,,10.8,,84.0,,ESE,0,0,0,
-2020-02-24,5.1,2.0,3.3,1.9,0/6/0,,,,,29.0,,8.9,,92.0,,ESE,0,0,0,
-2020-02-25,3.9,0.0,1.8,2.1,0/6/0,,,,,9.1,,3.9,,345.0,,N,0,0,0,
-2020-02-26,4.7,1.0,2.5,2.0,0/6/0,,,,,22.9,,5.9,,55.0,,ESE,0,0,0,
-2020-02-27,2.1,-0.7,0.8,1.7,0/6/0,,,,,20.1,,6.0,,78.0,,E,0,0,0,
-2020-02-28,2.9,-0.4,1.3,1.6,0/6/0,,,,,18.8,,4.7,,346.0,,NNW,0.8,0,0,
-2020-02-29,5.3,1.1,3.5,1.5,0/6/0,984.0,969.2,976.4,,38.6,,17.6,,42.0,,NE,1.8,0,0,
-2020-03-01,4.2,0.7,2.5,1.5,0/6/0,980.4,968.4,974.3,,36.4,,13.4,,34.0,,NNW,8.9,0,0,
-2020-03-02,2.4,0.8,1.7,1.4,0/6/0,992.4,980.4,985.5,,13.9,,6.7,,237.0,,NNW,0,0,0,
-2020-03-03,3.5,0.3,1.8,1.6,0/6/0,1006.6,992.4,1000.6,,16.5,,4.2,,213.0,,WSW,0,0,0,
-2020-03-04,6.9,1.8,3.9,1.6,0/6/0,1007.1,991.7,1001.0,,24.2,,5.9,,59.0,,SE,11.4,0,0,
-2020-03-05,7.2,2.7,4.7,1.8,0/6/0,992.0,986.8,988.8,,30.2,,11.7,,23.0,,N,4.3,0,0,
-2020-03-06,3.5,1.0,2.6,1.3,0/6/0,986.8,980.4,983.0,,30.0,,14.2,,340.0,,NNW,4.6,0,0,
-2020-03-07,1.2,-2.4,-0.5,1.7,0/6/0,988.5,984.0,986.6,,9.5,,3.7,,119.0,,ESE,0,0,0,
-2020-03-08,1.7,-2.4,-0.5,1.7,0/6/0,991.6,988.3,990.0,,11.0,,1.9,,219.0,,NE,0,0,0,
-2020-03-09,2.7,0.0,1.4,1.8,0/6/0,1003.4,999.3,1001.8,,8.5,,3.0,,243.0,,SW,0,0,0,
-2020-03-10,2.0,0.3,1.3,1.9,0/6/0,1007.5,1003.4,1005.1,,16.8,,5.1,,237.0,,SW,0,0,0,
-2020-03-11,0.5,-2.4,-1.2,1.8,0/6/0,1008.4,1006.7,1007.9,,6.7,,2.0,,162.0,,ESE,0,0,0,
-2020-03-12,4.4,-2.5,0.0,1.6,0/6/0,1008.2,994.6,1003.7,,53.6,,7.9,,33.0,,NNE,0.3,0,0,
-2020-03-13,6.6,2.1,4.2,1.2,0/6/0,998.0,987.9,994.7,,53.5,,17.9,,33.0,,NNE,0,0,0,
-2020-03-14,5.5,2.1,3.4,1.4,0/6/0,987.9,974.4,980.2,,46.8,,16.1,,32.0,,NE,11.9,0,0,
-2020-03-15,4.8,2.0,3.6,1.3,0/6/0,978.3,965.5,970.5,,48.5,,20.9,,37.0,,NNE,3,0,0,
-2020-03-16,4.2,0.5,2.6,1.2,0/6/0,972.3,967.9,969.7,,23.7,,9.6,,28.0,,N,6.6,0,0,
-2020-03-17,3.2,0.7,1.9,0.9,0/6/0,978.7,972.2,975.9,,19.5,,6.1,,23.0,,NNE,0,0,0,
-2020-03-18,2.7,-0.2,1.3,1.4,0/6/0,977.7,965.2,970.1,,40.1,,12.4,,75.0,,ESE,0,0,0,
-2020-03-19,1.4,-0.9,0.0,1.2,0/6/0,979.0,969.5,975.4,,33.4,,16.2,,46.0,,NNE,0,0,0,
-2020-03-20,0.2,-2.6,-1.2,1.1,0/6/0,974.6,962.4,967.0,,44.5,,17.9,,87.0,,ESE,0,0,0,
-2020-03-21,1.2,-1.7,-0.3,1.0,0/6/0,980.4,974.6,978.5,,27.6,,9.2,,33.0,,NE,0,0,0,
-2020-03-22,2.3,-0.6,0.5,1.2,0/6/0,976.6,965.6,969.3,,38.3,,16.8,,24.0,,E,0.3,0,0,
-2020-03-23,1.9,-0.9,0.7,1.1,0/6/0,972.5,967.3,970.4,,35.5,,12.1,,28.0,,NNE,0.5,2,2,
-2020-03-24,0.8,-1.2,-0.1,1.1,0/6/0,987.4,971.0,978.2,,32.5,,14.0,,222.0,,SW,0,0,0,
-2020-03-25,3.2,-0.4,1.0,0.8,0/6/0,987.9,960.2,975.3,,56.7,,20.5,,45.0,,NNW,9.9,3,2.8,
-2020-03-26,1.7,-4.8,-2.9,0.7,0/6/0,962.9,959.2,961.5,,38.2,,20.1,,273.0,,W,1.3,1,3.6,
-2020-03-27,-3.4,-8.1,-5.2,0.7,0/6/0,982.2,961.7,967.9,,36.1,,16.0,,199.0,,SSW,0.5,2,5.4,
-2020-03-28,1.3,-5.1,-2.4,0.4,10670,989.6,982.2,987.4,,30.4,,9.5,,34.0,,NE,0,0,4.4,
-2020-03-29,2.8,-0.2,1.3,0.2,0/6/0,989.7,982.9,987.0,,36.9,,18.4,,25.0,,NNE,0,0,3,
-2020-03-30,2.5,0.1,1.4,0.3,0/6/0,983.4,976.6,981.7,,40.0,,15.5,,16.0,,N,6.9,0,1.4,
-2020-03-31,2.0,0.1,1.1,0.6,0/6/0,993.4,970.7,980.6,,29.7,,10.6,,80.0,,WSW,0,0,0,
-2020-04-01,5.8,-0.9,1.8,0.7,0/6/0,995.9,986.9,992.9,,38.9,,13.6,,24.0,,NNE,0,0,0,
-2020-04-02,5.4,-0.3,2.4,0.9,0/6/0,987.0,973.3,982.4,,41.5,,15.6,,28.0,,NNE,4.3,0,0,
-2020-04-03,4.8,0.6,2.6,0.9,0/6/0,974.6,968.1,971.7,,49.2,,24.8,,23.0,,N,5.1,0,0,
-2020-04-04,2.6,0.1,1.5,0.8,0/6/0,970.7,963.0,967.8,,49.2,,18.0,,23.0,,NNE,3,4,3.6,
-2020-04-05,1.9,-0.9,0.3,1.1,0/6/0,976.1,960.0,965.8,,40.9,,16.9,,85.0,,ESE,0,0,2.6,
-2020-04-06,3.0,-1.2,0.8,0.8,0/6/0,980.8,962.6,974.3,,60.7,,23.1,,37.0,,NNE,25.1,4,6.2,
-2020-04-07,2.3,1.0,1.9,0.9,0/6/0,986.0,967.0,976.5,,34.7,,22.4,,330.0,,NNW,0,0,0,
-2020-04-08,6.9,1.6,3.8,0.7,0/6/0,989.6,968.6,980.2,,60.6,,23.5,,19.0,,N,1,0,0,
-2020-04-09,4.3,0.9,2.2,0.8,0/6/0,987.6,966.6,977.0,,51.4,,27.0,,291.0,,NNW,3.6,0,0,
-2020-04-10,4.6,-1.2,1.9,0.9,0/6/0,985.0,959.9,967.8,,42.9,,19.3,,28.0,,NNE,4.3,0,0,
-2020-04-11,-0.3,-3.2,-1.8,0.8,0/6/0,983.1,971.7,979.2,,26.6,,9.5,,257.0,,W,0,4,4.2,
-2020-04-12,-1.2,-4.5,-3.0,0.7,0/6/0,984.3,979.4,981.4,,30.6,,11.9,,58.0,,ESE,0.5,3,7.6,
-2020-04-13,-2.4,-5.2,-3.7,0.2,10670,994.4,984.3,990.8,,25.1,,4.6,,145.0,,NNE,0,0,5.2,
-2020-04-14,-2.0,-4.3,-3.5,0.6,10670,994.5,990.5,993.1,,24.4,,9.4,,224.0,,SW,0.8,2,7,
-2020-04-15,-3.3,-4.0,-3.7,0.6,10690,992.2,988.7,990.1,,15.6,,5.2,,215.0,,SSW,0,0,5.6,
-2020-04-16,6.1,-3.7,-2.2,0.7,10690,997.8,990.4,995.4,,23.8,,5.4,,37.0,,SE,1.8,0,5,
-2020-04-17,8.2,2.5,4.5,0.8,0/6/0,990.6,976.9,981.9,,53.2,,17.7,,22.0,,NNE,1,0,1.4,
-2020-04-18,4.3,0.2,2.0,0.6,0/6/0,980.4,977.2,979.1,,44.4,,8.4,,17.0,,SE,0,0,0,
-2020-04-19,0.2,-1.9,-0.8,0.7,0/6/0,980.1,976.8,979.1,,11.1,,3.7,,278.0,,W,0,0,0,
-2020-04-20,0.5,-2.3,-1.0,0.3,0/6/0,976.8,965.9,970.5,,31.8,,8.4,,259.0,,NNW,1.3,3,3.4,
-2020-04-21,-0.9,-2.9,-1.8,0.3,0/6/0,983.5,967.8,975.8,,46.6,,23.4,,233.0,,SW,0.3,8,11.8,
-2020-04-22,-1.5,-3.5,-2.4,0.3,10690,993.7,983.4,989.7,,22.9,,9.8,,241.0,,SW,0.5,0,12,
-2020-04-23,-2.3,-3.5,-2.9,,20690,999.7,992.0,994.5,,15.9,,5.1,,130.0,,ESE,0,0,10.8,
-2020-04-24,-2.5,-4.6,-3.3,-0.5,20690,1007.9,999.7,1005.4,,12.6,,4.3,,209.0,,NE,0,0,10.2,
-2020-04-25,0.6,-3.4,-2.0,-0.4,20690,1007.5,986.2,1000.3,,18.3,,5.6,,47.0,,WSW,0,0,10,
-2020-04-26,1.3,-2.4,-1.1,-0.1,0/6/0,986.0,977.9,982.4,,41.6,,17.7,,27.0,,WSW,4.1,4,13.8,
-2020-04-27,-0.6,-4.2,-2.4,0.0,20690,987.2,979.3,983.4,,48.2,,10.5,,325.0,,WSW,0.5,0,13.6,
-2020-04-28,-1.3,-5.1,-3.1,-0.1,20690,1004.5,986.7,996.3,,27.9,,11.0,,223.0,,SW,0,1,14.2,
-2020-04-29,2.4,-4.8,0.3,-0.3,20680,1004.6,981.2,995.8,,58.4,,26.4,,35.0,,NE,20.6,0,6.6,
-2020-04-30,3.9,-3.5,1.5,0.1,20680,981.4,968.9,976.4,,59.4,,30.6,,24.0,,NNE,29,0,2.6,
-2020-05-01,0.2,-4.8,-2.8,0.1,20680,1002.8,981.0,995.3,,43.3,,20.5,,245.0,,SW,0.3,6,8.6,
-2020-05-02,0.2,-1.5,-0.5,-0.2,20680,1004.1,996.7,1000.4,,27.4,,12.4,,332.0,,NW,1.5,9,17.6,
-2020-05-03,0.0,-2.5,-1.2,-0.2,20680,996.7,992.2,993.5,,28.0,,16.0,,233.0,,WSW,0.5,0,18,
-2020-05-04,-2.2,-3.2,-2.7,-0.1,20680,994.8,992.1,993.0,,21.8,,6.5,,233.0,,SW,0,0,16.8,
-2020-05-05,-2.2,-2.9,-2.5,-0.1,20640,1004.0,994.8,999.6,,17.7,,8.4,,225.0,,SW,0,0,16.4,
-2020-05-06,-0.8,-2.6,-1.7,-0.1,20650,1004.0,1000.2,1002.8,,11.1,,2.8,,257.0,,NNW,0,0,16.2,
-2020-05-07,-0.4,-3.5,-2.2,-0.1,20650,1000.8,995.7,998.1,,9.7,,2.8,,343.0,,NNW,0,0,15.8,
-2020-05-08,0.5,-4.7,-2.5,-0.4,20640,996.8,989.7,994.3,,12.2,,2.2,,337.0,,NNW,0,0,16,
-2020-05-09,3.3,-3.8,-0.6,-0.6,20640,989.7,986.3,987.2,,10.9,,2.7,,164.0,,NNW,5.3,0,15.8,
-2020-05-10,4.7,0.2,2.3,-0.6,20640,986.6,982.2,984.1,,29.4,,4.8,,31.0,,SSE,0.8,0,8.2,
-2020-05-11,3.8,-3.3,0.2,-0.5,20640,982.3,976.8,979.0,,24.9,,6.1,,229.0,,NNW,3.6,1,8.8,
-2020-05-12,-3.0,-7.0,-4.9,-0.4,20660,983.4,976.6,978.9,,33.4,,20.5,,220.0,,SW,0,3,11.4,
-2020-05-13,-5.1,-6.4,-5.9,-0.6,20660,992.3,983.5,989.1,,27.9,,11.8,,181.0,,WSW,0,0,10.4,
-2020-05-14,-5.1,-8.3,-6.6,-0.8,20660,997.2,992.2,995.3,,26.0,,7.6,,35.0,,NE,0,0,10,
-2020-05-15,-6.2,-7.9,-7.0,-0.8,20660,997.2,994.9,995.9,,18.0,,5.9,,24.0,,NE,0,0,10,
-2020-05-16,-2.3,-7.3,-5.7,-1.3,20660,995.5,993.3,994.5,,8.4,,3.1,,48.0,,NE,0,0,10,
-2020-05-17,1.5,-3.2,-1.0,-1.1,20660,996.8,994.4,995.5,,24.3,,5.8,,128.0,,SE,0,0,9.4,
-2020-05-18,3.0,0.1,1.4,-1.0,20660,999.7,995.4,998.0,,44.8,,10.1,,37.0,,SE,0,0,9.4,
-2020-05-19,0.2,-3.4,-1.7,-0.9,20660,999.8,998.9,999.4,,13.2,,2.3,,252.0,,NNW,0,0,9.4,
-2020-05-20,-1.7,-5.1,-3.6,-1.1,20660,1000.1,997.2,999.1,,23.3,,4.9,,30.0,,NE,0,1,10.8,
-2020-05-21,1.0,-3.0,-1.5,-0.7,20660,997.3,987.0,992.5,,28.6,,7.9,,22.0,,SE,0.3,3,13.8,
-2020-05-22,0.3,-4.1,-2.0,-0.9,20660,989.7,981.5,987.4,,34.5,,9.6,,8.0,,W,0.3,3,17.2,
-2020-05-23,-2.5,-4.4,-3.2,-1.0,20660,994.7,979.6,985.4,,36.1,,14.3,,229.0,,SW,0.3,3,20,
-2020-05-24,-2.2,-3.8,-3.0,-1.0,20660,1006.8,994.8,1001.2,,16.8,,7.1,,244.0,,SW,0,0,19.2,
-2020-05-25,-1.0,-5.9,-3.8,-0.9,20660,1008.4,1001.4,1006.3,,17.4,,4.7,,120.0,,WSW,0,0,18.4,
-2020-05-26,4.4,-1.9,2.0,-0.8,20660,1001.3,978.5,988.9,,42.6,,16.2,,63.0,,ENE,0,0,17.4,
-2020-05-27,4.1,-1.0,1.3,-0.4,20660,988.8,971.1,977.5,,37.7,,13.4,,128.0,,NNW,2.5,0,14.6,
-2020-05-28,-0.5,-3.6,-2.0,-0.7,20660,996.1,988.7,992.7,,17.7,,4.8,,302.0,,NW,0.8,8,25.8,
-2020-05-29,0.4,-2.0,-0.8,-0.7,20640,1005.3,996.0,998.8,,13.7,,3.8,,141.0,,SSE,6.9,6,32,
-2020-05-30,-0.5,-4.0,-1.4,-0.7,20660,1005.9,997.2,1003.7,,13.9,,4.2,,316.0,,NNW,0,1,33.2,
-2020-05-31,5.9,-4.6,1.3,-0.5,20660,997.2,981.8,988.1,,48.0,,22.2,,47.0,,NNE,4.3,0,24.6,
-2020-06-01,2.1,-1.2,0.6,-0.5,20660,982.8,974.0,978.0,,40.0,,12.7,,22.0,,N,2.8,0,16.6,
-2020-06-02,-0.9,-4.2,-2.2,-0.7,20640,978.0,972.7,974.9,,27.7,,12.5,,236.0,,WSW,1.3,7,23.6,
-2020-06-03,1.9,-7.2,-3.2,-0.8,20690,978.7,948.4,969.9,,42.8,,17.1,,53.0,,NE,0,0,23.6,
-2020-06-04,2.1,-1.6,-0.3,-0.7,20690,952.5,941.2,948.4,,47.0,,20.3,,22.0,,NE,2,1,24.2,
-2020-06-05,1.5,-2.0,-0.4,-0.7,20690,959.1,942.1,951.4,,55.2,,24.3,,53.0,,N,7.4,1,25,
-2020-06-06,1.0,-2.1,-0.8,-0.9,20690,975.5,957.8,967.6,,45.8,,21.2,,32.0,,NE,0,0,25,
-2020-06-07,3.5,0.1,1.5,-0.7,20690,975.1,955.9,963.9,,44.8,,26.5,,13.0,,NE,1.5,0,25.4,
-2020-06-08,0.2,-2.2,-1.2,-0.8,20690,963.4,958.7,962.0,,41.5,,21.5,,7.0,,N,1,1,26.8,
-2020-06-09,-0.7,-2.2,-1.4,-0.9,20690,972.0,963.4,967.4,,33.6,,14.0,,24.0,,N,1.5,6,32.6,
-2020-06-10,-0.9,-3.6,-2.2,-1.0,20690,980.3,972.0,976.2,,27.4,,7.2,,62.0,,ESE,0.3,3,35.8,
-2020-06-11,-0.5,-3.5,-2.1,-0.8,20690,989.0,980.3,983.9,,21.4,,8.2,,160.0,,ESE,0,0,35.8,
-2020-06-12,-1.8,-4.1,-3.3,-1.0,20690,999.6,989.0,995.0,,8.9,,2.9,,23.0,,NE,0,0,35.8,
-2020-06-13,-3.4,-6.6,-4.8,-1.3,20690,1001.5,999.3,1000.7,,12.4,,3.9,,218.0,,NE,0,0,35.8,
-2020-06-14,-3.3,-5.2,-4.2,-0.9,20690,1006.1,1001.4,1003.8,,9.8,,2.0,,94.0,,ENE,0,0,34,
-2020-06-15,-2.0,-5.6,-4.0,-1.3,20690,1006.7,1003.9,1005.6,,15.7,,3.0,,12.0,,NE,0,0,32.6,
-2020-06-16,-2.2,-4.7,-3.3,-1.3,20690,1006.5,1003.5,1005.6,,15.7,,4.4,,1.0,,N,0,0,32.6,
-2020-06-17,0.6,-4.5,-2.5,-1.5,20690,1003.8,996.7,999.9,,11.0,,3.1,,132.0,,SE,0,0,32.6,
-2020-06-18,-0.4,-6.1,-3.0,-1.6,20690,997.8,991.9,995.0,,17.2,,3.7,,138.0,,ESE,0,0,32.8,
-2020-06-19,-4.7,-7.9,-6.4,-1.4,20690,992.1,987.8,989.6,,5.0,,0.3,,135.0,,ESE,0,0,32.8,
-2020-06-20,1.5,-6.4,-2.0,-1.5,20690,988.5,985.4,986.9,,14.9,,1.8,,110.0,,SE,0,0,32.8,
-2020-06-21,3.3,-0.7,1.1,-1.5,20690,997.2,988.5,992.7,,30.4,,8.4,,40.0,,NE,0,0,32,
-2020-06-22,0.2,-3.1,-1.4,-1.3,20690,1004.5,997.1,1000.3,,6.5,,1.8,,331.0,,NNW,0,0,32,
-2020-06-23,-2.4,-6.6,-4.4,-1.5,20690,1008.8,1004.5,1006.4,,5.4,,1.0,,2.0,,ENE,0,0,32,
-2020-06-24,-2.8,-5.3,-4.1,-1.5,20690,1012.0,1008.5,1010.3,,9.2,,1.9,,208.0,,SE,0,1,32.6,
-2020-06-25,-1.5,-4.2,-2.7,-1.3,20690,1012.1,1003.9,1007.8,,31.7,,9.1,,232.0,,WSW,0,1,33.2,
-2020-06-26,-3.0,-4.9,-4.2,-1.1,20690,1006.9,1002.6,1005.1,,27.0,,16.1,,222.0,,SW,0,0,33.2,
-2020-06-27,-2.9,-6.6,-4.2,-1.1,20690,1008.6,1002.8,1006.2,,27.0,,9.1,,222.0,,SW,0,0,33,
-2020-06-28,-2.0,-5.1,-3.3,-1.1,20690,1010.9,1005.1,1008.3,,19.0,,5.2,,226.0,,NNW,0,0,33,
-2020-06-29,-1.5,-3.1,-2.2,-1.2,20690,1014.2,1010.1,1011.6,,23.4,,7.3,,228.0,,SW,0,0,33,
-2020-06-30,-1.6,-3.8,-2.3,-1.3,20690,1015.3,1012.8,1013.8,,10.5,,3.7,,347.0,,N,0,0,33,
-2020-07-01,-2.4,-5.3,-3.9,-1.6,20690,1015.7,1013.1,1015.0,,17.3,,4.6,,349.0,,S,0,0,33,
-2020-07-02,-5.1,-8.0,-6.2,-1.6,20691,1010.7,1009.6,1010.1,,11.8,,2.9,,339.0,,ENE,0,0,33,
-2020-07-03,-5.1,-7.4,-6.0,-1.6,20691,1009.6,1003.4,1005.7,,11.3,,3.4,,154.0,,NE,0,0,33,
-2020-07-04,-5.4,-6.5,-5.9,-1.4,20691,1009.6,1004.0,1006.1,,12.4,,4.4,,217.0,,SW,0,0,33,
-2020-07-05,-4.7,-6.1,-5.3,-1.3,20691,1015.6,1009.6,1013.4,,6.7,,2.0,,125.0,,NE,0,0,33,
-2020-07-06,-3.5,-5.8,-4.5,-1.4,20691,1015.9,1014.4,1015.4,,6.0,,0.5,,328.0,,NE,0,0,33,
-2020-07-07,-4.4,-7.3,-5.9,-1.3,20690,1014.4,1008.4,1011.5,,,,,,,,,0,0,33,
-2020-07-08,0.7,-4.8,-2.6,-1.2,20690,1008.6,999.4,1004.9,,26.2,,3.4,,149.0,,SE,0,1,33.6,
-2020-07-09,4.3,0.5,2.0,-0.8,20690,1000.3,995.0,997.5,,43.7,,15.8,,41.0,,SE,0,0,32.4,
-2020-07-10,1.8,0.0,0.7,-0.8,20690,995.4,994.4,995.0,,17.6,,4.8,,39.0,,N,0,0,32.4,
-2020-07-11,,,,-1.2,20690,,,,,,,,,,,,0,0,31.8,
-2020-07-12,,,,-1.1,20690,,,,,,,,,,,,0,7,39.2,
-2020-07-13,-3.5,-5.5,-4.7,-1.3,20690,1004.7,1004.0,1004.5,,17.7,,8.2,,232.0,,SW,0,0,38.8,
-2020-07-14,-4.8,-6.5,-5.9,-1.3,20690,1004.9,1003.9,1004.5,,19.3,,5.8,,236.0,,SW,0,0,40,
-2020-07-15,-5.4,-7.2,-6.3,-1.2,20690,1004.0,999.6,1001.3,,15.4,,5.3,,230.0,,WSW,0,0,37,
-2020-07-16,-2.5,-6.9,-4.9,-1.4,20690,1003.3,995.3,1001.3,,16.6,,4.3,,343.0,,W,0.5,0,36.8,
-2020-07-17,-1.7,-7.1,-5.3,-1.5,20690,1002.9,993.7,996.6,,34.3,,18.9,,247.0,,SW,0.3,0,36.6,
-2020-07-18,-3.0,-6.5,-4.9,-1.5,20690,1006.5,1002.7,1005.2,,26.0,,7.1,,228.0,,SW,0,1,37.4,
-2020-07-19,-2.2,-4.3,-3.0,-1.4,20690,1012.8,1005.8,1008.9,,13.9,,4.8,,250.0,,W,0,0,37.4,
-2020-07-20,-0.6,-2.9,-1.5,-1.5,20690,1013.0,1000.3,1008.8,,21.3,,7.0,,290.0,,NW,0.8,1,38,
-2020-07-21,-0.4,-5.8,-3.2,-1.4,20690,1006.2,993.2,999.6,,16.2,,4.5,,130.0,,W,0.5,3,41,
-2020-07-22,-0.5,-1.9,-0.9,-1.5,20690,994.7,986.3,990.0,,21.2,,7.7,,331.0,,NNW,6.4,9,50.4,
-2020-07-23,-1.3,-5.2,-2.8,-1.6,20690,989.1,959.9,978.1,,47.3,,6.3,,257.0,,NNW,1.3,1,51.6,
-2020-07-24,-5.1,-10.3,-8.0,-0.9,20690,986.7,961.6,972.9,,53.8,,22.4,,128.0,,ESE,0.3,10,61.4,
-2020-07-25,-5.8,-9.7,-7.8,-1.3,20690,987.8,980.3,984.6,,17.9,,8.0,,278.0,,W,0,0,61,
-2020-07-26,-5.2,-9.2,-6.5,-1.5,20690,990.5,980.3,986.6,,25.8,,11.7,,25.0,,NNE,0,0,60.2,
-2020-07-27,-4.2,-11.2,-8.4,-1.5,20690,985.7,968.2,974.8,,56.3,,24.4,,227.0,,SW,0,0,60.2,
-2020-07-28,-6.2,-10.6,-8.1,-1.5,20690,990.7,976.4,985.4,,32.3,,13.1,,212.0,,SSW,0,0,60.6,
-2020-07-29,-5.0,-12.9,-9.1,-1.6,20690,989.8,975.8,982.1,,41.6,,16.9,,330.0,,SW,0,0,58,
-2020-07-30,-5.6,-9.8,-8.3,-1.6,20690,1002.0,985.6,994.3,,33.2,,5.9,,226.0,,WSW,0,0,58,
-2020-07-31,-1.4,-5.7,-3.1,-1.7,20690,1006.7,1001.7,1005.1,,11.3,,3.0,,127.0,,SE,0.5,3,61.4,
-2020-08-01,3.1,-4.0,-1.1,-1.5,20690,1006.1,978.4,995.2,,32.4,,10.3,,150.0,,ESE,0,0,59.4,
-2020-08-02,3.5,-0.6,1.4,-1.4,20690,980.3,970.1,974.3,,40.0,,18.3,,25.0,,NNE,0.3,1,60.2,
-2020-08-03,3.0,-0.9,0.8,-1.1,20690,988.4,977.5,984.5,,46.8,,20.6,,34.0,,NNW,1.3,0,60.2,
-2020-08-04,3.9,0.6,1.6,-0.8,20690,979.3,968.7,974.2,,53.6,,32.0,,31.0,,NNE,9.9,0,53.8,
-2020-08-05,1.7,0.3,1.1,-0.8,20690,983.4,979.0,981.4,,41.7,,23.0,,349.0,,NNE,0.3,0,52.2,
-2020-08-06,1.9,-1.2,0.5,-0.8,20690,982.2,976.6,979.5,,35.9,,19.7,,27.0,,NNE,0.5,2,54.4,
-2020-08-07,2.3,-3.1,-0.9,-0.8,20690,977.0,971.8,974.8,,46.3,,13.4,,40.0,,NNE,0.3,1,55,
-2020-08-08,-0.9,-5.4,-2.6,-0.9,20690,989.0,974.8,982.5,,29.2,,11.8,,22.0,,NNE,0.3,3,57.8,
-2020-08-09,0.5,-3.1,-0.7,-0.8,20690,988.0,974.7,980.4,,50.0,,28.2,,43.0,,NE,5.1,0,51.6,
-2020-08-10,-2.3,-5.4,-3.8,-1.1,20690,992.2,983.2,988.5,,17.6,,4.5,,40.0,,NE,0,0,51.6,
-2020-08-11,-4.2,-7.2,-5.9,-1.1,20690,993.9,991.6,992.6,,24.4,,7.6,,78.0,,ESE,0,0,51.8,
-2020-08-12,-5.0,-7.4,-5.7,-1.2,20690,997.2,993.7,995.6,,19.5,,5.8,,131.0,,SE,0.5,5,56.4,
-2020-08-13,-5.7,-7.2,-6.5,-1.4,20690,997.3,989.9,993.8,,23.4,,13.0,,31.0,,NNE,0,0,56.6,
-2020-08-14,-6.7,-8.8,-7.6,-1.5,20690,990.4,988.7,989.6,,21.2,,12.2,,21.0,,NE,0,0,56.6,
-2020-08-15,-4.5,-9.1,-7.0,-1.7,20690,989.8,982.0,984.9,,31.3,,12.3,,84.0,,E,0,0,55.6,
-2020-08-16,-2.5,-6.6,-4.3,-1.6,20690,993.6,983.4,989.8,,30.2,,5.2,,71.0,,ENE,0,0,55.6,
-2020-08-17,-4.5,-8.8,-6.0,-1.7,20690,999.5,993.3,995.5,,22.7,,6.6,,27.0,,NE,0,0,55.6,
-2020-08-18,-4.8,-8.7,-7.0,-1.8,20690,1000.9,995.0,998.8,,39.2,,13.3,,58.0,,NE,0,0,51.2,
-2020-08-19,-1.0,-7.6,-4.6,-1.8,20690,996.6,972.3,985.6,,71.9,,19.1,,33.0,,NE,0.3,2,53.6,
-2020-08-20,-2.3,-9.9,-6.9,-1.8,20590,992.0,983.7,988.1,,31.6,,11.2,,303.0,,WSW,0,0,52.6,
-2020-08-21,-1.3,-7.9,-3.2,-1.8,20690,989.4,969.8,975.8,,55.4,,20.7,,29.0,,NE,2,1,53.8,
-2020-08-22,-2.9,-7.3,-4.7,-1.8,20690,987.2,971.9,978.9,,24.3,,7.4,,39.0,,SSW,0.5,4,57.4,
-2020-08-23,-4.1,-7.2,-5.4,-1.8,20690,992.8,987.2,990.3,,31.8,,7.0,,143.0,,SE,0,2,59.8,
-2020-08-24,-4.5,-10.2,-6.8,-1.8,20690,997.5,992.8,995.6,,17.4,,7.3,,178.0,,WSW,0,0,59,
-2020-08-25,-4.2,-12.6,-8.3,-1.8,20690,996.8,985.0,990.0,,28.7,,13.4,,252.0,,WSW,0.3,5,64.2,
-2020-08-26,-2.2,-12.7,-7.0,-1.8,32691,997.3,973.9,985.5,,40.0,,12.6,,131.0,,SE,0,0,61.2,
-2020-08-27,-1.4,-4.9,-3.0,-1.8,00690,985.1,974.0,979.9,,32.1,,12.6,,24.0,,NNE,0,1,61.8,
-2020-08-28,-3.7,-7.4,-5.9,-1.8,21690,987.6,985.2,986.6,,20.1,,9.1,,33.0,,NNE,0,0,61.8,
-2020-08-29,-6.8,-12.1,-8.9,-1.8,21690,993.7,984.6,987.2,,27.3,,8.2,,39.0,,NE,0,3,65.4,
-2020-08-30,-9.3,-13.3,-11.9,-1.8,52661,1007.6,993.7,1001.6,,19.6,,8.6,,242.0,,WSW,0,0,64.6,
-2020-08-31,-11.1,-15.3,-13.5,-1.8,52661,1007.2,997.6,1002.5,,14.3,,5.1,,247.0,,WNW,0,0,64.4,
-2020-09-01,-11.0,-14.6,-12.6,-1.7,52663,1002.0,997.5,1000.3,,15.0,,6.4,,252.0,,WSW,0,1,65,
-2020-09-02,-7.9,-14.5,-12.3,-1.7,52663,1003.0,996.8,998.8,,9.3,,2.5,,6.0,,S,0,0,64.8,
-2020-09-03,-8.3,-10.2,-9.4,-1.7,52663,1011.3,1003.0,1007.3,,18.4,,9.3,,28.0,,NNE,0,0,64.8,
-2020-09-04,-8.7,-9.7,-9.1,-1.7,52663,1011.5,1008.8,1010.5,,11.7,,4.7,,247.0,,WSW,0,0,64.8,
-2020-09-05,-2.1,-11.0,-7.8,-1.7,52663,1009.1,1004.1,1007.0,,11.9,,1.8,,143.0,,SE,0,0,64.8,
-2020-09-06,1.6,-3.8,-1.7,-1.7,52663,1004.2,993.1,997.2,,18.6,,4.7,,113.0,,N,0.5,2,66.4,
-2020-09-07,-2.1,-5.5,-3.2,-1.7,52663,997.2,993.6,995.8,,12.4,,4.8,,226.0,,NNW,0,0,66.4,
-2020-09-08,-2.4,-11.2,-6.5,-1.7,52662,996.6,980.4,990.5,,11.8,,3.0,,120.0,,E,0,0,66.4,
-2020-09-09,-0.3,-3.2,-1.8,-1.7,52661,980.4,970.8,973.5,,14.1,,4.3,,138.0,,NW,0.3,1,67,
-2020-09-10,2.8,-1.4,0.6,-1.7,52661,977.3,968.5,974.4,,44.9,,19.8,,40.0,,NNE,4.3,0,64,
-2020-09-11,2.5,-3.1,-1.4,-1.7,52663,977.2,966.5,970.2,,42.9,,12.4,,24.0,,W,1.3,20,83.6,
-2020-09-12,-1.0,-4.2,-2.7,-1.7,52662,985.4,977.2,981.0,,19.4,,6.5,,22.0,,NNE,0,0,83,
-2020-09-13,0.6,-3.2,-1.1,-1.7,52661,986.0,975.3,983.0,,42.9,,17.3,,27.0,,NNE,1.5,3,86.2,
-2020-09-14,1.5,-1.0,0.7,-1.7,1/500,975.5,933.1,949.9,,66.8,,37.1,,42.0,,NNE,21.6,8,94,
-2020-09-15,-0.8,-11.7,-9.5,-1.7,1/662,972.6,932.5,958.4,,42.2,,21.6,,222.0,,WSW,0.3,0,91,
-2020-09-16,-1.4,-10.8,-5.8,-1.8,21690,972.0,961.9,965.9,,33.9,,10.8,,329.0,,SE,1.5,0,88.2,
-2020-09-17,2.1,-5.3,-0.8,-1.7,21690,962.3,949.6,953.6,,35.2,,16.4,,127.0,,ESE,0.8,5,93,
-2020-09-18,-0.1,-6.6,-2.9,-1.7,21690,983.9,953.8,970.7,,31.0,,10.1,,116.0,,ESE,0,0,89.4,
-2020-09-19,-4.9,-8.1,-6.4,-1.7,2/690,1003.6,983.7,993.0,,15.7,,5.8,,226.0,,SW,0,0,88.8,
-2020-09-20,-1.3,-6.7,-5.7,-1.7,2/690,1004.9,988.7,1000.3,,13.7,,4.2,,110.0,,SW,0,0,88.8,
-2020-09-21,1.1,-3.5,-1.8,-1.6,2/690,988.7,983.3,984.7,,22.8,,5.8,,61.0,,NNW,3.3,4,92.6,
-2020-09-22,-2.6,-5.5,-4.1,-1.6,2/690,985.7,977.8,982.8,,8.1,,2.7,,139.0,,NE,0,0,91.8,
-2020-09-23,1.6,-3.1,-0.2,-1.5,2/690,977.8,966.7,973.7,,46.4,,20.1,,19.0,,NNE,3.8,0,91.4,
-2020-09-24,1.2,-1.4,0.0,-1.4,2/690,966.8,954.4,959.0,,45.9,,18.3,,77.0,,E,0.8,0,90.4,
-2020-09-25,1.1,-3.2,-1.4,-1.4,2/690,971.6,964.5,969.8,,45.9,,13.2,,77.0,,ESE,0.5,2,92.4,
-2020-09-26,-1.3,-6.3,-4.5,-1.3,2/690,979.0,963.9,969.9,,37.6,,13.9,,126.0,,ESE,0,0,90,
-2020-09-27,-3.5,-6.6,-5.0,-1.4,2/690,984.2,979.0,982.7,,18.8,,6.5,,29.0,,NNE,0,0,90,
-2020-09-28,-4.5,-7.8,-5.9,-1.4,2/8/0,982.9,980.3,981.3,,14.2,,4.1,,102.0,,NE,0,0,90,
-2020-09-29,-4.4,-8.7,-6.5,-1.5,2/8/0,986.7,982.9,984.9,,13.0,,4.1,,107.0,,E,0,0,90,
-2020-09-30,-5.3,-10.2,-7.4,-1.4,2/8/0,1003.5,986.6,995.6,,27.4,,10.4,,128.0,,ESE,0,0,89.8,
-2020-10-01,-5.7,-10.6,-8.6,-1.6,2/8/0,1004.9,1001.0,1003.2,,26.2,,13.8,,227.0,,WSW,0,0,89,
-2020-10-02,-2.0,-9.2,-6.8,-1.4,2/8/0,1002.2,989.7,999.3,,24.9,,8.9,,218.0,,SW,0,0,89,
-2020-10-03,3.5,-2.4,-0.3,-1.3,20891,989.7,964.6,974.2,,38.1,,7.5,,85.0,,SE,3,7,96.4,
-2020-10-04,1.4,-3.7,-1.3,-1.4,20991,977.7,964.6,972.9,,49.7,,10.0,,36.0,,NNW,3.6,3,99.2,
-2020-10-05,2.2,0.3,1.1,-1.3,20991,967.1,964.8,965.9,,45.7,,30.0,,37.0,,NNE,23.1,0,96.8,
-2020-10-06,2.6,-4.8,-0.7,-1.3,2/990,969.4,961.0,963.6,,27.4,,8.5,,229.0,,SW,0,0,94.6,
-2020-10-07,-2.6,-5.6,-4.1,-1.3,1/890,979.7,969.4,975.2,,23.3,,5.6,,243.0,,WSW,0,2,96.8,
-2020-10-08,-2.3,-7.9,-5.6,-1.3,1/890,988.7,979.6,985.1,,25.1,,7.6,,225.0,,WSW,0,2,99.2,
-2020-10-09,1.5,-7.2,-1.0,-1.3,1/890,986.7,962.7,970.7,,63.3,,23.5,,41.0,,NNE,3.6,0,98.4,
-2020-10-10,1.5,-1.2,-0.1,-1.3,1/890,965.3,956.9,963.0,,34.0,,20.0,,20.0,,NNW,1.5,8,106,
-2020-10-11,1.6,-1.1,0.0,-1.3,1/890,962.2,947.6,956.0,,40.7,,15.0,,60.0,,ESE,0.3,0,104.2,
-2020-10-12,0.1,-2.8,-1.3,-1.3,2/690,972.7,956.8,968.6,,54.5,,17.2,,25.0,,NNW,0.3,1,105.4,
-2020-10-13,-1.6,-4.5,-2.9,-1.3,2/690,972.8,962.6,966.5,,16.3,,4.4,,24.0,,NNW,0,0,105.2,
-2020-10-14,-0.8,-4.3,-2.6,-1.3,2/690,974.3,968.1,971.7,,45.7,,18.2,,94.0,,ENE,0,0,100.6,
-2020-10-15,-2.5,-4.7,-3.5,-1.3,2/690,975.1,963.1,969.6,,28.4,,9.4,,19.0,,NNE,0,0,100,
-2020-10-16,-2.9,-7.9,-4.4,-1.3,1/690,980.2,964.6,970.7,,24.0,,8.1,,242.0,,WSW,0,0,99.4,
-2020-10-17,-2.6,-8.9,-6.2,-1.4,1/690,988.4,980.2,986.1,,23.3,,7.1,,230.0,,WSW,0,0,99,
-2020-10-18,-0.5,-3.5,-2.0,-1.3,1/690,987.3,982.7,984.6,,22.5,,8.0,,117.0,,ESE,0.3,1,99.8,
-2020-10-19,-1.5,-4.6,-3.1,-1.2,1/690,991.2,983.1,985.5,,17.6,,7.7,,16.0,,NNE,0,0,99,
-2020-10-20,-1.9,-7.8,-5.5,-1.4,3/690,1004.0,991.2,998.7,,26.9,,12.8,,235.0,,SW,0,0,98.4,
-2020-10-21,2.0,-4.7,-2.1,-1.3,3/690,1004.0,978.8,993.5,,32.4,,10.2,,111.0,,NE,0,0,98.4,
-2020-10-22,2.9,-3.1,-0.7,-1.5,30690,985.4,976.2,979.3,,24.2,,5.9,,247.0,,NW,5.8,8,106.8,
-2020-10-23,-0.9,-5.0,-3.5,-1.5,21690,997.2,982.8,989.6,,36.1,,16.7,,225.0,,SW,0,0,102.4,
-2020-10-24,0.0,-4.9,-1.5,-1.5,21690,997.2,994.7,995.9,,22.6,,10.8,,326.0,,NNW,0,1,103,
-2020-10-25,3.4,-0.3,1.2,-1.5,31690,997.8,987.9,994.9,,45.3,,15.2,,29.0,,NNE,0.5,0,103,
-2020-10-26,4.2,0.9,3.1,-1.4,21690,987.9,977.0,983.3,,53.7,,27.1,,29.0,,NNE,0,0,90.6,
-2020-10-27,1.5,-1.1,-0.4,-1.2,1/690,977.2,963.9,968.8,,13.9,,3.8,,108.0,,SSE,0,0,90.8,
-2020-10-28,0.0,-2.7,-1.3,-1.2,1/690,967.2,962.3,964.0,,25.5,,7.2,,340.0,,NW,1.3,2,92.4,
-2020-10-29,-2.5,-5.0,-3.6,-1.4,3/690,986.6,967.1,976.8,,30.6,,17.0,,246.0,,WSW,0.3,9,101.2,
-2020-10-30,-2.1,-5.1,-3.9,-1.5,50690,993.6,986.4,989.8,,19.1,,4.0,,242.0,,WSW,0,6,107.4,
-2020-10-31,-0.2,-3.0,-1.6,-1.5,61690,1007.7,993.6,1001.5,,8.5,,2.0,,271.0,,NW,0,0,104.4,
-2020-11-01,6.3,-3.3,0.1,-1.6,61690,1008.4,994.6,1005.0,,43.3,,7.5,,39.0,,NE,0,0,103.4,
-2020-11-02,7.2,1.5,2.9,-1.4,0/890,994.7,977.8,987.4,,61.2,,35.8,,342.0,,N,4.1,0,83.2,
-2020-11-03,2.3,-1.8,-0.1,-1.3,4/890,1001.4,978.0,992.6,,60.4,,20.0,,348.0,,NNW,2.3,3,85.8,
-2020-11-04,3.9,-0.3,1.0,-1.6,2/890,1001.5,987.4,994.7,,46.4,,26.9,,29.0,,NNE,11.2,1,87,
-2020-11-05,5.2,-1.3,1.3,-1.5,2/890,992.5,980.6,984.5,,46.2,,23.6,,34.0,,NNW,3,0,79.6,
-2020-11-06,3.0,-1.5,0.6,-1.4,1/890,994.5,983.5,990.8,,44.0,,17.6,,26.0,,NNE,13.5,0,77.6,
-2020-11-07,2.0,-1.0,0.9,-1.3,1/890,983.8,967.5,974.3,,50.7,,29.1,,19.0,,NNE,34,0,77,
-2020-11-08,2.2,-2.1,-0.1,-1.3,1/890,973.1,963.5,966.8,,32.8,,18.7,,25.0,,NNE,1.3,1,78,
-2020-11-09,-0.5,-3.5,-2.1,-1.4,1/890,979.0,969.7,974.8,,30.7,,13.2,,250.0,,W,0,2,79.6,
-2020-11-10,1.1,-2.4,-0.8,-1.4,1/890,984.9,972.1,979.2,,47.9,,17.7,,16.0,,NNW,17.3,2,81.8,
-2020-11-11,3.6,0.3,1.1,-1.5,1/790,978.9,970.9,975.0,,38.1,,23.0,,5.0,,N,29.5,11,93,
-2020-11-12,2.0,1.1,1.6,-1.5,0/790,971.7,970.1,971.0,,38.1,,23.4,,350.0,,N,7.9,3,96,
-2020-11-13,2.3,-1.5,0.1,-1.4,0/790,973.1,967.9,970.5,,40.5,,20.1,,12.0,,N,0,0,86,
-2020-11-14,3.2,-0.1,1.0,-1.2,0/790,971.2,964.8,968.1,,30.6,,10.3,,101.0,,E,0,0,86,
-2020-11-15,1.4,-1.6,0.0,-1.1,0/790,971.2,966.3,968.3,,17.4,,5.1,,360.0,,WNW,0,0,82,
-2020-11-16,1.0,-1.0,0.0,-1.1,0/690,973.6,967.4,969.2,,44.7,,14.5,,40.0,,NE,0,0,81.4,
-2020-11-17,1.1,-2.1,-0.7,-1.0,0/690,990.5,973.6,984.5,,15.7,,4.9,,334.0,,NW,1,5,86.2,
-2020-11-18,1.2,-2.1,-0.5,-1.0,//6/0,990.4,968.9,976.9,,57.1,,22.4,,41.0,,NW,3.8,1,87.6,
-2020-11-19,-0.9,-3.1,-1.8,-1.0,//1/0,978.8,969.4,973.0,,35.5,,19.6,,301.0,,WNW,0,0,83.6,
-2020-11-20,-0.2,-2.2,-1.1,-0.9,//1/0,989.3,978.7,982.8,,26.2,,14.5,,306.0,,WNW,0,0,82.8,
-2020-11-21,1.6,-1.9,-0.6,-0.9,//6/0,994.8,980.8,990.6,,36.9,,10.3,,107.0,,ESE,0.3,0,80.6,
-2020-11-22,4.2,-0.1,2.6,-0.9,//1/0,981.2,974.8,979.7,,49.7,,21.2,,34.0,,NE,0,0,80,
-2020-11-23,3.3,0.2,1.9,-0.7,//1/0,981.2,977.5,979.6,,31.7,,16.4,,15.0,,NNE,0.3,0,76.6,
-2020-11-24,2.5,-1.5,0.0,-0.6,//1/0,979.7,975.3,976.8,,24.0,,4.9,,29.0,,NNE,0,0,73.8,
-2020-11-25,-0.3,-2.2,-1.2,-0.4,//6/0,982.3,976.0,979.7,,15.0,,6.5,,258.0,,W,0.3,2,75.6,
-2020-11-26,1.5,-2.0,-0.5,-0.2,//6/0,982.2,968.9,976.4,,15.4,,4.2,,80.0,,SE,0,0,74.4,
-2020-11-27,3.3,-0.6,1.5,-0.3,//6/0,968.9,958.9,963.5,,30.5,,12.4,,79.0,,ESE,0,0,73.2,
-2020-11-28,2.7,-0.4,1.0,-0.1,//6/0,966.7,957.3,960.6,,24.8,,10.2,,114.0,,NW,0,0,69.4,
-2020-11-29,2.9,-1.2,0.1,0.4,//6/0,974.6,966.7,971.8,,37.9,,10.4,,42.0,,NE,0,0,69,
-2020-11-30,2.3,-0.8,0.2,-0.1,//6/0,968.3,952.1,956.6,,34.2,,13.9,,47.0,,NNW,6.4,5,73.8,
-2020-12-01,1.8,-1.9,-0.2,-0.1,//7//,961.3,954.7,956.6,,20.1,,7.8,,142.0,,SE,0,0,70.8,
-2020-12-02,0.4,-2.9,-1.1,-0.1,//7//,977.4,961.4,968.8,,12.2,,3.8,,122.0,,W,0,0,68.8,
-2020-12-03,-0.2,-2.6,-1.5,-0.1,//7//,987.9,977.3,984.0,,47.5,,11.1,,40.0,,SW,0.8,0,68.4,
-2020-12-04,1.4,-1.2,0.1,-0.2,//7//,985.1,976.9,981.0,,42.2,,6.7,,34.0,,NW,0.8,0,68,
-2020-12-05,4.4,-0.5,0.7,-0.2,//7//,984.8,971.8,980.4,,27.3,,4.4,,31.0,,SE,5.1,0,67.4,
-2020-12-06,5.2,-1.1,0.3,-0.3,//7//,971.7,966.9,968.7,,41.2,,19.7,,13.0,,NW,5.8,0,67.8,
-2020-12-07,0.3,-1.3,-0.6,-0.2,//7//,989.1,971.6,978.2,,21.0,,10.0,,283.0,,WSW,1,3,77.2,
-2020-12-08,2.6,-1.3,-0.1,-0.3,//7//,993.4,988.5,991.6,,28.0,,8.1,,347.0,,NNW,6.1,0,66.8,
-2020-12-09,1.0,-1.4,-0.3,-0.4,//7//,995.2,988.2,992.3,,24.8,,12.8,,238.0,,WSW,3.3,2,69,
-2020-12-10,2.8,-2.0,0.5,-0.3,//7//,994.7,975.6,984.8,,51.9,,23.0,,23.0,,NNE,8.6,0,67.2,
-2020-12-11,2.7,1.3,2.1,-0.4,//7//,975.9,964.7,969.0,,37.8,,24.8,,20.0,,NNE,24.9,0,61.8,
-2020-12-12,2.3,-1.4,0.0,-0.3,//6//,972.9,965.3,968.7,,19.9,,9.8,,302.0,,NW,0.3,0,61.8,
-2020-12-13,1.5,-2.2,-0.1,-0.1,//6//,973.3,966.0,970.3,,45.0,,19.9,,32.0,,N,0.5,0,60.6,
-2020-12-14,1.1,-2.6,-0.5,0.0,//6//,976.4,971.2,973.1,,18.1,,5.8,,16.0,,N,0.3,2,62.4,
-2020-12-15,0.5,-1.2,-0.6,0.1,//6//,979.2,976.4,977.4,,9.7,,3.5,,203.0,,WSW,0,0,59.2,
-2020-12-16,0.0,-1.3,-0.9,0.2,//6//,980.2,979.1,979.7,,10.8,,4.3,,227.0,,SSW,0,0,58.2,
-2020-12-17,-0.4,-1.4,-0.9,0.2,//6//,986.6,980.2,983.0,,17.6,,7.3,,202.0,,SSW,0,0,58,
-2020-12-18,0.4,-1.9,-1.0,0.3,//6//,991.6,986.6,989.0,,12.4,,5.5,,226.0,,SW,0,0,57.4,
-2020-12-19,1.8,-2.1,-0.8,0.4,//6//,991.8,985.6,990.3,,20.4,,5.3,,37.0,,NNW,0,0,56.8,
-2020-12-20,4.9,-0.4,2.1,0.2,//6//,985.6,964.3,977.1,,25.8,,11.4,,122.0,,SE,1.5,1,57.4,
-2020-12-21,4.4,0.3,1.8,0.1,//6//,972.7,961.1,965.2,,38.3,,7.4,,40.0,,NNW,2.3,0,33.8,
-2020-12-22,5.0,-0.1,1.5,0.1,//6//,975.3,968.4,972.7,,43.0,,9.2,,26.0,,SE,1,0,53.2,
-2020-12-23,5.5,1.8,3.2,0.2,//6//,972.7,965.6,971.4,,36.0,,14.1,,20.0,,NNE,0.3,0,47.6,
-2020-12-24,6.0,0.9,3.3,0.2,//6//,965.6,955.5,958.5,,45.3,,20.8,,90.0,,ESE,0,0,41.4,
-2020-12-25,3.3,0.2,1.4,0.6,//6//,984.6,964.2,975.5,,24.6,,9.8,,331.0,,NNW,1,0,40.2,
-2020-12-26,5.4,1.5,3.4,0.5,//6//,987.8,970.8,983.1,,40.0,,14.8,,118.0,,ESE,0,0,37,
-2020-12-27,5.2,0.6,2.3,0.6,//6//,991.5,970.7,983.0,,32.4,,14.3,,115.0,,NNW,4.3,0,33.2,
-2020-12-28,3.2,0.7,2.0,0.5,//6//,993.5,990.3,992.0,,30.4,,18.3,,12.0,,NNW,2.8,0,28.6,
-2020-12-29,1.8,0.0,0.8,0.2,//6//,992.3,990.2,991.3,,21.2,,11.2,,1.0,,NNW,0.8,3,31.4,
-2020-12-30,2.5,-1.0,0.8,0.5,//6//,991.2,985.1,988.3,,7.9,,2.6,,88.0,,SE,0,0,27.8,
-2020-12-31,4.3,0.5,2.1,0.8,//6//,985.2,982.1,983.1,,7.8,,2.7,,118.0,,SE,0,0,22.6,
-2021-01-01,4.5,0.6,2.3,1.0,//6//,984.9,980.8,983.6,,15.2,,3.7,,142.0,,SE,0,0,21,
-2021-01-02,8.6,1.2,3.6,1.5,//6//,980.8,963.9,969.7,,26.4,,6.7,,145.0,,SE,0.8,0,18.6,
-2021-01-03,3.7,0.0,1.7,1.3,//6//,977.6,964.0,968.7,,20.9,,6.2,,333.0,,NNW,3.6,0,17.2,
-2021-01-04,3.1,-0.3,1.3,1.3,//6//,985.6,977.6,982.8,,18.1,,7.3,,247.0,,WNW,0.5,1,18.6,
-2021-01-05,4.6,0.9,3.0,1.3,//4//,985.3,979.4,982.4,,39.0,,11.8,,21.0,,SE,1,0,14.6,
-2021-01-06,4.0,1.6,2.7,1.2,//4//,988.9,983.1,986.8,,32.5,,17.3,,349.0,,NNW,0.5,0,10.8,
-2021-01-07,5.8,1.7,3.7,0.9,//4//,988.1,974.2,980.7,,41.5,,17.7,,28.0,,NNE,0.3,0,9.2,
-2021-01-08,4.9,0.7,2.3,1.1,//4//,977.8,967.4,972.7,,42.3,,20.1,,40.0,,N,1.3,0,8,
-2021-01-09,5.0,0.5,2.4,1.2,//4//,980.6,977.4,979.3,,30.9,,8.9,,140.0,,SE,0,0,7.2,
-2021-01-10,3.7,0.9,2.4,1.3,//4//,984.9,977.4,982.4,,28.6,,8.6,,93.0,,SE,0.3,0,6.4,
-2021-01-11,3.8,0.2,1.4,1.5,//4//,985.1,981.5,982.9,,18.3,,8.0,,194.0,,S,1,0,6,
-2021-01-12,2.8,0.2,1.4,1.6,//4//,990.9,983.3,987.1,,24.1,,9.4,,235.0,,SW,0,0,5.6,
-2021-01-13,3.0,0.4,1.5,1.5,//4//,990.6,972.6,984.0,,50.2,,14.0,,31.0,,NNE,4.6,0,5.2,
-2021-01-14,2.1,-0.6,0.9,1.3,//4//,991.6,970.1,978.2,,33.5,,18.4,,232.0,,SW,3.8,3,8.6,
-2021-01-15,2.6,-0.2,0.9,1.4,//4//,1002.3,991.6,999.3,,29.4,,11.0,,215.0,,SW,0,0,4.6,
-2021-01-16,3.6,0.2,2.0,1.3,//4//,1000.7,987.1,991.5,,38.1,,11.7,,34.0,,NE,8.1,0,2,
-2021-01-17,4.4,1.0,2.3,1.2,//4//,988.5,985.8,987.1,,21.6,,4.4,,32.0,,NNW,4.1,0,1.6,
-2021-01-18,5.8,0.7,3.0,1.3,//4//,988.3,986.9,987.5,,10.4,,2.4,,106.0,,ESE,0,0,1.6,
-2021-01-19,5.6,1.5,3.6,1.5,//4//,995.2,987.4,991.2,,24.9,,5.1,,23.0,,SE,0.3,0,0.8,
-2021-01-20,5.8,2.7,4.2,1.3,//4//,994.5,968.7,980.8,,53.2,,27.9,,45.0,,NE,27.4,0,0,
-2021-01-21,3.1,0.3,1.8,1.2,//4//,982.1,968.7,976.8,,44.1,,16.8,,10.0,,NNW,9.1,2,1.8,
-2021-01-22,5.6,0.0,2.5,1.2,//4//,981.6,978.1,979.2,,16.2,,5.3,,19.0,,SE,0,0,0,
-2021-01-23,4.9,1.3,2.9,1.4,//4//,979.8,975.4,977.7,,20.9,,5.4,,92.0,,ESE,0.8,0,0,
-2021-01-24,4.7,1.1,2.6,1.5,//4//,983.2,976.9,980.9,,13.9,,2.7,,112.0,,N,0,0,0,
-2021-01-25,4.5,2.4,3.3,1.4,//4//,982.1,974.0,977.6,,41.1,,16.9,,140.0,,ESE,0,0,0,
-2021-01-26,3.9,1.8,2.7,1.4,//4//,987.2,977.9,981.8,,30.2,,9.1,,95.0,,N,0,1,0,
-2021-01-27,2.6,-0.5,1.0,1.3,//4//,988.2,985.5,986.9,,15.6,,5.4,,341.0,,NNW,3,0,0,
-2021-01-28,2.1,-0.4,0.8,1.3,//4//,985.6,983.7,984.4,,7.6,,1.8,,89.0,,SE,0,0,0,
-2021-01-29,2.2,-0.2,0.8,1.5,//4//,988.9,984.3,986.6,,18.7,,5.8,,256.0,,WSW,0,0,0,
-2021-01-30,2.2,-1.0,0.6,1.5,//4//,988.7,980.3,984.3,,20.5,,8.1,,349.0,,N,1.5,0,0,
-2021-01-31,4.8,-0.4,1.7,1.2,//4//,980.9,958.2,972.1,,43.1,,11.9,,31.0,,WNW,0.5,0,0,
-2021-02-01,4.7,0.5,1.8,1.3,//4//,968.0,952.3,958.0,,30.4,,10.0,,36.0,,W,6.4,0,0,
-2021-02-02,4.4,-0.8,1.7,1.5,//4//,982.9,968.1,975.3,,16.3,,4.7,,280.0,,NNE,0.5,0,0,
-2021-02-03,3.1,0.2,1.7,1.7,//4//,994.1,982.9,988.4,,22.9,,9.6,,219.0,,WSW,0,0,0,
-2021-02-04,2.5,-0.7,0.8,1.7,//4//,994.2,984.5,988.5,,14.6,,3.9,,230.0,,NNW,0,0,0,
-2021-02-05,2.9,-0.5,0.9,1.9,//4//,995.3,983.4,987.6,,8.5,,3.4,,244.0,,SW,0.3,0,0,
-2021-02-06,4.2,0.9,2.3,1.7,//4//,997.2,989.5,994.8,,27.1,,9.3,,7.0,,N,4.1,0,0,
-2021-02-07,3.1,0.5,1.7,0.9,//4//,995.5,989.6,993.1,,23.6,,12.2,,250.0,,WSW,2.3,0,0,
-2021-02-08,3.8,-0.4,1.4,1.3,//4//,995.3,987.2,991.3,,16.6,,4.1,,257.0,,SE,6.4,0,0,
-2021-02-09,5.9,1.0,3.5,1.2,//4//,999.7,986.9,995.8,,40.8,,15.5,,23.0,,NNE,5.1,0,0,
-2021-02-10,5.9,2.4,3.9,1.3,//4//,998.3,989.0,994.8,,47.3,,21.8,,7.0,,NNE,7.6,0,0,
-2021-02-11,10.9,2.2,7.0,1.6,//4//,990.2,971.5,979.0,,61.6,,33.2,,25.0,,NNE,20.3,0,0,
-2021-02-12,4.3,1.9,3.0,1.5,//4//,982.0,965.8,976.5,,54.8,,27.1,,21.0,,NNE,20.6,0,0,
-2021-02-13,4.0,0.7,2.2,1.1,//4//,982.2,967.6,973.5,,51.6,,31.4,,324.0,,NNW,0.8,0,0,
-2021-02-14,3.0,0.8,1.8,1.0,//4//,987.3,982.3,985.4,,28.9,,14.5,,26.0,,NNW,0,0,0,
-2021-02-15,4.5,2.0,3.3,1.1,//4//,985.7,972.6,977.5,,49.7,,29.2,,34.0,,NNE,19.1,0,0,
-2021-02-16,3.5,2.1,2.9,0.9,//4//,986.7,973.9,979.1,,37.9,,23.2,,1.0,,N,3.8,0,0,
-2021-02-17,5.2,2.1,3.3,0.9,//4//,992.3,986.6,990.7,,31.3,,17.0,,33.0,,NNE,0,0,0,
-2021-02-18,5.2,1.8,3.9,1.4,//4//,989.8,978.4,983.5,,47.9,,24.8,,34.0,,NNE,22.4,0,0,
-2021-02-19,3.2,0.4,1.5,1.3,//4//,980.8,976.5,978.7,,36.1,,15.0,,26.0,,NW,2,0,0,
-2021-02-20,1.2,-0.2,0.6,1.1,//4//,984.8,980.8,983.2,,20.9,,8.2,,281.0,,WNW,2.3,2,2.2,
-2021-02-21,2.0,-0.3,0.4,1.3,//4//,989.5,984.8,988.0,,15.9,,5.9,,218.0,,SW,0,0,0,
-2021-02-22,1.3,-1.1,0.2,1.4,//4//,989.1,975.8,982.7,,17.6,,6.2,,136.0,,SE,0.3,0,0,
-2021-02-23,3.4,0.3,1.4,0.6,//4//,978.4,962.2,973.2,,29.5,,10.7,,37.0,,N,4.3,2,1.6,
-2021-02-24,3.2,-0.2,1.1,0.8,//4//,969.7,960.9,964.1,,24.1,,3.9,,132.0,,SE,4.3,6,7.2,
-2021-02-25,2.3,-0.4,0.8,1.0,//4//,984.2,969.7,975.1,,19.6,,4.9,,311.0,,N,2,0,6,
-2021-02-26,2.3,-0.6,0.7,0.9,//4//,986.8,970.4,982.9,,34.8,,9.6,,59.0,,NNE,0.5,0,0,
-2021-02-27,6.0,1.2,2.8,1.3,//4//,976.0,965.0,971.4,,52.7,,14.3,,41.0,,NNW,4.3,0,0,
-2021-02-28,6.3,0.3,2.5,1.4,//4//,976.5,964.5,969.3,,39.9,,21.0,,36.0,,NW,8.6,0,0,
-2021-03-01,2.2,-0.1,1.4,1.4,//4//,988.4,976.5,984.2,,34.4,,17.8,,24.0,,W,0,0,0,
-2021-03-02,2.7,0.5,2.1,1.1,//4//,989.9,979.4,982.7,,38.5,,22.6,,3.0,,NNW,19.1,0,0,
-2021-03-03,2.6,-1.3,1.2,0.9,//4//,1001.6,989.9,997.4,,41.8,,18.7,,29.0,,NNE,3.3,2,2.2,
-2021-03-04,4.0,0.5,2.3,1.1,//4//,994.2,984.0,988.8,,47.7,,22.4,,34.0,,NNE,14,0,0,
-2021-03-05,2.8,0.4,1.4,1.1,//4//,989.9,966.4,974.1,,30.2,,11.9,,134.0,,SE,13.2,0,0,
-2021-03-06,3.9,1.4,2.6,1.0,//4//,974.0,965.0,970.9,,30.2,,14.2,,77.0,,N,1.5,0,0,
-2021-03-07,4.0,1.3,2.5,1.3,//4//,970.4,961.3,964.2,,41.6,,20.8,,21.0,,E,7.6,0,0,
-2021-03-08,3.6,0.1,1.7,1.3,//4//,979.6,970.2,977.2,,31.4,,13.0,,340.0,,N,0,4,4,
-2021-03-09,3.7,-0.2,1.9,1.5,//4//,976.6,967.6,970.8,,35.2,,18.5,,25.0,,NNE,0.8,0,0,
-2021-03-10,6.5,1.6,3.7,1.5,//4//,972.1,950.5,962.6,,30.1,,10.6,,146.0,,SE,1.3,0,0,
-2021-03-11,3.3,1.3,2.2,1.4,//4//,961.8,948.3,954.1,,31.3,,9.5,,50.0,,NNE,0,0,0,
-2021-03-12,3.3,0.4,1.4,1.2,//4//,964.1,949.7,958.2,,32.0,,11.0,,53.0,,ESE,0.5,0,0,
-2021-03-13,2.0,-0.6,0.5,1.3,//4//,985.1,949.2,966.4,,40.2,,17.7,,241.0,,WSW,1,4,3.8,
-2021-03-14,0.4,-1.0,-0.4,1.3,//4//,999.5,985.0,994.8,,37.9,,15.4,,223.0,,SW,0,0,0,
-2021-03-15,3.4,-0.4,1.3,1.2,//4//,998.2,969.3,984.4,,34.3,,11.4,,115.0,,ESE,0.5,0,0,
-2021-03-16,1.5,0.0,0.8,1.0,//4//,982.5,969.2,975.8,,29.5,,11.1,,234.0,,WSW,3,0,0,
-2021-03-17,1.5,-1.0,0.7,0.7,//4//,982.9,960.8,970.5,,37.3,,15.7,,289.0,,NNE,9.4,3,3.4,
-2021-03-18,0.9,-2.1,-0.6,0.4,//4//,963.5,959.2,961.6,,33.4,,17.4,,299.0,,WNW,0.3,1,4.2,
-2021-03-19,-0.6,-2.4,-1.5,0.5,//4//,962.1,954.7,957.6,,19.4,,8.7,,200.0,,SSW,0,0,4,
-2021-03-20,-0.8,-2.2,-1.5,0.7,//4//,974.5,961.9,969.5,,23.1,,11.5,,222.0,,SW,0,0,3.2,
-2021-03-21,-0.2,-3.5,-1.8,0.5,//4//,995.1,972.9,982.5,,19.6,,5.4,,248.0,,SW,0,0,3.2,
-2021-03-22,-0.9,-5.2,-2.6,0.1,//4//,996.7,992.8,995.1,,11.2,,3.1,,85.0,,NE,0,0,2.4,
-2021-03-23,0.2,-2.4,-1.1,-0.1,//4//,1002.9,992.4,997.7,,16.9,,2.9,,104.0,,NNE,2,5,7,
-2021-03-24,-0.4,-2.4,-1.0,-0.2,//4//,1004.0,1002.1,1003.3,,18.8,,5.8,,314.0,,NNW,0,0,5.4,
-2021-03-25,-0.5,-2.8,-1.7,0.5,//4//,1002.1,986.7,995.6,,23.8,,7.2,,117.0,,NNE,0,0,3.8,
-2021-03-26,2.7,-1.5,0.7,0.5,//4//,990.2,984.1,986.9,,20.7,,3.9,,110.0,,NNW,0,0,3.6,
-2021-03-27,5.2,0.4,3.1,0.8,//4//,989.8,982.7,985.4,,47.3,,15.1,,23.0,,NE,2,0,0,
-2021-03-28,5.3,-0.6,1.3,0.9,//4//,990.3,979.1,984.5,,18.3,,6.0,,188.0,,WSW,11.9,4,4,
-2021-03-29,2.7,-1.2,1.2,0.7,//4//,997.2,986.0,992.7,,30.6,,9.6,,34.0,,NNW,0.3,0,2,
-2021-03-30,5.1,0.0,1.8,0.6,//4//,998.4,983.7,990.3,,32.1,,12.7,,258.0,,ESE,5.8,0,0,
-2021-03-31,3.9,-0.7,1.6,0.6,//4//,1000.3,994.6,998.4,,34.2,,13.2,,2.0,,NNW,8.4,3,3.4,
-2021-04-01,3.7,-0.1,1.5,0.3,//4//,1001.4,982.2,993.0,,32.9,,12.4,,3.0,,N,16.5,0,2.6,
-2021-04-02,3.7,-0.6,0.4,0.1,//4//,991.6,981.0,989.1,,37.5,,16.8,,351.0,,NNW,1.8,0,2,
-2021-04-03,1.3,0.5,0.9,-0.3,//4//,990.7,982.8,988.1,,31.9,,20.5,,327.0,,N,1,3,4.6,
-2021-04-04,0.7,-2.2,-0.9,0.0,//4//,991.6,982.1,985.1,,26.6,,8.6,,1.0,,N,0.3,3,7.6,
-2021-04-05,0.7,-1.7,-1.0,0.3,10400,998.8,991.6,996.6,,17.5,,6.4,,25.0,,WSW,0.3,0,6,
-2021-04-06,1.0,-3.0,-0.8,0.1,10400,999.0,995.5,998.0,,17.3,,2.1,,122.0,,SE,0,1,6.6,
-2021-04-07,4.2,0.2,2.1,0.1,10400,995.6,977.4,985.0,,40.8,,12.6,,28.0,,NNE,1.3,0,2.2,
-2021-04-08,0.3,-1.3,-0.9,0.1,10400,983.2,977.3,979.7,,16.9,,4.8,,218.0,,SW,0.3,0,2.4,
-2021-04-09,0.4,-2.5,-1.0,0.0,10400,984.1,979.1,982.3,,27.1,,8.9,,229.0,,WSW,0.5,0,2.4,
-2021-04-10,-0.3,-3.9,-1.7,0.0,10400,982.3,965.1,976.0,,27.5,,7.6,,218.0,,SW,0,5,7.4,
-2021-04-11,1.3,-2.9,-1.4,0.0,10400,968.5,955.1,961.6,,42.7,,12.0,,19.0,,SW,0.5,2,9.2,
-2021-04-12,-2.1,-5.9,-4.1,0.0,//4//,969.8,964.3,967.0,,21.0,,6.3,,86.0,,NE,0,0,8.6,
-2021-04-13,-1.4,-3.8,-2.7,-0.4,10400,987.9,969.4,979.6,,21.6,,9.5,,33.0,,NNE,0,2,10.6,
-2021-04-14,-0.3,-3.8,-2.2,0.1,//4//,988.2,949.2,970.4,,53.9,,22.3,,87.0,,ESE,0,0,9.8,
-2021-04-15,0.1,-3.0,-1.3,0.6,//4//,976.3,949.8,963.1,,39.9,,14.6,,126.0,,WNW,0,0,4.2,
-2021-04-16,-1.7,-3.7,-2.5,0.2,10400,990.9,976.4,983.6,,16.6,,6.4,,19.0,,N,0,1,5.6,
-2021-04-17,1.0,-4.1,-2.5,-0.2,10400,996.6,990.9,994.4,,28.2,,6.1,,131.0,,NE,0,0,5,
-2021-04-18,6.9,-0.5,4.7,0.6,//4//,991.6,974.0,982.3,,58.4,,36.4,,14.0,,NNE,22.4,0,0,
-2021-04-19,6.3,-2.0,1.6,0.6,//4//,989.4,965.2,977.0,,67.9,,24.9,,20.0,,NNE,35.8,0,0.2,
-2021-04-20,1.6,-2.1,-0.1,0.5,//4//,989.7,973.8,984.9,,54.6,,19.7,,8.0,,NNE,21.6,0,0,
-2021-04-21,1.9,-2.6,-0.6,0.4,//4//,992.4,972.4,982.5,,49.5,,19.1,,17.0,,W,10.9,6,6,
-2021-04-22,0.3,-2.6,-0.8,0.2,//4//,992.8,983.4,987.5,,42.4,,16.6,,17.0,,WNW,3.6,7,13.2,
-2021-04-23,-2.4,-4.9,-3.7,0.1,//4//,1000.7,989.5,993.6,,29.9,,14.1,,214.0,,SW,0.3,1,14.2,
-2021-04-24,-3.2,-4.1,-3.7,-0.1,//4//,1002.9,997.2,1001.3,,17.2,,6.1,,228.0,,WSW,0,0,13.8,
-2021-04-25,-0.3,-6.1,-2.5,0.1,10400,997.2,979.2,987.3,,20.4,,6.6,,126.0,,SE,1,0,13.6,
-2021-04-26,1.7,-1.3,-0.1,0.0,10400,983.5,976.2,979.2,,19.0,,6.7,,342.0,,NNW,2.8,5,18.8,
-2021-04-27,4.2,-2.3,1.3,-0.3,//4//,983.7,966.8,975.0,,46.1,,20.6,,30.0,,NE,3.3,0,11.8,
-2021-04-28,1.6,-2.4,-1.2,-0.1,//4//,972.9,965.6,969.6,,40.1,,16.7,,33.0,,NNE,0.5,0,10.6,
-2021-04-29,-1.5,-3.9,-2.5,-0.1,//4//,978.5,969.0,975.9,,32.6,,13.4,,240.0,,WSW,0.3,0,9.4,
-2021-04-30,-2.8,-5.2,-4.2,-0.2,//4//,986.6,977.6,983.6,,36.1,,12.3,,232.0,,WSW,0,0,9.2,
-2021-05-01,-0.3,-6.8,-1.9,-0.8,10400,983.4,969.4,975.3,,30.4,,15.9,,331.0,,NNW,1,7,16.2,
-2021-05-02,-5.9,-11.7,-8.5,-0.5,10400,981.8,967.9,974.2,,44.4,,17.5,,124.0,,SW,0.3,0,15.8,
-2021-05-03,-4.7,-6.5,-5.4,-0.5,10400,988.8,981.7,985.9,,25.9,,9.8,,235.0,,SW,0,0,17,
-2021-05-04,-2.9,-6.2,-4.2,-0.8,10400,989.1,983.2,986.0,,13.6,,4.0,,135.0,,SE,0,1,17.2,
-2021-05-05,-1.6,-3.0,-2.3,-0.4,10400,1002.6,985.7,994.9,,7.0,,2.0,,328.0,,NE,0.3,0,18.2,
-2021-05-06,-0.9,-2.3,-1.5,-0.6,10400,1003.0,997.2,1001.1,,9.4,,4.3,,301.0,,NNW,0.3,0,18.2,
-2021-05-07,3.3,-1.4,0.4,-0.5,10400,997.2,983.6,991.0,,21.7,,4.5,,119.0,,SE,2.8,1,19.2,
-2021-05-08,3.5,1.3,2.4,-0.6,10400,983.9,974.3,980.2,,49.7,,23.2,,353.0,,N,15,0,12.2,
-2021-05-09,2.3,-3.0,-0.4,-0.7,10400,985.1,973.7,978.4,,40.0,,14.7,,4.0,,NNW,3,1,13.2,
-2021-05-10,2.7,-3.5,-0.4,-0.6,10400,987.9,976.5,984.7,,48.7,,17.6,,334.0,,N,3.6,0,11.4,
-2021-05-11,5.3,-1.6,1.1,-0.3,10400,983.7,968.9,978.4,,50.8,,16.3,,353.0,,N,20.1,0,7,
-2021-05-12,4.3,2.1,3.0,0.0,10400,974.2,960.4,967.4,,62.3,,36.6,,35.0,,NNE,48.5,0,0,
-2021-05-13,2.8,-0.7,1.0,-0.1,10400,987.8,971.4,979.7,,43.5,,26.2,,11.0,,NNE,6.4,0,0,
-2021-05-14,3.3,1.3,2.5,-0.3,10400,1000.0,985.3,992.0,,52.5,,34.0,,21.0,,N,25.1,0,0,
-2021-05-15,7.3,0.7,3.4,-0.2,10400,1012.6,999.2,1007.9,,42.6,,14.1,,23.0,,NNE,0,0,0,
-2021-05-16,7.0,1.1,5.2,-0.2,10400,1016.6,1012.1,1014.0,,42.4,,20.9,,33.0,,NNE,0,0,0,
-2021-05-17,7.7,1.0,4.0,-0.1,10400,1018.0,1011.0,1015.1,,38.3,,12.4,,20.0,,NNE,0,0,0,
-2021-05-18,7.8,2.5,4.1,-0.1,10400,1012.7,1003.2,1009.4,,40.4,,10.4,,25.0,,ESE,0,0,0,
-2021-05-19,7.4,-0.9,1.9,-0.2,10400,1003.8,997.3,1000.3,,47.4,,16.7,,28.0,,N,3,0,0,
-2021-05-20,1.5,-0.4,0.7,-0.5,1/4/0,1003.5,994.3,999.7,,30.3,,16.9,,351.0,,NNW,6.6,7,7,
-2021-05-21,1.4,-2.0,-1.0,-0.7,1/4/0,1000.6,990.0,993.9,,35.5,,19.3,,9.0,,WSW,2.5,1,8.2,
-2021-05-22,-1.5,-3.0,-2.1,-0.7,1/4/0,1003.9,995.9,1001.4,,21.4,,9.2,,251.0,,SW,0,0,7.6,
-2021-05-23,1.0,-4.2,-0.7,-0.7,1/4/0,996.0,971.6,980.5,,44.0,,18.5,,353.0,,NNE,4.6,4,12,
-2021-05-24,-3.7,-6.2,-5.2,-0.8,1/4/0,971.7,965.8,967.8,,30.8,,17.4,,229.0,,SW,0,3,15,
-2021-05-25,-5.8,-8.9,-7.5,-0.5,1/4/0,980.4,967.4,974.3,,36.0,,20.2,,131.0,,SE,0,0,15,
-2021-05-26,-8.4,-10.6,-9.4,-0.4,1/4/0,986.0,980.4,984.0,,32.3,,16.1,,131.0,,ESE,0,0,14.8,
-2021-05-27,-4.1,-11.0,-7.0,-0.4,1/4/0,985.8,982.3,983.8,,31.2,,12.8,,150.0,,ESE,0,0,14.8,
-2021-05-28,-3.9,-7.2,-5.3,-0.7,1/4/0,995.5,982.6,988.1,,20.3,,6.4,,77.0,,E,0,0,14,
-2021-05-29,-6.3,-9.7,-7.9,-0.8,1/4/0,997.0,995.1,996.0,,25.7,,10.4,,129.0,,ESE,0,0,12.6,
-2021-05-30,-6.7,-10.5,-8.5,-0.7,1/4/0,1001.1,994.5,996.8,,28.6,,10.1,,140.0,,SE,0,0,11.8,
-2021-05-31,-5.0,-7.6,-5.7,-0.9,1/4/0,1005.8,1001.0,1003.8,,13.1,,5.7,,242.0,,SSW,0,0,11.8,
-2021-06-01,-4.9,-6.4,-5.5,-0.9,1/4/0,1005.5,999.2,1002.7,,15.7,,6.5,,228.0,,SW,0,0,11.8,
-2021-06-02,-4.0,-7.2,-5.8,-1.1,1/4/0,999.2,997.2,998.5,,19.7,,4.7,,15.0,,NE,0,0,11.8,
-2021-06-03,-4.2,-6.6,-5.4,-1.1,1/4/0,997.3,994.9,996.1,,15.7,,3.8,,246.0,,SW,0,0,11.8,
-2021-06-04,-5.3,-6.8,-6.2,-1.2,1/4/0,996.3,994.1,994.9,,18.7,,7.6,,218.0,,WSW,0,0,11.8,
-2021-06-05,-6.4,-8.0,-7.2,-1.4,1/4/0,997.0,995.5,996.3,,13.1,,3.8,,259.0,,WSW,0,0,11.8,
-2021-06-06,-6.5,-10.3,-8.1,-1.2,1/4/0,997.2,994.5,995.7,,14.3,,5.0,,119.0,,ESE,0,0,11.8,
-2021-06-07,-5.8,-9.3,-7.6,-1.3,1/4/0,997.2,992.1,995.6,,27.1,,8.1,,24.0,,NNE,0,0,11.8,
-2021-06-08,1.6,-8.6,-3.1,-1.0,1/4/0,992.2,974.4,984.0,,40.1,,13.9,,60.0,,SE,0,2,13.4,
-2021-06-09,5.4,-0.6,1.3,-0.7,1/4/0,974.6,962.6,965.9,,37.4,,10.6,,82.0,,NNW,0,0,12.4,
-2021-06-10,-0.2,-3.9,-1.4,-0.8,1/4/0,984.6,966.8,975.8,,25.8,,11.3,,251.0,,NNW,0,12,24.8,
-2021-06-11,-3.7,-7.9,-4.8,-1.2,1/4/0,990.8,984.6,988.5,,19.7,,7.2,,229.0,,WSW,0,0,22.4,
-2021-06-12,3.0,-7.5,-0.9,-1.1,1/4/0,992.4,987.0,989.1,,36.1,,13.4,,36.0,,NE,0.8,0,22.2,
-2021-06-13,1.9,-1.9,-0.1,-0.8,1/4/0,995.7,991.0,994.0,,46.4,,13.9,,41.0,,ESE,1,0,20.4,
-2021-06-14,-0.8,-4.2,-2.0,-0.9,1/4/0,1007.1,995.4,999.3,,24.7,,7.4,,251.0,,SW,0.8,1,21.8,
-2021-06-15,1.4,-5.9,-3.6,-1.0,1/4/0,1010.0,1003.1,1007.7,,34.1,,6.7,,36.0,,SE,0.5,0,21.8,
-2021-06-16,2.8,-1.4,1.7,-0.9,1/4/0,1003.6,987.0,996.6,,55.4,,25.0,,15.0,,N,21.6,0,12.2,
-2021-06-17,1.5,-4.1,-1.0,-1.1,1/4/0,992.6,985.6,989.4,,48.3,,17.1,,348.0,,NW,2.8,1,12.8,
-2021-06-18,-3.2,-5.9,-4.4,-1.0,1/4/0,999.1,992.4,996.5,,19.3,,7.1,,228.0,,SW,0.3,4,16.8,
-2021-06-19,-4.8,-7.4,-5.8,-1.1,1/4/0,998.9,988.2,993.4,,12.8,,4.7,,48.0,,ESE,0,0,16.8,
-2021-06-20,-4.1,-7.7,-5.1,-0.9,1/4/0,992.8,988.1,990.1,,23.1,,8.9,,208.0,,SSW,0,0,16.2,
-2021-06-21,1.8,-7.1,-2.0,-1.0,1/4/0,992.7,967.3,982.2,,37.2,,13.9,,140.0,,SE,1,2,18.2,
-2021-06-22,2.0,-2.1,-0.3,-1.3,1/4/0,983.6,967.5,980.2,,36.1,,12.6,,1.0,,NNE,9.1,8,26.2,
-2021-06-23,0.1,-3.3,-2.2,-1.4,1/4/0,991.2,982.9,987.1,,20.9,,7.0,,44.0,,NE,0.3,3,29.6,
-2021-06-24,1.0,-2.7,-1.6,-1.3,1/4/0,996.0,991.0,994.4,,20.7,,3.1,,117.0,,SE,0,0,29.6,
-2021-06-25,1.6,-1.1,0.3,-1.3,1/4/0,994.0,983.2,989.9,,48.5,,24.5,,25.0,,NNE,0,0,29,
-2021-06-26,-0.4,-3.2,-1.4,-1.2,1/4/0,999.5,983.2,993.2,,40.7,,13.7,,25.0,,W,0,0,28.2,
-2021-06-27,4.0,-3.2,0.7,-1.1,1/4/0,997.2,971.5,983.2,,51.9,,19.7,,31.0,,SE,14.5,0,24.8,
-2021-06-28,2.0,-0.3,0.7,-1.0,1/4/0,991.0,978.2,983.7,,40.0,,22.0,,346.0,,NNW,2.3,0,21.4,
-2021-06-29,1.3,-1.5,0.1,-1.3,1/4/0,1000.2,991.0,997.4,,28.2,,7.8,,12.0,,NNW,7.6,9,30.2,
-2021-06-30,4.2,-1.3,1.6,-1.1,1/4/0,994.7,979.0,983.2,,46.8,,12.9,,43.0,,NE,0,0,27.8,
-2021-07-01,1.7,-1.3,0.5,-1.0,1/4/0,979.8,972.7,975.1,,45.6,,21.2,,26.0,,NNE,1.8,1,28.6,
-2021-07-02,-1.1,-3.1,-1.8,-1.1,1/4/0,972.9,960.9,965.0,,15.4,,3.9,,314.0,,NW,2,10,38.8,
-2021-07-03,3.3,-4.0,0.4,-1.2,1/4/0,961.1,953.0,955.7,,33.2,,10.8,,49.0,,ESE,0.3,0,35.2,
-2021-07-04,1.3,-2.8,-1.1,-1.1,1/4/0,974.5,955.6,965.0,,35.8,,10.7,,23.0,,NNE,0.3,0,34.2,
-2021-07-05,1.1,-3.0,-0.4,-1.2,1/4/0,980.7,968.3,973.7,,61.9,,25.7,,41.0,,NNE,12.7,6,39.8,
-2021-07-06,-2.6,-3.7,-3.2,-1.3,1/4/0,999.0,980.6,991.0,,34.3,,13.0,,2.0,,SW,0,0,40.2,
-2021-07-07,-0.3,-6.2,-4.0,-1.5,1/4/0,1001.4,995.4,999.7,,21.0,,4.1,,124.0,,SE,0,0,40.2,
-2021-07-08,0.9,-2.9,-1.5,-1.0,1/4/0,995.5,985.7,989.4,,52.2,,22.3,,93.0,,E,0,0,39.6,
-2021-07-09,2.1,-2.1,0.2,-1.0,1/4/0,989.2,981.1,984.8,,60.5,,17.2,,39.0,,ESE,0.5,0,38.2,
-2021-07-10,3.1,-1.5,1.7,-0.9,1/4/0,981.6,966.2,973.0,,46.0,,20.6,,66.0,,E,0.3,0,37.2,
-2021-07-11,1.7,-4.0,-1.9,-1.0,1/4/0,972.3,963.1,966.3,,40.7,,12.6,,77.0,,E,0,0,37.2,
-2021-07-12,-2.8,-5.4,-3.8,-1.2,1/4/0,988.3,972.2,980.6,,19.2,,6.7,,77.0,,NNE,0,0,37.2,
-2021-07-13,-2.2,-4.4,-3.4,-1.4,1/4/0,996.7,988.3,993.0,,19.8,,5.5,,229.0,,SW,0.3,1,37.8,
-2021-07-14,-4.2,-5.7,-4.8,-1.4,1/4/0,1006.6,996.7,1001.6,,13.0,,4.6,,226.0,,SSW,0,2,39.8,
-2021-07-15,-5.4,-9.3,-7.5,-1.6,1/4/0,1010.8,1006.6,1007.8,,12.3,,4.2,,246.0,,NE,0,0,39.8,
-2021-07-16,-7.0,-9.2,-8.0,-1.7,1/4/0,1013.4,1010.8,1012.8,,13.5,,5.9,,14.0,,NNE,0,0,39.8,
-2021-07-17,-5.7,-8.8,-6.5,-1.6,1/4/0,1013.2,1005.6,1009.7,,15.5,,6.3,,33.0,,NNE,0.3,1,40.6,
-2021-07-18,2.0,-8.0,-2.3,-1.4,1/4/0,1005.6,977.3,991.4,,52.1,,19.5,,28.0,,NE,1.5,0,40.2,
-2021-07-19,1.8,-6.1,-1.5,-1.4,1/4/0,977.7,970.6,973.1,,35.3,,11.0,,222.0,,SW,2,6,45.8,
-2021-07-20,-5.7,-9.0,-7.4,-1.5,1/4/0,987.7,976.1,981.0,,31.2,,18.9,,133.0,,SW,0,4,50.2,
-2021-07-21,-5.0,-7.6,-5.9,-1.5,1/4/0,997.8,987.7,993.4,,25.4,,6.8,,119.0,,SW,0,0,46.2,
-2021-07-22,-6.2,-8.8,-7.4,-1.6,1/4/0,1000.1,997.8,999.2,,16.4,,4.9,,31.0,,NE,0,0,46.2,
-2021-07-23,-7.1,-9.9,-8.5,-1.7,106/0,1000.5,998.3,999.4,,13.3,,4.1,,16.0,,NE,0,0,46.2,
-2021-07-24,-8.4,-11.5,-10.0,-1.7,106/0,1000.8,999.8,1000.3,,21.0,,7.8,,40.0,,NE,0,0,46.2,
-2021-07-25,-0.6,-11.2,-5.2,-1.7,1/4/0,1004.7,999.4,1000.7,,18.5,,4.9,,143.0,,SE,0,0,46.2,
-2021-07-26,-2.9,-5.0,-4.0,-1.7,106/0,1017.0,1004.7,1010.9,,6.9,,1.7,,17.0,,NE,0,0,45.8,
-2021-07-27,0.7,-4.5,-2.2,-1.6,1/4/0,1018.1,1006.0,1014.7,,21.7,,3.1,,109.0,,SE,0,0,45.8,
-2021-07-28,1.2,-1.4,-0.5,-1.6,1/4/0,1006.0,992.2,997.2,,35.0,,9.2,,128.0,,SE,2.5,3,48.4,
-2021-07-29,4.0,0.3,2.2,-1.5,1/4/0,992.3,961.7,977.9,,47.9,,17.1,,41.0,,NE,0.3,0,45.2,
-2021-07-30,2.8,-1.9,0.1,-1.5,1/4/0,970.1,955.8,960.2,,34.8,,10.4,,136.0,,SE,0.5,2,47,
-2021-07-31,0.2,-4.3,-1.8,-1.6,1/4/0,976.7,969.3,972.5,,35.2,,13.1,,16.0,,NNW,1.3,6,53.4,
-2021-08-01,1.2,-2.3,-0.3,-1.6,1/4/0,977.6,965.1,971.3,,47.0,,14.3,,30.0,,NNE,1.3,0,52.4,
-2021-08-02,0.6,-2.3,-0.4,-1.6,1/6/0,968.8,961.3,966.9,,44.1,,23.0,,22.0,,NNE,1.8,0,50.8,
-2021-08-03,-0.1,-4.6,-2.3,-1.6,1/6/0,983.9,958.3,968.5,,34.6,,16.4,,53.0,,W,0,0,49.4,
-2021-08-04,-0.9,-6.8,-3.7,-1.7,1/6/0,988.5,968.3,983.3,,52.9,,14.1,,86.0,,ESE,0,0,49.4,
-2021-08-05,4.7,-2.5,0.7,-1.5,1/6/0,974.5,949.1,967.1,,50.9,,15.4,,39.0,,NNE,0,0,46.6,
-2021-08-06,3.3,-4.5,-1.6,-1.5,1/6/0,954.7,941.0,949.8,,46.2,,19.7,,26.0,,NNE,1.3,0,46.6,
-2021-08-07,-3.6,-5.3,-4.5,-1.7,1/6/0,971.8,952.0,959.5,,26.2,,7.4,,196.0,,SW,0,0,46.8,
-2021-08-08,1.0,-6.2,-3.4,-1.7,1/6/0,980.0,968.8,976.3,,36.0,,10.3,,2.0,,N,1.5,1,48.2,
-2021-08-09,1.2,-4.5,0.2,-1.7,1/6/0,968.9,940.0,959.9,,61.7,,26.8,,7.0,,N,19.1,13,61,
-2021-08-10,-1.8,-12.8,-10.4,-1.8,1/6/0,974.7,939.8,965.9,,66.5,,31.5,,248.0,,WSW,0,0,61.4,
-2021-08-11,-10.6,-14.1,-12.9,-1.9,1/6/0,977.5,971.5,975.7,,48.6,,22.8,,248.0,,SW,0,2,63,
-2021-08-12,-9.8,-15.2,-12.8,-1.8,20653,971.5,964.0,967.5,,15.7,,6.2,,226.0,,SW,0,0,63,
-2021-08-13,-8.9,-11.2,-9.9,-1.8,20653,988.2,967.0,977.1,,27.3,,14.1,,255.0,,WSW,0,0,62.8,
-2021-08-14,-8.3,-13.5,-11.0,-1.8,20653,993.9,985.3,989.9,,36.2,,12.9,,242.0,,WSW,0,1,63.4,
-2021-08-15,-11.1,-15.8,-14.4,-1.7,20652,989.7,986.0,988.3,,32.3,,11.8,,257.0,,WSW,0,1,62.4,
-2021-08-16,-14.4,-18.2,-16.4,-1.7,51753,989.2,984.8,985.9,,22.7,,12.9,,250.0,,WSW,0,0,62.6,
-2021-08-17,-16.9,-18.3,-17.7,-1.7,51753,992.0,989.2,991.0,,16.1,,6.0,,243.0,,WSW,0,0,62.6,
-2021-08-18,-13.0,-18.3,-15.4,-1.6,51853,989.8,983.9,986.7,,24.6,,5.2,,244.0,,W,0,0,62.6,
-2021-08-19,-14.9,-18.3,-16.0,-1.6,52853,996.5,986.9,993.3,,19.8,,5.9,,147.0,,WSW,0,0,63,
-2021-08-20,-11.6,-16.0,-14.4,-1.6,52853,996.4,986.4,991.8,,16.2,,4.3,,139.0,,NNW,0,0,63.2,
-2021-08-21,-9.9,-14.9,-12.6,-1.6,52853,1000.5,995.4,998.4,,10.3,,2.5,,307.0,,NNE,0,1,63.8,
-2021-08-22,-3.8,-10.5,-5.6,-1.6,52852,1003.5,1000.5,1002.5,,10.1,,2.3,,326.0,,NNW,0,1,65.2,
-2021-08-23,-2.2,-6.6,-4.3,-1.6,52851,1002.2,990.6,997.1,,20.5,,3.4,,121.0,,SE,0,1,65.8,
-2021-08-24,-0.1,-2.9,-1.4,-1.6,52852,990.8,972.4,981.2,,35.9,,19.3,,88.0,,E,0,0,66.2,
-2021-08-25,0.3,-6.0,-3.5,-1.6,52852,991.0,973.5,984.0,,25.1,,7.9,,29.0,,NNW,0.3,0,66.4,
-2021-08-26,1.2,-3.4,-1.1,-1.7,52851,995.2,989.8,991.7,,23.1,,6.4,,24.0,,SE,4.1,9,75,
-2021-08-27,0.8,-3.7,-1.3,-1.7,52851,995.9,994.1,995.1,,24.4,,8.1,,31.0,,NNE,0.3,0,74.6,
-2021-08-28,1.6,-1.0,0.2,-1.7,42851,994.9,973.8,987.6,,49.2,,24.0,,69.0,,NE,7.1,3,77.6,
-2021-08-29,1.0,-6.1,-2.1,-1.7,42851,984.1,971.4,977.6,,52.4,,15.3,,41.0,,NNW,5.6,1,79,
-2021-08-30,0.9,-7.0,-2.0,-1.6,32751,985.7,968.6,981.1,,52.3,,20.0,,33.0,,NNE,4.1,5,84,
-2021-08-31,0.6,-6.5,-2.7,-1.5,22751,978.6,968.1,973.8,,49.4,,20.0,,25.0,,NNW,2.5,0,83.2,
-2021-09-01,-0.8,-6.7,-2.8,-1.4,0/6/0,980.8,958.5,971.1,,42.2,,15.7,,38.0,,SE,1.5,0,84.2,
-2021-09-02,1.2,-1.6,-0.6,-1.5,0/6/0,977.9,969.0,974.0,,61.7,,28.5,,45.0,,NNW,4.8,6,90.6,
-2021-09-03,0.1,-5.6,-3.0,-1.5,0/7/0,987.9,960.7,973.6,,41.3,,15.6,,225.0,,WNW,1,0,90.8,
-2021-09-04,-4.6,-7.5,-5.9,-1.7,0/7/0,1000.8,987.8,994.1,,21.8,,6.1,,281.0,,SW,0,0,90.8,
-2021-09-05,0.2,-7.7,-4.4,-1.7,0/7/0,1002.9,982.7,996.3,,64.9,,20.1,,33.0,,NE,1.3,0,90.8,
-2021-09-06,1.6,-5.4,-1.7,-1.6,0/7/0,997.7,973.3,983.7,,55.9,,27.3,,43.0,,NNE,4.6,4,94.6,
-2021-09-07,2.9,-6.1,-3.3,-1.7,0/6/0,1005.1,994.0,1002.2,,56.3,,14.1,,43.0,,NE,1,0,94.6,
-2021-09-08,3.4,-0.1,2.2,-1.4,0/6/0,994.8,978.5,985.7,,53.7,,28.8,,35.0,,NNE,27.4,0,84.2,
-2021-09-09,2.0,-2.7,-0.6,-1.4,0/6/0,993.0,973.8,986.2,,61.6,,18.1,,21.0,,NNE,4.8,1,84.8,
-2021-09-10,1.0,-1.7,0.1,-1.5,0/6/0,975.0,966.2,969.8,,63.0,,28.2,,4.0,,N,8.1,0,83.2,
-2021-09-11,1.9,-3.2,-0.5,-1.4,0/6/0,972.6,964.7,970.3,,52.6,,21.8,,28.0,,NNE,1.8,2,85.6,
-2021-09-12,2.5,-1.0,0.8,-1.4,0/6/0,972.0,963.0,967.9,,59.3,,30.6,,24.0,,NNE,4.8,0,85.6,
-2021-09-13,-0.7,-4.2,-2.7,-1.5,0/6/0,969.0,953.8,959.6,,26.0,,5.5,,5.0,,W,1,3,88.6,
-2021-09-14,-2.3,-6.2,-4.5,-1.5,0/9/0,960.6,946.9,954.9,,29.9,,8.9,,137.0,,W,0,0,88.6,
-2021-09-15,-3.0,-9.9,-6.4,-1.6,0/6/0,974.8,947.7,960.7,,35.3,,14.6,,134.0,,WSW,0,0,88.4,
-2021-09-16,-6.2,-9.8,-7.7,-1.7,0/9/0,992.3,974.8,985.6,,14.5,,5.8,,208.0,,WSW,0,0,84.2,
-2021-09-17,-3.0,-6.7,-4.9,-1.7,0/9/0,994.1,991.5,992.5,,23.3,,7.0,,248.0,,NW,0,1,85,
-2021-09-18,0.4,-6.5,-3.9,-1.6,0/9/0,994.1,984.7,990.2,,28.0,,7.8,,16.0,,WSW,1,0,85,
-2021-09-19,2.5,-1.6,0.5,-1.6,51643,984.8,977.9,981.9,,34.3,,13.0,,343.0,,NNW,3,19,103.6,
-2021-09-20,0.2,-3.9,-1.4,-1.6,51643,993.7,977.7,986.3,,10.4,,3.4,,285.0,,NW,1.3,2,106,
-2021-09-21,1.8,-7.0,-0.8,-1.7,41641,992.9,976.4,984.7,,63.7,,17.0,,39.0,,N,0.3,0,106,
-2021-09-22,4.0,0.3,1.7,-1.7,31641,991.5,974.7,986.7,,34.8,,19.8,,360.0,,NNE,0.5,0,103.6,
-2021-09-23,2.2,-0.7,0.6,,0/7/0,974.8,965.4,970.7,,43.9,,21.7,,48.0,,NNW,0.3,0,102.4,
-2021-09-24,2.2,-0.8,0.5,-1.5,0/7/0,974.6,972.1,973.0,,31.9,,18.1,,19.0,,N,0.3,1,103.8,
-2021-09-25,-0.1,-2.5,-1.0,-1.4,0/7/0,979.2,970.3,973.2,,37.8,,14.7,,40.0,,NE,1,1,105.2,
-2021-09-26,0.5,-2.9,-0.7,-1.5,0/7/0,980.6,969.7,973.5,,57.3,,25.8,,17.0,,NNW,4.8,5,110.4,
-2021-09-27,0.7,-2.9,-0.9,-1.6,0/7/0,976.0,968.0,972.8,,38.3,,16.4,,352.0,,NNW,0.5,6,116.6,
-2021-09-28,0.4,-3.9,-1.9,-1.5,0/6/0,974.2,962.3,970.1,,53.1,,14.2,,42.0,,NNW,1,0,113.6,
-2021-09-29,1.6,-2.8,-0.1,-1.5,0/6/0,969.0,943.5,953.4,,51.2,,30.9,,2.0,,NNW,6.1,1,111,
-2021-09-30,-0.5,-2.1,-1.3,-1.5,0/6/0,977.2,958.2,969.7,,37.7,,20.0,,329.0,,NNW,0,0,111,
-2021-10-01,0.7,-2.4,-0.7,-1.4,0/6/0,977.5,969.7,972.9,,53.2,,28.1,,45.0,,NNE,5.8,0,111.2,
-2021-10-02,-0.6,-2.7,-1.9,-1.5,0/6/0,983.1,974.1,979.3,,38.5,,13.2,,28.0,,NNE,0.8,0,110.8,
-2021-10-03,0.4,-2.2,-0.8,-1.4,0/6/0,981.0,976.0,978.8,,42.6,,12.1,,32.0,,NNE,0,0,110.2,
-2021-10-04,0.0,-4.0,-1.4,-1.3,0/6/0,994.6,978.5,984.2,,18.8,,6.2,,352.0,,NNW,0,0,110.2,
-2021-10-05,-0.2,-5.3,-3.4,-1.3,0/6/0,1000.3,994.6,998.2,,28.6,,4.1,,28.0,,SW,0,0,110.2,
-2021-10-06,2.0,-1.1,0.4,-1.3,0/6/0,995.7,979.8,985.3,,46.5,,23.4,,39.0,,NE,0,0,110.2,
-2021-10-07,0.6,-3.1,-1.3,-1.3,0/6/0,987.4,981.9,985.6,,34.9,,10.5,,26.0,,WNW,0,0,109.8,
-2021-10-08,2.4,-3.2,-0.2,-1.2,0/6/0,982.2,958.0,969.7,,45.3,,19.2,,47.0,,NW,0.5,1,110.6,
-2021-10-09,2.2,-1.6,0.2,-1.2,0/6/0,981.4,960.1,974.8,,52.7,,23.4,,52.0,,NNW,1.3,0,110.6,
-2021-10-10,1.3,-0.8,-0.1,-1.3,0/6/0,969.3,958.7,966.4,,50.0,,22.0,,8.0,,N,1.5,3,113.2,
-2021-10-11,1.0,-2.5,-0.9,-1.3,0/6/0,976.7,961.1,969.1,,29.3,,13.1,,27.0,,NNW,0.5,6,119.4,
-2021-10-12,3.0,-2.2,-0.5,-1.3,0/6/0,982.0,972.6,979.3,,46.7,,16.1,,35.0,,NE,0.5,0,115.2,
-2021-10-13,3.8,1.7,2.5,-1.1,0/6/0,973.4,961.9,968.6,,59.3,,31.7,,26.0,,NNE,16,0,110.4,
-2021-10-14,3.1,-1.8,0.2,-1.0,0/6/0,967.8,959.9,964.4,,43.7,,23.8,,18.0,,NNE,1.8,3,113.2,
-2021-10-15,1.2,-1.5,-0.1,-1.0,0/6/0,964.5,953.6,958.7,,40.9,,17.4,,28.0,,NNE,0.3,0,103.4,
-2021-10-16,1.1,-3.2,-1.4,-1.0,0/6/0,978.4,957.6,965.0,,34.6,,13.6,,144.0,,SE,0,0,103.4,
-2021-10-17,0.5,-4.3,-2.6,-1.0,0/6/0,985.3,961.9,978.5,,53.9,,12.5,,36.0,,SW,1.3,0,103.2,
-2021-10-18,2.0,-3.5,-1.3,-1.1,0/6/0,974.5,956.6,963.7,,41.6,,17.7,,54.0,,W,1,0,103.4,
-2021-10-19,-0.4,-3.4,-2.8,-1.1,0/6/0,986.7,972.2,981.8,,36.5,,11.8,,81.0,,WSW,0,7,110,
-2021-10-20,3.0,-1.4,1.8,-1.1,0/6/0,975.0,966.6,972.5,,61.6,,23.4,,35.0,,NNE,1.5,0,108.6,
-2021-10-21,2.7,-0.9,0.9,,0/6/0,975.6,966.3,969.4,,40.0,,19.6,,32.0,,NNE,7.1,0,104.8,
-2021-10-22,2.8,-1.6,0.0,-0.9,0/6/0,978.2,958.3,970.1,,36.3,,12.0,,77.0,,SE,0,3,107.4,
-2021-10-23,3.1,-1.0,0.5,-0.9,0/6/0,958.4,945.3,950.6,,28.8,,5.7,,106.0,,ESE,0.5,4,111,
-2021-10-24,-0.5,-2.2,-1.5,-0.9,0/6/0,955.8,945.4,949.8,,28.9,,9.1,,119.0,,NW,1.3,0,111.2,
-2021-10-25,-0.9,-4.2,-2.3,-1.0,0/6/0,965.6,955.8,960.5,,21.6,,8.8,,223.0,,NNE,0,0,108.6,
-2021-10-26,0.4,-4.3,-2.3,-1.0,0/6/0,966.2,952.5,962.1,,56.1,,17.2,,51.0,,NE,2.5,0,108.6,
-2021-10-27,-0.6,-2.5,-1.2,-0.9,0/6/0,967.3,958.5,964.2,,24.2,,11.8,,312.0,,NNW,0,0,107.2,
-2021-10-28,3.4,-2.8,0.1,-0.9,0/6/0,977.7,965.6,971.7,,51.7,,18.8,,30.0,,NE,2.3,0,106.4,
-2021-10-29,2.2,-1.8,0.1,-0.9,0/6/0,988.5,971.7,976.5,,49.8,,17.8,,26.0,,SW,2.3,0,102.6,
-2021-10-30,2.4,-0.9,0.7,-0.9,0/6/0,991.8,988.5,990.6,,37.3,,21.0,,353.0,,NNW,10.4,1,103.6,
-2021-10-31,2.1,-0.8,0.4,-1.1,20660,1001.0,986.6,993.1,,39.2,,16.2,,348.0,,NNW,7.1,0,100.6,
-2021-11-01,3.0,-1.5,1.2,-1.0,0/6/0,1001.0,992.7,996.3,,40.4,,15.3,,43.0,,NNE,3.8,0,100,
-2021-11-02,4.4,-0.5,2.5,-0.8,0/6/0,995.5,975.6,987.3,,49.2,,21.6,,20.0,,NNE,4.6,0,94.8,
-2021-11-03,2.5,-1.2,0.2,-0.7,0/6/0,985.7,976.5,981.9,,44.7,,13.1,,19.0,,NNE,0.5,0,90.8,
-2021-11-04,3.4,0.5,2.2,-0.7,0/6/0,976.6,970.1,973.0,,36.7,,13.9,,27.0,,NNE,0.3,0,89.4,
-2021-11-05,3.3,-0.9,0.1,-0.7,0/6/0,979.8,970.4,975.7,,25.3,,11.1,,25.0,,WNW,0.3,2,91,
-2021-11-06,0.7,-1.2,-0.3,-0.6,0/6/0,991.8,966.7,978.2,,18.2,,6.5,,244.0,,W,0.5,0,88.4,
-2021-11-07,2.6,-2.4,-0.3,-0.6,0/6/0,995.2,991.8,994.2,,29.0,,8.9,,23.0,,NNE,0.3,0,86.6,
-2021-11-08,4.1,1.9,2.8,-0.5,0/6/0,994.4,986.6,991.0,,38.7,,23.9,,12.0,,NNE,1,0,85.2,
-2021-11-09,3.9,0.9,2.2,-0.5,0/6/0,990.8,970.5,985.3,,68.4,,29.5,,39.0,,NNE,38.4,0,78.4,
-2021-11-10,2.6,0.8,1.7,-0.6,0/6/0,987.3,969.8,980.3,,64.8,,30.4,,23.0,,NNE,4.3,0,73.8,
-2021-11-11,2.1,0.6,1.6,-0.6,0/6/0,986.8,974.1,980.4,,62.2,,36.6,,22.0,,NNE,29.7,0,67.8,
-2021-11-12,1.8,0.5,1.1,-0.8,0/6/0,991.7,984.2,988.9,,47.3,,25.7,,354.0,,NNW,3,0,65.8,
-2021-11-13,2.2,-0.2,1.3,-0.8,0/6/0,987.8,976.3,981.0,,57.1,,31.4,,2.0,,N,22.1,0,60.4,
-2021-11-14,2.1,-1.6,0.2,-0.6,0/6/0,987.3,977.3,983.3,,34.9,,10.3,,15.0,,W,1,0,59.6,
-2021-11-15,0.9,-2.0,-0.9,-0.4,0/6/0,987.4,978.7,984.6,,19.8,,9.4,,145.0,,SW,0.3,0,59.6,
-2021-11-16,1.6,-0.8,0.2,-0.2,0/6/0,978.7,963.9,972.6,,30.6,,13.8,,344.0,,NNW,1.5,3,62.6,
-2021-11-17,-0.3,-2.1,-1.2,-0.2,0/6/0,971.4,961.7,965.2,,22.5,,13.0,,225.0,,SW,0,0,60.6,
-2021-11-18,-0.5,-3.1,-1.8,0.0,0/6/0,980.2,971.4,977.2,,18.5,,5.8,,234.0,,SW,0,0,60.4,
-2021-11-19,-1.5,-4.0,-2.6,0.0,0/6/0,977.6,959.0,966.0,,33.6,,11.8,,117.0,,ESE,0,0,60.2,
-2021-11-20,1.0,-2.4,-0.8,-0.1,0/6/0,967.2,957.7,960.8,,21.8,,10.4,,222.0,,E,0,1,60.8,
-2021-11-21,-1.4,-3.3,-2.3,0.0,0/6/0,973.4,967.2,970.2,,25.5,,12.0,,226.0,,SW,0,1,61.6,
-2021-11-22,-2.2,-4.4,-3.3,0.1,0/6/0,985.6,973.3,979.4,,22.7,,12.3,,224.0,,SW,0,0,60.6,
-2021-11-23,-0.1,-3.2,-1.8,0.3,0/6/0,986.3,984.8,985.6,,12.2,,4.4,,231.0,,NW,0,0,59.8,
-2021-11-24,-0.3,-1.2,-0.9,0.2,0/6/0,988.7,985.4,986.9,,8.0,,2.7,,306.0,,NW,0,2,61.8,
-2021-11-25,2.3,-1.1,0.3,0.2,0/6/0,988.5,982.6,986.4,,17.8,,5.9,,145.0,,SE,0,0,61.2,
-2021-11-26,4.3,0.3,2.4,0.1,0/6/0,983.2,974.9,980.3,,44.6,,21.7,,40.0,,NNE,6.4,0,59.4,
-2021-11-27,2.4,-0.4,0.6,0.0,0/6/0,984.2,975.3,978.7,,35.0,,21.1,,24.0,,NNW,4.1,0,59.4,
-2021-11-28,3.7,-0.5,1.4,-0.2,0/6/0,985.6,969.3,978.5,,24.7,,13.0,,76.0,,ESE,0.8,2,61,
-2021-11-29,4.9,1.5,2.8,0.1,0/6/0,977.3,966.3,969.8,,28.8,,7.7,,102.0,,ESE,0,0,55.8,
-2021-11-30,6.2,0.1,2.6,0.4,0/6/0,985.3,974.9,981.9,,45.5,,10.5,,58.0,,NE,0,0,51.4,
-2021-12-01,3.2,0.7,2.4,0.2,0/6/0,975.0,966.3,970.7,,51.9,,35.9,,5.0,,N,16.5,0,42.8,
-2021-12-02,1.4,0.3,0.8,-0.1,0/6/0,972.6,962.5,968.4,,52.7,,29.1,,12.0,,NNW,4.1,4,47.2,
-2021-12-03,3.8,0.2,1.2,-0.2,0/6/0,980.4,966.7,975.6,,39.1,,20.0,,67.0,,NW,0,0,47.4,
-2021-12-04,4.0,-0.5,1.5,-0.2,0/6/0,970.8,955.2,961.0,,50.7,,23.3,,37.0,,NNE,17.8,0,45,
-2021-12-05,0.2,-0.9,-0.3,-0.4,0/6/0,984.9,970.7,977.7,,27.2,,15.6,,339.0,,NNW,1.3,14,58.8,
-2021-12-06,2.8,-1.3,0.6,-0.3,0/6/0,989.9,980.8,987.2,,30.1,,12.6,,27.0,,W,0.3,1,59.4,
-2021-12-07,3.0,0.1,1.1,-0.2,0/6/0,989.0,976.2,979.9,,23.8,,6.3,,40.0,,SE,0,0,50.8,
-2021-12-08,2.9,0.0,1.8,-0.6,0/6/0,993.5,986.8,991.1,,47.6,,22.9,,17.0,,N,24.4,0,47.8,
-2021-12-09,3.3,0.5,1.8,-0.4,0/6/0,993.2,979.0,985.2,,35.2,,18.4,,25.0,,NNE,9.1,0,44,
-2021-12-10,0.8,-0.6,0.2,-0.3,0/6/0,988.2,979.1,984.4,,26.4,,16.6,,302.0,,WNW,0,0,42.2,
-2021-12-11,3.8,-0.2,1.2,-0.3,0/6/0,986.8,979.2,984.3,,31.6,,14.7,,23.0,,NNW,4.8,7,51.4,
-2021-12-12,3.0,-0.3,1.4,-0.4,0/6/0,979.8,972.4,974.4,,41.1,,20.8,,24.0,,NNW,12.4,0,45.6,
-2021-12-13,0.4,-1.7,-0.6,-0.2,0/6/0,977.7,972.6,974.9,,29.9,,12.7,,247.0,,W,0,0,43,
-2021-12-14,1.0,-0.9,0.0,-0.3,0/6/0,977.3,959.7,968.0,,44.9,,20.7,,25.0,,NW,5.3,7,50.2,
-2021-12-15,0.3,-0.9,-0.2,-0.5,0/6/0,965.1,959.3,962.6,,31.3,,15.8,,304.0,,W,0,2,52.2,
-2021-12-16,0.7,-1.3,-0.3,-0.3,0/6/0,987.1,964.9,973.6,,32.9,,18.0,,251.0,,WSW,0.5,0,51.6,
-2021-12-17,1.2,-0.6,0.2,-0.2,0/6/0,998.2,987.1,995.3,,22.5,,10.2,,227.0,,WSW,0,1,52.8,
-2021-12-18,3.9,0.1,1.0,,0/6/0,995.8,972.8,989.8,,26.5,,6.8,,212.0,,NNW,3.3,0,47.8,
-2021-12-19,3.5,-1.0,0.3,,0/6/0,973.7,965.2,969.0,,54.3,,20.4,,28.0,,WSW,2.5,4,52.2,
-2021-12-20,1.1,-1.8,-0.5,,0/6/0,973.5,971.7,972.4,,23.6,,11.0,,250.0,,W,0.3,0,49.6,
-2021-12-21,0.8,-1.5,-0.3,,0/6/0,974.3,970.8,971.6,,15.1,,6.8,,274.0,,W,0.3,1,50.2,
-2021-12-22,1.7,-0.4,0.6,,0/6/0,981.5,966.8,977.2,,34.1,,16.9,,23.0,,NNE,5.6,0,46.6,
-2021-12-23,1.1,0.0,0.3,,0/6/0,978.7,965.8,972.6,,34.3,,17.1,,22.0,,WNW,4.6,7,53.6,
-2021-12-24,3.6,-0.8,1.2,,0/6/0,980.2,970.4,977.1,,32.2,,13.4,,22.0,,NNW,1,0,50.8,
-2021-12-25,3.0,0.3,1.4,,0/6/0,973.1,969.7,971.6,,38.0,,6.7,,26.0,,SE,7.4,0,47.6,
-2021-12-26,4.3,0.7,2.6,,0/6/0,972.2,966.2,968.4,,38.3,,12.2,,6.0,,NNE,2,0,45.2,
-2021-12-27,3.2,-0.1,1.6,,0/6/0,974.9,967.6,970.3,,15.7,,3.5,,38.0,,SSE,0.5,0,40.4,
-2021-12-28,0.3,-1.1,-0.3,,0/6/0,986.2,974.9,980.1,,17.6,,8.7,,234.0,,WSW,0.3,0,39.2,
-2021-12-29,2.6,-0.3,0.7,,0/6/0,988.5,974.0,985.0,,25.5,,6.2,,164.0,,NW,0,0,38.4,
-2021-12-30,4.5,-0.2,2.7,,,975.9,968.5,971.3,,30.4,,15.0,,135.0,,SE,0,,,
-2021-12-31,4.0,0.1,2.1,,0/6/0,978.2,975.9,977.3,,10.8,,2.6,,254.0,,NNW,0,0,36.6,
-2022-01-01,2.4,-0.1,0.8,,0/6/0,978.5,975.1,977.0,,19.5,,3.9,,337.0,,NW,7.9,1,37.6,
-2022-01-02,8.3,-0.1,2.3,,0/6/0,978.4,973.6,975.9,,25.5,,6.1,,91.0,,NNW,0,0,35,
-2022-01-03,6.2,1.9,4.6,,0/6/0,974.6,969.4,971.4,,28.6,,15.4,,125.0,,ESE,0,0,31.6,
-2022-01-04,5.4,2.3,4.1,,0/6/0,980.3,971.6,976.0,,25.2,,8.5,,100.0,,ESE,0,0,30.2,
-2022-01-05,3.4,1.0,1.9,,0/6/0,991.7,980.3,984.0,,9.7,,3.2,,324.0,,W,0,0,29,
-2022-01-06,2.4,0.4,1.0,,0/6/0,995.4,990.8,993.9,,15.4,,4.1,,75.0,,NNW,0,0,27.8,
-2022-01-07,3.4,0.0,0.9,,0/6/0,990.8,986.7,987.5,,15.0,,3.8,,128.0,,SE,0.8,0,27.6,
-2022-01-08,4.4,1.2,2.5,,0/6/0,987.2,980.7,983.4,,14.2,,3.7,,133.0,,SE,0,0,27.4,
-2022-01-09,2.5,0.1,1.0,,0/6/0,981.0,975.7,978.3,,20.3,,10.5,,337.0,,NW,0,0,27,
-2022-01-10,4.9,-0.2,1.8,,0/6/0,975.7,958.0,963.2,,39.2,,14.8,,38.0,,ESE,0,0,26.2,
-2022-01-11,5.1,1.7,3.1,,0/6/0,974.5,958.6,965.6,,25.1,,6.7,,116.0,,NNW,0,0,25.6,
-2022-01-12,2.1,-0.6,0.5,,0/6/0,982.1,974.5,978.3,,12.0,,5.0,,310.0,,ESE,1.5,0,26,
-2022-01-13,3.3,0.1,1.5,,0/6/0,984.7,982.1,983.7,,9.4,,2.5,,341.0,,SE,0,0,24.6,
-2022-01-14,4.0,0.7,1.7,,0/6/0,994.1,984.7,988.4,,9.3,,2.9,,214.0,,NW,0,0,23.6,
-2022-01-15,3.2,0.8,1.6,,0/6/0,1002.3,994.1,998.9,,11.6,,5.3,,296.0,,NNW,0,0,21.2,
-2022-01-16,2.3,-0.8,0.8,,0/6/0,1003.2,998.9,1001.8,,10.2,,4.1,,238.0,,W,0,0,20.6,
-2022-01-17,2.3,-0.2,0.8,,0/6/0,999.0,989.1,995.5,,11.1,,3.3,,335.0,,NNW,0,0,20,
-2022-01-18,1.6,0.1,0.8,,0/6/0,994.9,987.2,989.2,,29.7,,16.0,,223.0,,SW,0,0,20,
-2022-01-19,1.5,0.5,0.9,,0/6/0,997.9,994.0,995.9,,25.1,,10.1,,226.0,,NW,0,0,19.4,
-2022-01-20,4.3,0.1,2.1,,0/6/0,994.1,981.5,986.8,,27.3,,10.4,,11.0,,N,6.1,0,19.2,
-2022-01-21,3.3,-0.3,1.6,,0/6/0,987.3,981.9,985.6,,22.4,,6.9,,1.0,,NNW,1,0,19,
-2022-01-22,7.8,0.7,3.9,,0/6/0,984.1,968.7,976.8,,53.1,,18.5,,34.0,,NNE,9.9,0,14.6,
-2022-01-23,5.4,1.3,3.0,,0/6/0,982.0,978.6,980.4,,39.9,,20.5,,17.0,,NNE,11.9,0,12,
-2022-01-24,6.2,3.0,5.2,,0/6/0,981.2,978.5,979.8,,35.2,,14.9,,31.0,,NE,0,0,9.4,
-2022-01-25,3.5,0.2,1.2,,0/6/0,,,,,18.8,,5.1,,227.0,,SW,0,0,8,
-2022-01-26,3.8,0.1,1.0,,0/6/0,991.4,979.9,985.0,,27.0,,7.6,,17.0,,SE,0.8,0,8,
-2022-01-27,1.8,0.0,1.1,,0/6/0,994.4,980.3,986.3,,22.0,,9.0,,14.0,,SW,1.5,0,8,
-2022-01-28,1.7,0.2,0.8,,0/6/0,998.0,994.4,996.9,,13.3,,5.1,,222.0,,SW,0,0,8,
-2022-01-29,6.9,-0.3,2.0,,0/6/0,998.2,990.5,994.6,,34.1,,5.4,,141.0,,SE,4.3,0,8,
-2022-01-30,6.3,2.0,3.9,,0/6/0,991.3,984.1,988.0,,26.5,,7.7,,34.0,,NNE,3,0,7.8,
-2022-01-31,4.9,1.5,3.2,,0/6/0,984.2,965.8,976.2,,25.1,,7.6,,6.0,,NNE,0,0,7.6,
-2022-02-01,3.2,0.3,1.8,,0/6/0,965.7,952.8,956.0,,11.1,,3.2,,312.0,,NNW,1.3,0,7,
-2022-02-02,1.9,-0.7,0.5,,0/6/0,972.7,956.6,964.1,,26.6,,13.5,,240.0,,WSW,0.8,0,6,
-2022-02-03,1.3,-0.6,0.2,,0/6/0,990.0,972.6,980.8,,27.4,,16.0,,230.0,,SW,0,0,6.2,
-2022-02-04,3.6,0.3,1.3,,0/6/0,995.3,990.0,993.0,,21.4,,5.8,,232.0,,NW,0,0,5.6,
-2022-02-05,7.7,0.6,3.7,,0/6/0,995.3,981.0,989.6,,50.5,,6.3,,33.0,,SE,1,0,4,
-2022-02-06,4.2,-0.8,1.1,,0/6/0,998.3,981.0,991.6,,13.9,,5.3,,310.0,,WSW,4.6,0,3,
-2022-02-07,11.6,-1.9,6.0,,0/6/0,998.6,986.7,993.1,,57.6,,21.2,,52.0,,NE,1.5,0,2.2,
-2022-02-08,11.0,3.2,6.4,,0/6/0,988.9,978.0,983.9,,49.9,,15.2,,26.0,,NE,1,0,0,
-2022-02-09,6.2,1.9,4.5,,0/6/0,1001.3,981.7,993.9,,43.4,,20.0,,11.0,,NNE,0.5,0,0,
-2022-02-10,4.7,1.2,2.8,,0/6/0,1001.4,995.8,999.5,,10.3,,3.0,,138.0,,N,0,0,0,
-2022-02-11,4.5,0.9,2.4,,0/6/0,995.8,974.5,986.8,,29.0,,8.3,,25.0,,NNE,0.3,0,0,
-2022-02-12,2.4,-0.6,1.0,,0/6/0,977.9,964.6,970.4,,20.3,,6.8,,221.0,,WSW,0,0,0,
-2022-02-13,1.4,0.6,0.9,,0/6/0,980.3,977.3,978.4,,25.0,,11.7,,225.0,,SW,0.5,0,0,
-2022-02-14,2.8,-0.3,1.1,,0/6/0,981.8,972.0,979.3,,33.2,,11.0,,140.0,,WSW,0,0,0,
-2022-02-15,5.0,1.4,2.9,,0/6/0,972.1,967.7,969.2,,29.3,,11.1,,75.0,,SE,0,0,0,
-2022-02-16,3.6,0.5,2.2,,0/6/0,980.6,969.4,976.4,,27.3,,6.3,,84.0,,NNW,0,0,0,
-2022-02-17,4.4,1.2,2.9,,0/6/0,978.8,963.6,968.9,,37.9,,19.8,,113.0,,ESE,0,0,0,
-2022-02-18,4.1,0.9,2.3,,0/6/0,992.2,969.6,981.7,,33.9,,11.4,,120.0,,SW,0,0,0,
-2022-02-19,1.4,-1.2,0.5,,0/6/0,1004.2,992.2,999.0,,33.9,,14.1,,233.0,,WSW,0.3,0,0.4,
-2022-02-20,3.8,0.2,1.3,,0/6/0,1007.1,998.8,1004.3,,29.4,,8.7,,352.0,,NNW,8.6,0,0,
-2022-02-21,4.7,0.3,2.1,,0/6/0,998.8,973.5,981.9,,42.0,,21.9,,10.0,,NNW,22.9,0,0,
-2022-02-22,1.6,0.1,0.8,,0/6/0,990.5,976.0,983.0,,19.0,,9.5,,270.0,,WSW,3.8,0,0,
-2022-02-23,1.7,0.9,1.2,,0/6/0,995.0,988.6,993.0,,16.4,,8.2,,346.0,,WSW,0,0,0,
-2022-02-24,1.5,-0.1,0.7,,0/6/0,988.7,977.5,980.9,,16.4,,4.9,,346.0,,NW,1.5,0,0,
-2022-02-25,3.5,0.7,2.0,,0/6/0,982.9,977.2,981.3,,39.8,,13.6,,26.0,,NNE,0,0,0,
-2022-02-26,3.4,1.0,2.5,,0/6/0,979.8,976.7,978.1,,37.8,,14.6,,41.0,,NNE,0,0,0,
-2022-02-27,4.1,1.8,2.8,,0/6/0,979.2,973.7,975.9,,33.1,,10.3,,76.0,,ENE,1.3,0,0,
-2022-02-28,2.8,0.2,1.5,,0/6/0,986.0,979.2,982.8,,18.5,,3.0,,330.0,,NNW,1,0,0,
-2022-03-01,1.8,-0.7,0.6,,0/6/0,995.3,986.0,989.5,,7.6,,1.5,,237.0,,SW,0,0,0,
-2022-03-02,2.7,-0.4,1.0,,0/6/0,1001.8,995.3,998.9,,10.6,,2.1,,35.0,,NE,0,0,0,
-2022-03-03,3.4,-1.2,1.3,,0/6/0,1002.8,1001.3,1002.1,,28.4,,9.5,,49.0,,NE,0,0,0,
-2022-03-04,1.0,-0.9,0.1,,0/6/0,1002.1,1000.2,1001.1,,17.8,,4.2,,32.0,,SE,0,0,0,
-2022-03-05,0.8,-1.2,-0.3,,0/6/0,1001.6,999.1,1000.0,,9.8,,3.5,,164.0,,ESE,0,0,0,
-2022-03-06,0.5,-2.3,-1.0,,0/6/0,1003.1,999.7,1001.3,,10.4,,2.3,,23.0,,ESE,0,0,0,
-2022-03-07,1.0,-2.1,-0.5,,0/6/0,1003.7,1003.0,1003.4,,18.5,,4.9,,10.0,,SE,0,0,0,
-2022-03-08,3.5,0.1,1.4,,0/6/0,1003.1,999.8,1001.9,,24.2,,4.2,,41.0,,SE,0,0,0,
-2022-03-09,5.8,0.6,3.4,,0/6/0,1000.7,987.5,993.5,,55.8,,19.6,,33.0,,NNE,2,0,0,
-2022-03-10,3.3,1.4,2.1,,0/6/0,1004.8,993.2,1000.5,,24.5,,10.3,,9.0,,NW,0,0,0,
-2022-03-11,4.0,1.0,2.4,,0/6/0,1000.5,983.7,989.9,,56.9,,26.1,,26.0,,NNW,10.4,0,0,
-2022-03-12,2.7,0.7,1.7,,0/6/0,987.4,983.2,986.1,,31.0,,12.2,,344.0,,NNW,1,0,0,
-2022-03-13,3.0,1.0,2.1,,0/6/0,983.1,978.4,979.8,,28.0,,6.5,,21.0,,N,0,0,0,
-2022-03-14,1.2,-0.4,0.3,,0/6/0,986.2,979.9,984.1,,31.9,,6.9,,28.0,,NNW,0.5,0,0,
-2022-03-15,1.1,-1.2,-0.1,,0/6/0,988.7,985.0,987.6,,32.8,,8.1,,31.0,,ENE,0,0,0,
-2022-03-16,-0.3,-3.0,-1.5,,0/6/0,989.6,988.1,988.5,,9.3,,2.9,,343.0,,NE,0,0,0,
-2022-03-17,-0.2,-1.5,-0.8,,0/6/0,997.0,989.1,992.0,,19.0,,5.7,,323.0,,SW,0.3,4,4.2,
-2022-03-18,-0.3,-1.7,-1.1,,0/6/0,1006.1,997.0,1002.4,,18.5,,9.1,,228.0,,SW,0,0,0,
-2022-03-19,4.0,-0.3,1.4,,0/6/0,1005.4,993.8,999.7,,34.1,,13.2,,27.0,,NNE,1.3,0,0,
-2022-03-20,2.9,-0.5,1.4,,0/6/0,993.8,974.5,982.5,,39.9,,20.5,,5.0,,NNE,29,5,4.6,
-2022-03-21,1.8,-0.8,0.9,,0/6/0,974.8,954.8,962.9,,77.2,,28.5,,33.0,,NW,8.9,0,0.4,
-2022-03-22,0.8,-1.4,-0.5,,20690,968.9,962.1,965.4,,34.6,,10.5,,222.0,,SSW,0,0,0,
-2022-03-23,1.5,-2.6,-0.5,,0/6/0,986.3,966.5,979.9,,42.8,,21.9,,31.0,,SW,1,0,0,
-2022-03-24,2.4,1.0,1.7,,0/6/0,985.9,974.4,981.0,,63.8,,29.5,,31.0,,NNE,31,0,0,
-2022-03-25,3.2,1.3,2.4,,0/6/0,985.7,972.8,978.9,,58.4,,27.6,,31.0,,N,26.7,0,0,
-2022-03-26,3.5,1.0,2.0,,0/6/0,984.3,976.4,982.2,,42.7,,21.4,,347.0,,N,0.5,0,0,
-2022-03-27,2.9,-0.1,1.0,,0/6/0,988.4,979.8,985.6,,39.3,,8.5,,22.0,,NNE,4.6,0,0,
-2022-03-28,3.2,0.5,1.7,,0/6/0,984.2,978.4,980.1,,29.1,,18.6,,117.0,,ESE,0,0,0,
-2022-03-29,1.0,-1.2,-0.2,,0/6/0,990.9,984.2,988.5,,21.8,,7.6,,134.0,,ESE,1,0,0,
-2022-03-30,0.8,-1.2,0.0,,0/6/0,993.6,988.2,991.8,,17.8,,5.4,,77.0,,SW,0.3,4,3.6,
-2022-03-31,3.4,-0.6,1.6,,0/6/0,988.2,967.3,975.6,,61.0,,19.2,,34.0,,NNE,0.5,0,0.4,
-2022-04-01,3.6,0.4,1.5,,0/6/0,973.7,960.1,966.9,,46.2,,15.2,,34.0,,NNW,2.5,5,5,
-2022-04-02,2.4,0.4,1.4,,0/6/0,980.9,973.7,978.1,,48.9,,20.5,,41.0,,NNE,2,0,0.8,
-2022-04-03,3.5,1.2,2.5,,0/6/0,974.9,961.1,966.4,,49.3,,22.8,,33.0,,NNE,9.7,0,0,
-2022-04-04,2.0,-1.8,0.0,,0/6/0,971.2,963.2,965.7,,25.3,,6.6,,148.0,,ESE,1.3,6,5.6,
-2022-04-05,-0.3,-2.7,-1.1,,0/6/0,981.7,971.1,977.8,,23.3,,4.9,,152.0,,WSW,0,0,2.6,
-2022-04-06,-1.3,-4.7,-2.4,,0/6/0,995.8,980.6,985.9,,26.6,,11.9,,213.0,,ESE,0.5,1,3.2,
-2022-04-07,-1.5,-4.6,-2.8,,20690,1003.3,995.8,1000.3,,13.3,,4.2,,256.0,,NE,0,0,1.4,
-2022-04-08,3.1,-2.2,-0.9,,20690,1003.3,993.3,1000.4,,15.3,,3.6,,84.0,,SE,1.3,0,1.2,
-2022-04-09,3.7,0.7,1.6,,0/6/0,993.3,973.5,981.8,,39.0,,14.1,,43.0,,NE,5.1,0,0,
-2022-04-10,2.2,-0.6,0.5,,0/6/0,975.1,971.0,973.5,,37.4,,15.4,,3.0,,NW,1.5,5,5.4,
-2022-04-11,1.6,-1.3,0.1,,0/6/0,977.7,972.1,975.5,,37.6,,15.8,,26.0,,NNW,1.3,4,9.6,
-2022-04-12,3.9,-0.7,1.7,,0/6/0,972.9,959.2,965.2,,36.2,,16.5,,22.0,,ESE,0.5,1,11,
-2022-04-13,2.3,-0.1,0.6,,0/6/0,971.1,961.7,968.2,,23.1,,7.0,,41.0,,N,0,0,5,
-2022-04-14,1.3,-1.0,-0.1,,0/6/0,966.6,960.9,964.3,,24.4,,7.7,,145.0,,SE,0.5,3,8,
-2022-04-15,0.3,-2.1,-0.8,,0/6/0,985.8,963.4,974.9,,22.5,,6.9,,307.0,,SW,3.6,6,13.6,
-2022-04-16,-1.3,-3.2,-2.2,,0/6/0,1004.0,985.8,995.3,,30.1,,15.6,,219.0,,SW,0,1,14.2,
-2022-04-17,-1.3,-2.7,-1.9,,20690,1004.7,993.6,1002.1,,16.2,,4.9,,229.0,,NNE,0,0,14.2,
-2022-04-18,0.4,-2.7,-1.3,,20690,993.6,983.1,987.1,,22.0,,3.8,,159.0,,NNW,2.3,6,20.4,
-2022-04-19,4.8,-0.6,2.0,,0/6/0,994.0,985.7,991.5,,37.9,,10.1,,54.0,,SE,2,0,18.6,
-2022-04-20,4.8,-0.6,2.0,,0/6/0,985.7,974.5,980.1,,37.8,,6.0,,54.0,,SE,0.5,0,9.4,
-2022-04-21,0.5,-1.3,-0.5,,20690,981.6,973.2,976.2,,11.0,,3.3,,128.0,,N,0,0,8.8,
-2022-04-22,1.2,-1.8,-0.7,,0/6/0,982.8,980.3,981.9,,28.4,,7.1,,29.0,,NNE,0,0,8.6,
-2022-04-23,2.8,-1.0,1.1,,0/6/0,981.0,976.4,978.4,,39.5,,16.3,,43.0,,NE,0,0,8.4,
-2022-04-24,2.1,-0.6,1.1,,0/6/0,990.1,980.8,986.2,,31.8,,10.9,,26.0,,NNE,0.5,0,8,
-2022-04-25,0.0,-1.2,-0.6,,0/6/0,990.5,986.0,988.3,,7.6,,1.3,,352.0,,NNW,3.8,2,10.4,
-2022-04-26,-0.7,-2.0,-1.5,,20690,991.8,986.4,988.6,,9.7,,2.0,,121.0,,NW,3.6,19,29.8,
-2022-04-27,-0.2,-4.5,-2.5,,0/6/0,993.9,980.8,990.6,,41.0,,9.7,,21.0,,WSW,1.3,0,29.2,
-2022-04-28,-2.1,-5.8,-3.9,,0/6/0,997.1,980.7,988.5,,39.6,,10.0,,125.0,,SE,0.8,0,13.4,
-2022-04-29,-2.9,-4.9,-4.0,,0/6/0,1006.5,997.1,1001.5,,12.2,,4.2,,181.0,,ENE,0,0,13.4,
-2022-04-30,-2.6,-5.1,-3.7,,20690,1008.2,1000.2,1006.1,,16.6,,7.6,,119.0,,NNE,0,0,12.2,
-2022-05-01,3.4,-2.5,0.5,,20690,1000.2,987.4,992.0,,31.4,,8.7,,31.0,,SSE,0.3,0,12,
-2022-05-02,4.0,-1.3,1.1,,0/6/0,990.5,967.6,980.1,,51.3,,16.4,,36.0,,NE,0.3,0,11.2,
-2022-05-03,1.7,-1.8,0.4,,0/6/0,968.4,963.3,965.5,,52.8,,30.6,,44.0,,NE,7.1,9,20,
-2022-05-04,0.6,-3.3,-1.8,,0/6/0,967.4,961.7,964.5,,59.2,,22.5,,39.0,,E,0,0,17,
-2022-05-05,1.3,-2.6,-0.6,,0/6/0,970.9,964.8,967.2,,50.8,,23.8,,32.0,,NNE,0,0,14.6,
-2022-05-06,1.1,-2.1,-0.7,,0/6/0,979.8,965.1,972.0,,29.3,,13.5,,315.0,,N,0.5,3,17.6,
-2022-05-07,-0.9,-5.8,-3.2,,20690,983.5,976.4,981.3,,25.0,,5.5,,119.0,,SE,0,1,18.8,
-2022-05-08,-1.0,-3.3,-1.9,,20690,979.8,974.3,976.3,,30.9,,6.8,,83.0,,N,0,0,17.6,
-2022-05-09,-1.8,-4.9,-3.7,,20690,992.4,979.8,984.7,,36.3,,15.6,,37.0,,NNE,0,4,21.8,
-2022-05-10,3.0,-6.0,-2.7,,20690,996.7,987.5,993.3,,57.9,,14.9,,27.0,,NE,0.3,1,23.2,
-2022-05-11,3.3,0.4,1.9,,0/6/0,988.7,976.8,982.1,,47.3,,24.8,,39.0,,NNW,13.5,0,15.4,
-2022-05-12,1.8,0.7,1.2,,0/6/0,1005.5,988.7,997.0,,28.4,,17.8,,324.0,,NNW,0.8,0,14,
-2022-05-13,6.3,0.8,2.7,-0.5,0/6/0,1009.6,1002.4,1006.7,,35.6,,13.2,,129.0,,NNE,0,0,13,
-2022-05-14,6.1,1.5,3.8,,0/6/0,1002.7,994.3,997.7,,41.2,,12.0,,35.0,,ENE,1,0,6.4,
-2022-05-15,4.1,-1.7,0.8,,0/6/0,1007.1,994.3,1001.0,,32.4,,9.7,,44.0,,WNW,1.8,2,8.2,
-2022-05-16,4.2,-1.3,1.3,,0/6/0,1000.5,975.0,985.6,,68.5,,33.2,,37.0,,N,43.9,0,6.6,
-2022-05-17,0.1,-1.2,-0.5,,0/6/0,1015.9,996.5,1011.0,,41.4,,10.4,,234.0,,SW,0,1,8,
-2022-05-18,4.6,-2.0,0.9,,0/6/0,1010.1,994.0,999.3,,26.2,,8.2,,119.0,,SE,1.3,1,8.8,
-2022-05-19,3.9,-0.1,1.1,,20690,999.6,994.9,997.1,,21.7,,6.9,,339.0,,NNW,0.8,0,6.4,
-2022-05-20,6.2,0.6,3.3,,20690,996.5,992.1,994.1,,58.2,,15.6,,19.0,,NNE,5.6,0,2.2,
-2022-05-21,9.0,0.5,3.8,,0/6/0,992.2,982.2,986.0,,42.6,,8.1,,48.0,,SE,0.8,0,1.6,
-2022-05-22,0.5,-1.6,-0.3,,20690,988.7,979.3,982.2,,16.3,,4.4,,288.0,,WNW,11.7,20,21.6,
-2022-05-23,-1.6,-4.4,-3.1,,20690,989.6,981.8,986.2,,14.9,,4.8,,223.0,,SW,0,2,24,
-2022-05-24,-1.0,-4.1,-2.6,,20690,982.0,969.1,975.3,,31.4,,8.2,,226.0,,WSW,0.3,1,24.6,
-2022-05-25,-1.9,-5.6,-3.6,,20690,982.4,970.6,977.8,,23.7,,9.2,,222.0,,SW,0.3,0,24.8,
-2022-05-26,-3.2,-7.2,-5.1,,20690,985.4,974.4,979.7,,27.2,,8.8,,130.0,,ESE,0.3,2,27,
-2022-05-27,-3.6,-5.9,-4.7,-0.9,20690,994.2,985.2,988.8,,21.9,,7.4,,222.0,,SSW,0,0,24.8,
-2022-05-28,-2.4,-6.0,-4.4,-0.9,20690,999.0,994.0,995.5,,18.6,,4.0,,150.0,,NE,0,0,23.6,
-2022-05-29,-1.8,-3.9,-2.7,-1.3,20690,999.2,996.4,998.1,,9.3,,4.1,,11.0,,NNE,0,0,22.6,
-2022-05-30,1.0,-3.2,-1.7,-1.4,20690,1003.3,996.7,999.8,,8.8,,2.0,,257.0,,NNE,0,0,21.8,
-2022-05-31,-0.2,-3.2,-1.9,-1.5,20690,1006.7,1001.6,1004.7,,10.4,,4.0,,115.0,,N,0,0,21.8,
-2022-06-01,-0.3,-2.5,-1.5,-1.4,30690,1001.7,994.2,997.4,,23.6,,10.5,,305.0,,NNW,0,1,22.4,
-2022-06-02,1.0,-1.6,-0.3,-1.4,20690,994.3,965.3,981.7,,54.5,,31.2,,36.0,,N,17.8,4,26.2,
-2022-06-03,0.8,-2.7,-1.4,-1.3,20690,970.9,962.3,966.2,,44.2,,16.5,,3.0,,NNW,1.8,4,29.4,
-2022-06-04,1.7,-4.0,-1.0,-0.7,20690,967.1,944.5,953.8,,49.0,,21.5,,42.0,,ESE,2.3,6,35.4,
-2022-06-05,2.6,-3.8,-1.5,-0.3,20690,964.4,947.0,957.7,,52.8,,23.1,,27.0,,NE,6.6,0,34.8,
-2022-06-06,3.9,-2.0,1.9,-0.1,20690,962.8,949.5,955.1,,53.4,,27.6,,54.0,,NNE,24.1,0,27,
-2022-06-07,2.0,-2.2,0.3,-0.3,20690,973.3,959.5,966.2,,69.2,,30.9,,41.0,,N,5.3,0,24.6,
-2022-06-08,5.1,-0.6,2.0,-0.3,20690,988.7,968.9,974.4,,69.4,,39.8,,31.0,,NNE,40.9,0,22,
-2022-06-09,1.1,-2.5,-0.9,-0.4,20690,1001.5,988.7,997.3,,36.9,,18.7,,24.0,,NNE,0,0,18.8,
-2022-06-10,2.2,0.9,1.5,-0.4,20690,1001.5,980.2,994.9,,49.9,,30.4,,20.0,,NNE,2.3,0,19.2,
-2022-06-11,3.7,-2.2,0.2,-0.3,20690,987.3,970.7,978.2,,37.7,,15.5,,62.0,,W,1,1,20.6,
-2022-06-12,0.2,-2.6,-1.2,-0.5,20690,987.3,979.2,982.9,,35.0,,14.3,,19.0,,NNE,0,2,23,
-2022-06-13,1.3,-2.9,-0.2,-0.7,20690,983.7,967.1,974.5,,49.5,,23.9,,39.0,,NNE,10.2,5,28.2,
-2022-06-14,-2.2,-6.6,-4.4,-0.8,20690,983.4,971.6,979.8,,48.4,,20.3,,246.0,,SW,0,4,32.4,
-2022-06-15,-2.4,-6.6,-4.2,-0.7,20690,980.1,953.3,962.4,,50.5,,25.9,,85.0,,ESE,0.3,2,34.6,
-2022-06-16,-4.5,-6.3,-5.2,-0.7,20690,984.7,962.5,976.2,,37.4,,9.6,,143.0,,SE,0,1,36,
-2022-06-17,-4.1,-6.7,-5.5,-0.7,20690,995.3,984.6,990.8,,32.6,,12.3,,135.0,,ESE,0,0,36,
-2022-06-18,-4.4,-7.6,-5.8,-0.7,20690,996.1,995.0,995.7,,23.2,,8.9,,138.0,,ESE,0,0,36,
-2022-06-19,-4.2,-6.7,-6.0,-1.2,20690,1002.2,995.7,998.3,,15.8,,3.7,,229.0,,NE,0,0,35.8,
-2022-06-20,-4.1,-5.7,-4.9,-1.1,20690,1002.2,991.0,998.7,,20.6,,9.2,,211.0,,SW,0,1,37,
-2022-06-21,-3.1,-5.4,-4.1,-1.0,20690,995.9,988.0,992.3,,39.5,,14.3,,223.0,,SW,0,3,40.4,
-2022-06-22,-4.2,-6.9,-5.2,-0.9,20690,996.8,988.2,992.2,,29.0,,9.4,,130.0,,SSW,0,2,42.4,
-2022-06-23,-3.2,-7.0,-5.1,-1.5,20690,1002.7,996.8,1000.8,,12.9,,4.3,,230.0,,NE,0,0,42,
-2022-06-24,-1.3,-4.3,-2.3,-1.5,30690,1002.0,995.7,998.4,,14.0,,4.0,,279.0,,W,0.3,1,42.6,
-2022-06-25,1.0,-3.0,-1.5,-1.5,30690,997.1,975.1,987.6,,20.1,,4.7,,158.0,,NNW,1.3,1,43.6,
-2022-06-26,-0.4,-2.6,-1.6,-1.4,30690,975.1,961.2,965.9,,10.2,,2.9,,141.0,,SE,0.5,3,46.8,
-2022-06-27,0.4,-1.9,-0.9,-1.3,30792,976.5,963.5,970.0,,43.3,,12.0,,14.0,,NE,5.8,3,50,
-2022-06-28,1.1,-3.8,-1.0,-0.8,20690,976.8,967.2,972.5,,52.5,,16.4,,40.0,,N,2.5,0,46.2,
-2022-06-29,-1.5,-4.5,-2.9,-0.9,20790,984.3,976.2,980.2,,15.1,,6.7,,6.0,,NE,0,0,46,
-2022-06-30,-2.8,-5.6,-4.0,-1.0,20790,990.8,984.3,986.9,,8.1,,2.6,,169.0,,NE,0,0,46,
-2022-07-01,-3.2,-5.4,-4.0,-1.2,20790,996.5,990.4,993.5,,13.2,,3.6,,71.0,,ESE,0,0,45.4,
-2022-07-02,-3.4,-7.1,-5.2,-1.2,20790,1001.5,996.5,999.2,,16.9,,3.2,,32.0,,NE,0,0,45.6,
-2022-07-03,1.8,-6.1,-2.4,-1.2,20790,1001.9,995.3,998.9,,31.5,,7.9,,28.0,,NE,0,0,45.6,
-2022-07-04,2.2,-0.9,0.5,-1.0,20790,995.9,992.3,993.8,,34.3,,7.6,,28.0,,ESE,0,0,45,
-2022-07-05,1.7,-1.2,-0.3,-1.0,20790,992.8,982.0,987.5,,16.6,,2.5,,77.0,,N,0,0,44.6,
-2022-07-06,0.5,-1.2,-0.3,-1.1,20790,982.0,978.7,980.0,,17.3,,5.4,,319.0,,SSW,0.3,2,46.2,
-2022-07-07,-1.0,-3.4,-2.0,-1.3,20790,984.1,981.2,982.8,,13.1,,4.8,,332.0,,NNE,0,0,45.6,
-2022-07-08,-1.8,-5.6,-3.6,-1.4,20790,982.6,980.2,981.3,,21.2,,8.8,,241.0,,SW,0.3,3,48.2,
-2022-07-09,-3.4,-7.5,-5.7,-1.6,20790,991.2,981.0,984.7,,30.6,,9.8,,227.0,,WSW,0,3,51,
-2022-07-10,-4.5,-6.9,-5.8,-1.6,20790,1002.9,991.2,998.6,,26.2,,8.1,,222.0,,SW,0,0,49.4,
-2022-07-11,-0.3,-5.4,-2.2,-1.7,30790,1003.9,1001.5,1002.5,,12.2,,4.4,,122.0,,NNW,0.5,1,50.4,
-2022-07-12,-1.7,-4.3,-3.0,-1.6,20790,1012.2,1003.8,1007.6,,15.6,,6.1,,31.0,,NE,0,0,50.8,
-2022-07-13,-2.2,-3.2,-2.6,-1.5,20690,1014.6,1012.2,1013.6,,14.8,,5.1,,231.0,,WSW,0,0,50.2,
-2022-07-14,-1.8,-2.9,-2.2,-1.4,20690,1014.5,1012.2,1013.3,,20.9,,8.7,,250.0,,WSW,0,0,49.8,
-2022-07-15,0.6,-3.2,-1.5,-1.6,20690,1014.0,1000.9,1009.9,,35.8,,13.2,,10.0,,NNE,0,0,49.4,
-2022-07-16,1.8,0.2,0.9,-1.3,20690,1000.8,971.7,984.9,,69.9,,37.4,,20.0,,NNE,20.6,0,49.2,
-2022-07-17,2.3,1.1,1.6,-1.2,20690,979.0,974.1,976.8,,54.1,,37.9,,28.0,,NNE,15.2,0,48.8,
-2022-07-18,1.9,-1.1,0.4,-1.0,20690,977.2,972.6,975.2,,41.3,,11.9,,34.0,,NNE,5.3,0,48.4,
-2022-07-19,-0.6,-3.1,-1.9,-1.0,20690,972.6,965.0,968.1,,13.3,,3.5,,324.0,,WNW,0.5,3,51.6,
-2022-07-20,-2.7,-5.2,-3.8,-1.1,20690,969.9,965.3,967.9,,16.0,,5.4,,144.0,,SE,0,1,53,
-2022-07-21,-4.5,-7.8,-5.9,-0.9,20790,976.4,969.6,971.5,,27.8,,8.7,,127.0,,SE,0,1,53.8,
-2022-07-22,-3.4,-9.0,-5.4,-1.1,20790,984.8,976.4,982.2,,17.3,,6.6,,122.0,,NE,0,0,52.8,
-2022-07-23,-3.2,-5.2,-3.9,-1.2,20790,994.7,984.8,990.0,,13.6,,4.2,,258.0,,WSW,0,0,51.6,
-2022-07-24,0.3,-5.1,-1.4,-1.4,20790,993.5,972.9,979.6,,49.4,,23.0,,30.0,,NNE,6.9,4,55.4,
-2022-07-25,-1.5,-6.0,-3.6,-1.4,20790,977.2,965.9,970.6,,49.4,,21.0,,254.0,,WSW,0,0,54.6,
-2022-07-26,0.6,-5.8,-1.0,-1.4,20690,979.0,965.0,973.6,,39.3,,20.4,,331.0,,NNW,1,7,61.2,
-2022-07-27,1.2,-2.2,0.0,-1.5,30690,973.3,966.8,968.0,,44.7,,18.2,,353.0,,NNW,9.7,4,64.8,
-2022-07-28,-0.3,-6.0,-3.3,-1.5,30690,972.3,957.8,968.4,,40.3,,11.3,,34.0,,SSW,0,0,64.4,
-2022-07-29,0.3,-4.6,-2.1,-1.4,20790,960.0,954.7,958.3,,49.9,,10.8,,39.0,,NNE,1,1,65.8,
-2022-07-30,-2.8,-6.5,-4.8,-1.3,20690,966.7,957.2,961.6,,32.6,,12.4,,134.0,,SE,0,0,62.6,
-2022-07-31,-3.5,-8.6,-5.5,-1.4,20790,987.3,964.3,975.1,,31.9,,8.4,,142.0,,ESE,0,0,62.6,
-2022-08-01,0.7,-4.9,-2.7,-1.3,20790,988.4,980.4,985.5,,54.9,,13.9,,36.0,,SE,0,1,63.6,
-2022-08-02,2.8,-4.0,-0.9,-1.2,20790,998.5,974.3,983.2,,45.9,,24.5,,29.0,,WSW,1,8,71.8,
-2022-08-03,-2.7,-5.4,-3.6,-1.3,20790,1013.7,998.4,1007.5,,24.5,,7.3,,231.0,,SW,0,0,72,
-2022-08-04,-1.0,-5.7,-4.2,-1.5,20790,1015.0,1007.7,1013.3,,26.9,,7.6,,63.0,,E,0,0,71.4,
-2022-08-05,-0.4,-3.3,-1.8,-1.1,20790,1007.7,995.9,1001.3,,60.9,,25.5,,20.0,,NNE,2.5,0,62.6,
-2022-08-06,0.9,-3.6,-1.3,-1.3,20790,1008.8,1000.7,1004.9,,49.5,,20.3,,1.0,,NNW,3.3,5,67.2,
-2022-08-07,0.7,-0.4,0.1,-1.4,30790,1005.0,996.0,1001.1,,44.8,,23.8,,2.0,,NNW,2.8,25,92.2,
-2022-08-08,1.2,-0.3,0.4,-1.5,30790,1003.7,1001.4,1002.7,,27.5,,16.2,,5.0,,N,1.8,19,110.8,
-2022-08-09,3.0,-0.4,1.4,-1.3,20790,1002.5,990.5,997.0,,39.1,,13.3,,29.0,,NE,2.3,0,110.6,
-2022-08-10,2.7,0.1,1.5,-1.0,20790,990.7,981.2,985.5,,53.9,,31.7,,41.0,,NE,17.8,0,105,
-2022-08-11,1.6,-0.5,0.9,-1.3,20790,987.9,984.2,986.7,,47.5,,28.5,,309.0,,N,7.1,0,98.8,
-2022-08-12,1.5,-0.3,0.6,-1.2,20790,987.9,984.6,986.1,,45.1,,28.3,,19.0,,NNE,1,0,99.2,
-2022-08-13,0.9,-3.4,-1.6,-1.2,20790,990.7,987.4,989.5,,24.7,,4.1,,53.0,,NNE,0,0,98.8,
-2022-08-14,0.7,-3.8,-0.8,-1.1,20790,989.7,986.3,987.7,,28.2,,15.4,,119.0,,ESE,0,0,97.8,
-2022-08-15,0.2,-3.0,-1.8,-1.2,20790,991.2,987.0,989.2,,19.5,,3.7,,115.0,,NE,0,0,97.2,
-2022-08-16,-2.4,-5.2,-3.7,-1.3,20790,1002.2,991.1,996.8,,19.9,,8.2,,24.0,,NE,0,0,97,
-2022-08-17,-3.5,-5.5,-4.5,-1.3,20790,1003.8,999.6,1002.6,,22.9,,10.0,,35.0,,NE,0,0,96.2,
-2022-08-18,-0.5,-5.6,-3.6,-1.3,20790,999.7,976.0,989.6,,46.2,,17.8,,44.0,,ESE,0,0,95.8,
-2022-08-19,0.4,-2.1,-0.8,-1.2,20790,987.6,975.8,979.8,,49.6,,9.5,,31.0,,NE,0,0,96.2,
-2022-08-20,2.0,-2.0,-0.2,-1.4,20790,997.0,987.5,993.3,,35.8,,9.5,,28.0,,NE,0,0,95.8,
-2022-08-21,2.1,-0.5,1.4,-1.2,20790,996.8,966.2,984.6,,65.0,,27.7,,12.0,,NE,8.4,0,95.6,
-2022-08-22,1.3,-1.1,0.2,-1.2,20790,973.2,968.7,970.6,,45.9,,22.7,,4.0,,N,4.3,3,98.4,
-2022-08-23,1.6,-0.9,0.6,-1.4,30790,969.2,951.8,960.5,,59.3,,35.2,,26.0,,NNE,25.9,8,106,
-2022-08-24,-0.2,-3.0,-1.1,-1.4,20790,960.9,951.6,957.9,,51.4,,25.9,,31.0,,NNW,1.8,0,106,
-2022-08-25,0.3,-5.0,-1.4,-1.5,20790,962.9,949.2,955.6,,47.3,,19.6,,3.0,,N,2,0,106.2,
-2022-08-26,-2.7,-6.3,-4.5,-1.4,20790,974.2,961.1,964.5,,27.2,,11.8,,126.0,,ESE,0,2,108.4,
-2022-08-27,-1.4,-5.6,-3.6,-1.4,20790,985.5,974.2,980.3,,14.9,,5.3,,185.0,,NE,0,0,108.4,
-2022-08-28,-1.8,-5.8,-3.5,-1.4,20790,,,,,21.0,,6.4,,123.0,,WSW,0,0,107.6,
-2022-08-29,0.8,-3.2,-0.9,-1.3,20790,984.1,971.6,977.9,,62.7,,19.8,,39.0,,NNE,0.5,0,108,
-2022-08-30,3.6,-1.4,0.8,-1.3,20790,988.3,982.4,986.6,,42.0,,12.9,,29.0,,NNW,0.3,2,110.2,
-2022-08-31,3.7,1.0,1.9,-1.2,20790,982.9,971.5,975.8,,50.6,,33.3,,8.0,,NNE,6.1,0,109,
-2022-09-01,1.5,-2.8,-0.6,-1.3,20790,978.9,970.1,974.1,,42.0,,19.0,,4.0,,N,4.6,0,107.4,
-2022-09-02,1.6,-2.5,-1.0,-1.3,20790,979.0,969.3,974.0,,31.7,,14.2,,25.0,,W,0.8,2,109.2,
-2022-09-03,-2.2,-4.5,-3.5,-1.4,20790,987.2,979.0,983.0,,25.0,,11.2,,234.0,,WSW,0.5,2,111.6,
-2022-09-04,0.4,-5.2,-2.0,-1.4,20790,987.3,974.0,980.9,,50.7,,17.5,,24.0,,NE,1.5,0,108.6,
-2022-09-05,1.9,-2.3,-0.5,-1.2,20790,979.3,952.0,963.1,,37.6,,19.2,,47.0,,ESE,1,0,106.8,
-2022-09-06,0.4,-2.9,-1.5,-1.2,20790,988.2,955.4,970.3,,27.2,,9.2,,117.0,,ESE,0,0,106.6,
-2022-09-07,-1.3,-3.8,-2.7,-1.3,20790,999.5,988.2,996.1,,15.3,,4.8,,82.0,,ENE,0,0,106.6,
-2022-09-08,1.5,-5.2,-3.0,-1.3,20790,999.6,978.2,993.2,,37.0,,13.7,,41.0,,NE,0,0,106.2,
-2022-09-09,2.9,0.2,1.5,-1.2,20790,978.1,959.7,964.6,,52.3,,21.1,,41.0,,NE,4.8,0,106,
-2022-09-10,0.6,-1.6,-0.8,-1.2,20790,974.6,960.8,967.6,,30.7,,8.9,,18.0,,WNW,3.8,12,117.6,
-2022-09-11,1.4,-2.3,0.0,-1.3,30790,975.2,968.6,971.9,,44.0,,18.3,,11.0,,NNE,4.3,0,116.4,
-2022-09-12,0.9,-2.2,-0.6,-1.4,20790,992.3,974.2,983.1,,55.7,,19.7,,23.0,,NNW,3.6,1,117.6,
-2022-09-13,3.0,0.2,1.6,-1.4,20790,995.1,984.7,992.3,,47.6,,27.7,,40.0,,N,3.3,0,116.8,
-2022-09-14,2.8,-1.0,1.0,-1.0,20790,984.9,970.6,977.9,,47.7,,21.3,,23.0,,E,1.5,1,117.4,
-2022-09-15,2.2,-0.9,1.0,-1.1,20790,978.5,962.9,969.7,,57.1,,23.0,,21.0,,NNE,5.8,1,118.2,
-2022-09-16,-0.4,-4.5,-3.0,-1.1,20790,977.9,964.8,974.2,,30.5,,10.8,,253.0,,W,0.5,4,122,
-2022-09-17,-1.6,-3.4,-2.3,-1.2,20790,995.9,976.2,984.2,,21.4,,8.1,,240.0,,SW,0.5,0,121.6,
-2022-09-18,0.1,-3.7,-1.7,-1.2,20790,1006.4,995.8,1002.2,,21.4,,7.2,,240.0,,NW,0,0,121.6,
-2022-09-19,1.9,-0.6,0.8,-1.4,30790,1008.4,1004.7,1006.6,,33.9,,17.9,,19.0,,NNE,15.2,0,121.6,
-2022-09-20,1.7,0.9,1.3,-1.4,20790,1004.9,999.9,1003.1,,32.7,,22.9,,5.0,,N,9.9,0,121.2,
-2022-09-21,3.6,1.1,2.0,-1.3,20790,1000.3,982.7,992.8,,65.7,,36.2,,27.0,,NNE,42.7,3,124,
-2022-09-22,2.5,0.7,1.6,-1.1,20790,983.3,970.7,975.8,,63.1,,40.0,,29.0,,NNE,52.6,0,109.2,
-2022-09-23,2.9,0.6,1.3,-1.1,20690,987.0,976.4,983.2,,51.3,,31.0,,22.0,,N,7.4,0,108.8,
-2022-09-24,2.2,-1.8,0.1,-1.0,20690,986.5,979.1,983.1,,54.0,,21.1,,28.0,,NNE,10.4,0,108.6,
-2022-09-25,-1.3,-4.2,-2.5,-1.1,20690,986.6,982.4,983.9,,15.8,,4.2,,19.0,,ESE,0,1,109.2,
-2022-09-26,-1.1,-4.6,-3.3,-1.0,20690,982.9,980.4,982.2,,14.8,,5.0,,26.0,,NE,0,0,109,
-2022-09-27,-0.2,-4.9,-2.2,-1.1,20690,986.1,973.3,977.5,,20.1,,5.5,,30.0,,N,0,0,108.2,
-2022-09-28,2.7,-3.1,-0.4,-1.0,20690,991.0,969.2,982.9,,53.1,,20.2,,18.0,,NNE,3.6,0,108.4,
-2022-09-29,2.5,0.5,1.2,-1.1,20690,976.0,968.7,972.2,,51.7,,32.4,,348.0,,N,1.5,0,107.2,
-2022-09-30,1.0,-0.7,0.1,-1.3,20690,974.7,964.8,970.5,,49.9,,25.9,,13.0,,NNW,1,2,108.8,
-2022-10-01,-0.1,-2.0,-0.7,-1.4,30690,982.2,969.7,976.6,,40.0,,18.9,,353.0,,NW,0.3,0,108.4,
-2022-10-02,0.4,-1.5,-0.5,-1.4,20690,994.2,975.5,984.9,,42.9,,15.2,,17.0,,NW,2,1,109.8,
-2022-10-03,-0.8,-3.1,-1.9,-1.4,20690,1001.4,994.2,998.6,,24.2,,9.8,,259.0,,W,0.3,7,116.8,
-2022-10-04,3.4,-2.6,0.4,-1.1,20690,995.3,980.4,987.5,,29.0,,11.8,,171.0,,SE,0,0,113.8,
-2022-10-05,4.3,-1.2,1.4,-1.0,20690,980.9,976.1,978.0,,34.0,,10.1,,127.0,,SE,3.6,0,111.2,
-2022-10-06,2.3,-4.7,-0.4,-1.1,20690,981.6,970.6,977.7,,46.7,,16.3,,23.0,,NNE,4.3,4,115.2,
-2022-10-07,1.2,-3.0,-1.0,-1.1,20690,972.6,967.6,969.7,,31.3,,17.6,,20.0,,NW,0.3,0,115,
-2022-10-08,0.1,-3.4,-1.5,-1.2,20690,971.2,957.5,966.9,,39.4,,16.1,,10.0,,WNW,0.8,1,115.6,
-2022-10-09,1.6,-1.4,0.0,-1.1,20690,957.6,929.3,938.9,,49.0,,26.5,,52.0,,NNW,3.8,1,116.8,
-2022-10-10,-0.8,-3.5,-2.4,-1.2,20690,975.3,945.6,961.1,,47.9,,10.8,,339.0,,NNW,0.8,15,131.8,
-2022-10-11,1.4,-4.8,-1.0,-1.1,20690,975.6,963.6,970.6,,38.3,,20.1,,44.0,,NE,1,0,130.8,
-2022-10-12,1.8,-2.8,-0.4,-0.9,21690,974.1,963.1,967.0,,26.3,,7.4,,71.0,,NE,0.3,0,130,
-2022-10-13,-1.9,-4.0,-2.8,-0.9,21690,981.6,973.0,976.8,,32.4,,12.2,,245.0,,WSW,0,0,128.2,
-2022-10-14,-1.6,-5.0,-3.1,-1.0,21690,981.6,971.0,978.0,,29.2,,9.5,,3.0,,NNE,0.8,1,129.6,
-2022-10-15,-1.9,-4.3,-3.5,-1.0,21690,981.5,966.7,974.6,,35.3,,11.3,,222.0,,WSW,0.8,5,134.2,
-2022-10-16,-0.3,-5.8,-3.7,-1.1,21690,989.8,971.7,982.0,,48.4,,20.2,,32.0,,WSW,1.8,0,134.6,
-2022-10-17,0.2,-3.7,-2.4,-1.1,21690,979.1,959.4,964.9,,56.1,,32.3,,7.0,,NNW,20.6,1,135.4,
-2022-10-18,0.0,-3.2,-1.4,-1.1,21690,972.1,957.3,967.3,,58.9,,26.0,,26.0,,NW,6.4,0,135.8,
-2022-10-19,0.1,-5.1,-2.3,-1.1,21690,969.6,955.8,964.7,,43.1,,18.3,,250.0,,WSW,1.5,2,137,
-2022-10-20,-1.7,-5.2,-3.1,-1.2,21661,966.9,962.4,965.0,,35.4,,13.9,,345.0,,NNW,0.8,3,140.4,
-2022-10-21,-2.7,-5.8,-4.1,-1.4,21661,964.2,962.9,963.4,,20.7,,7.0,,278.0,,NNE,0.5,10,150.4,
-2022-10-22,-1.4,-5.5,-3.9,-1.4,21661,978.5,963.6,969.7,,30.3,,11.1,,250.0,,N,0,0,147.6,
-2022-10-23,-0.3,-5.5,-2.7,-1.5,21661,986.5,978.4,982.4,,47.2,,19.1,,20.0,,NNW,1.8,0,145.4,
-2022-10-24,0.6,-3.1,-1.0,-1.3,21661,988.4,982.6,986.2,,41.8,,19.0,,40.0,,NE,0,0,143,
-2022-10-25,0.7,-1.9,-0.8,-1.0,21690,991.4,981.0,985.9,,28.8,,6.7,,130.0,,NNW,2.8,6,149.4,
-2022-10-26,0.7,-2.6,-1.1,-0.8,21690,991.6,970.0,983.0,,46.4,,14.3,,93.0,,E,0,0,149.2,
-2022-10-27,0.9,-1.9,-0.5,-0.7,21690,970.0,961.6,964.8,,44.2,,27.6,,98.0,,ESE,0,0,143.2,
-2022-10-28,2.4,-2.2,-0.7,-0.6,21690,969.2,962.0,966.0,,34.9,,15.8,,134.0,,ESE,0,0,140.8,
-2022-10-29,-0.9,-3.9,-2.4,-0.5,21690,975.7,969.2,972.0,,22.4,,3.7,,129.0,,NE,0,0,140.6,
-2022-10-30,0.1,-2.4,-1.4,-0.5,21690,990.7,975.6,986.9,,29.3,,11.2,,134.0,,WSW,0,0,140,
-2022-10-31,1.2,-3.1,-1.4,-0.5,21690,990.6,962.0,975.7,,37.4,,13.8,,31.0,,NNE,0.3,0,139.6,
-2022-11-01,0.0,-1.4,-0.7,-0.7,21690,983.7,963.8,974.2,,26.1,,16.1,,317.0,,NW,1,7,147,
-2022-11-02,0.9,-1.8,-0.3,-0.9,21690,987.2,980.3,984.0,,37.3,,16.6,,14.0,,NNW,1.3,3,150.4,
-2022-11-03,1.2,-1.5,0.0,-1.1,21690,982.7,965.5,977.7,,52.7,,22.5,,5.0,,N,19.1,4,154.2,
-2022-11-04,0.9,-2.4,-0.9,-1.2,21690,989.9,958.0,971.4,,45.1,,23.6,,345.0,,WSW,1.3,9,162.8,
-2022-11-05,1.1,-3.5,-0.9,-1.1,21690,992.9,981.8,990.1,,53.2,,18.5,,30.0,,NNE,3.8,0,160.2,
-2022-11-06,3.3,0.6,2.2,-0.8,21690,984.1,974.4,981.8,,44.9,,25.9,,28.0,,NNE,21.3,0,157.8,
-2022-11-07,3.0,-0.7,0.9,-0.8,21690,979.1,968.5,973.7,,57.8,,22.4,,20.0,,N,15.5,0,146,
-2022-11-08,0.9,-1.3,-0.3,-0.6,21690,974.1,951.7,959.3,,30.7,,12.6,,25.0,,SE,2.8,2,148.4,
-2022-11-09,0.4,-1.5,-0.7,-0.6,21690,979.4,960.9,970.7,,20.9,,9.8,,291.0,,NNW,1.5,7,155.2,
-2022-11-10,0.2,-1.6,-0.7,-0.5,21690,988.5,979.4,985.7,,37.3,,13.1,,25.0,,WNW,0.8,2,157,
-2022-11-11,0.7,-1.4,-0.4,-0.6,21690,987.3,980.9,984.2,,43.9,,19.4,,21.0,,NW,2.5,0,153,
-2022-11-12,1.5,-0.9,-0.3,-0.7,21690,990.2,983.5,987.8,,28.9,,12.9,,25.0,,NW,0.8,1,153.6,
-2022-11-13,2.8,0.2,1.2,-0.7,21690,986.6,974.5,979.7,,44.4,,23.6,,36.0,,NNE,27.7,0,154,
-2022-11-14,2.5,-0.7,1.3,-0.5,21690,982.5,977.5,979.8,,41.6,,18.7,,33.0,,NNE,3.8,0,148.6,
-2022-11-15,4.9,1.5,3.2,-0.4,21690,979.2,973.7,977.0,,40.4,,26.5,,28.0,,NNE,8.4,0,140.6,
-2022-11-16,3.7,-0.3,2.0,-0.2,21690,984.6,970.5,974.2,,53.1,,25.1,,27.0,,NNE,18.8,0,131.4,
-2022-11-17,5.6,-1.0,1.4,0.0,21690,989.1,975.9,984.9,,32.9,,13.7,,58.0,,NNW,0.5,0,131.2,
-2022-11-18,4.8,1.6,2.9,-0.1,21690,978.2,970.3,974.8,,46.7,,23.5,,48.0,,NNE,14,0,124,
-2022-11-19,4.9,0.9,2.6,0.0,21690,978.5,969.4,973.7,,36.6,,17.4,,25.0,,NNE,1.3,0,122.6,
-2022-11-20,3.0,-0.6,0.9,-0.1,21690,979.3,967.6,972.0,,41.7,,19.7,,39.0,,NE,1,0,120.4,
-2022-11-21,3.5,0.1,1.4,-0.3,21690,981.9,971.0,979.1,,43.3,,24.5,,22.0,,NNE,9.7,0,118.2,
-2022-11-22,2.4,-0.2,1.1,-0.1,21690,975.3,962.9,969.7,,42.4,,18.2,,40.0,,NNW,10.9,0,115.8,
-2022-11-23,3.2,-0.3,1.5,0.0,21690,975.2,962.3,967.7,,35.5,,17.0,,62.0,,SE,0,0,114.4,
-2022-11-24,3.0,-0.7,1.1,0.0,21690,967.9,952.1,961.1,,59.1,,22.1,,35.0,,N,4.8,0,114.2,
-2022-11-25,1.2,-0.4,0.3,-0.1,0/6/0,960.7,948.3,954.7,,47.2,,28.6,,5.0,,NNW,1.8,0,114,
-2022-11-26,1.1,-1.5,-0.2,-0.1,0/6/0,985.9,960.7,973.7,,29.7,,16.5,,277.0,,WNW,0,1,115,
-2022-11-27,2.3,-1.9,0.4,-0.1,0/6/0,991.0,980.9,986.9,,39.8,,13.8,,26.0,,NNE,3.8,0,114,
-2022-11-28,4.1,1.0,2.3,-0.1,0/6/0,983.2,960.7,976.2,,41.0,,21.6,,30.0,,NNE,15,0,113.8,
-2022-11-29,1.8,-2.0,-0.3,0.0,0/6/0,960.9,950.3,957.7,,37.3,,16.4,,22.0,,NNW,3.6,0,111,
-2022-11-30,0.8,-2.2,-0.9,-0.1,0/6/0,953.6,939.6,945.3,,55.4,,22.0,,32.0,,WNW,2.8,2,113.4,
-2022-12-01,0.7,-3.2,-0.9,-0.2,0/6/0,960.5,953.4,957.0,,33.0,,19.3,,307.0,,NW,0,1,114.6,
-2022-12-02,1.7,-2.1,-0.4,-0.4,0/6/0,967.0,960.3,964.8,,22.4,,8.5,,322.0,,NNW,1,2,116.8,
-2022-12-03,5.6,-3.1,0.4,-0.4,0/6/0,966.4,964.8,965.6,,18.7,,3.6,,5.0,,NE,0,0,114.8,
-2022-12-04,7.1,-1.5,1.5,-0.3,0/6/0,972.0,966.4,969.3,,17.2,,3.0,,6.0,,NNE,0,0,114.4,
-2022-12-05,5.9,-1.8,1.1,0.2,0/6/0,977.9,972.0,974.6,,10.4,,4.3,,128.0,,SE,0,0,109.8,
-2022-12-06,2.0,-1.5,-0.1,0.6,0/6/0,980.6,977.9,979.4,,21.4,,7.5,,224.0,,WSW,0,0,108.8,
-2022-12-07,2.4,-2.7,-0.1,0.8,0/6/0,981.8,977.0,978.8,,12.5,,4.9,,189.0,,N,0,0,108.4,
-2022-12-08,1.0,-0.9,0.0,1.2,0/6/0,982.4,980.8,981.7,,19.9,,8.9,,222.0,,WSW,0,0,107.4,
-2022-12-09,1.7,-1.8,-0.3,1.1,0/6/0,981.2,976.0,978.4,,24.4,,8.1,,249.0,,SW,1.5,6,113.6,
-2022-12-10,3.4,-1.4,0.4,1.3,0/6/0,991.6,981.2,985.5,,12.8,,4.2,,337.0,,NE,0,0,106.6,
-2022-12-11,2.5,-1.3,0.7,1.5,0/6/0,995.5,991.5,994.3,,11.6,,5.3,,333.0,,NNE,0,0,105,
-2022-12-12,2.0,-0.8,0.6,1.7,0/6/0,994.0,989.6,992.1,,7.3,,2.9,,151.0,,NE,0,0,103.6,
-2022-12-13,2.3,-1.2,0.5,1.2,0/6/0,989.6,982.1,986.3,,15.4,,5.3,,74.0,,NE,0,0,99.8,
-2022-12-14,7.3,-0.2,3.2,1.6,0/6/0,983.0,976.8,979.1,,41.6,,15.4,,28.0,,NNE,0,0,98.4,
-2022-12-15,3.5,0.8,2.3,1.1,0/6/0,990.4,983.0,987.3,,38.3,,19.0,,33.0,,NNE,0.5,0,90.8,
-2022-12-16,5.4,1.3,3.0,0.8,0/6/0,987.9,981.7,986.3,,54.7,,18.6,,23.0,,NNE,3,0,86.2,
-2022-12-17,4.8,0.9,2.5,1.1,0/6/0,984.8,969.4,973.2,,33.6,,6.8,,108.0,,ESE,0.5,0,83,
-2022-12-18,4.2,0.6,2.2,1.1,0/6/0,980.1,971.6,976.1,,24.1,,8.0,,18.0,,NNW,0.5,0,78.4,
-2022-12-19,3.7,2.1,2.9,0.8,0/6/0,984.5,973.7,979.2,,45.2,,23.5,,34.0,,NNE,6.9,0,75,
-2022-12-20,5.0,1.6,3.1,0.9,0/6/0,988.0,981.4,984.8,,34.5,,18.9,,22.0,,NNE,0.3,0,68.8,
-2022-12-21,5.7,2.4,4.5,0.9,0/6/0,987.1,981.2,984.0,,49.5,,21.8,,34.0,,NNE,1.8,0,61.6,
-2022-12-22,6.6,0.8,3.7,1.1,0/6/0,989.2,979.2,982.2,,47.0,,22.6,,27.0,,NNE,4.1,0,56,
-2022-12-23,3.3,0.5,1.6,1.2,0/6/0,998.4,989.2,995.8,,20.1,,7.7,,247.0,,WSW,0,0,49.6,
-2022-12-24,6.2,1.2,3.7,1.3,0/6/0,997.8,974.2,987.5,,43.8,,12.0,,31.0,,NNE,8.4,0,45.2,
-2022-12-25,2.9,0.1,1.6,1.2,0/6/0,982.1,976.7,980.5,,27.9,,9.0,,18.0,,NNW,4.8,0,40.6,
-2022-12-26,3.4,-0.4,1.1,1.2,0/6/0,979.8,974.2,976.3,,12.8,,3.9,,331.0,,NW,0,0,38.4,
-2022-12-27,2.9,0.5,1.7,1.4,0/6/0,988.3,974.5,980.6,,13.7,,5.2,,174.0,,S,0,0,37,
-2022-12-28,2.6,-0.1,1.2,1.7,0/6/0,988.7,973.4,984.2,,20.8,,5.7,,34.0,,NNW,0.3,0,36,
-2022-12-29,3.9,0.7,2.1,1.7,0/6/0,973.7,967.8,969.9,,15.5,,4.9,,77.0,,NNW,0,0,34.8,
-2022-12-30,3.6,0.3,1.9,1.6,0/6/0,983.3,973.7,979.2,,15.7,,3.8,,354.0,,N,0,0,34,
-2022-12-31,4.1,1.4,2.6,1.6,0/6/0,984.4,983.1,983.7,,30.8,,12.2,,26.0,,NNE,0,0,33.4,
-2023-01-01,4.5,1.4,3.0,1.7,0/6/0,984.3,970.1,978.3,,28.5,,6.1,,33.0,,SE,0,0,32.2,
-2023-01-02,8.0,2.0,5.0,1.9,0/6/0,970.7,967.8,969.3,,20.9,,7.5,,127.0,,ESE,0,0,31.6,
-2023-01-03,5.5,2.3,3.5,2.4,0/6/0,972.3,970.0,971.3,,8.3,,2.1,,25.0,,ESE,0,0,29.4,
-2023-01-04,3.1,0.3,1.6,2.4,0/6/0,982.6,971.8,976.0,,14.8,,4.5,,257.0,,NNW,3.6,0,29.4,
-2023-01-05,4.9,0.9,2.8,2.4,0/6/0,987.8,982.6,985.8,,17.8,,6.5,,74.0,,N,0,0,27.6,
-2023-01-06,5.1,2.5,3.9,2.0,0/6/0,984.6,968.5,974.3,,49.4,,26.7,,70.0,,N,7.1,0,26.4,
-2023-01-07,4.7,2.6,3.8,1.5,0/6/0,990.3,978.2,984.3,,45.6,,25.3,,5.0,,N,13.2,0,22.6,
-2023-01-08,6.7,2.6,4.9,1.2,0/6/0,994.7,988.5,992.6,,40.1,,21.4,,39.0,,NNE,0,0,12,
-2023-01-09,6.1,0.5,3.4,1.4,0/6/0,988.9,974.7,981.2,,39.2,,12.9,,39.0,,NNE,8.4,0,8.4,
-2023-01-10,3.1,0.3,1.7,1.5,0/6/0,996.0,976.0,986.1,,35.0,,17.7,,254.0,,WSW,1.8,0,7.4,
-2023-01-11,3.8,0.6,2.3,1.5,0/6/0,995.9,990.3,992.5,,24.4,,8.3,,12.0,,NNE,6.4,0,6,
-2023-01-12,3.3,0.9,2.0,1.1,0/6/0,994.1,972.3,984.3,,41.3,,22.7,,30.0,,NNE,5.8,0,5.2,
-2023-01-13,3.3,0.8,1.7,1.4,0/6/0,972.7,970.4,971.1,,27.8,,4.7,,21.0,,S,0.3,0,5,
-2023-01-14,2.7,0.8,1.7,1.4,0/6/0,978.5,968.7,975.3,,44.6,,12.7,,42.0,,NE,1.5,0,4.8,
-2023-01-15,4.2,0.9,2.6,1.6,0/6/0,973.1,964.2,969.7,,44.6,,20.7,,42.0,,NNW,13.5,0,4,
-2023-01-16,3.3,0.1,1.9,1.6,0/6/0,977.7,972.0,974.1,,23.8,,13.8,,320.0,,NW,0.5,0,4,
-2023-01-17,2.5,-0.3,1.5,1.6,0/6/0,987.8,976.1,982.8,,44.5,,13.4,,32.0,,WNW,1.5,0,3.8,
-2023-01-18,3.8,0.4,2.8,1.5,0/6/0,978.1,963.3,973.6,,60.6,,25.4,,48.0,,NNW,11.2,0,3.6,
-2023-01-19,3.0,1.5,2.5,1.2,0/6/0,984.0,974.7,977.7,,32.6,,21.3,,333.0,,NNW,1,0,3.4,
-2023-01-20,3.5,0.7,2.1,1.3,0/6/0,992.0,983.9,988.8,,32.3,,14.6,,20.0,,NW,0.8,0,3,
-2023-01-21,5.1,3.3,4.0,1.2,0/6/0,991.1,977.8,985.7,,42.1,,24.5,,27.0,,NNE,19.8,0,2,
-2023-01-22,4.2,0.4,1.5,1.3,0/6/0,987.4,976.8,981.3,,40.4,,16.9,,22.0,,NNW,16.8,0,1,
-2023-01-23,7.2,0.1,2.4,1.4,0/6/0,988.5,984.6,987.8,,24.5,,5.4,,171.0,,SE,0,0,0,
-2023-01-24,8.7,3.3,5.6,1.6,0/6/0,984.8,976.1,979.1,,40.5,,13.1,,46.0,,ENE,1.3,0,0,
-2023-01-25,6.3,2.7,4.4,1.8,0/6/0,978.0,974.5,975.7,,29.0,,8.8,,25.0,,NNE,0.5,0,0,
-2023-01-26,5.2,0.6,2.7,2.0,0/6/0,975.2,969.7,972.2,,12.6,,4.4,,143.0,,N,0,0,0,
-2023-01-27,3.4,0.9,2.3,2.0,0/6/0,979.3,973.4,977.3,,9.3,,4.0,,125.0,,NNW,0,0,0,
-2023-01-28,5.6,0.9,2.8,2.0,0/6/0,978.7,963.2,972.0,,39.6,,10.5,,125.0,,ESE,0,0,0,
-2023-01-29,5.2,2.1,3.3,1.9,0/6/0,968.5,962.4,964.9,,40.7,,14.0,,115.0,,E,0,0,0,
-2023-01-30,3.0,0.3,1.3,1.9,0/6/0,979.7,968.5,974.3,,29.3,,8.8,,145.0,,W,2,0,0,
-2023-01-31,3.9,0.2,1.8,1.8,0/6/0,980.8,975.6,978.4,,34.7,,15.5,,29.0,,NNE,4.8,0,0,
-2023-02-01,4.3,1.2,2.5,1.6,0/6/0,982.2,972.7,976.0,,27.5,,11.2,,353.0,,NW,3.6,0,0,
-2023-02-02,5.4,1.6,3.0,1.5,0/6/0,987.2,976.8,984.0,,40.2,,15.3,,19.0,,NNE,5.8,0,0,
-2023-02-03,5.0,1.9,3.3,1.5,0/6/0,979.1,969.8,976.3,,38.2,,19.4,,33.0,,NNW,2.8,0,0,
-2023-02-04,3.3,1.3,2.5,1.6,0/6/0,974.6,970.1,972.0,,36.7,,6.0,,360.0,,SE,1.5,0,0,
-2023-02-05,3.0,1.2,1.9,1.7,0/6/0,981.8,974.6,977.0,,10.8,,4.0,,214.0,,SW,0,0,0,
-2023-02-06,4.0,0.6,1.9,1.8,0/6/0,983.3,976.3,981.3,,36.0,,6.2,,31.0,,NNE,0,0,0,
-2023-02-07,5.4,0.7,2.8,1.8,0/6/0,986.0,974.7,978.8,,29.4,,9.6,,24.0,,SE,0.3,0,0,
-2023-02-08,7.0,1.9,3.5,1.9,0/6/0,991.7,979.5,988.1,,56.5,,9.9,,62.0,,SE,0.5,0,0,
-2023-02-09,7.3,2.3,4.7,2.0,0/6/0,979.9,973.2,975.6,,43.9,,28.0,,26.0,,NNE,6.6,0,0,
-2023-02-10,7.5,3.5,5.0,1.9,0/6/0,983.2,975.9,981.0,,39.3,,23.7,,1.0,,NNE,0.5,0,0,
-2023-02-11,5.7,2.9,4.6,2.0,0/6/0,980.9,976.4,978.1,,42.0,,17.0,,48.0,,NE,17.8,0,0,
-2023-02-12,5.0,2.4,3.8,2.0,0/6/0,980.4,977.1,978.1,,27.5,,10.5,,18.0,,NNE,2.3,0,0,
-2023-02-13,4.4,0.6,1.6,1.9,0/6/0,983.5,980.4,981.4,,14.0,,3.0,,129.0,,SE,0,0,0,
-2023-02-14,4.1,-0.9,1.6,2.0,0/6/0,987.0,982.4,983.6,,12.0,,3.2,,128.0,,SE,0,0,0,
-2023-02-15,3.1,0.0,1.7,1.9,0/6/0,1001.6,987.0,994.6,,9.0,,3.6,,245.0,,WSW,1,0,0,
-2023-02-16,2.6,0.7,1.4,1.9,0/6/0,1006.1,1001.6,1004.6,,15.2,,7.5,,225.0,,WSW,0,0,0,
-2023-02-17,4.7,0.2,2.8,1.9,0/6/0,1004.1,988.2,994.7,,49.1,,17.6,,32.0,,NNE,1.8,0,0,
-2023-02-18,4.5,0.6,3.0,2.0,0/6/0,995.8,984.1,989.8,,43.6,,20.6,,31.0,,NNE,9.9,0,0,
-2023-02-19,3.5,0.4,2.1,1.9,0/6/0,986.2,982.7,984.4,,23.2,,11.4,,328.0,,NNE,1,0,0,
-2023-02-20,2.8,-0.6,1.3,2.0,0/6/0,987.2,984.2,986.4,,23.6,,8.1,,256.0,,SW,0,0,0,
-2023-02-21,3.4,-1.5,0.9,2.0,0/6/0,984.2,966.8,973.8,,46.4,,13.6,,85.0,,E,0,0,0,
-2023-02-22,4.2,1.8,2.7,2.0,0/6/0,971.2,968.7,970.0,,36.8,,17.8,,41.0,,ESE,0,0,0,
-2023-02-23,2.7,0.7,1.8,2.0,0/6/0,984.3,971.0,978.0,,22.8,,5.6,,100.0,,SE,0,0,0,
-2023-02-24,2.3,0.7,1.4,2.0,0/6/0,987.5,984.3,986.2,,12.6,,4.8,,327.0,,N,0,0,0,
-2023-02-25,2.2,0.2,1.0,1.7,0/6/0,992.2,986.7,988.8,,15.1,,5.3,,331.0,,NNW,0,0,0,
-2023-02-26,1.6,-0.7,0.2,1.2,0/6/0,993.2,990.1,992.2,,25.5,,13.5,,14.0,,NNE,0,0,0,
-2023-02-27,1.4,-1.7,0.0,1.4,0/6/0,991.0,987.7,989.6,,21.8,,5.1,,107.0,,E,0,0,0,
-2023-02-28,3.2,-0.2,1.5,1.8,0/6/0,990.7,975.9,983.7,,31.2,,10.3,,118.0,,ESE,0,0,0,
-2023-03-01,2.7,0.0,1.3,1.8,0/6/0,976.0,964.9,969.1,,20.9,,3.9,,118.0,,NNW,0.3,0,0,
-2023-03-02,4.3,1.5,2.7,1.8,0/6/0,966.2,963.9,964.8,,31.0,,13.4,,108.0,,ESE,0,0,0,
-2023-03-03,3.4,0.8,1.7,1.7,0/6/0,976.0,965.8,969.3,,20.7,,5.3,,101.0,,ESE,0,0,0,
-2023-03-04,2.2,0.2,1.1,1.7,0/6/0,984.7,976.0,980.5,,15.2,,2.9,,30.0,,SE,0,0,0,
-2023-03-05,3.6,0.0,1.8,1.3,0/6/0,987.4,984.5,986.4,,32.4,,18.4,,19.0,,NNE,1.3,0,0,
-2023-03-06,3.6,1.4,2.6,1.4,0/6/0,987.2,982.2,984.0,,40.4,,16.8,,31.0,,ENE,0.3,0,0,
-2023-03-07,2.6,1.1,2.0,1.6,0/6/0,982.3,978.5,980.1,,34.5,,12.5,,51.0,,E,0,0,0,
-2023-03-08,4.5,0.4,2.7,1.7,0/6/0,985.6,980.2,982.0,,41.3,,13.9,,36.0,,ESE,0,0,0,
-2023-03-09,4.9,1.7,3.1,1.5,0/6/0,987.6,978.8,985.5,,43.9,,15.8,,76.0,,NE,0.8,0,0,
-2023-03-10,6.3,1.7,3.5,1.8,0/6/0,980.1,963.8,973.2,,53.2,,25.9,,42.0,,NE,28.2,0,0,
-2023-03-11,3.4,1.2,2.5,1.6,0/6/0,967.9,958.1,963.9,,52.6,,26.3,,28.0,,N,9.9,0,0,
-2023-03-12,3.9,0.5,2.2,1.6,0/6/0,967.6,954.2,961.3,,54.9,,29.5,,41.0,,NNW,18.8,0,0,
-2023-03-13,1.8,-1.2,0.5,1.2,0/6/0,978.5,967.6,971.7,,32.6,,16.3,,354.0,,NNW,0.8,0,0,
-2023-03-14,4.1,-0.7,1.3,0.7,0/6/0,987.7,978.5,984.7,,26.6,,15.5,,27.0,,NNE,0.3,0,0.2,
-2023-03-15,2.9,-1.0,0.8,1.1,0/6/0,987.8,981.3,985.0,,26.4,,6.0,,115.0,,NE,0,0,0,
-2023-03-16,2.3,-0.7,0.7,1.0,0/6/0,985.9,981.1,984.6,,35.1,,7.4,,345.0,,N,1.5,2,2,
-2023-03-17,1.5,-1.8,0.0,1.2,0/6/0,991.2,983.7,986.5,,18.6,,7.4,,228.0,,SW,0,0,0,
-2023-03-18,2.0,-1.4,0.3,1.2,0/6/0,991.1,979.0,983.8,,43.1,,13.1,,26.0,,WSW,0.5,0,0,
-2023-03-19,1.1,-1.0,0.1,1.3,0/6/0,979.0,971.4,974.1,,33.0,,10.4,,32.0,,NNE,0.3,0,0,
-2023-03-20,0.5,-1.5,-0.5,1.1,0/6/0,979.5,963.9,969.6,,40.0,,8.5,,16.0,,NNW,4.3,10,10.2,
-2023-03-21,2.5,-0.8,0.5,1.1,0/6/0,983.5,955.0,975.7,,49.9,,14.1,,27.0,,NE,1,0,7.2,
-2023-03-22,2.8,-1.1,0.9,1.1,0/6/0,967.2,952.3,957.6,,48.4,,17.1,,28.0,,W,7.1,0,0,
-2023-03-23,1.4,-0.9,0.4,1.1,0/6/0,986.7,967.2,978.9,,28.2,,13.2,,263.0,,WSW,0,4,3.6,
-2023-03-24,5.5,0.8,3.3,1.1,0/6/0,984.6,964.0,977.1,,43.5,,23.6,,59.0,,NNE,5.8,0,0,
-2023-03-25,4.9,-0.3,0.6,1.2,0/6/0,969.6,962.3,967.7,,40.2,,14.7,,17.0,,NNE,3,0,0,
-2023-03-26,0.6,-1.0,-0.1,1.3,0/6/0,972.9,965.6,968.5,,17.9,,8.0,,121.0,,SE,1.3,3,3,
-2023-03-27,0.3,-1.6,-0.8,1.2,0/6/0,977.7,972.9,976.3,,12.8,,5.4,,360.0,,N,0,0,0.8,
-2023-03-28,-1.0,-3.0,-1.7,1.4,0/6/0,977.6,973.6,975.0,,17.9,,7.7,,217.0,,SW,0,0,0,
-2023-03-29,-0.4,-4.2,-2.2,1.3,0/6/0,979.6,974.2,977.3,,17.2,,5.4,,246.0,,WSW,0,0,0,
-2023-03-30,1.8,-0.9,0.4,0.3,0/6/0,977.9,974.0,976.8,,29.7,,14.6,,18.0,,NNW,8.1,10,10,
-2023-03-31,2.4,-1.4,0.9,0.0,0/6/0,986.3,969.6,976.0,,40.4,,21.1,,22.0,,NNE,12.2,0,3.2,
-2023-04-01,4.2,-1.0,1.4,0.5,0/6/0,986.3,973.9,980.6,,51.3,,21.1,,28.0,,NNE,6.4,0,0.8,
-2023-04-02,4.4,2.0,3.3,0.9,0/6/0,990.3,981.7,984.6,,47.2,,27.7,,26.0,,NNE,6.1,0,0,
-2023-04-03,8.5,3.7,5.2,1.2,0/6/0,992.0,982.9,988.0,,57.8,,31.8,,31.0,,NNE,34.8,0,0,
-2023-04-04,4.0,0.8,2.5,1.3,0/6/0,985.2,971.2,977.5,,51.1,,27.6,,34.0,,NE,51.3,0,0,
-2023-04-05,4.0,0.7,2.1,1.1,0/6/0,993.5,967.5,985.3,,51.7,,21.4,,107.0,,N,1.3,0,0,
-2023-04-06,5.0,0.4,2.2,1.2,0/6/0,988.7,963.0,977.0,,49.2,,26.0,,44.0,,NNW,16.3,0,0,
-2023-04-07,4.2,1.1,2.6,1.1,0/6/0,982.8,972.5,975.6,,53.2,,32.1,,25.0,,NNE,16,0,0,
-2023-04-08,1.2,-2.1,-0.5,0.9,0/6/0,975.9,971.6,974.2,,30.1,,15.0,,28.0,,N,1.8,4,3.8,
-2023-04-09,0.3,-3.1,-1.5,0.8,0/6/0,981.4,972.9,975.4,,20.9,,4.1,,228.0,,NE,0,5,8.4,
-2023-04-10,-0.5,-3.7,-1.7,,0/6/0,989.6,981.3,985.4,,21.9,,9.6,,218.0,,SW,1,0,8,
-2023-04-11,-1.1,-5.9,-3.6,0.5,0/6/0,1009.7,989.5,1000.1,,23.7,,5.7,,129.0,,ESE,0,0,6.8,
-2023-04-12,0.2,-3.2,-1.2,0.5,20690,1012.6,1009.7,1011.5,,13.9,,3.3,,227.0,,NE,0,0,6.2,
-2023-04-13,0.7,-1.9,-0.3,0.9,20690,1011.3,1004.1,1007.8,,4.9,,1.2,,344.0,,NNE,0.3,0,5.8,
-2023-04-14,3.4,-2.1,0.2,0.7,20690,1004.1,991.0,998.0,,36.3,,8.1,,27.0,,NNE,0,0,4.6,
-2023-04-15,3.0,-0.3,1.5,0.5,0/6/0,991.1,980.2,984.6,,52.0,,24.1,,34.0,,NNE,7.6,0,3.4,
-2023-04-16,1.8,-0.1,1.0,0.5,0/6/0,982.1,974.3,977.5,,38.9,,25.6,,17.0,,NNE,4.1,2,5.6,
-2023-04-17,0.1,-2.3,-0.9,0.5,0/6/0,975.7,972.4,973.8,,23.7,,7.3,,329.0,,N,0.8,5,10.4,
-2023-04-18,-1.1,-4.9,-2.6,0.6,0/6/0,983.2,975.3,979.8,,38.7,,11.9,,33.0,,NNE,0,0,9,
-2023-04-19,2.2,-3.4,-1.0,1.0,0/6/0,978.5,956.5,963.8,,54.3,,23.6,,46.0,,ESE,0,0,6.8,
-2023-04-20,1.4,-0.7,0.5,0.7,0/6/0,964.3,957.5,960.2,,32.5,,16.6,,334.0,,NNW,1.5,0,7.2,
-2023-04-21,0.3,-2.0,-0.7,0.4,0/6/0,978.9,963.9,970.2,,19.8,,6.7,,17.0,,N,1.5,6,13.6,
-2023-04-22,0.0,-4.1,-1.6,0.3,0/6/0,982.2,955.3,973.9,,45.5,,13.7,,89.0,,E,0.5,0,9.8,
-2023-04-23,3.3,-0.4,0.7,0.6,0/6/0,974.9,954.6,966.5,,42.9,,18.4,,29.0,,NNW,2.3,3,13,
-2023-04-24,2.2,-0.4,0.8,0.3,0/6/0,974.8,969.6,972.8,,44.6,,23.1,,43.0,,N,3.6,1,14.2,
-2023-04-25,0.1,-2.4,-0.9,0.2,0/6/0,981.7,971.7,977.4,,31.2,,13.0,,5.0,,WSW,2.3,3,17.4,
-2023-04-26,-1.4,-3.7,-2.3,0.1,0/6/0,984.0,980.9,982.4,,27.1,,12.7,,306.0,,WNW,0.3,0,16.2,
-2023-04-27,-1.1,-3.8,-2.2,-0.3,0/6/0,983.7,981.0,982.2,,25.8,,10.5,,303.0,,NE,0,3,19,
-2023-04-28,-1.0,-4.2,-2.3,-0.5,0/6/0,986.0,981.0,983.3,,33.9,,5.4,,39.0,,NE,0,0,18.6,
-2023-04-29,-1.3,-4.6,-2.6,-0.5,0/6/0,985.3,981.4,983.9,,31.6,,16.4,,52.0,,WSW,0.3,0,17,
-2023-04-30,0.8,-4.9,-3.0,-0.3,20690,985.2,966.4,977.5,,48.0,,17.8,,41.0,,NE,1,0,16.8,
-2023-05-01,3.3,-2.3,0.2,0.2,20690,966.7,957.3,960.3,,38.5,,12.1,,221.0,,ESE,5.6,2,19.2,
-2023-05-02,-0.8,-5.1,-3.0,0.2,0/6/0,966.3,960.6,963.9,,30.1,,12.4,,238.0,,WSW,1,9,28.4,
-2023-05-03,-2.7,-5.2,-3.7,0.2,0/6/0,966.1,960.6,963.4,,27.4,,10.9,,302.0,,SW,0.3,3,31,
-2023-05-04,-2.4,-5.6,-3.9,-0.5,0/6/0,980.8,965.4,972.7,,33.4,,15.0,,253.0,,SW,0.3,0,30.4,
-2023-05-05,-1.9,-7.6,-5.5,-0.4,20690,981.2,949.4,969.6,,55.4,,11.9,,120.0,,ESE,0,0,30.2,
-2023-05-06,-1.7,-5.5,-3.2,0.1,20690,972.7,950.5,965.0,,49.2,,14.3,,126.0,,SE,0,0,28.2,
-2023-05-07,1.6,-3.0,-0.7,0.1,20690,984.0,972.4,975.7,,53.0,,20.4,,30.0,,NNE,0.5,0,27,
-2023-05-08,4.8,0.4,1.8,0.2,20690,986.7,972.0,981.1,,64.4,,28.8,,22.0,,NNE,1,0,25.6,
-2023-05-09,0.6,-0.9,-0.2,0.1,20690,996.1,981.4,987.0,,24.3,,9.2,,283.0,,W,1.3,0,23.2,
-2023-05-10,2.8,-2.3,-0.6,0.0,20690,999.1,995.5,997.3,,19.3,,7.1,,122.0,,SE,0.5,1,24.6,
-2023-05-11,4.7,0.2,2.2,0.2,20690,995.8,959.5,976.3,,58.0,,25.9,,42.0,,NE,6.1,0,21.4,
-2023-05-12,0.3,-2.2,-0.9,0.2,0/6/0,980.4,966.3,971.8,,35.6,,15.5,,224.0,,WSW,2.5,6,27.4,
-2023-05-13,2.9,-1.8,0.5,-0.1,0/6/0,986.1,980.3,982.9,,36.6,,19.4,,29.0,,NNE,0,0,26.8,
-2023-05-14,5.7,1.4,3.3,0.0,0/6/0,986.9,981.1,984.5,,54.4,,31.2,,26.0,,NNE,24.6,0,21,
-2023-05-15,2.9,-0.6,1.1,0.2,0/6/0,981.3,971.6,976.9,,53.4,,20.0,,16.0,,NNE,46.2,0,14.6,
-2023-05-16,-0.5,-3.3,-1.4,0.1,0/6/0,980.9,971.9,977.7,,37.8,,13.3,,213.0,,SW,0.3,20,34.6,
-2023-05-17,0.3,-3.8,-1.2,0.0,20690,978.6,967.0,974.9,,33.5,,5.3,,31.0,,E,0,0,34,
-2023-05-18,1.0,-2.1,-0.8,-0.1,20690,966.9,960.4,962.7,,32.6,,7.1,,26.0,,NNE,1.5,0,33.6,
-2023-05-19,0.6,-1.6,-0.4,-0.5,20690,981.2,964.6,971.6,,24.6,,14.3,,10.0,,N,1.5,5,38.2,
-2023-05-20,2.9,-4.7,-1.5,-0.5,20690,985.7,977.6,983.1,,40.0,,11.5,,38.0,,NE,0,0,38.6,
-2023-05-21,4.6,0.7,2.8,0.0,20690,977.7,964.8,970.8,,49.4,,22.5,,26.0,,NE,2.5,0,29.8,
-2023-05-22,2.4,-0.9,1.1,0.0,0/6/0,990.5,966.8,982.9,,42.3,,24.3,,18.0,,NNE,7.6,0,26.6,
-2023-05-23,5.0,2.3,3.7,0.1,0/6/0,992.9,989.1,991.6,,42.0,,28.2,,57.0,,NNE,0,0,19.4,
-2023-05-24,4.6,0.5,2.7,0.1,0/6/0,991.5,987.8,989.9,,43.3,,16.0,,66.0,,NE,0.3,0,18.4,
-2023-05-25,2.1,-1.0,0.1,0.1,20690,989.6,978.1,982.2,,29.1,,3.9,,87.0,,N,0,0,18.4,
-2023-05-26,1.0,-1.6,-0.3,0.0,20690,978.5,974.1,976.1,,26.2,,2.1,,250.0,,NNW,1.3,0,18.4,
-2023-05-27,-1.5,-2.6,-2.1,-0.2,0/6/0,984.3,974.1,979.5,,27.5,,15.2,,236.0,,SW,1,4,22.4,
-2023-05-28,-2.1,-3.6,-2.8,-0.3,0/6/0,991.6,984.2,987.7,,24.7,,13.5,,250.0,,WSW,0,0,21.6,
-2023-05-29,-3.6,-5.6,-4.6,-0.7,20690,994.6,991.6,993.4,,16.8,,8.2,,16.0,,NNE,0.5,4,25.6,
-2023-05-30,-2.1,-4.0,-3.2,-0.8,20690,989.2,981.2,985.2,,27.7,,9.9,,102.0,,E,0,0,23.2,
-2023-05-31,5.7,-2.9,1.5,-0.3,20690,981.2,968.8,972.5,,37.1,,15.8,,99.0,,SE,0.8,0,22.2,
-2023-06-01,3.7,1.1,2.4,-0.1,0/6/0,985.1,973.2,979.9,,42.3,,18.2,,31.0,,NNE,1,0,18,
-2023-06-02,7.0,0.3,2.8,0.0,0/6/0,992.6,985.0,989.8,,46.5,,12.4,,56.0,,ESE,0,0,18,
-2023-06-03,5.4,2.1,3.2,0.0,0/6/0,991.6,986.4,988.5,,46.7,,20.5,,38.0,,ESE,0.5,0,16.8,
-2023-06-04,6.1,-0.3,2.6,0.0,0/6/0,997.2,991.7,995.2,,43.8,,13.8,,31.0,,NNE,9.7,0,15.8,
-2023-06-05,0.1,-2.8,-1.6,-0.1,20690,995.9,991.7,994.5,,13.6,,5.2,,318.0,,SE,1.3,15,31.2,
-2023-06-06,2.2,-2.4,0.2,-0.3,20690,991.7,984.8,986.6,,19.0,,5.6,,113.0,,ESE,0,0,30.6,
-2023-06-07,-0.5,-3.6,-1.9,-0.4,20690,989.9,986.2,988.1,,9.7,,2.9,,298.0,,NNE,0,0,30,
-2023-06-08,-2.0,-4.5,-3.2,-0.8,20690,994.7,989.7,992.7,,9.5,,2.4,,130.0,,NE,0,0,28.6,
-2023-06-09,-3.2,-7.3,-4.2,-0.7,20690,994.9,988.3,992.3,,18.1,,5.2,,205.0,,SSW,0,0,28.2,
-2023-06-10,-1.8,-4.6,-3.3,-0.6,20690,988.3,963.6,977.2,,35.8,,11.0,,28.0,,ESE,0.5,1,29,
-2023-06-11,-2.8,-4.8,-3.5,-0.3,20690,983.9,964.6,977.8,,40.7,,19.2,,228.0,,SW,0.3,0,23.6,
-2023-06-12,-3.4,-5.6,-4.5,-0.4,20690,993.0,983.7,987.3,,39.0,,22.6,,222.0,,SW,0,0,22.8,
-2023-06-13,-4.9,-7.6,-5.8,-0.6,20690,995.5,992.9,994.7,,22.8,,7.5,,230.0,,SW,0,0,22.6,
-2023-06-14,1.0,-5.8,-2.7,-0.8,20690,994.3,978.9,986.3,,51.8,,10.4,,52.0,,ESE,0,0,22.6,
-2023-06-15,-0.6,-4.6,-2.5,-0.7,21690,986.3,981.8,984.3,,18.7,,4.9,,113.0,,ESE,0,1,23.6,
-2023-06-16,-0.8,-3.3,-2.1,-0.8,21690,989.9,981.4,985.6,,22.9,,10.6,,36.0,,NNE,2.5,7,30.2,
-2023-06-17,1.6,-3.6,-0.8,-0.5,21690,990.1,972.8,983.2,,46.0,,22.6,,44.0,,NE,2.5,0,22.6,
-2023-06-18,1.8,-2.6,-1.0,-0.6,21690,980.1,964.3,972.4,,51.2,,22.8,,13.0,,N,1.8,4,26.6,
-2023-06-19,-0.8,-3.4,-2.1,-0.7,21690,979.9,964.3,970.3,,52.8,,16.8,,35.0,,NNW,2,1,27.6,
-2023-06-20,-2.7,-5.2,-3.7,-0.9,21690,993.1,972.6,985.0,,22.7,,6.4,,135.0,,NNE,0,2,29.4,
-2023-06-21,-3.3,-7.0,-4.6,-1.1,21690,996.0,991.2,994.7,,14.9,,4.8,,14.0,,NNE,0.8,2,31.6,
-2023-06-22,-5.9,-9.1,-7.2,-1.0,21690,991.2,986.1,987.6,,26.1,,10.7,,137.0,,ESE,0,0,26,
-2023-06-23,-4.5,-9.2,-7.1,-1.0,21690,990.4,988.2,989.6,,17.3,,5.1,,115.0,,NE,0.3,0,26,
-2023-06-24,-2.5,-5.8,-4.0,-0.9,21690,990.2,983.9,986.8,,34.7,,14.8,,24.0,,NNE,1,8,33.6,
-2023-06-25,-3.0,-5.3,-4.1,-1.0,21690,997.1,984.3,990.6,,20.9,,7.3,,34.0,,NNE,1.5,6,39.8,
-2023-06-26,-4.2,-6.9,-5.7,-1.2,21690,1006.9,997.1,1002.8,,20.8,,3.8,,26.0,,NE,0,0,39.4,
-2023-06-27,-5.3,-7.9,-6.8,-1.4,21690,1009.7,1006.7,1007.9,,11.3,,4.0,,220.0,,NE,0,0,38.4,
-2023-06-28,-1.4,-7.3,-3.9,-1.5,21690,1009.7,1006.5,1008.2,,24.5,,8.2,,246.0,,NE,0.3,0,38.2,
-2023-06-29,-1.6,-3.6,-2.3,-1.3,21690,1009.7,1007.8,1008.8,,20.9,,7.3,,266.0,,W,0.8,5,42.8,
-2023-06-30,-2.3,-6.9,-4.3,-1.6,21690,1009.6,1006.9,1008.1,,10.8,,3.1,,351.0,,NNE,0.3,0,42.8,
diff --git a/R_notebooks/data/README b/R_notebooks/data/README
deleted file mode 100644
index 298fd7b..0000000
--- a/R_notebooks/data/README
+++ /dev/null
@@ -1,57 +0,0 @@
-The following datasets in this folder were obtained from the sources listed
-below. All other datasets were artificially created for this course.
-
-
-PalmerStation_Daily_Weather.csv
--------------------------------
-
-Palmer Station Antarctica LTER. 2023. Daily weather averages for Palmer Station,
-Antarctica (1989-2023) ver 9. Environmental Data Initiative.
-https://doi.org/10.6073/pasta/3eefb45dbfb784c3cabe3690ea46fe9e
-(accessed 2024-01-08).
-
-Intellectual Rights of the authors (as accessed from the above link on
-2024-01-08):
-
-This information is released under the Creative Commons license - Attribution
-- CC BY (https://creativecommons.org/licenses/by/4.0/). The consumer of these
-data ("Data User" herein) is required to cite it appropriately in any
-publication that results from its use. The Data User should realize that these
-data may be actively used by others for ongoing research and that coordination
-may be necessary to prevent duplicate publication. The Data User is urged to
-contact the authors of these data if any questions about methodology or results
-occur. Where appropriate, the Data User is encouraged to consider collaboration
-or co-authorship with the authors. The Data User should realize that
-misinterpretation of data may occur if used out of context of the original
-study. While substantial efforts are made to ensure the accuracy of data and
-associated documentation, complete accuracy of data sets cannot be guaranteed.
-All data are made available "as is." The Data User should be aware, however,
-that data are updated periodically and it is the responsibility of the Data User
-to check for new versions of the data. The data authors and the repository where
-these data were obtained shall not be liable for damages resulting from any use
-or misinterpretation of the data. Thank you.
-
-
-weather_annual.csv
-------------------
-
-This was derived from PalmerStation_Daily_Weather.csv, by aggregating the data
-for each year. (All aggregations are calculated after removing missing values.)
-The columns computed are:
-- Average_temp: The mean of 'Temperature Average (C)' for each year.
-- Max_temp: The maximum of 'Temperature High (C)' for each year.
-- Min_temp: The minimum of 'Temperature Low (C)' for each year.
-
-
-National_Fossil_Carbon_Emissions_2023v1.0.xlsx
-----------------------------------------------
-
-Friedlingstein, P., O'Sullivan, M., Jones, M. W., Andrew, R. M., Bakker, D. C. E., Hauck, J., Landschützer, P., Le Quéré, C., Luijkx, I. T., Peters, G. P., Peters, W., Pongratz, J., Schwingshackl, C., Sitch, S., Canadell, J. G., Ciais, P., Jackson, R. B., Alin, S. R., Anthoni, P., Barbero, L., Bates, N. R., Becker, M., Bellouin, N., Decharme, B., Bopp, L., Brasika, I. B. M., Cadule, P., Chamberlain, M. A., Chandra, N., Chau, T.-T.-T., Chevallier, F., Chini, L. P., Cronin, M., Dou, X., Enyo, K., Evans, W., Falk, S., Feely, R. A., Feng, L., Ford, D. J., Gasser, T., Ghattas, J., Gkritzalis, T., Grassi, G., Gregor, L., Gruber, N., Gürses, Ö., Harris, I., Hefner, M., Heinke, J., Houghton, R. A., Hurtt, G. C., Iida, Y., Ilyina, T., Jacobson, A. R., Jain, A., Jarníková, T., Jersild, A., Jiang, F., Jin, Z., Joos, F., Kato, E., Keeling, R. F., Kennedy, D., Klein Goldewijk, K., Knauer, J., Korsbakken, J. I., Körtzinger, A., Lan, X., Lefèvre, N., Li, H., Liu, J., Liu, Z., Ma, L., Marland, G., Mayot, N., McGuire, P. C., McKinley, G. A., Meyer, G., Morgan, E. J., Munro, D. R., Nakaoka, S.-I., Niwa, Y., O'Brien, K. M., Olsen, A., Omar, A. M., Ono, T., Paulsen, M., Pierrot, D., Pocock, K., Poulter, B., Powis, C. M., Rehder, G., Resplandy, L., Robertson, E., Rödenbeck, C., Rosan, T. M., Schwinger, J., Séférian, R., Smallman, T. L., Smith, S. M., Sospedra-Alfonso, R., Sun, Q., Sutton, A. J., Sweeney, C., Takao, S., Tans, P. P., Tian, H., Tilbrook, B., Tsujino, H., Tubiello, F., van der Werf, G. R., van Ooijen, E., Wanninkhof, R., Watanabe, M., Wimart-Rousseau, C., Yang, D., Yang, X., Yuan, W., Yue, X., Zaehle, S., Zeng, J., and Zheng, B.: Global Carbon Budget 2023, Earth Syst. Sci. Data, 15, 5301–5369, https://doi.org/10.5194/essd-15-5301-2023, 2023
-
-Fossil CO2 emissions by country (territorial) data obtained from obtained
-from https://globalcarbonbudgetdata.org/downloads/latest-data/National_Fossil_Carbon_Emissions_2023v1.0.xlsx
-(accessed 2024-02-28).
-
-We acknowledge the Global Carbon Project, which is responsible for the Global
-Carbon Budget and we thank the fossil carbon emissions modelling groups for
-producing and making available their model output.
diff --git a/R_notebooks/data/heads_and_tales.csv b/R_notebooks/data/heads_and_tales.csv
deleted file mode 100644
index f933bc3..0000000
--- a/R_notebooks/data/heads_and_tales.csv
+++ /dev/null
@@ -1,14 +0,0 @@
-Experiment,Technician,Result
-2024-01-04:part 1,joe bloggs,"H,H,H,T,T,H,H,T,H,H,T,H,H,H,T,T,H,H,T,T"
-2024-01-04:part 2,Joe Bloggs,"T,T,H,T,H,T,T,H,T,T,T,T,H,T,H,H,T,H,T,T"
-2024-01-04:part 3,Joe Bloggs,"H,T,H,T,T,H,T,H,H,T,H,T,H,T,T,T,H,H,H,T,T,H,T,H,T"
-2024-01-04 part 1,jane doe,HTHHTHTHTTHTHTHTTT
-2024-01-04 part 2,jane doe,HHTTTTHHHTTHTHHTHHTTT
-2024-01-05 part 1,Jane doe,THTTTHHTTTH
-2024-01-05 part 2,Jane doe,TTTTTHTHTHTTTTTHTTHT
-2024-01-06:part 1,Joe Bloggs,HTHTTTTHHHHTTTHHHHHTHH
-2024-01-06:part 2,Joe Bloggs,TTTTTTHTTTHTH
-2024-01-06 part 1,Jane Doe,HTTTTHHHTHHTTHHHTTTTTHTTH
-2024-01-06 part 2,Jane Doe,TTTTHHTHHTTHTHHHTHTTTH
-2024-01-06 part 3,Jane Doe,HHTHTTTTTHTTTHTHTHT
-2024-01-07:part 1,joe bloggs,TTHTTHHHHTHHHHTTTHHT
diff --git a/R_notebooks/data/timeseries_data.csv b/R_notebooks/data/timeseries_data.csv
deleted file mode 100644
index b89135d..0000000
--- a/R_notebooks/data/timeseries_data.csv
+++ /dev/null
@@ -1,11 +0,0 @@
-Id,Date,X_variable,Y_variable
-001,2024-02-01,1.1967837194583961,7.900464364159182
-002,2024-02-02,-0.7507563344053951,12.690405000912477
-003,2024-02-03,-0.7850492689583279,10.280088829160382
-004,2024-02-04,-0.6185457481359723,10.073199260115578
-005,2024-02-05,0.6188251316696602,9.183892504016947
-006,2024-02-06,-1.295559729374875,4.830591718912964
-007,2024-02-07,-1.0478610080617479,11.950495760617637
-008,2024-02-08,1.2772821688688454,7.008456322119265
-009,2024-02-09,-0.06582643175389392,3.4034822391265145
-010,2024-02-10,-0.07455295463910701,11.6370557133845
diff --git a/R_notebooks/data/weather_annual.csv b/R_notebooks/data/weather_annual.csv
deleted file mode 100644
index 0e46759..0000000
--- a/R_notebooks/data/weather_annual.csv
+++ /dev/null
@@ -1,36 +0,0 @@
-Year,Average_temp,Max_temp,Min_temp
-1989,,7.8,-11.1
-1990,,8.7,-20.6
-1991,,9.8,-18
-1992,,10.3,-24.7
-1993,,10.1,-17.6
-1994,-7.2,9,-25.6
-1995,0.06129032258064516,9,-26
-1996,-0.6418032786885246,9.6,-22.7
-1997,-2.4315068493150687,9.5,-25.2
-1998,-0.9893150684931507,8.5,-21.7
-1999,-1.4975342465753425,9.2,-23.4
-2000,-1.368032786885246,10.8,-19.6
-2001,-1.5865753424657534,9.5,-17.6
-2002,-2.621917808219178,8.5,-21.6
-2003,-1.1893150684931506,9.4,-19.7
-2004,-1.6286885245901639,9.8,-22.9
-2005,-1.7947945205479452,9.8,-19.9
-2006,-0.9971988795518207,10.6,-15.2
-2007,-1.6287671232876713,9.9,-16.3
-2008,-0.7920765027322404,6.8,-18.9
-2009,-1.788622754491018,7.7,-14.1
-2010,-0.7208219178082191,11.6,-17.7
-2011,-1.8876712328767122,8.1,-19.1
-2012,-1.4284153005464482,8.9,-15.9
-2013,-1.949041095890411,8.7,-24.7
-2014,-1.576164383561644,8.5,-16.3
-2015,-3.318082191780822,8.9,-23.3
-2016,-1.8639344262295081,9.4,-18.7
-2017,-1.5217032967032966,9.3,-20.9
-2018,-1.658082191780822,9.7,-21.9
-2019,-1.810958904109589,9,-21.4
-2020,-1.1293956043956044,10.6,-15.3
-2021,-0.9621917808219178,10.9,-18.3
-2022,-0.2071232876712329,11.6,-9
-2023,0.4325966850828729,8.7,-9.2
diff --git a/R_notebooks/renv.lock b/R_notebooks/renv.lock
deleted file mode 100644
index c474fac..0000000
--- a/R_notebooks/renv.lock
+++ /dev/null
@@ -1,756 +0,0 @@
-{
- "R": {
- "Version": "4.3.2",
- "Repositories": [
- {
- "Name": "CRAN",
- "URL": "https://packagemanager.posit.co/cran/latest"
- }
- ]
- },
- "Packages": {
- "R6": {
- "Package": "R6",
- "Version": "2.5.1",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R"
- ],
- "Hash": "470851b6d5d0ac559e9d01bb352b4021"
- },
- "base64enc": {
- "Package": "base64enc",
- "Version": "0.1-3",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R"
- ],
- "Hash": "543776ae6848fde2f48ff3816d0628bc"
- },
- "bit": {
- "Package": "bit",
- "Version": "4.0.5",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R"
- ],
- "Hash": "d242abec29412ce988848d0294b208fd"
- },
- "bit64": {
- "Package": "bit64",
- "Version": "4.0.5",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R",
- "bit",
- "methods",
- "stats",
- "utils"
- ],
- "Hash": "9fe98599ca456d6552421db0d6772d8f"
- },
- "bslib": {
- "Package": "bslib",
- "Version": "0.6.1",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "base64enc",
- "cachem",
- "grDevices",
- "htmltools",
- "jquerylib",
- "jsonlite",
- "lifecycle",
- "memoise",
- "mime",
- "rlang",
- "sass"
- ],
- "Hash": "c0d8599494bc7fb408cd206bbdd9cab0"
- },
- "cachem": {
- "Package": "cachem",
- "Version": "1.0.8",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "fastmap",
- "rlang"
- ],
- "Hash": "c35768291560ce302c0a6589f92e837d"
- },
- "cli": {
- "Package": "cli",
- "Version": "3.6.2",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "utils"
- ],
- "Hash": "1216ac65ac55ec0058a6f75d7ca0fd52"
- },
- "clipr": {
- "Package": "clipr",
- "Version": "0.8.0",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "utils"
- ],
- "Hash": "3f038e5ac7f41d4ac41ce658c85e3042"
- },
- "cpp11": {
- "Package": "cpp11",
- "Version": "0.4.7",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R"
- ],
- "Hash": "5a295d7d963cc5035284dcdbaf334f4e"
- },
- "crayon": {
- "Package": "crayon",
- "Version": "1.5.2",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "grDevices",
- "methods",
- "utils"
- ],
- "Hash": "e8a1e41acf02548751f45c718d55aa6a"
- },
- "digest": {
- "Package": "digest",
- "Version": "0.6.34",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "utils"
- ],
- "Hash": "7ede2ee9ea8d3edbf1ca84c1e333ad1a"
- },
- "dplyr": {
- "Package": "dplyr",
- "Version": "1.1.4",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "R6",
- "cli",
- "generics",
- "glue",
- "lifecycle",
- "magrittr",
- "methods",
- "pillar",
- "rlang",
- "tibble",
- "tidyselect",
- "utils",
- "vctrs"
- ],
- "Hash": "fedd9d00c2944ff00a0e2696ccf048ec"
- },
- "ellipsis": {
- "Package": "ellipsis",
- "Version": "0.3.2",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R",
- "rlang"
- ],
- "Hash": "bb0eec2fe32e88d9e2836c2f73ea2077"
- },
- "evaluate": {
- "Package": "evaluate",
- "Version": "0.23",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "methods"
- ],
- "Hash": "daf4a1246be12c1fa8c7705a0935c1a0"
- },
- "fansi": {
- "Package": "fansi",
- "Version": "1.0.6",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "grDevices",
- "utils"
- ],
- "Hash": "962174cf2aeb5b9eea581522286a911f"
- },
- "fastmap": {
- "Package": "fastmap",
- "Version": "1.1.1",
- "Source": "Repository",
- "Repository": "CRAN",
- "Hash": "f7736a18de97dea803bde0a2daaafb27"
- },
- "fontawesome": {
- "Package": "fontawesome",
- "Version": "0.5.2",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "htmltools",
- "rlang"
- ],
- "Hash": "c2efdd5f0bcd1ea861c2d4e2a883a67d"
- },
- "fs": {
- "Package": "fs",
- "Version": "1.6.3",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "methods"
- ],
- "Hash": "47b5f30c720c23999b913a1a635cf0bb"
- },
- "generics": {
- "Package": "generics",
- "Version": "0.1.3",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R",
- "methods"
- ],
- "Hash": "15e9634c0fcd294799e9b2e929ed1b86"
- },
- "glue": {
- "Package": "glue",
- "Version": "1.7.0",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "methods"
- ],
- "Hash": "e0b3a53876554bd45879e596cdb10a52"
- },
- "highr": {
- "Package": "highr",
- "Version": "0.10",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R",
- "xfun"
- ],
- "Hash": "06230136b2d2b9ba5805e1963fa6e890"
- },
- "hms": {
- "Package": "hms",
- "Version": "1.1.3",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "lifecycle",
- "methods",
- "pkgconfig",
- "rlang",
- "vctrs"
- ],
- "Hash": "b59377caa7ed00fa41808342002138f9"
- },
- "htmltools": {
- "Package": "htmltools",
- "Version": "0.5.7",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "base64enc",
- "digest",
- "ellipsis",
- "fastmap",
- "grDevices",
- "rlang",
- "utils"
- ],
- "Hash": "2d7b3857980e0e0d0a1fd6f11928ab0f"
- },
- "jquerylib": {
- "Package": "jquerylib",
- "Version": "0.1.4",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "htmltools"
- ],
- "Hash": "5aab57a3bd297eee1c1d862735972182"
- },
- "jsonlite": {
- "Package": "jsonlite",
- "Version": "1.8.8",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "methods"
- ],
- "Hash": "e1b9c55281c5adc4dd113652d9e26768"
- },
- "knitr": {
- "Package": "knitr",
- "Version": "1.45",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "evaluate",
- "highr",
- "methods",
- "tools",
- "xfun",
- "yaml"
- ],
- "Hash": "1ec462871063897135c1bcbe0fc8f07d"
- },
- "lifecycle": {
- "Package": "lifecycle",
- "Version": "1.0.4",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "cli",
- "glue",
- "rlang"
- ],
- "Hash": "b8552d117e1b808b09a832f589b79035"
- },
- "lubridate": {
- "Package": "lubridate",
- "Version": "1.9.3",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "generics",
- "methods",
- "timechange"
- ],
- "Hash": "680ad542fbcf801442c83a6ac5a2126c"
- },
- "magrittr": {
- "Package": "magrittr",
- "Version": "2.0.3",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R"
- ],
- "Hash": "7ce2733a9826b3aeb1775d56fd305472"
- },
- "memoise": {
- "Package": "memoise",
- "Version": "2.0.1",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "cachem",
- "rlang"
- ],
- "Hash": "e2817ccf4a065c5d9d7f2cfbe7c1d78c"
- },
- "mime": {
- "Package": "mime",
- "Version": "0.12",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "tools"
- ],
- "Hash": "18e9c28c1d3ca1560ce30658b22ce104"
- },
- "palmerpenguins": {
- "Package": "palmerpenguins",
- "Version": "0.1.1",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R"
- ],
- "Hash": "6c6861efbc13c1d543749e9c7be4a592"
- },
- "pillar": {
- "Package": "pillar",
- "Version": "1.9.0",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "cli",
- "fansi",
- "glue",
- "lifecycle",
- "rlang",
- "utf8",
- "utils",
- "vctrs"
- ],
- "Hash": "15da5a8412f317beeee6175fbc76f4bb"
- },
- "pkgconfig": {
- "Package": "pkgconfig",
- "Version": "2.0.3",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "utils"
- ],
- "Hash": "01f28d4278f15c76cddbea05899c5d6f"
- },
- "prettyunits": {
- "Package": "prettyunits",
- "Version": "1.2.0",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R"
- ],
- "Hash": "6b01fc98b1e86c4f705ce9dcfd2f57c7"
- },
- "progress": {
- "Package": "progress",
- "Version": "1.2.3",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "R6",
- "crayon",
- "hms",
- "prettyunits"
- ],
- "Hash": "f4625e061cb2865f111b47ff163a5ca6"
- },
- "purrr": {
- "Package": "purrr",
- "Version": "1.0.2",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "cli",
- "lifecycle",
- "magrittr",
- "rlang",
- "vctrs"
- ],
- "Hash": "1cba04a4e9414bdefc9dcaa99649a8dc"
- },
- "rappdirs": {
- "Package": "rappdirs",
- "Version": "0.3.3",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R"
- ],
- "Hash": "5e3c5dc0b071b21fa128676560dbe94d"
- },
- "readr": {
- "Package": "readr",
- "Version": "2.1.5",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "R6",
- "cli",
- "clipr",
- "cpp11",
- "crayon",
- "hms",
- "lifecycle",
- "methods",
- "rlang",
- "tibble",
- "tzdb",
- "utils",
- "vroom"
- ],
- "Hash": "9de96463d2117f6ac49980577939dfb3"
- },
- "renv": {
- "Package": "renv",
- "Version": "1.0.3",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "utils"
- ],
- "Hash": "41b847654f567341725473431dd0d5ab"
- },
- "rlang": {
- "Package": "rlang",
- "Version": "1.1.3",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "utils"
- ],
- "Hash": "42548638fae05fd9a9b5f3f437fbbbe2"
- },
- "rmarkdown": {
- "Package": "rmarkdown",
- "Version": "2.25",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "bslib",
- "evaluate",
- "fontawesome",
- "htmltools",
- "jquerylib",
- "jsonlite",
- "knitr",
- "methods",
- "stringr",
- "tinytex",
- "tools",
- "utils",
- "xfun",
- "yaml"
- ],
- "Hash": "d65e35823c817f09f4de424fcdfa812a"
- },
- "sass": {
- "Package": "sass",
- "Version": "0.4.8",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R6",
- "fs",
- "htmltools",
- "rappdirs",
- "rlang"
- ],
- "Hash": "168f9353c76d4c4b0a0bbf72e2c2d035"
- },
- "stringi": {
- "Package": "stringi",
- "Version": "1.8.3",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "stats",
- "tools",
- "utils"
- ],
- "Hash": "058aebddea264f4c99401515182e656a"
- },
- "stringr": {
- "Package": "stringr",
- "Version": "1.5.1",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "cli",
- "glue",
- "lifecycle",
- "magrittr",
- "rlang",
- "stringi",
- "vctrs"
- ],
- "Hash": "960e2ae9e09656611e0b8214ad543207"
- },
- "tibble": {
- "Package": "tibble",
- "Version": "3.2.1",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R",
- "fansi",
- "lifecycle",
- "magrittr",
- "methods",
- "pillar",
- "pkgconfig",
- "rlang",
- "utils",
- "vctrs"
- ],
- "Hash": "a84e2cc86d07289b3b6f5069df7a004c"
- },
- "tidyr": {
- "Package": "tidyr",
- "Version": "1.3.1",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "cli",
- "cpp11",
- "dplyr",
- "glue",
- "lifecycle",
- "magrittr",
- "purrr",
- "rlang",
- "stringr",
- "tibble",
- "tidyselect",
- "utils",
- "vctrs"
- ],
- "Hash": "915fb7ce036c22a6a33b5a8adb712eb1"
- },
- "tidyselect": {
- "Package": "tidyselect",
- "Version": "1.2.0",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R",
- "cli",
- "glue",
- "lifecycle",
- "rlang",
- "vctrs",
- "withr"
- ],
- "Hash": "79540e5fcd9e0435af547d885f184fd5"
- },
- "timechange": {
- "Package": "timechange",
- "Version": "0.3.0",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "cpp11"
- ],
- "Hash": "c5f3c201b931cd6474d17d8700ccb1c8"
- },
- "tinytex": {
- "Package": "tinytex",
- "Version": "0.49",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "xfun"
- ],
- "Hash": "5ac22900ae0f386e54f1c307eca7d843"
- },
- "tzdb": {
- "Package": "tzdb",
- "Version": "0.4.0",
- "Source": "Repository",
- "Repository": "CRAN",
- "Requirements": [
- "R",
- "cpp11"
- ],
- "Hash": "f561504ec2897f4d46f0c7657e488ae1"
- },
- "utf8": {
- "Package": "utf8",
- "Version": "1.2.4",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R"
- ],
- "Hash": "62b65c52671e6665f803ff02954446e9"
- },
- "vctrs": {
- "Package": "vctrs",
- "Version": "0.6.5",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "cli",
- "glue",
- "lifecycle",
- "rlang"
- ],
- "Hash": "c03fa420630029418f7e6da3667aac4a"
- },
- "vroom": {
- "Package": "vroom",
- "Version": "1.6.5",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "bit64",
- "cli",
- "cpp11",
- "crayon",
- "glue",
- "hms",
- "lifecycle",
- "methods",
- "progress",
- "rlang",
- "stats",
- "tibble",
- "tidyselect",
- "tzdb",
- "vctrs",
- "withr"
- ],
- "Hash": "390f9315bc0025be03012054103d227c"
- },
- "withr": {
- "Package": "withr",
- "Version": "3.0.0",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "R",
- "grDevices",
- "graphics"
- ],
- "Hash": "d31b6c62c10dcf11ec530ca6b0dd5d35"
- },
- "xfun": {
- "Package": "xfun",
- "Version": "0.42",
- "Source": "Repository",
- "Repository": "RSPM",
- "Requirements": [
- "grDevices",
- "stats",
- "tools"
- ],
- "Hash": "fd1349170df31f7a10bd98b0189e85af"
- },
- "yaml": {
- "Package": "yaml",
- "Version": "2.3.8",
- "Source": "Repository",
- "Repository": "RSPM",
- "Hash": "29240487a071f535f5e5d5a323b7afbd"
- }
- }
-}