From b2d508550230ef1be75d8909e419a660aaf4c996 Mon Sep 17 00:00:00 2001 From: Jordan Evens Date: Mon, 8 Apr 2024 10:22:08 -0400 Subject: [PATCH 01/17] re-added script for showing constant grid outputs --- source.r | 136 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 136 insertions(+) create mode 100755 source.r diff --git a/source.r b/source.r new file mode 100755 index 000000000..f9082ed95 --- /dev/null +++ b/source.r @@ -0,0 +1,136 @@ +setwd("//wsl$/Ubuntu-20.04/mnt/data/FireSTARR") +library(data.table) +# library(raster) +library(terra) +library(lattice) +library(rasterVis) +# colours <- list( +# "1"=list(r=255, g=0, b=0), +# "2"=list(r=255, g=255, b=255), +# "4"=list(r=247, g=250, b=21), +# "8"=list(r=0, g=0, b=0), +# #"16"=list(r=185, g=122, b=87), +# #"32"=list(r=34, g=177, b=76), +# #"64"=list(r=163, g=73, b=164), +# #"128"=list(r=0, g=162, b=232) +# "16"=list(r=0, g=255, b=0), +# "32"=list(r=0, g=0, b=255), +# "64"=list(r=200, g=200, b=0), +# "128"=list(r=200, g=0, b=200) +# ) +# colours <- list( +# "1"=list(r=255, g=0, b=0), +# "2"=list(r=0, g=255, b=0), +# "4"=list(r=0, g=0, b=255), +# "8"=list(r=255, g=255, b=255), +# "16"=list(r=255, g=255, b=0), +# "32"=list(r=0, g=255, b=255), +# "64"=list(r=255, g=0, b=255), +# "128"=list(r=0, g=0, b=0) +# ) +# colours <- list( +# "1"=list(r=255, g=0, b=0), +# "2"=list(r=0, g=0, b=255), +# "4"=list(r=0, g=0, b=0), +# "8"=list(r=255, g=255, b=255), +# "16"=list(r=0, g=255, b=0), +# "32"=list(r=255, g=0, b=255), +# "64"=list(r=255, g=0, b=255), +# "128"=list(r=0, g=255, b=255) +# ) +colours <- list( + "1" = list(r = 98, g = 45, b = 209), + "2" = list(r = 255, g = 255, b = 0), + "4" = list(r = 113, g = 143, b = 200), + "8" = list(r = 255, g = 0, b = 0), + "16" = list(r = 0, g = 0, b = 255), + "32" = list(r = 255, g = 144, b = 0), + "64" = list(r = 144, g = 0, b = 144), + "128" = list(r = 144, g = 255, b = 0) +) +results <- rbind(NULL, c(Value = 0, Red = 0, Green = 0, Blue = 0)) +for (i in 1:255) { + if (!(i %in% names(colours))) { + cur <- i + count <- 0 + r <- 0 + g <- 0 + b <- 0 + print(i) + for (j in 1:(i - 1)) { + if (bitwAnd(cur, j) > 0) { + print(paste0("Matches ", j)) + co <- colours[[as.character(j)]] + print(co) + r <- r + co$r + g <- g + co$g + b <- b + co$b + count <- count + 1 + cur <- bitwAnd(cur, bitwNot(j)) + } + } + r <- as.integer(r / count) + g <- as.integer(g / count) + b <- as.integer(b / count) + colours[[as.character(i)]] <- list(r = r, g = g, b = b) + } + v <- colours[[as.character(i)]] + results <- rbind(results, c(Value = i, Red = v$r, Green = v$g, Blue = v$b)) +} + +to_hex <- function(r, g, b) { + return(rgb(r, g, b, maxColorValue = 255)) +} +hex <- list() +for (i in 1:(length(colours))) { + v <- colours[[as.character(i)]] + hex[as.character(i)] <- to_hex(v$r, v$g, v$b) +} +# hex <- sapply(colours, +# function(v) { +# print(v) +# return(to_hex(v$r, v$g, v$b)) +# }) +hex <- unlist(hex) +hex <- c(to_hex(0, 0, 0), hex) +names(hex) <- 0:255 +results <- as.data.table(results) +write.table(results, file = "source.clr", col.names = FALSE, row.names = FALSE, sep = " ") + +DIR <- "../data/test_output" +imgs <- list.files(DIR, pattern = "^source.tif$", full.names = TRUE, recursive = TRUE) +imgs <- imgs[grep("C2", imgs)] +rasters <- lapply(imgs, function(img) { + return(trim(rast(img))) +}) +e <- ext(rasters[[1]]) +for (r in rasters) { + e <- ext(extend(r, e)) +} +pdf(paste0(basename(DIR), ".pdf"), width = 11, height = 8.5) +par(mfrow = c(3, 4), mar = c(2, 2, 2, 2)) +for (i in 1:length(rasters)) { + img <- imgs[[i]] + title <- basename(dirname(img)) + r <- rasters[[i]] + # set largest extent between all rasters + r <- extend(r, e) + # HACK: have to filter to values in the raster so it picks right colours + # col <- hex[1 + unique(r)] + # col <- hex[unique(r)] + # col <- hex[1:max(unique(r))] + # col <- hex[as.character(unique(r))] + col <- hex[as.integer(unlist(unique(r)))] + # plot(r, col=col, main=title) + # plot(ratify(r), col=hex, main=title) + # colortable(r) <- hex + # plot(r, main=title) + # print(levelplot(ratify(r), col.regions=col, att='ID')) + r <- as.factor(r) + # lvls <- levels(r)[[1]] + # lvls$ID <- unique(r) + # levels(r) <- lvls + # print(levelplot(r, col.regions = col, att = "ID", main = title)) + plot(r, col=col, main=title) +} +dev.off() From 9a2ebdf9aeadad98cd28193b62514940e68b6feb Mon Sep 17 00:00:00 2001 From: Jordan Evens Date: Mon, 8 Apr 2024 06:52:50 -0400 Subject: [PATCH 02/17] broke debug parts into multiple flags --- tbd/src/cpp/ConstantGrid.h | 20 ++++++------ tbd/src/cpp/Environment.h | 2 +- tbd/src/cpp/FBP45.h | 4 +-- tbd/src/cpp/FireWeather.h | 4 +-- tbd/src/cpp/FireWeatherDaily.h | 3 -- tbd/src/cpp/Grid.h | 2 +- tbd/src/cpp/Location.h | 4 +-- tbd/src/cpp/Main.cpp | 6 +--- tbd/src/cpp/Model.h | 2 +- tbd/src/cpp/Perimeter.cpp | 4 +-- tbd/src/cpp/ProbabilityMap.cpp | 2 +- tbd/src/cpp/Scenario.cpp | 14 ++++----- tbd/src/cpp/Statistics.h | 4 +-- tbd/src/cpp/debug_settings.cpp | 56 ++++++++++++++++++++++++++++++++++ tbd/src/cpp/debug_settings.h | 31 +++++++++++++++++++ tbd/src/cpp/stdafx.h | 2 ++ 16 files changed, 121 insertions(+), 39 deletions(-) create mode 100644 tbd/src/cpp/debug_settings.cpp create mode 100644 tbd/src/cpp/debug_settings.h diff --git a/tbd/src/cpp/ConstantGrid.h b/tbd/src/cpp/ConstantGrid.h index c10e3bef0..eda007675 100644 --- a/tbd/src/cpp/ConstantGrid.h +++ b/tbd/src/cpp/ConstantGrid.h @@ -43,7 +43,7 @@ class ConstantGrid */ [[nodiscard]] constexpr T at(const Location& location) const noexcept override { -#ifndef NDEBUG +#ifdef DEBUG_GRIDS logging::check_fatal(location.row() >= this->rows() || location.column() >= this->columns(), "Out of bounds (%d, %d)", location.row(), location.column()); #endif // return at(location.hash()); @@ -159,7 +159,7 @@ class ConstantGrid std::function convert) { logging::info("Reading file %s", filename.c_str()); -#ifndef NDEBUG +#ifdef DEBUG_GRIDS // auto min_value = std::numeric_limits::max(); // auto max_value = std::numeric_limits::min(); auto min_value = std::numeric_limits::max(); @@ -197,7 +197,7 @@ class ConstantGrid // make sure we're at the start of a tile const auto tile_column = tile_width * static_cast(min_column / tile_width); const auto max_column = static_cast(min(min_column + MAX_COLUMNS - 1, actual_columns)); -#ifndef NDEBUG +#ifdef DEBUG_GRIDS logging::check_fatal(min_column < 0, "Column can't be less than 0"); logging::check_fatal(max_column - min_column > MAX_COLUMNS, "Can't have more than %d columns", MAX_COLUMNS); logging::check_fatal(max_column > actual_columns, "Can't have more than actual %d columns", actual_columns); @@ -210,7 +210,7 @@ class ConstantGrid } const auto tile_row = tile_width * static_cast(min_row / tile_width); const auto max_row = static_cast(min(min_row + MAX_ROWS - 1, actual_rows)); -#ifndef NDEBUG +#ifdef DEBUG_GRIDS logging::check_fatal(min_row < 0, "Row can't be less than 0 but is %d", min_row); logging::check_fatal(max_row - min_row > MAX_ROWS, "Can't have more than %d rows but have %d", MAX_ROWS, max_row - min_row); logging::check_fatal(max_row > actual_rows, "Can't have more than actual %d rows", actual_rows); @@ -226,7 +226,7 @@ class ConstantGrid filename.c_str(), bps_file, bps); -#ifndef NDEBUG +#ifdef DEBUG_GRIDS int bps_int16_t = std::numeric_limits::digits + (1 * std::numeric_limits::is_signed); logging::debug("Size of pointer to int is %ld vs %ld", sizeof(int16_t*), sizeof(V*)); logging::debug("Raster %s calculated bps for type V is %ld; tif says bps is %ld; int16_t is %ld", @@ -267,7 +267,7 @@ class ConstantGrid { const auto cur_hash = actual_row * MAX_COLUMNS + actual_column; auto cur = *(static_cast(buf) + offset); -#ifndef NDEBUG +#ifdef DEBUG_GRIDS min_value = min(cur, min_value); max_value = max(cur, max_value); #endif @@ -308,7 +308,7 @@ class ConstantGrid const auto new_yll = grid_info.yllcorner() + (static_cast(actual_rows) - static_cast(max_row)) * grid_info.cellSize(); -#ifndef NDEBUG +#ifdef DEBUG_GRIDS logging::check_fatal(new_yll < grid_info.yllcorner(), "New yllcorner is outside original grid"); #endif @@ -331,7 +331,7 @@ class ConstantGrid string(grid_info.proj4()), std::move(values)); auto new_location = result->findCoordinates(point, true); -#ifndef NDEBUG +#ifdef DEBUG_GRIDS logging::check_fatal(nullptr == new_location, "Invalid location after reading"); #endif logging::note("Coordinates are (%d, %d => %f, %f)", @@ -339,7 +339,7 @@ class ConstantGrid std::get<1>(*new_location), std::get<0>(*new_location) + std::get<2>(*new_location) / 1000.0, std::get<1>(*new_location) + std::get<3>(*new_location) / 1000.0); -#ifndef NDEBUG +#ifdef DEBUG_GRIDS logging::note("Values for %s range from %d to %d", filename.c_str(), min_value, @@ -544,7 +544,7 @@ class ConstantGrid string(grid_info.proj4()), std::move(values)) { -#ifndef NDEBUG +#ifdef DEBUG_GRIDS logging::check_fatal( this->data.size() != static_cast(MAX_ROWS) * MAX_COLUMNS, "Invalid grid size"); diff --git a/tbd/src/cpp/Environment.h b/tbd/src/cpp/Environment.h index 314a7c9e9..844c5e401 100644 --- a/tbd/src/cpp/Environment.h +++ b/tbd/src/cpp/Environment.h @@ -347,7 +347,7 @@ class Environment } const auto cell = Cell{h, s, a, f}; values.at(h) = cell; -#ifndef NDEBUG +#ifdef DEBUG_GRIDS #ifndef VLD_RPTHOOK_INSTALL logging::check_fatal(cell.row() != r, "Cell row %d not %d", cell.row(), r); logging::check_fatal(cell.column() != c, "Cell column %d not %d", cell.column(), c); diff --git a/tbd/src/cpp/FBP45.h b/tbd/src/cpp/FBP45.h index 88ec666d8..58c6c3dfa 100644 --- a/tbd/src/cpp/FBP45.h +++ b/tbd/src/cpp/FBP45.h @@ -18,7 +18,7 @@ #include "FireSpread.h" #include "LookupTable.h" #include "StandardFuel.h" -#ifndef NDEBUG +#ifdef DEBUG_FUEL_VARIABLE #include "Log.h" #endif namespace tbd::fuel @@ -1236,7 +1236,7 @@ template // HACK: no way to tell which is which, so let's assume they have to be the same?? // HACK: use a function so that DEBUG section doesn't get out of sync const auto for_spring = fct(fuel.spring()); -#ifndef NDEBUG +#ifdef DEBUG_FUEL_VARIABLE const auto for_summer = fct(fuel.summer()); logging::check_fatal(for_spring != for_summer, "Expected spring and summer cfb to be identical"); #endif diff --git a/tbd/src/cpp/FireWeather.h b/tbd/src/cpp/FireWeather.h index 4110b2427..cfcccf8a1 100644 --- a/tbd/src/cpp/FireWeather.h +++ b/tbd/src/cpp/FireWeather.h @@ -19,7 +19,7 @@ #include #include "FuelLookup.h" #include "FWI.h" -#ifndef NDEBUG +#ifdef DEBUG_FWI_WEATHER #include "Log.h" #endif namespace tbd @@ -62,7 +62,7 @@ class FireWeather */ [[nodiscard]] const FwiWeather* at(const double time) const { -#ifndef NDEBUG +#ifdef DEBUG_FWI_WEATHER logging::check_fatal(time < 0 || time >= MAX_DAYS, "Invalid weather time %f", time); #endif return weather_by_hour_by_day_->at(util::time_index(time, min_date_)); diff --git a/tbd/src/cpp/FireWeatherDaily.h b/tbd/src/cpp/FireWeatherDaily.h index 27468fc40..f05528a8f 100644 --- a/tbd/src/cpp/FireWeatherDaily.h +++ b/tbd/src/cpp/FireWeatherDaily.h @@ -20,9 +20,6 @@ #include "FuelLookup.h" #include "FWI.h" #include "FireWeather.h" -#ifndef NDEBUG -#include "Log.h" -#endif namespace tbd::wx { /** diff --git a/tbd/src/cpp/Grid.h b/tbd/src/cpp/Grid.h index 9cd2058ce..2797b49ca 100644 --- a/tbd/src/cpp/Grid.h +++ b/tbd/src/cpp/Grid.h @@ -330,7 +330,7 @@ class Grid rows_(rows), columns_(columns) { -#ifndef NDEBUG +#ifdef DEBUG_GRIDS logging::check_fatal(rows > MAX_ROWS, "Too many rows (%d > %d)", rows, MAX_ROWS); logging::check_fatal(columns > MAX_COLUMNS, "Too many columns (%d > %d)", columns, MAX_COLUMNS); #endif diff --git a/tbd/src/cpp/Location.h b/tbd/src/cpp/Location.h index ddfe0b409..aec30d731 100644 --- a/tbd/src/cpp/Location.h +++ b/tbd/src/cpp/Location.h @@ -37,7 +37,7 @@ class Location #endif : topo_data_(hash & HashMask) { -#ifndef NDEBUG +#ifdef DEBUG_GRIDS logging::check_fatal((row != unhashRow(topo_data_)) || column != unhashColumn(topo_data_), "Hash is incorrect (%d, %d)", @@ -56,7 +56,7 @@ class Location Location(const Idx row, const Idx column) noexcept : Location(row, column, doHash(row, column) & HashMask) { -#ifndef NDEBUG +#ifdef DEBUG_GRIDS logging::check_fatal(row >= MAX_ROWS || column >= MAX_COLUMNS, "Location out of bounds (%d, %d)", row, column); #endif } diff --git a/tbd/src/cpp/Main.cpp b/tbd/src/cpp/Main.cpp index 1985a623c..aa770b4fa 100644 --- a/tbd/src/cpp/Main.cpp +++ b/tbd/src/cpp/Main.cpp @@ -161,13 +161,9 @@ void register_index(T& index, string v, string help, bool required) } int main(const int argc, const char* const argv[]) { + tbd::debug::show_debug_settings(); ARGC = argc; ARGV = argv; -#ifndef NDEBUG - printf("**************************************************\n"); - printf("******************* DEBUG MODE *******************\n"); - printf("**************************************************\n"); -#endif auto bin = string(ARGV[CUR_ARG++]); replace(bin.begin(), bin.end(), '\\', '/'); const auto end = max(static_cast(0), bin.rfind('/') + 1); diff --git a/tbd/src/cpp/Model.h b/tbd/src/cpp/Model.h index f22658589..9e8857031 100644 --- a/tbd/src/cpp/Model.h +++ b/tbd/src/cpp/Model.h @@ -424,7 +424,7 @@ class Model * \brief Environment to use for Model */ topo::Environment* env_; -#ifndef NDEBUG +#ifdef DEBUG_WEATHER /** * \brief Write weather that was loaded to an output file */ diff --git a/tbd/src/cpp/Perimeter.cpp b/tbd/src/cpp/Perimeter.cpp index 60c6b5615..548d4943f 100644 --- a/tbd/src/cpp/Perimeter.cpp +++ b/tbd/src/cpp/Perimeter.cpp @@ -75,7 +75,7 @@ class BurnedMap final } } } -#ifndef NDEBUG +#ifdef DEBUG_GRIDS for (auto& kv : data) { logging::check_fatal(fuel::is_null_fuel(env.cell(kv.first)), @@ -93,7 +93,7 @@ Perimeter::Perimeter(const string& perim, const Point& point, const Environment& const BurnedMap burned(*perim_grid, env); burned_ = burned.makeList(); edge_ = burned.makeEdge(); -#ifndef NDEBUG +#ifdef DEBUG_GRIDS for (auto c : edge_) { logging::check_fatal(fuel::is_null_fuel(env.cell(c)), "Null fuel in perimeter edge"); diff --git a/tbd/src/cpp/ProbabilityMap.cpp b/tbd/src/cpp/ProbabilityMap.cpp index a4f0fb6f0..3f468bb0e 100644 --- a/tbd/src/cpp/ProbabilityMap.cpp +++ b/tbd/src/cpp/ProbabilityMap.cpp @@ -56,7 +56,7 @@ void ProbabilityMap::setPerimeter(const topo::Perimeter* const perimeter) } void ProbabilityMap::addProbabilities(const ProbabilityMap& rhs) { -#ifndef NDEBUG +#ifndef DEBUG_PROBAILITY logging::check_fatal(rhs.time_ != time_, "Wrong time"); logging::check_fatal(rhs.start_time_ != start_time_, "Wrong start time"); logging::check_fatal(rhs.min_value_ != min_value_, "Wrong min value"); diff --git a/tbd/src/cpp/Scenario.cpp b/tbd/src/cpp/Scenario.cpp index 64b352ead..ba9e6ace2 100644 --- a/tbd/src/cpp/Scenario.cpp +++ b/tbd/src/cpp/Scenario.cpp @@ -46,7 +46,7 @@ void Scenario::clear() noexcept extinction_thresholds_.clear(); spread_thresholds_by_ros_.clear(); max_ros_ = 0; -#ifndef NDEBUG +#ifdef DEBUG_SIMULATION log_check_fatal(!scheduler_.empty(), "Scheduler isn't empty after clear()"); #endif model_->releaseBurnedVector(unburnable_); @@ -247,7 +247,7 @@ Scenario* Scenario::reset(mt19937* mt_extinction, } void Scenario::evaluate(const Event& event) { -#ifndef NDEBUG +#ifdef DEBUG_SIMULATION log_check_fatal(event.time() < current_time_, "Expected time to be > %f but got %f", current_time_, @@ -453,7 +453,7 @@ Scenario& Scenario::operator=(Scenario&& rhs) noexcept } void Scenario::burn(const Event& event, const IntensitySize burn_intensity) { -#ifndef NDEBUG +#ifdef DEBUG_SIMULATION log_check_fatal(intensity_->hasBurned(event.cell()), "Re-burning cell"); #endif // Observers only care about cells burning so do it here @@ -481,7 +481,7 @@ string Scenario::add_log(const char* format) const noexcept iss << buffer << format; return iss.str(); } -#ifndef NDEBUG +#ifdef DEBUG_PROBABILITIES void saveProbabilities(const string& dir, const string& base_name, vector& thresholds) @@ -497,7 +497,7 @@ void saveProbabilities(const string& dir, #endif Scenario* Scenario::run(map* probabilities) { -#ifndef NDEBUG +#ifdef DEBUG_SIMULATION log_check_fatal(ran(), "Scenario has already run"); #endif log_verbose("Starting"); @@ -525,7 +525,7 @@ Scenario* Scenario::run(map* probabilities) { // const auto cell = env.cell(location.hash()); const auto cell = env.cell(location); -#ifndef NDEBUG +#ifdef DEBUG_SIMULATION log_check_fatal(fuel::is_null_fuel(cell), "Null fuel in perimeter"); #endif // log_verbose("Adding point (%d, %d)", @@ -584,7 +584,7 @@ Scenario* Scenario::run(map* probabilities) currentFireSize()); #endif ran_ = true; -#ifndef NDEBUG +#ifdef DEBUG_PROBABILITY // nice to have this get output when debugging, but only need it in extreme cases if (logging::Log::getLogLevel() <= logging::LOG_EXTENSIVE) { diff --git a/tbd/src/cpp/Statistics.h b/tbd/src/cpp/Statistics.h index d2edaa7a2..b9e55b47b 100644 --- a/tbd/src/cpp/Statistics.h +++ b/tbd/src/cpp/Statistics.h @@ -197,7 +197,7 @@ class Statistics */ [[nodiscard]] double percentile(const uint8_t i) const noexcept { -#ifndef NDEBUG +#ifdef DEBUG_STATISTICS logging::check_fatal(static_cast(i) >= percentiles_.size(), "Invalid percentile %d requested", i); @@ -275,7 +275,7 @@ class Statistics [this](const double t, const double x) { return t + pow_int<2>(x - mean_); }); standard_deviation_ = sqrt(total / n_); sample_variance_ = total / (n_ - 1); -#ifndef NDEBUG +#ifdef DEBUG_STATISTICS logging::check_fatal(min_ != percentiles_[0], "Expected min to be %f not %f", min_, diff --git a/tbd/src/cpp/debug_settings.cpp b/tbd/src/cpp/debug_settings.cpp new file mode 100644 index 000000000..5311def73 --- /dev/null +++ b/tbd/src/cpp/debug_settings.cpp @@ -0,0 +1,56 @@ +#include "debug_settings.h" +#include +#include +#include + +namespace tbd::debug +{ +constexpr auto HR = "**********************************************************************"; +constexpr auto EDGE = 3; +constexpr auto WIDTH = static_cast(strlen(HR)) - (2 * (EDGE + 1)); + +void printf_centered(const char* str) +{ + const auto n = static_cast(strlen(str)); + const auto pad_left = ((WIDTH - n) / 2) + n; + const auto pad_right = WIDTH - pad_left; + printf("%.*s %*s%*s %.*s\n", EDGE, HR, pad_left, str, pad_right, "", EDGE, HR); +}; + +void show_debug_settings() +{ +#ifdef DEBUG_ANY + printf("%s\n", HR); + printf_centered("DEBUG OPTIONS"); + printf("%s\n", HR); +#endif + +#ifdef NDEBUG + printf_centered("NDEBUG"); +#endif +#ifdef DEBUG_FUEL_VARIABLE + printf_centered("DEBUG_FUEL_VARIABLE"); +#endif +#ifdef DEBUG_FWI_WEATHER + printf_centered("DEBUG_FWI_WEATHER"); +#endif +#ifdef DEBUG_GRIDS + printf_centered("DEBUG_GRIDS"); +#endif +#ifdef DEBUG_PROBAILITY + printf_centered("DEBUG_PROBAILITY"); +#endif +#ifdef DEBUG_SIMULATION + printf_centered("DEBUG_SIMULATION"); +#endif +#ifdef DEBUG_STATISTICS + printf_centered("DEBUG_STATISTICS"); +#endif +#ifdef DEBUG_WEATHER + printf_centered("DEBUG_WEATHER"); +#endif +#ifdef DEBUG_ANY + printf("%s\n", HR); +#endif +} +} diff --git a/tbd/src/cpp/debug_settings.h b/tbd/src/cpp/debug_settings.h new file mode 100644 index 000000000..f27513545 --- /dev/null +++ b/tbd/src/cpp/debug_settings.h @@ -0,0 +1,31 @@ +#pragma once + +// if in debug mode then set everything, otherwise uncomment turning things off if trying to debug specific things +#define DEBUG_FUEL_VARIABLE +#define DEBUG_FWI_WEATHER +#define DEBUG_GRIDS +#define DEBUG_PROBAILITY +#define DEBUG_SIMULATION +#define DEBUG_STATISTICS +#define DEBUG_WEATHER + +#ifdef NDEBUG + +#undef DEBUG_FUEL_VARIABLE +#undef DEBUG_FWI_WEATHER +#undef DEBUG_GRIDS +#undef DEBUG_PROBAILITY +#undef DEBUG_SIMULATION +#undef DEBUG_STATISTICS +#undef DEBUG_WEATHER + +#endif + +#if defined(NDEBUG) || defined(DEBUG_FUEL_VARIABLE) || defined(DEBUG_FWI_WEATHER) || defined(DEBUG_GRIDS) || defined(DEBUG_PROBABILITY) || defined(DEBUG_FWI_WEATHER) || defined(DEBUG_FWI_WEATHER) || defined(DEBUG_FWI_WEATHER) +#define DEBUG_ANY +#endif + +namespace tbd::debug +{ +void show_debug_settings(); +} diff --git a/tbd/src/cpp/stdafx.h b/tbd/src/cpp/stdafx.h index cf79bdd23..9c91cf96c 100644 --- a/tbd/src/cpp/stdafx.h +++ b/tbd/src/cpp/stdafx.h @@ -14,6 +14,8 @@ // along with this program. If not, see . #pragma once +#include "debug_settings.h" + // #define VLD_FORCE_ENABLE // #include "vld.h" #define _USE_MATH_DEFINES From 31a3a755e20e2e7be3f3c67087629be10254f75f Mon Sep 17 00:00:00 2001 From: Jordan Evens Date: Mon, 8 Apr 2024 10:26:10 -0400 Subject: [PATCH 03/17] change formatting for weather output files so they match original better --- tbd/src/cpp/Cell.h | 17 ++------ tbd/src/cpp/ConstantGrid.h | 15 +------ tbd/src/cpp/ConvexHull.cpp | 17 ++------ tbd/src/cpp/ConvexHull.h | 17 ++------ tbd/src/cpp/Duff.cpp | 17 ++------ tbd/src/cpp/Duff.h | 17 ++------ tbd/src/cpp/Environment.cpp | 17 ++------ tbd/src/cpp/Environment.h | 17 ++------ tbd/src/cpp/EnvironmentInfo.cpp | 17 ++------ tbd/src/cpp/EnvironmentInfo.h | 17 ++------ tbd/src/cpp/Event.h | 17 ++------ tbd/src/cpp/EventCompare.h | 17 ++------ tbd/src/cpp/FBP45.cpp | 17 ++------ tbd/src/cpp/FBP45.h | 17 ++------ tbd/src/cpp/FWI.cpp | 17 ++------ tbd/src/cpp/FWI.h | 17 ++------ tbd/src/cpp/FireSpread.cpp | 17 ++------ tbd/src/cpp/FireSpread.h | 17 ++------ tbd/src/cpp/FireWeather.cpp | 17 ++------ tbd/src/cpp/FireWeather.h | 17 ++------ tbd/src/cpp/FireWeatherDaily.cpp | 17 ++------ tbd/src/cpp/FireWeatherDaily.h | 17 ++------ tbd/src/cpp/FuelLookup.cpp | 17 ++------ tbd/src/cpp/FuelLookup.h | 17 ++------ tbd/src/cpp/FuelType.cpp | 17 ++------ tbd/src/cpp/FuelType.h | 17 ++------ tbd/src/cpp/Grid.cpp | 17 ++------ tbd/src/cpp/Grid.h | 17 ++------ tbd/src/cpp/GridMap.h | 17 ++------ tbd/src/cpp/Index.h | 17 ++------ tbd/src/cpp/InnerPos.h | 17 ++------ tbd/src/cpp/IntensityMap.cpp | 17 ++------ tbd/src/cpp/IntensityMap.h | 17 ++------ tbd/src/cpp/Iteration.cpp | 17 ++------ tbd/src/cpp/Iteration.h | 17 ++------ tbd/src/cpp/Location.h | 17 ++------ tbd/src/cpp/Log.cpp | 17 ++------ tbd/src/cpp/Log.h | 17 ++------ tbd/src/cpp/LookupTable.h | 17 ++------ tbd/src/cpp/Main.cpp | 17 ++------ tbd/src/cpp/Model.cpp | 69 ++++++++++++++------------------ tbd/src/cpp/Model.h | 17 ++------ tbd/src/cpp/Observer.cpp | 17 ++------ tbd/src/cpp/Observer.h | 17 ++------ tbd/src/cpp/Perimeter.cpp | 17 ++------ tbd/src/cpp/Perimeter.h | 17 ++------ tbd/src/cpp/Point.h | 17 ++------ tbd/src/cpp/ProbabilityMap.cpp | 17 ++------ tbd/src/cpp/ProbabilityMap.h | 17 ++------ tbd/src/cpp/SafeVector.cpp | 17 ++------ tbd/src/cpp/SafeVector.h | 17 ++------ tbd/src/cpp/Scenario.cpp | 17 ++------ tbd/src/cpp/Scenario.h | 17 ++------ tbd/src/cpp/Settings.cpp | 17 ++------ tbd/src/cpp/Settings.h | 17 ++------ tbd/src/cpp/StandardFuel.cpp | 17 ++------ tbd/src/cpp/StandardFuel.h | 17 ++------ tbd/src/cpp/StartPoint.cpp | 17 ++------ tbd/src/cpp/StartPoint.h | 17 ++------ tbd/src/cpp/Startup.cpp | 17 ++------ tbd/src/cpp/Startup.h | 17 ++------ tbd/src/cpp/Statistics.h | 17 ++------ tbd/src/cpp/Test.cpp | 17 ++------ tbd/src/cpp/Test.h | 17 ++------ tbd/src/cpp/TimeUtil.cpp | 17 ++------ tbd/src/cpp/TimeUtil.h | 17 ++------ tbd/src/cpp/Trim.cpp | 17 ++------ tbd/src/cpp/Trim.h | 17 ++------ tbd/src/cpp/UTM.cpp | 17 ++------ tbd/src/cpp/UTM.h | 17 ++------ tbd/src/cpp/Util.cpp | 17 ++------ tbd/src/cpp/Util.h | 17 ++------ tbd/src/cpp/Weather.cpp | 17 ++------ tbd/src/cpp/Weather.h | 17 ++------ tbd/src/cpp/debug_settings.cpp | 4 ++ tbd/src/cpp/debug_settings.h | 4 ++ tbd/src/cpp/stdafx.cpp | 17 ++------ tbd/src/cpp/stdafx.h | 17 ++------ tbd/src/cpp/unstable.cpp | 15 ++----- tbd/src/cpp/unstable.h | 18 ++------- 80 files changed, 267 insertions(+), 1116 deletions(-) diff --git a/tbd/src/cpp/Cell.h b/tbd/src/cpp/Cell.h index 5ba01bf4d..9f5416591 100644 --- a/tbd/src/cpp/Cell.h +++ b/tbd/src/cpp/Cell.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include diff --git a/tbd/src/cpp/ConstantGrid.h b/tbd/src/cpp/ConstantGrid.h index eda007675..b2e757b5b 100644 --- a/tbd/src/cpp/ConstantGrid.h +++ b/tbd/src/cpp/ConstantGrid.h @@ -1,17 +1,4 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include diff --git a/tbd/src/cpp/ConvexHull.cpp b/tbd/src/cpp/ConvexHull.cpp index 8599dd0fd..031bb3041 100644 --- a/tbd/src/cpp/ConvexHull.cpp +++ b/tbd/src/cpp/ConvexHull.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2005-2022, Jordan Evens -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2005-2022, Jordan Evens */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "ConvexHull.h" #include diff --git a/tbd/src/cpp/ConvexHull.h b/tbd/src/cpp/ConvexHull.h index e83af9554..07bc13774 100644 --- a/tbd/src/cpp/ConvexHull.h +++ b/tbd/src/cpp/ConvexHull.h @@ -1,17 +1,6 @@ -// Copyright (c) 2005-2022, Jordan Evens -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2005-2022, Jordan Evens */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once diff --git a/tbd/src/cpp/Duff.cpp b/tbd/src/cpp/Duff.cpp index 54f1be941..d95bf8161 100644 --- a/tbd/src/cpp/Duff.cpp +++ b/tbd/src/cpp/Duff.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include "Duff.h" diff --git a/tbd/src/cpp/Duff.h b/tbd/src/cpp/Duff.h index 5aff8bb6e..cff73875e 100644 --- a/tbd/src/cpp/Duff.h +++ b/tbd/src/cpp/Duff.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include "LookupTable.h" diff --git a/tbd/src/cpp/Environment.cpp b/tbd/src/cpp/Environment.cpp index 2b7fe7e95..90c940456 100644 --- a/tbd/src/cpp/Environment.cpp +++ b/tbd/src/cpp/Environment.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include "Environment.h" diff --git a/tbd/src/cpp/Environment.h b/tbd/src/cpp/Environment.h index 844c5e401..5e626f82c 100644 --- a/tbd/src/cpp/Environment.h +++ b/tbd/src/cpp/Environment.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include diff --git a/tbd/src/cpp/EnvironmentInfo.cpp b/tbd/src/cpp/EnvironmentInfo.cpp index b302ef283..8083a1866 100644 --- a/tbd/src/cpp/EnvironmentInfo.cpp +++ b/tbd/src/cpp/EnvironmentInfo.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include "EnvironmentInfo.h" diff --git a/tbd/src/cpp/EnvironmentInfo.h b/tbd/src/cpp/EnvironmentInfo.h index 171abda8a..d1301d682 100644 --- a/tbd/src/cpp/EnvironmentInfo.h +++ b/tbd/src/cpp/EnvironmentInfo.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include diff --git a/tbd/src/cpp/Event.h b/tbd/src/cpp/Event.h index 24e9e3f8b..33deaff0a 100644 --- a/tbd/src/cpp/Event.h +++ b/tbd/src/cpp/Event.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include "stdafx.h" diff --git a/tbd/src/cpp/EventCompare.h b/tbd/src/cpp/EventCompare.h index e929dc575..37ecfd905 100644 --- a/tbd/src/cpp/EventCompare.h +++ b/tbd/src/cpp/EventCompare.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include "Event.h" diff --git a/tbd/src/cpp/FBP45.cpp b/tbd/src/cpp/FBP45.cpp index 206bb496b..94a8e939e 100644 --- a/tbd/src/cpp/FBP45.cpp +++ b/tbd/src/cpp/FBP45.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include "FBP45.h" diff --git a/tbd/src/cpp/FBP45.h b/tbd/src/cpp/FBP45.h index 58c6c3dfa..5e6ac049e 100644 --- a/tbd/src/cpp/FBP45.h +++ b/tbd/src/cpp/FBP45.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include "Duff.h" diff --git a/tbd/src/cpp/FWI.cpp b/tbd/src/cpp/FWI.cpp index c39dfc26a..28c0ec42d 100644 --- a/tbd/src/cpp/FWI.cpp +++ b/tbd/src/cpp/FWI.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include "FWI.h" diff --git a/tbd/src/cpp/FWI.h b/tbd/src/cpp/FWI.h index a5c34ac9d..cb160b36f 100644 --- a/tbd/src/cpp/FWI.h +++ b/tbd/src/cpp/FWI.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include diff --git a/tbd/src/cpp/FireSpread.cpp b/tbd/src/cpp/FireSpread.cpp index de66c1698..8c0777308 100644 --- a/tbd/src/cpp/FireSpread.cpp +++ b/tbd/src/cpp/FireSpread.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include "FireSpread.h" diff --git a/tbd/src/cpp/FireSpread.h b/tbd/src/cpp/FireSpread.h index 1dcadf4c1..5a10f691e 100644 --- a/tbd/src/cpp/FireSpread.h +++ b/tbd/src/cpp/FireSpread.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include "Cell.h" diff --git a/tbd/src/cpp/FireWeather.cpp b/tbd/src/cpp/FireWeather.cpp index fbd2d39d9..793761526 100644 --- a/tbd/src/cpp/FireWeather.cpp +++ b/tbd/src/cpp/FireWeather.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include "FireWeather.h" diff --git a/tbd/src/cpp/FireWeather.h b/tbd/src/cpp/FireWeather.h index cfcccf8a1..742bf43cf 100644 --- a/tbd/src/cpp/FireWeather.h +++ b/tbd/src/cpp/FireWeather.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include diff --git a/tbd/src/cpp/FireWeatherDaily.cpp b/tbd/src/cpp/FireWeatherDaily.cpp index 92ac3b205..3bfd392bb 100644 --- a/tbd/src/cpp/FireWeatherDaily.cpp +++ b/tbd/src/cpp/FireWeatherDaily.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include "FireWeatherDaily.h" diff --git a/tbd/src/cpp/FireWeatherDaily.h b/tbd/src/cpp/FireWeatherDaily.h index f05528a8f..31b3f005c 100644 --- a/tbd/src/cpp/FireWeatherDaily.h +++ b/tbd/src/cpp/FireWeatherDaily.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include diff --git a/tbd/src/cpp/FuelLookup.cpp b/tbd/src/cpp/FuelLookup.cpp index 7fdbf7997..0b7e9cc89 100644 --- a/tbd/src/cpp/FuelLookup.cpp +++ b/tbd/src/cpp/FuelLookup.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include "FuelType.h" diff --git a/tbd/src/cpp/FuelLookup.h b/tbd/src/cpp/FuelLookup.h index 6f3e11299..aa4d39268 100644 --- a/tbd/src/cpp/FuelLookup.h +++ b/tbd/src/cpp/FuelLookup.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include diff --git a/tbd/src/cpp/FuelType.cpp b/tbd/src/cpp/FuelType.cpp index 2b5d568cb..b0fb1fb92 100644 --- a/tbd/src/cpp/FuelType.cpp +++ b/tbd/src/cpp/FuelType.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include "FireSpread.h" diff --git a/tbd/src/cpp/FuelType.h b/tbd/src/cpp/FuelType.h index d6128287e..5de21eb32 100644 --- a/tbd/src/cpp/FuelType.h +++ b/tbd/src/cpp/FuelType.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include "Duff.h" diff --git a/tbd/src/cpp/Grid.cpp b/tbd/src/cpp/Grid.cpp index 6708c66f8..dadcd83a8 100644 --- a/tbd/src/cpp/Grid.cpp +++ b/tbd/src/cpp/Grid.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include "Grid.h" diff --git a/tbd/src/cpp/Grid.h b/tbd/src/cpp/Grid.h index 2797b49ca..3d4edfa07 100644 --- a/tbd/src/cpp/Grid.h +++ b/tbd/src/cpp/Grid.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include diff --git a/tbd/src/cpp/GridMap.h b/tbd/src/cpp/GridMap.h index b38f94145..419279a18 100644 --- a/tbd/src/cpp/GridMap.h +++ b/tbd/src/cpp/GridMap.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include diff --git a/tbd/src/cpp/Index.h b/tbd/src/cpp/Index.h index d8d5d60e7..35cdb079b 100644 --- a/tbd/src/cpp/Index.h +++ b/tbd/src/cpp/Index.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once namespace tbd::data diff --git a/tbd/src/cpp/InnerPos.h b/tbd/src/cpp/InnerPos.h index f04dcaccc..cfcf986fd 100644 --- a/tbd/src/cpp/InnerPos.h +++ b/tbd/src/cpp/InnerPos.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include "Settings.h" diff --git a/tbd/src/cpp/IntensityMap.cpp b/tbd/src/cpp/IntensityMap.cpp index aca8f485c..ea48fc795 100644 --- a/tbd/src/cpp/IntensityMap.cpp +++ b/tbd/src/cpp/IntensityMap.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include "IntensityMap.h" diff --git a/tbd/src/cpp/IntensityMap.h b/tbd/src/cpp/IntensityMap.h index 97de186b9..5d7d8598b 100644 --- a/tbd/src/cpp/IntensityMap.h +++ b/tbd/src/cpp/IntensityMap.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include diff --git a/tbd/src/cpp/Iteration.cpp b/tbd/src/cpp/Iteration.cpp index 0378de0d3..5d37d801f 100644 --- a/tbd/src/cpp/Iteration.cpp +++ b/tbd/src/cpp/Iteration.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include "Iteration.h" diff --git a/tbd/src/cpp/Iteration.h b/tbd/src/cpp/Iteration.h index d3d151076..ca8b48ea9 100644 --- a/tbd/src/cpp/Iteration.h +++ b/tbd/src/cpp/Iteration.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include diff --git a/tbd/src/cpp/Location.h b/tbd/src/cpp/Location.h index aec30d731..a221a7d1a 100644 --- a/tbd/src/cpp/Location.h +++ b/tbd/src/cpp/Location.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include "Util.h" diff --git a/tbd/src/cpp/Log.cpp b/tbd/src/cpp/Log.cpp index 6d45ab792..47d01f22f 100644 --- a/tbd/src/cpp/Log.cpp +++ b/tbd/src/cpp/Log.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include "Log.h" diff --git a/tbd/src/cpp/Log.h b/tbd/src/cpp/Log.h index 22edf1119..57e14d708 100644 --- a/tbd/src/cpp/Log.h +++ b/tbd/src/cpp/Log.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once namespace tbd::logging diff --git a/tbd/src/cpp/LookupTable.h b/tbd/src/cpp/LookupTable.h index 31ca569ba..fcbcc1237 100644 --- a/tbd/src/cpp/LookupTable.h +++ b/tbd/src/cpp/LookupTable.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include "Util.h" diff --git a/tbd/src/cpp/Main.cpp b/tbd/src/cpp/Main.cpp index aa770b4fa..2b255b5a4 100644 --- a/tbd/src/cpp/Main.cpp +++ b/tbd/src/cpp/Main.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ /*! \mainpage FireSTARR Documentation * diff --git a/tbd/src/cpp/Model.cpp b/tbd/src/cpp/Model.cpp index 68d5fd25c..ee3424b0f 100644 --- a/tbd/src/cpp/Model.cpp +++ b/tbd/src/cpp/Model.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include @@ -25,6 +14,9 @@ #include "FireWeatherDaily.h" namespace tbd::sim { +#ifdef DEBUG_WEATHER +constexpr auto FMT_OUT = "%ld,%d-%02d-%02d %02d:%02d:%02d,%1.6f,%1.6f,%1.6f,%1.6f,%1.6f,%1.6f,%1.6f,%1.6f,%1.6f,%1.6f,%1.6f%s"; +#endif // constexpr double PCT_CPU = 0.8; // HACK: assume using half the CPUs probably means that faster cores are being used? constexpr double PCT_CPU = 0.5; @@ -116,7 +108,7 @@ void Model::readWeather(const wx::FwiWeather& yesterday, const auto file_out = string(Settings::outputDirectory()) + "/wx_hourly_out_read.csv"; FILE* out = fopen(file_out.c_str(), "w"); logging::check_fatal(nullptr == out, "Cannot open file %s for output", file_out.c_str()); - fprintf(out, "Scenario,Date,PREC,TEMP,RH,WS,WD,FFMC,DMC,DC,ISI,BUI,FWI\n"); + fprintf(out, "Scenario,Date,PREC,TEMP,RH,WS,WD,FFMC,DMC,DC,ISI,BUI,FWI\r\n"); #endif string str; logging::info("Reading scenarios from '%s'", filename.c_str()); @@ -240,14 +232,16 @@ void Model::readWeather(const wx::FwiWeather& yesterday, apcp_24h = 0; prev = &s_daily.at(static_cast(t.tm_yday)); } -#ifndef NDEBUG +#ifdef DEBUG_WEATHER const auto month = t.tm_mon + 1; - logging::debug("%ld,%d-%02d-%02d %02d:00,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g", + logging::debug(FMT_OUT, cur, year_, month, t.tm_mday, t.tm_hour, + t.tm_min, + t.tm_sec, w->prec().asDouble(), w->temp().asDouble(), w->rh().asDouble(), @@ -258,14 +252,17 @@ void Model::readWeather(const wx::FwiWeather& yesterday, w->dc().asDouble(), w->isi().asDouble(), w->bui().asDouble(), - w->fwi().asDouble()); + w->fwi().asDouble(), + ""); fprintf(out, - "%ld,%d-%02d-%02d %02d:00,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g\n", + FMT_OUT, cur, year_, month, t.tm_mday, t.tm_hour, + t.tm_min, + t.tm_sec, w->prec().asDouble(), w->temp().asDouble(), w->rh().asDouble(), @@ -276,7 +273,8 @@ void Model::readWeather(const wx::FwiWeather& yesterday, w->dc().asDouble(), w->isi().asDouble(), w->bui().asDouble(), - w->fwi().asDouble()); + w->fwi().asDouble(), + "\r\n"); #endif } } @@ -292,7 +290,7 @@ void Model::readWeather(const wx::FwiWeather& yesterday, // const auto file_out = string(Settings::outputDirectory()) + "/wx_out.csv"; // FILE* out = fopen(file_out.c_str(), "w"); // logging::check_fatal(nullptr == out, "Cannot open file %s for output", file_out.c_str()); - // fprintf(out, "Scenario,Day,PREC,TEMP,RH,WS,WD,FFMC,DMC,DC,ISI,BUI,FWI\n"); + // fprintf(out, "Scenario,Day,PREC,TEMP,RH,WS,WD,FFMC,DMC,DC,ISI,BUI,FWI\r\n"); // size_t i = 1; // for (auto& kv : wx) // { @@ -302,7 +300,7 @@ void Model::readWeather(const wx::FwiWeather& yesterday, // auto& day = kv2.first; // auto& w = kv2.second; // fprintf(out, - // "%ld,%d,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g\n", + // "%ld,%d,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g\r\n, // i, // day, // w.prec().asDouble(), @@ -1092,8 +1090,8 @@ void Model::outputWeather( const auto file_out = string(Settings::outputDirectory()) + file_name; FILE* out = fopen(file_out.c_str(), "w"); logging::check_fatal(nullptr == out, "Cannot open file %s for output", file_out.c_str()); - fprintf(out, "Scenario,Date,PREC,TEMP,RH,WS,WD,FFMC,DMC,DC,ISI,BUI,FWI\n"); - size_t i = 1; + fprintf(out, "Scenario,Date,PREC,TEMP,RH,WS,WD,FFMC,DMC,DC,ISI,BUI,FWI\r\n"); + size_t i = 0; for (auto& kv : weather) { auto& s = kv.second; @@ -1113,12 +1111,14 @@ void Model::outputWeather( if (nullptr != w) { fprintf(out, - "%ld,%d-%02ld-%02ld %02ld:00,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g\n", + FMT_OUT, i, year_, - month, - day_of_month, - hour - day * DAY_HOURS, + static_cast(month), + static_cast(day_of_month), + static_cast(hour - day * DAY_HOURS), + 0, + 0, w->prec().asDouble(), w->temp().asDouble(), w->rh().asDouble(), @@ -1129,17 +1129,8 @@ void Model::outputWeather( w->dc().asDouble(), w->isi().asDouble(), w->bui().asDouble(), - w->fwi().asDouble()); - } - else - { - fprintf(out, - "%ld,%d-%02ld-%02ld %02ld:00,,,,,,,,,,,\n", - i, - year_, - month, - day_of_month, - hour - day * DAY_HOURS); + w->fwi().asDouble(), + "\r\n"); } ++hour; } diff --git a/tbd/src/cpp/Model.h b/tbd/src/cpp/Model.h index 9e8857031..98dd8bebe 100644 --- a/tbd/src/cpp/Model.h +++ b/tbd/src/cpp/Model.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include diff --git a/tbd/src/cpp/Observer.cpp b/tbd/src/cpp/Observer.cpp index 552f0d0d6..78772b8c0 100644 --- a/tbd/src/cpp/Observer.cpp +++ b/tbd/src/cpp/Observer.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include "Observer.h" diff --git a/tbd/src/cpp/Observer.h b/tbd/src/cpp/Observer.h index ac24079f5..e54d1b95a 100644 --- a/tbd/src/cpp/Observer.h +++ b/tbd/src/cpp/Observer.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include diff --git a/tbd/src/cpp/Perimeter.cpp b/tbd/src/cpp/Perimeter.cpp index 548d4943f..8df6d33e6 100644 --- a/tbd/src/cpp/Perimeter.cpp +++ b/tbd/src/cpp/Perimeter.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include "Perimeter.h" diff --git a/tbd/src/cpp/Perimeter.h b/tbd/src/cpp/Perimeter.h index 3172d422f..3321901c9 100644 --- a/tbd/src/cpp/Perimeter.h +++ b/tbd/src/cpp/Perimeter.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include diff --git a/tbd/src/cpp/Point.h b/tbd/src/cpp/Point.h index 01baefb21..245f433dd 100644 --- a/tbd/src/cpp/Point.h +++ b/tbd/src/cpp/Point.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once namespace tbd::topo diff --git a/tbd/src/cpp/ProbabilityMap.cpp b/tbd/src/cpp/ProbabilityMap.cpp index 3f468bb0e..ac59bc77e 100644 --- a/tbd/src/cpp/ProbabilityMap.cpp +++ b/tbd/src/cpp/ProbabilityMap.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include "ProbabilityMap.h" diff --git a/tbd/src/cpp/ProbabilityMap.h b/tbd/src/cpp/ProbabilityMap.h index 4e8ab57f5..82892c76f 100644 --- a/tbd/src/cpp/ProbabilityMap.h +++ b/tbd/src/cpp/ProbabilityMap.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include diff --git a/tbd/src/cpp/SafeVector.cpp b/tbd/src/cpp/SafeVector.cpp index 3300d0c96..df32be7c5 100644 --- a/tbd/src/cpp/SafeVector.cpp +++ b/tbd/src/cpp/SafeVector.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include "SafeVector.h" diff --git a/tbd/src/cpp/SafeVector.h b/tbd/src/cpp/SafeVector.h index 0793488ae..430256eb7 100644 --- a/tbd/src/cpp/SafeVector.h +++ b/tbd/src/cpp/SafeVector.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include diff --git a/tbd/src/cpp/Scenario.cpp b/tbd/src/cpp/Scenario.cpp index ba9e6ace2..1c14a1330 100644 --- a/tbd/src/cpp/Scenario.cpp +++ b/tbd/src/cpp/Scenario.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include "Scenario.h" diff --git a/tbd/src/cpp/Scenario.h b/tbd/src/cpp/Scenario.h index 5c218bbc3..8d3782cda 100644 --- a/tbd/src/cpp/Scenario.h +++ b/tbd/src/cpp/Scenario.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include diff --git a/tbd/src/cpp/Settings.cpp b/tbd/src/cpp/Settings.cpp index cf484cedd..51e06cb33 100644 --- a/tbd/src/cpp/Settings.cpp +++ b/tbd/src/cpp/Settings.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include diff --git a/tbd/src/cpp/Settings.h b/tbd/src/cpp/Settings.h index 10296d966..3d401e28c 100644 --- a/tbd/src/cpp/Settings.h +++ b/tbd/src/cpp/Settings.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include diff --git a/tbd/src/cpp/StandardFuel.cpp b/tbd/src/cpp/StandardFuel.cpp index 15f8af2f0..ef8f1f290 100644 --- a/tbd/src/cpp/StandardFuel.cpp +++ b/tbd/src/cpp/StandardFuel.cpp @@ -1,14 +1,3 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ diff --git a/tbd/src/cpp/StandardFuel.h b/tbd/src/cpp/StandardFuel.h index 33841311c..d7c4486bd 100644 --- a/tbd/src/cpp/StandardFuel.h +++ b/tbd/src/cpp/StandardFuel.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include "FireSpread.h" diff --git a/tbd/src/cpp/StartPoint.cpp b/tbd/src/cpp/StartPoint.cpp index 8ac5043e5..ea53e7060 100644 --- a/tbd/src/cpp/StartPoint.cpp +++ b/tbd/src/cpp/StartPoint.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include "StartPoint.h" diff --git a/tbd/src/cpp/StartPoint.h b/tbd/src/cpp/StartPoint.h index 7eaa8e059..54c970f86 100644 --- a/tbd/src/cpp/StartPoint.h +++ b/tbd/src/cpp/StartPoint.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include diff --git a/tbd/src/cpp/Startup.cpp b/tbd/src/cpp/Startup.cpp index a383801e6..1da1d6a48 100644 --- a/tbd/src/cpp/Startup.cpp +++ b/tbd/src/cpp/Startup.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include "Startup.h" diff --git a/tbd/src/cpp/Startup.h b/tbd/src/cpp/Startup.h index 92f7bb803..2700cb07a 100644 --- a/tbd/src/cpp/Startup.h +++ b/tbd/src/cpp/Startup.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include "stdafx.h" diff --git a/tbd/src/cpp/Statistics.h b/tbd/src/cpp/Statistics.h index b9e55b47b..6ff737059 100644 --- a/tbd/src/cpp/Statistics.h +++ b/tbd/src/cpp/Statistics.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include diff --git a/tbd/src/cpp/Test.cpp b/tbd/src/cpp/Test.cpp index 9bfc72bd3..159e630bc 100644 --- a/tbd/src/cpp/Test.cpp +++ b/tbd/src/cpp/Test.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include "Test.h" diff --git a/tbd/src/cpp/Test.h b/tbd/src/cpp/Test.h index 99f911670..cb792bf15 100644 --- a/tbd/src/cpp/Test.h +++ b/tbd/src/cpp/Test.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once namespace tbd::sim diff --git a/tbd/src/cpp/TimeUtil.cpp b/tbd/src/cpp/TimeUtil.cpp index fa5547092..4b0d93719 100644 --- a/tbd/src/cpp/TimeUtil.cpp +++ b/tbd/src/cpp/TimeUtil.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include "TimeUtil.h" diff --git a/tbd/src/cpp/TimeUtil.h b/tbd/src/cpp/TimeUtil.h index ea2d14ae4..1082da3a1 100644 --- a/tbd/src/cpp/TimeUtil.h +++ b/tbd/src/cpp/TimeUtil.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include diff --git a/tbd/src/cpp/Trim.cpp b/tbd/src/cpp/Trim.cpp index b334b4c74..ca6217b7b 100644 --- a/tbd/src/cpp/Trim.cpp +++ b/tbd/src/cpp/Trim.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include "Trim.h" diff --git a/tbd/src/cpp/Trim.h b/tbd/src/cpp/Trim.h index 12936517f..6301642c3 100644 --- a/tbd/src/cpp/Trim.h +++ b/tbd/src/cpp/Trim.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include diff --git a/tbd/src/cpp/UTM.cpp b/tbd/src/cpp/UTM.cpp index 14d212cab..d79122baa 100644 --- a/tbd/src/cpp/UTM.cpp +++ b/tbd/src/cpp/UTM.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include "UTM.h" diff --git a/tbd/src/cpp/UTM.h b/tbd/src/cpp/UTM.h index be3f63ce5..3f39448c0 100644 --- a/tbd/src/cpp/UTM.h +++ b/tbd/src/cpp/UTM.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include "Util.h" diff --git a/tbd/src/cpp/Util.cpp b/tbd/src/cpp/Util.cpp index d4f19887d..a38a9cb03 100644 --- a/tbd/src/cpp/Util.cpp +++ b/tbd/src/cpp/Util.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include "Util.h" diff --git a/tbd/src/cpp/Util.h b/tbd/src/cpp/Util.h index 46f68831f..5c5dd8e66 100644 --- a/tbd/src/cpp/Util.h +++ b/tbd/src/cpp/Util.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include "stdafx.h" diff --git a/tbd/src/cpp/Weather.cpp b/tbd/src/cpp/Weather.cpp index 47e5d5873..10cbe2943 100644 --- a/tbd/src/cpp/Weather.cpp +++ b/tbd/src/cpp/Weather.cpp @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "stdafx.h" #include "Weather.h" diff --git a/tbd/src/cpp/Weather.h b/tbd/src/cpp/Weather.h index 1bb3d266c..c447dc9bc 100644 --- a/tbd/src/cpp/Weather.h +++ b/tbd/src/cpp/Weather.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include "Index.h" diff --git a/tbd/src/cpp/debug_settings.cpp b/tbd/src/cpp/debug_settings.cpp index 5311def73..1d1adcc55 100644 --- a/tbd/src/cpp/debug_settings.cpp +++ b/tbd/src/cpp/debug_settings.cpp @@ -1,3 +1,7 @@ +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ + #include "debug_settings.h" #include #include diff --git a/tbd/src/cpp/debug_settings.h b/tbd/src/cpp/debug_settings.h index f27513545..e3ce29797 100644 --- a/tbd/src/cpp/debug_settings.h +++ b/tbd/src/cpp/debug_settings.h @@ -1,3 +1,7 @@ +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ + #pragma once // if in debug mode then set everything, otherwise uncomment turning things off if trying to debug specific things diff --git a/tbd/src/cpp/stdafx.cpp b/tbd/src/cpp/stdafx.cpp index 15f8af2f0..ef8f1f290 100644 --- a/tbd/src/cpp/stdafx.cpp +++ b/tbd/src/cpp/stdafx.cpp @@ -1,14 +1,3 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ diff --git a/tbd/src/cpp/stdafx.h b/tbd/src/cpp/stdafx.h index 9c91cf96c..8d15ef351 100644 --- a/tbd/src/cpp/stdafx.h +++ b/tbd/src/cpp/stdafx.h @@ -1,17 +1,6 @@ -// Copyright (c) 2020-2021, Queen's Printer for Ontario. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include "debug_settings.h" diff --git a/tbd/src/cpp/unstable.cpp b/tbd/src/cpp/unstable.cpp index 1594d5938..35355caa8 100644 --- a/tbd/src/cpp/unstable.cpp +++ b/tbd/src/cpp/unstable.cpp @@ -1,15 +1,6 @@ -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ #include "unstable.h" double _cos(const double angle) noexcept diff --git a/tbd/src/cpp/unstable.h b/tbd/src/cpp/unstable.h index dbc0081f3..6858956e0 100644 --- a/tbd/src/cpp/unstable.h +++ b/tbd/src/cpp/unstable.h @@ -1,19 +1,7 @@ -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ -// Provides wrappers around functions that have different results when using -// different optimization flags, so they can be compiled with the same -// flags in release and debug mode to avoid changing the outputs. #pragma once #include double _cos(double angle) noexcept; From 3dbe0996b5d235add67e4a67b082aeee179235f7 Mon Sep 17 00:00:00 2001 From: Jordan Evens Date: Mon, 8 Apr 2024 10:15:37 -0400 Subject: [PATCH 04/17] added example to test that everything makes sense --- tbd/validate/example/fire.geojson | 67 + tbd/validate/example/fuel.lut | 146 + tbd/validate/example/settings.ini | 38 + tbd/validate/example/sim.sh | 35 + tbd/validate/example/wx.csv | 7939 +++++++++++++++++++++++++++++ 5 files changed, 8225 insertions(+) create mode 100644 tbd/validate/example/fire.geojson create mode 100644 tbd/validate/example/fuel.lut create mode 100644 tbd/validate/example/settings.ini create mode 100755 tbd/validate/example/sim.sh create mode 100644 tbd/validate/example/wx.csv diff --git a/tbd/validate/example/fire.geojson b/tbd/validate/example/fire.geojson new file mode 100644 index 000000000..0a3629a8b --- /dev/null +++ b/tbd/validate/example/fire.geojson @@ -0,0 +1,67 @@ +{ + "type": "FeatureCollection", + "crs": { + "type": "name", + "properties": { + "name": "urn:ogc:def:crs:OGC:1.3:CRS84" + } + }, + "features": [ + { + "type": "Feature", + "properties": { + "datetime": "2023-08-03T05:50:00Z", + "area": "4.46", + "status": null, + "lat": "60.38716700000001", + "lon": "-116.272017", + "ID": "NT", + "PRIORITY": "6", + "DURATION": "3", + "date_startup": "2023-08-02T12:00:00", + "ffmc_old": 86.0, + "dmc_old": 118.4, + "dc_old": 826.1, + "apcp_prev": 0, + "max_days": 3, + "utcoffset_hours": -7.0, + "start_time": "2023-08-03T01:00:00-07:00", + "wx": "wx.csv", + "sim_time": 299.41447202698328, + "dates_out": [ + "20230803", + "20230804", + "20230805" + ], + "postprocessed": true + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -116.269385335248174, + 60.387619581646476 + ], + [ + -116.271102584404233, + 60.385864474477557 + ], + [ + -116.274648589083, + 60.386714364659063 + ], + [ + -116.272931491264558, + 60.3884695206375 + ], + [ + -116.269385335248174, + 60.387619581646476 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/tbd/validate/example/fuel.lut b/tbd/validate/example/fuel.lut new file mode 100644 index 000000000..e8af73c49 --- /dev/null +++ b/tbd/validate/example/fuel.lut @@ -0,0 +1,146 @@ +grid_value, export_value, descriptive_name, fuel_type, r, g, b, h, s, l +1,1,Spruce-Lichen Woodland,C-1,209,255,115,57,255,185 +2,2,Boreal Spruce,C-2,34,102,51,95,128,68 +3,3,Mature Jack or Lodgepole Pine,C-3,131,199,149,96,96,165 +4,4,Immature Jack or Lodgepole Pine,C-4,112,168,0,57,255,84 +5,5,Red and White Pine,C-5,223,184,230,206,122,207 +6,6,Conifer Plantation,C-6,172,102,237,192,201,170 +7,7,Ponderosa Pine - Douglas-Fir,C-7,112,12,242,188,231,127 +11,11,Leafless Aspen,D-1,196,189,151,35,70,174 +12,12,Green Aspen (with BUI Thresholding),D-2,137,112,68,27,86,103 +13,13,Aspen,D-1/D-2,196,189,151,35,70,174 +21,21,Jack or Lodgepole Pine Slash,S-1,251,190,185,3,227,218 +22,22,White Spruce - Balsam Slash,S-2,247,104,161,-272,229,176 +23,23,Coastal Cedar - Hemlock - Douglas-Fir Slash,S-3,174,1,126,-285,252,88 +31,31,Matted Grass,O-1a,255,255,190,42,255,223 +32,32,Standing Grass,O-1b,230,230,0,42,255,115 +40,40,Boreal Mixedwood - Leafless,M-1,255,211,127,28,255,191 +50,50,Boreal Mixedwood - Green,M-2,255,170,0,28,255,128 +60,60,Boreal Mixedwood,M-1/M-2,255,211,127,28,255,191 +70,70,Dead Balsam Fir Mixedwood - Leafless,M-3,99,0,0,0,255,50 +80,80,Dead Balsam Fir Mixedwood - Green,M-4,170,0,0,0,255,85 +90,90,Dead Balsam Fir Mixedwood,M-3/M-4,99,0,0,0,255,50 +100,100,Not Available,D-2,255,255,255,170,0,255 +101,101,Non-fuel,D-2,130,130,130,170,0,130 +102,102,Water,Non-fuel,115,223,255,138,255,185 +103,103,Unknown,D-2,0,0,0,170,0,0 +104,104,Unclassified,D-1/D-2,166,166,166,170,0,166 +105,105,Vegetated Non-Fuel,M-1/M-2 (25 PC),204,204,204,170,0,204 +106,106,Urban,D-1/D-2,166,166,166,170,0,166 +405,405,Boreal Mixedwood - Leafless (05% Conifer),M-1 (05 PC),255,211,127,28,255,191 +410,410,Boreal Mixedwood - Leafless (10% Conifer),M-1 (10 PC),255,211,127,28,255,191 +415,415,Boreal Mixedwood - Leafless (15% Conifer),M-1 (15 PC),255,211,127,28,255,191 +420,420,Boreal Mixedwood - Leafless (20% Conifer),M-1 (20 PC),255,211,127,28,255,191 +425,425,Boreal Mixedwood - Leafless (25% Conifer),M-1 (25 PC),255,211,127,28,255,191 +430,430,Boreal Mixedwood - Leafless (30% Conifer),M-1 (30 PC),255,211,127,28,255,191 +435,435,Boreal Mixedwood - Leafless (35% Conifer),M-1 (35 PC),255,211,127,28,255,191 +440,440,Boreal Mixedwood - Leafless (40% Conifer),M-1 (40 PC),255,211,127,28,255,191 +445,445,Boreal Mixedwood - Leafless (45% Conifer),M-1 (45 PC),255,211,127,28,255,191 +450,450,Boreal Mixedwood - Leafless (50% Conifer),M-1 (50 PC),255,211,127,28,255,191 +455,455,Boreal Mixedwood - Leafless (55% Conifer),M-1 (55 PC),255,211,127,28,255,191 +460,460,Boreal Mixedwood - Leafless (60% Conifer),M-1 (60 PC),255,211,127,28,255,191 +465,465,Boreal Mixedwood - Leafless (65% Conifer),M-1 (65 PC),255,211,127,28,255,191 +470,470,Boreal Mixedwood - Leafless (70% Conifer),M-1 (70 PC),255,211,127,28,255,191 +475,475,Boreal Mixedwood - Leafless (75% Conifer),M-1 (75 PC),255,211,127,28,255,191 +480,480,Boreal Mixedwood - Leafless (80% Conifer),M-1 (80 PC),255,211,127,28,255,191 +485,485,Boreal Mixedwood - Leafless (85% Conifer),M-1 (85 PC),255,211,127,28,255,191 +490,490,Boreal Mixedwood - Leafless (90% Conifer),M-1 (90 PC),255,211,127,28,255,191 +495,495,Boreal Mixedwood - Leafless (95% Conifer),M-1 (95 PC),255,211,127,28,255,191 +505,505,Boreal Mixedwood - Green (05% Conifer),M-2 (05 PC),255,170,0,28,255,128 +510,510,Boreal Mixedwood - Green (10% Conifer),M-2 (10 PC),255,170,0,28,255,128 +515,515,Boreal Mixedwood - Green (15% Conifer),M-2 (15 PC),255,170,0,28,255,128 +520,520,Boreal Mixedwood - Green (20% Conifer),M-2 (20 PC),255,170,0,28,255,128 +525,525,Boreal Mixedwood - Green (25% Conifer),M-2 (25 PC),255,170,0,28,255,128 +530,530,Boreal Mixedwood - Green (30% Conifer),M-2 (30 PC),255,170,0,28,255,128 +535,535,Boreal Mixedwood - Green (35% Conifer),M-2 (35 PC),255,170,0,28,255,128 +540,540,Boreal Mixedwood - Green (40% Conifer),M-2 (40 PC),255,170,0,28,255,128 +545,545,Boreal Mixedwood - Green (45% Conifer),M-2 (45 PC),255,170,0,28,255,128 +550,550,Boreal Mixedwood - Green (50% Conifer),M-2 (50 PC),255,170,0,28,255,128 +555,555,Boreal Mixedwood - Green (55% Conifer),M-2 (55 PC),255,170,0,28,255,128 +560,560,Boreal Mixedwood - Green (60% Conifer),M-2 (60 PC),255,170,0,28,255,128 +565,565,Boreal Mixedwood - Green (65% Conifer),M-2 (65 PC),255,170,0,28,255,128 +570,570,Boreal Mixedwood - Green (70% Conifer),M-2 (70 PC),255,170,0,28,255,128 +575,575,Boreal Mixedwood - Green (75% Conifer),M-2 (75 PC),255,170,0,28,255,128 +580,580,Boreal Mixedwood - Green (80% Conifer),M-2 (80 PC),255,170,0,28,255,128 +585,585,Boreal Mixedwood - Green (85% Conifer),M-2 (85 PC),255,170,0,28,255,128 +590,590,Boreal Mixedwood - Green (90% Conifer),M-2 (90 PC),255,170,0,28,255,128 +595,595,Boreal Mixedwood - Green (95% Conifer),M-2 (95 PC),255,170,0,28,255,128 +605,605,Boreal Mixedwood (05% Conifer),M-1/M-2 (05 PC),255,211,127,28,255,191 +610,610,Boreal Mixedwood (10% Conifer),M-1/M-2 (10 PC),255,211,127,28,255,191 +615,615,Boreal Mixedwood (15% Conifer),M-1/M-2 (15 PC),255,211,127,28,255,191 +620,620,Boreal Mixedwood (20% Conifer),M-1/M-2 (20 PC),255,211,127,28,255,191 +625,625,Boreal Mixedwood (25% Conifer),M-1/M-2 (25 PC),255,211,127,28,255,191 +630,630,Boreal Mixedwood (30% Conifer),M-1/M-2 (30 PC),255,211,127,28,255,191 +635,635,Boreal Mixedwood (35% Conifer),M-1/M-2 (35 PC),255,211,127,28,255,191 +640,640,Boreal Mixedwood (40% Conifer),M-1/M-2 (40 PC),255,211,127,28,255,191 +645,645,Boreal Mixedwood (45% Conifer),M-1/M-2 (45 PC),255,211,127,28,255,191 +650,650,Boreal Mixedwood (50% Conifer),M-1/M-2 (50 PC),255,211,127,28,255,191 +655,655,Boreal Mixedwood (55% Conifer),M-1/M-2 (55 PC),255,211,127,28,255,191 +660,660,Boreal Mixedwood (60% Conifer),M-1/M-2 (60 PC),255,211,127,28,255,191 +665,665,Boreal Mixedwood (65% Conifer),M-1/M-2 (65 PC),255,211,127,28,255,191 +670,670,Boreal Mixedwood (70% Conifer),M-1/M-2 (70 PC),255,211,127,28,255,191 +675,675,Boreal Mixedwood (75% Conifer),M-1/M-2 (75 PC),255,211,127,28,255,191 +680,680,Boreal Mixedwood (80% Conifer),M-1/M-2 (80 PC),255,211,127,28,255,191 +685,685,Boreal Mixedwood (85% Conifer),M-1/M-2 (85 PC),255,211,127,28,255,191 +690,690,Boreal Mixedwood (90% Conifer),M-1/M-2 (90 PC),255,211,127,28,255,191 +695,695,Boreal Mixedwood (95% Conifer),M-1/M-2 (95 PC),255,211,127,28,255,191 +700,700,Dead Balsam Fir Mixedwood - Leafless (00% Dead Fir),M-3 (00 PDF),99,0,0,0,255,50 +705,705,Dead Balsam Fir Mixedwood - Leafless (05% Dead Fir),M-3 (05 PDF),99,0,0,0,255,50 +710,710,Dead Balsam Fir Mixedwood - Leafless (10% Dead Fir),M-3 (10 PDF),99,0,0,0,255,50 +715,715,Dead Balsam Fir Mixedwood - Leafless (15% Dead Fir),M-3 (15 PDF),99,0,0,0,255,50 +720,720,Dead Balsam Fir Mixedwood - Leafless (20% Dead Fir),M-3 (20 PDF),99,0,0,0,255,50 +725,725,Dead Balsam Fir Mixedwood - Leafless (25% Dead Fir),M-3 (25 PDF),99,0,0,0,255,50 +730,730,Dead Balsam Fir Mixedwood - Leafless (30% Dead Fir),M-3 (30 PDF),99,0,0,0,255,50 +735,735,Dead Balsam Fir Mixedwood - Leafless (35% Dead Fir),M-3 (35 PDF),99,0,0,0,255,50 +740,740,Dead Balsam Fir Mixedwood - Leafless (40% Dead Fir),M-3 (40 PDF),99,0,0,0,255,50 +745,745,Dead Balsam Fir Mixedwood - Leafless (45% Dead Fir),M-3 (45 PDF),99,0,0,0,255,50 +750,750,Dead Balsam Fir Mixedwood - Leafless (50% Dead Fir),M-3 (50 PDF),99,0,0,0,255,50 +755,755,Dead Balsam Fir Mixedwood - Leafless (55% Dead Fir),M-3 (55 PDF),99,0,0,0,255,50 +760,760,Dead Balsam Fir Mixedwood - Leafless (60% Dead Fir),M-3 (60 PDF),99,0,0,0,255,50 +765,765,Dead Balsam Fir Mixedwood - Leafless (65% Dead Fir),M-3 (65 PDF),99,0,0,0,255,50 +770,770,Dead Balsam Fir Mixedwood - Leafless (70% Dead Fir),M-3 (70 PDF),99,0,0,0,255,50 +775,775,Dead Balsam Fir Mixedwood - Leafless (75% Dead Fir),M-3 (75 PDF),99,0,0,0,255,50 +780,780,Dead Balsam Fir Mixedwood - Leafless (80% Dead Fir),M-3 (80 PDF),99,0,0,0,255,50 +785,785,Dead Balsam Fir Mixedwood - Leafless (85% Dead Fir),M-3 (85 PDF),99,0,0,0,255,50 +790,790,Dead Balsam Fir Mixedwood - Leafless (90% Dead Fir),M-3 (90 PDF),99,0,0,0,255,50 +795,795,Dead Balsam Fir Mixedwood - Leafless (95% Dead Fir),M-3 (95 PDF),99,0,0,0,255,50 +800,800,Dead Balsam Fir Mixedwood - Green (00% Dead Fir),M-4 (00 PDF),170,0,0,0,255,85 +805,805,Dead Balsam Fir Mixedwood - Green (05% Dead Fir),M-4 (05 PDF),170,0,0,0,255,85 +810,810,Dead Balsam Fir Mixedwood - Green (10% Dead Fir),M-4 (10 PDF),170,0,0,0,255,85 +815,815,Dead Balsam Fir Mixedwood - Green (15% Dead Fir),M-4 (15 PDF),170,0,0,0,255,85 +820,820,Dead Balsam Fir Mixedwood - Green (20% Dead Fir),M-4 (20 PDF),170,0,0,0,255,85 +825,825,Dead Balsam Fir Mixedwood - Green (25% Dead Fir),M-4 (25 PDF),170,0,0,0,255,85 +830,830,Dead Balsam Fir Mixedwood - Green (30% Dead Fir),M-4 (30 PDF),170,0,0,0,255,85 +835,835,Dead Balsam Fir Mixedwood - Green (35% Dead Fir),M-4 (35 PDF),170,0,0,0,255,85 +840,840,Dead Balsam Fir Mixedwood - Green (40% Dead Fir),M-4 (40 PDF),170,0,0,0,255,85 +845,845,Dead Balsam Fir Mixedwood - Green (45% Dead Fir),M-4 (45 PDF),170,0,0,0,255,85 +850,850,Dead Balsam Fir Mixedwood - Green (50% Dead Fir),M-4 (50 PDF),170,0,0,0,255,85 +855,855,Dead Balsam Fir Mixedwood - Green (55% Dead Fir),M-4 (55 PDF),170,0,0,0,255,85 +860,860,Dead Balsam Fir Mixedwood - Green (60% Dead Fir),M-4 (60 PDF),170,0,0,0,255,85 +865,865,Dead Balsam Fir Mixedwood - Green (65% Dead Fir),M-4 (65 PDF),170,0,0,0,255,85 +870,870,Dead Balsam Fir Mixedwood - Green (70% Dead Fir),M-4 (70 PDF),170,0,0,0,255,85 +875,875,Dead Balsam Fir Mixedwood - Green (75% Dead Fir),M-4 (75 PDF),170,0,0,0,255,85 +880,880,Dead Balsam Fir Mixedwood - Green (80% Dead Fir),M-4 (80 PDF),170,0,0,0,255,85 +885,885,Dead Balsam Fir Mixedwood - Green (85% Dead Fir),M-4 (85 PDF),170,0,0,0,255,85 +890,890,Dead Balsam Fir Mixedwood - Green (90% Dead Fir),M-4 (90 PDF),170,0,0,0,255,85 +895,895,Dead Balsam Fir Mixedwood - Green (95% Dead Fir),M-4 (95 PDF),170,0,0,0,255,85 +900,900,Dead Balsam Fir Mixedwood (00% Dead Fir),M-3/M-4 (00 PDF),99,0,0,0,255,50 +905,905,Dead Balsam Fir Mixedwood (05% Dead Fir),M-3/M-4 (05 PDF),99,0,0,0,255,50 +910,910,Dead Balsam Fir Mixedwood (10% Dead Fir),M-3/M-4 (10 PDF),99,0,0,0,255,50 +915,915,Dead Balsam Fir Mixedwood (15% Dead Fir),M-3/M-4 (15 PDF),99,0,0,0,255,50 +920,920,Dead Balsam Fir Mixedwood (20% Dead Fir),M-3/M-4 (20 PDF),99,0,0,0,255,50 +925,925,Dead Balsam Fir Mixedwood (25% Dead Fir),M-3/M-4 (25 PDF),99,0,0,0,255,50 +930,930,Dead Balsam Fir Mixedwood (30% Dead Fir),M-3/M-4 (30 PDF),99,0,0,0,255,50 +935,935,Dead Balsam Fir Mixedwood (35% Dead Fir),M-3/M-4 (35 PDF),99,0,0,0,255,50 +940,940,Dead Balsam Fir Mixedwood (40% Dead Fir),M-3/M-4 (40 PDF),99,0,0,0,255,50 +945,945,Dead Balsam Fir Mixedwood (45% Dead Fir),M-3/M-4 (45 PDF),99,0,0,0,255,50 +950,950,Dead Balsam Fir Mixedwood (50% Dead Fir),M-3/M-4 (50 PDF),99,0,0,0,255,50 +955,955,Dead Balsam Fir Mixedwood (55% Dead Fir),M-3/M-4 (55 PDF),99,0,0,0,255,50 +960,960,Dead Balsam Fir Mixedwood (60% Dead Fir),M-3/M-4 (60 PDF),99,0,0,0,255,50 +965,965,Dead Balsam Fir Mixedwood (65% Dead Fir),M-3/M-4 (65 PDF),99,0,0,0,255,50 +970,970,Dead Balsam Fir Mixedwood (70% Dead Fir),M-3/M-4 (70 PDF),99,0,0,0,255,50 +975,975,Dead Balsam Fir Mixedwood (75% Dead Fir),M-3/M-4 (75 PDF),99,0,0,0,255,50 +980,980,Dead Balsam Fir Mixedwood (80% Dead Fir),M-3/M-4 (80 PDF),99,0,0,0,255,50 +985,985,Dead Balsam Fir Mixedwood (85% Dead Fir),M-3/M-4 (85 PDF),99,0,0,0,255,50 +990,990,Dead Balsam Fir Mixedwood (90% Dead Fir),M-3/M-4 (90 PDF),99,0,0,0,255,50 +995,995,Dead Balsam Fir Mixedwood (95% Dead Fir),M-3/M-4 (95 PDF),99,0,0,0,255,50 diff --git a/tbd/validate/example/settings.ini b/tbd/validate/example/settings.ini new file mode 100644 index 000000000..8f6a777c9 --- /dev/null +++ b/tbd/validate/example/settings.ini @@ -0,0 +1,38 @@ +# root directory to read rasters from +RASTER_ROOT = /appl/data/generated/grid/100m +# minimum rate of spread before fire is considered to actually be spreading +MINIMUM_ROS = 0.1 +# maximum distance that head can spread per step (* cell size) +MAX_SPREAD_DISTANCE = 0.5 +# days to output probability contours for +OUTPUT_DATE_OFFSETS = [1,2,3,7,14] +# lookup table for fuels (prometheus format) +FUEL_LOOKUP_TABLE = ./fuel.lut +# minimum ffmc for fire to spread +MINIMUM_FFMC = 65.0 +# minimum ffmc for fire to spread at night +MINIMUM_FFMC_AT_NIGHT = 80.0 +# time after sunrise to start burning (hours) +OFFSET_SUNRISE = 0.0 +# time before sunset to stop burning (hours) +OFFSET_SUNSET = 0.0 +# weight given to the scenario thresholds +THRESHOLD_SCENARIO_WEIGHT = 1.0 +# weight given to the daily thresholds +THRESHOLD_DAILY_WEIGHT = 3.0 +# weight given to the hourly thresholds +THRESHOLD_HOURLY_WEIGHT = 2.0 +# default M-1/M-2 percent conifer if none specified +DEFAULT_PERCENT_CONIFER = 50 +# default M-3/M-4 percent dead fir if none specified +DEFAULT_PERCENT_DEAD_FIR = 30 +# maximum amount of time to take for simulation (seconds) +MAXIMUM_TIME = 300 +# maximum number of simulations to do +MAXIMUM_SIMULATIONS = 10000 +# maximum percent change in statistics between runs before results are consider stable [0 - 1] +CONFIDENCE_LEVEL = 0.1 +# intensity considered to be top of the range (kW/m) +INTENSITY_MAX_LOW = 2000 +# intensity considered to be top of the range (kW/m) +INTENSITY_MAX_MODERATE = 4000 diff --git a/tbd/validate/example/sim.sh b/tbd/validate/example/sim.sh new file mode 100755 index 000000000..f6ee267c0 --- /dev/null +++ b/tbd/validate/example/sim.sh @@ -0,0 +1,35 @@ +#!/bin/bash +set -e + +DIR=`dirname $(realpath "$0")` +pushd ${DIR} + +pushd /appl/tbd +DIR_BUILD="${DIR}/build" +VARIANT=Debug +echo Set VARIANT=${VARIANT} +# rm -rf ${DIR_BUILD} \ +# && + /usr/bin/cmake --no-warn-unused-cli -DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE -DCMAKE_BUILD_TYPE:STRING=${VARIANT} -S/appl/tbd -B${DIR_BUILD} -G "Unix Makefiles" \ + && /usr/bin/cmake --build ${DIR_BUILD} --config ${VARIANT} --target all -j 50 -- +popd + +DIR_OUT="./output" +rm -rf ${DIR_OUT} + +./tbd "${DIR_OUT}" \ + 2023-08-03 \ + 60.387 \ + -116.272 \ + 01:00 \ + -i \ + --ffmc 86.0 \ + --dmc 118.4 \ + --dc 826.1 \ + --apcp_prev 0 \ + -v \ + --deterministic \ + --output_date_offsets "[1]" \ + --wx "wx.csv" + +popd diff --git a/tbd/validate/example/wx.csv b/tbd/validate/example/wx.csv new file mode 100644 index 000000000..f9b469353 --- /dev/null +++ b/tbd/validate/example/wx.csv @@ -0,0 +1,7939 @@ +Scenario,Date,PREC,TEMP,RH,WS,WD,FFMC,DMC,DC,ISI,BUI,FWI +0,2023-08-03 00:00:00,0.000000,15.600000,66.000000,5.000000,70.000000,85.940000,118.400000,826.100000,3.080000,174.330000,16.780000 +0,2023-08-03 01:00:00,0.000000,15.600000,66.000000,5.000000,70.000000,85.880000,118.400000,826.100000,3.060000,174.330000,16.680000 +0,2023-08-03 02:00:00,0.000000,13.100000,74.000000,2.000000,111.000000,85.650000,118.400000,826.100000,2.550000,174.330000,14.510000 +0,2023-08-03 03:00:00,0.000000,13.100000,74.000000,2.000000,111.000000,85.440000,118.400000,826.100000,2.470000,174.330000,14.190000 +0,2023-08-03 04:00:00,0.000000,13.100000,74.000000,2.000000,111.000000,85.250000,118.400000,826.100000,2.410000,174.330000,13.900000 +0,2023-08-03 05:00:00,0.000000,12.900000,73.000000,1.000000,117.000000,85.110000,118.450000,826.220000,2.250000,174.390000,13.160000 +0,2023-08-03 06:00:00,0.000000,12.900000,73.000000,1.000000,117.000000,84.980000,118.500000,826.350000,2.210000,174.450000,12.980000 +0,2023-08-03 07:00:00,0.000000,12.900000,73.000000,1.000000,117.000000,84.860000,118.550000,826.470000,2.170000,174.510000,12.820000 +0,2023-08-03 08:00:00,0.000000,16.400000,59.000000,3.000000,105.000000,84.890000,118.640000,826.710000,2.410000,174.630000,13.920000 +0,2023-08-03 09:00:00,0.000000,16.400000,59.000000,3.000000,105.000000,84.920000,118.730000,826.950000,2.420000,174.740000,13.970000 +0,2023-08-03 10:00:00,0.000000,16.400000,59.000000,3.000000,105.000000,84.950000,118.820000,827.190000,2.430000,174.850000,14.010000 +0,2023-08-03 11:00:00,0.000000,21.000000,42.000000,5.000000,64.000000,85.450000,119.000000,827.640000,2.880000,175.070000,15.970000 +0,2023-08-03 12:00:00,0.000000,21.000000,42.000000,5.000000,64.000000,85.890000,119.170000,828.090000,3.070000,175.280000,16.730000 +0,2023-08-03 13:00:00,0.000000,21.000000,42.000000,5.000000,64.000000,86.280000,119.350000,828.530000,3.240000,175.500000,17.420000 +0,2023-08-03 14:00:00,0.000000,23.600000,37.000000,9.000000,51.000000,86.910000,119.570000,829.100000,4.330000,175.770000,21.550000 +0,2023-08-03 15:00:00,0.000000,23.600000,37.000000,9.000000,51.000000,87.440000,119.790000,829.680000,4.670000,176.040000,22.750000 +0,2023-08-03 16:00:00,0.000000,23.600000,37.000000,9.000000,51.000000,87.900000,120.020000,830.250000,4.990000,176.320000,23.820000 +0,2023-08-03 17:00:00,0.000000,23.800000,36.000000,10.000000,53.000000,88.330000,120.250000,830.830000,5.580000,176.600000,25.770000 +0,2023-08-03 18:00:00,0.000000,23.800000,36.000000,10.000000,53.000000,88.690000,120.480000,831.420000,5.870000,176.880000,26.710000 +0,2023-08-03 19:00:00,0.000000,23.800000,36.000000,10.000000,53.000000,88.990000,120.700000,832.010000,6.130000,177.160000,27.530000 +0,2023-08-03 20:00:00,0.000000,21.800000,46.000000,1.000000,117.000000,88.990000,120.880000,832.450000,3.900000,177.360000,20.010000 +0,2023-08-03 21:00:00,0.000000,21.800000,46.000000,1.000000,117.000000,88.990000,121.050000,832.880000,3.900000,177.570000,20.010000 +0,2023-08-03 22:00:00,0.000000,21.800000,46.000000,1.000000,117.000000,88.990000,121.050000,832.880000,3.900000,177.570000,20.010000 +0,2023-08-03 23:00:00,0.000000,16.600000,63.000000,3.000000,274.000000,88.670000,121.050000,832.880000,4.120000,177.570000,20.830000 +0,2023-08-04 00:00:00,0.000000,16.600000,63.000000,3.000000,274.000000,88.400000,121.050000,832.880000,3.960000,177.570000,20.240000 +0,2023-08-04 01:00:00,0.000000,16.600000,63.000000,3.000000,274.000000,88.150000,121.050000,832.880000,3.820000,177.570000,19.720000 +0,2023-08-04 02:00:00,0.000000,13.400000,87.000000,6.000000,256.000000,87.150000,121.050000,832.880000,3.850000,177.570000,19.860000 +0,2023-08-04 03:00:00,0.000000,13.400000,87.000000,6.000000,256.000000,86.290000,121.050000,832.880000,3.410000,177.570000,18.150000 +0,2023-08-04 04:00:00,0.000000,13.400000,87.000000,6.000000,256.000000,85.540000,121.050000,832.880000,3.070000,177.570000,16.780000 +0,2023-08-04 05:00:00,0.000000,12.500000,98.000000,6.000000,251.000000,84.140000,121.050000,832.890000,2.530000,177.580000,14.510000 +0,2023-08-04 06:00:00,0.000000,12.500000,98.000000,6.000000,251.000000,82.920000,121.050000,832.900000,2.160000,177.580000,12.810000 +0,2023-08-04 07:00:00,0.000000,12.500000,98.000000,6.000000,251.000000,81.870000,121.060000,832.910000,1.900000,177.590000,11.540000 +0,2023-08-04 08:00:00,0.000000,18.000000,75.000000,5.000000,256.000000,81.920000,121.120000,833.070000,1.810000,177.660000,11.130000 +0,2023-08-04 09:00:00,0.000000,18.000000,75.000000,5.000000,256.000000,81.960000,121.180000,833.220000,1.820000,177.740000,11.190000 +0,2023-08-04 10:00:00,0.000000,18.000000,75.000000,5.000000,256.000000,82.010000,121.250000,833.380000,1.830000,177.820000,11.240000 +0,2023-08-04 11:00:00,0.000000,24.000000,43.000000,7.000000,307.000000,83.050000,121.460000,833.900000,2.310000,178.070000,13.510000 +0,2023-08-04 12:00:00,0.000000,24.000000,43.000000,7.000000,307.000000,83.940000,121.660000,834.420000,2.600000,178.330000,14.800000 +0,2023-08-04 13:00:00,0.000000,24.000000,43.000000,7.000000,307.000000,84.710000,121.870000,834.930000,2.880000,178.580000,16.020000 +0,2023-08-04 14:00:00,0.000000,25.700000,33.000000,10.000000,323.000000,85.870000,122.140000,835.610000,3.930000,178.910000,20.180000 +0,2023-08-04 15:00:00,0.000000,25.700000,33.000000,10.000000,323.000000,86.840000,122.420000,836.280000,4.510000,179.240000,22.260000 +0,2023-08-04 16:00:00,0.000000,25.700000,33.000000,10.000000,323.000000,87.640000,122.690000,836.950000,5.060000,179.570000,24.150000 +0,2023-08-04 17:00:00,0.000000,26.000000,31.000000,9.000000,329.000000,88.390000,122.970000,837.660000,5.350000,179.910000,25.130000 +0,2023-08-04 18:00:00,0.000000,26.000000,31.000000,9.000000,329.000000,89.010000,123.260000,838.370000,5.850000,180.260000,26.730000 +0,2023-08-04 19:00:00,0.000000,26.000000,31.000000,9.000000,329.000000,89.520000,123.540000,839.070000,6.290000,180.600000,28.120000 +0,2023-08-04 20:00:00,0.000000,23.900000,37.000000,6.000000,332.000000,89.650000,123.770000,839.640000,5.510000,180.880000,25.670000 +0,2023-08-04 21:00:00,0.000000,23.900000,37.000000,6.000000,332.000000,89.750000,124.000000,840.210000,5.590000,181.160000,25.950000 +0,2023-08-04 22:00:00,0.000000,23.900000,37.000000,6.000000,332.000000,89.840000,124.000000,840.210000,5.670000,181.160000,26.190000 +0,2023-08-04 23:00:00,0.000000,18.100000,56.000000,5.000000,291.000000,89.580000,124.000000,840.210000,5.190000,181.160000,24.620000 +0,2023-08-05 00:00:00,0.000000,18.100000,56.000000,5.000000,291.000000,89.340000,124.000000,840.210000,5.010000,181.160000,24.040000 +0,2023-08-05 01:00:00,0.000000,18.100000,56.000000,5.000000,291.000000,89.130000,124.000000,840.210000,4.870000,181.160000,23.540000 +0,2023-08-05 02:00:00,0.000000,15.200000,70.000000,6.000000,262.000000,88.590000,124.000000,840.210000,4.730000,181.160000,23.090000 +0,2023-08-05 03:00:00,0.000000,15.200000,70.000000,6.000000,262.000000,88.120000,124.000000,840.210000,4.420000,181.160000,22.000000 +0,2023-08-05 04:00:00,0.000000,15.200000,70.000000,6.000000,262.000000,87.700000,124.000000,840.210000,4.170000,181.160000,21.080000 +0,2023-08-05 05:00:00,0.000000,14.500000,76.000000,5.000000,269.000000,87.180000,124.080000,840.490000,3.680000,181.260000,19.270000 +0,2023-08-05 06:00:00,0.000000,14.500000,76.000000,5.000000,269.000000,86.730000,124.150000,840.770000,3.450000,181.350000,18.380000 +0,2023-08-05 07:00:00,0.000000,14.500000,76.000000,5.000000,269.000000,86.330000,124.230000,841.050000,3.260000,181.450000,17.630000 +0,2023-08-05 08:00:00,0.000000,18.700000,63.000000,2.000000,337.000000,86.330000,124.380000,841.620000,2.800000,181.640000,15.750000 +0,2023-08-05 09:00:00,0.000000,18.700000,63.000000,2.000000,337.000000,86.330000,124.530000,842.190000,2.800000,181.840000,15.750000 +0,2023-08-05 10:00:00,0.000000,18.700000,63.000000,2.000000,337.000000,86.330000,124.680000,842.760000,2.800000,182.030000,15.750000 +0,2023-08-05 11:00:00,0.020000,20.500000,60.000000,10.000000,19.000000,86.010000,124.860000,843.440000,4.010000,182.270000,20.530000 +0,2023-08-05 12:00:00,0.000000,20.500000,60.000000,10.000000,19.000000,86.010000,125.050000,844.130000,4.010000,182.500000,20.530000 +0,2023-08-05 13:00:00,0.000000,20.500000,60.000000,10.000000,19.000000,86.010000,125.230000,844.820000,4.010000,182.740000,20.540000 +0,2023-08-05 14:00:00,1.000000,17.300000,85.000000,8.000000,15.000000,72.050000,125.280000,845.030000,1.000000,182.810000,6.710000 +0,2023-08-05 15:00:00,0.000000,17.300000,85.000000,8.000000,15.000000,72.490000,125.340000,845.240000,1.020000,182.880000,6.810000 +0,2023-08-05 16:00:00,0.000000,17.300000,85.000000,8.000000,15.000000,72.900000,125.400000,845.450000,1.040000,182.950000,6.920000 +0,2023-08-05 17:00:00,0.380000,18.100000,85.000000,2.000000,311.000000,68.660000,125.460000,845.670000,0.660000,183.030000,4.450000 +0,2023-08-05 18:00:00,0.000000,18.100000,85.000000,2.000000,311.000000,69.120000,125.510000,845.890000,0.670000,183.110000,4.520000 +0,2023-08-05 19:00:00,0.000000,18.100000,85.000000,2.000000,311.000000,69.560000,125.570000,846.120000,0.680000,183.180000,4.590000 +0,2023-08-05 20:00:00,0.000000,19.100000,75.000000,3.000000,326.000000,70.410000,125.680000,846.510000,0.740000,183.320000,4.970000 +0,2023-08-05 21:00:00,0.000000,19.100000,75.000000,3.000000,326.000000,71.200000,125.780000,846.900000,0.760000,183.450000,5.110000 +0,2023-08-05 22:00:00,0.000000,19.100000,75.000000,3.000000,326.000000,71.950000,125.780000,846.900000,0.780000,183.450000,5.250000 +0,2023-08-05 23:00:00,0.000000,14.500000,96.000000,4.000000,256.000000,71.980000,125.780000,846.900000,0.820000,183.450000,5.520000 +0,2023-08-06 00:00:00,0.000000,14.500000,96.000000,4.000000,256.000000,72.020000,125.780000,846.900000,0.820000,183.450000,5.530000 +0,2023-08-06 01:00:00,0.000000,14.500000,96.000000,4.000000,256.000000,72.050000,125.780000,846.900000,0.820000,183.450000,5.540000 +0,2023-08-06 02:00:00,0.000000,12.600000,99.000000,6.000000,273.000000,72.050000,125.780000,846.900000,0.910000,183.450000,6.110000 +0,2023-08-06 03:00:00,0.000000,12.600000,99.000000,6.000000,273.000000,72.050000,125.780000,846.900000,0.910000,183.450000,6.110000 +0,2023-08-06 04:00:00,0.000000,12.600000,99.000000,6.000000,273.000000,72.050000,125.780000,846.900000,0.910000,183.450000,6.110000 +0,2023-08-06 05:00:00,0.000000,11.900000,98.000000,5.000000,306.000000,72.050000,125.790000,846.910000,0.860000,183.460000,5.820000 +0,2023-08-06 06:00:00,0.000000,11.900000,98.000000,5.000000,306.000000,72.060000,125.790000,846.920000,0.860000,183.460000,5.820000 +0,2023-08-06 07:00:00,0.000000,11.900000,98.000000,5.000000,306.000000,72.060000,125.790000,846.930000,0.860000,183.460000,5.820000 +0,2023-08-06 08:00:00,0.000000,16.600000,75.000000,3.000000,31.000000,72.680000,125.850000,847.110000,0.800000,183.540000,5.400000 +0,2023-08-06 09:00:00,0.000000,16.600000,75.000000,3.000000,31.000000,73.260000,125.910000,847.280000,0.820000,183.610000,5.530000 +0,2023-08-06 10:00:00,0.000000,16.600000,75.000000,3.000000,31.000000,73.810000,125.970000,847.460000,0.840000,183.680000,5.660000 +0,2023-08-06 11:00:00,0.000000,20.900000,50.000000,7.000000,74.000000,75.410000,126.120000,847.920000,1.110000,183.870000,7.390000 +0,2023-08-06 12:00:00,0.000000,20.900000,50.000000,7.000000,74.000000,76.830000,126.280000,848.370000,1.220000,184.060000,8.040000 +0,2023-08-06 13:00:00,0.000000,20.900000,50.000000,7.000000,74.000000,78.110000,126.430000,848.830000,1.350000,184.250000,8.770000 +0,2023-08-06 14:00:00,0.000000,22.600000,38.000000,9.000000,64.000000,79.810000,126.640000,849.460000,1.750000,184.510000,10.920000 +0,2023-08-06 15:00:00,0.000000,22.600000,38.000000,9.000000,64.000000,81.280000,126.850000,850.090000,2.060000,184.770000,12.430000 +0,2023-08-06 16:00:00,0.000000,22.600000,38.000000,9.000000,64.000000,82.550000,127.060000,850.720000,2.400000,185.040000,14.020000 +0,2023-08-06 17:00:00,0.000000,22.600000,36.000000,11.000000,66.000000,83.750000,127.280000,851.370000,3.100000,185.310000,17.040000 +0,2023-08-06 18:00:00,0.000000,22.600000,36.000000,11.000000,66.000000,84.780000,127.500000,852.020000,3.550000,185.580000,18.870000 +0,2023-08-06 19:00:00,0.000000,22.600000,36.000000,11.000000,66.000000,85.640000,127.720000,852.670000,4.010000,185.840000,20.590000 +0,2023-08-06 20:00:00,0.000000,20.200000,43.000000,10.000000,68.000000,86.060000,127.890000,853.170000,4.040000,186.050000,20.700000 +0,2023-08-06 21:00:00,0.000000,20.200000,43.000000,10.000000,68.000000,86.410000,128.050000,853.670000,4.240000,186.260000,21.460000 +0,2023-08-06 22:00:00,0.000000,20.200000,43.000000,10.000000,68.000000,86.720000,128.050000,853.670000,4.430000,186.260000,22.140000 +0,2023-08-06 23:00:00,0.000000,14.500000,64.000000,7.000000,70.000000,86.590000,128.050000,853.670000,3.740000,186.260000,19.600000 +0,2023-08-07 00:00:00,0.000000,14.500000,64.000000,7.000000,70.000000,86.480000,128.050000,853.670000,3.680000,186.260000,19.380000 +0,2023-08-07 01:00:00,0.000000,14.500000,64.000000,7.000000,70.000000,86.380000,128.050000,853.670000,3.630000,186.260000,19.180000 +0,2023-08-07 02:00:00,0.000000,11.800000,73.000000,4.000000,120.000000,86.090000,128.050000,853.670000,3.000000,186.260000,16.640000 +0,2023-08-07 03:00:00,0.000000,11.800000,73.000000,4.000000,120.000000,85.830000,128.050000,853.670000,2.890000,186.260000,16.190000 +0,2023-08-07 04:00:00,0.000000,11.800000,73.000000,4.000000,120.000000,85.590000,128.050000,853.670000,2.800000,186.260000,15.790000 +0,2023-08-07 05:00:00,0.000000,10.400000,75.000000,6.000000,147.000000,85.310000,128.090000,853.760000,2.970000,186.310000,16.550000 +0,2023-08-07 06:00:00,0.000000,10.400000,75.000000,6.000000,147.000000,85.070000,128.130000,853.850000,2.870000,186.350000,16.130000 +0,2023-08-07 07:00:00,0.000000,10.400000,75.000000,6.000000,147.000000,84.840000,128.170000,853.940000,2.790000,186.400000,15.760000 +0,2023-08-07 08:00:00,0.000000,15.500000,53.000000,8.000000,142.000000,84.970000,128.270000,854.170000,3.140000,186.520000,17.240000 +0,2023-08-07 09:00:00,0.000000,15.500000,53.000000,8.000000,142.000000,85.090000,128.370000,854.400000,3.190000,186.640000,17.450000 +0,2023-08-07 10:00:00,0.000000,15.500000,53.000000,8.000000,142.000000,85.200000,128.470000,854.640000,3.240000,186.760000,17.640000 +0,2023-08-07 11:00:00,0.000000,22.100000,37.000000,10.000000,126.000000,85.930000,128.680000,855.110000,3.970000,187.000000,20.470000 +0,2023-08-07 12:00:00,0.000000,22.100000,37.000000,10.000000,126.000000,86.560000,128.880000,855.580000,4.330000,187.250000,21.810000 +0,2023-08-07 13:00:00,0.000000,22.100000,37.000000,10.000000,126.000000,87.090000,129.090000,856.060000,4.670000,187.490000,23.020000 +0,2023-08-07 14:00:00,0.000000,24.200000,30.000000,11.000000,111.000000,87.900000,129.340000,856.650000,5.510000,187.800000,25.850000 +0,2023-08-07 15:00:00,0.000000,24.200000,30.000000,11.000000,111.000000,88.570000,129.600000,857.250000,6.070000,188.110000,27.630000 +0,2023-08-07 16:00:00,0.000000,24.200000,30.000000,11.000000,111.000000,89.130000,129.860000,857.850000,6.580000,188.420000,29.190000 +0,2023-08-07 17:00:00,0.000000,24.100000,28.000000,13.000000,90.000000,89.680000,130.120000,858.460000,7.880000,188.730000,32.960000 +0,2023-08-07 18:00:00,0.000000,24.100000,28.000000,13.000000,90.000000,90.130000,130.390000,859.070000,8.400000,189.040000,34.420000 +0,2023-08-07 19:00:00,0.000000,24.100000,28.000000,13.000000,90.000000,90.500000,130.650000,859.680000,8.870000,189.360000,35.660000 +0,2023-08-07 20:00:00,0.000000,21.500000,33.000000,11.000000,79.000000,90.540000,130.860000,860.160000,8.060000,189.610000,33.490000 +0,2023-08-07 21:00:00,0.000000,21.500000,33.000000,11.000000,79.000000,90.570000,131.070000,860.650000,8.090000,189.860000,33.590000 +0,2023-08-07 22:00:00,0.000000,21.500000,33.000000,11.000000,79.000000,90.600000,131.070000,860.650000,8.120000,189.860000,33.670000 +0,2023-08-07 23:00:00,0.000000,17.500000,41.000000,9.000000,98.000000,90.540000,131.070000,860.650000,7.280000,189.860000,31.300000 +0,2023-08-08 00:00:00,0.000000,17.500000,41.000000,9.000000,98.000000,90.480000,131.070000,860.650000,7.220000,189.860000,31.140000 +0,2023-08-08 01:00:00,0.000000,17.500000,41.000000,9.000000,98.000000,90.430000,131.070000,860.650000,7.170000,189.860000,30.990000 +0,2023-08-08 02:00:00,0.000000,15.600000,47.000000,8.000000,130.000000,90.250000,131.070000,860.650000,6.640000,189.860000,29.410000 +0,2023-08-08 03:00:00,0.000000,15.600000,47.000000,8.000000,130.000000,90.080000,131.070000,860.650000,6.480000,189.860000,28.940000 +0,2023-08-08 04:00:00,0.000000,15.600000,47.000000,8.000000,130.000000,89.930000,131.070000,860.650000,6.340000,189.860000,28.510000 +0,2023-08-08 05:00:00,0.000000,14.300000,55.000000,8.000000,137.000000,89.610000,131.160000,860.830000,6.070000,189.960000,27.660000 +0,2023-08-08 06:00:00,0.000000,14.300000,55.000000,8.000000,137.000000,89.340000,131.240000,861.010000,5.830000,190.060000,26.920000 +0,2023-08-08 07:00:00,0.000000,14.300000,55.000000,8.000000,137.000000,89.090000,131.330000,861.190000,5.630000,190.160000,26.270000 +0,2023-08-08 08:00:00,0.000000,18.200000,43.000000,12.000000,121.000000,89.090000,131.470000,861.480000,6.880000,190.320000,30.150000 +0,2023-08-08 09:00:00,0.000000,18.200000,43.000000,12.000000,121.000000,89.090000,131.610000,861.770000,6.880000,190.490000,30.160000 +0,2023-08-08 10:00:00,0.000000,18.200000,43.000000,12.000000,121.000000,89.090000,131.750000,862.060000,6.880000,190.650000,30.160000 +0,2023-08-08 11:00:00,0.000000,22.500000,31.000000,17.000000,117.000000,89.480000,131.970000,862.520000,9.370000,190.910000,37.030000 +0,2023-08-08 12:00:00,0.000000,22.500000,31.000000,17.000000,117.000000,89.810000,132.180000,862.980000,9.820000,191.170000,38.180000 +0,2023-08-08 13:00:00,0.000000,22.500000,31.000000,17.000000,117.000000,90.080000,132.400000,863.450000,10.200000,191.420000,39.150000 +0,2023-08-08 14:00:00,0.000000,24.500000,27.000000,17.000000,105.000000,90.540000,132.670000,863.990000,10.900000,191.730000,40.870000 +0,2023-08-08 15:00:00,0.000000,24.500000,27.000000,17.000000,105.000000,90.910000,132.930000,864.540000,11.500000,192.040000,42.310000 +0,2023-08-08 16:00:00,0.000000,24.500000,27.000000,17.000000,105.000000,91.220000,133.190000,865.090000,12.000000,192.350000,43.510000 +0,2023-08-08 17:00:00,0.000000,24.600000,26.000000,16.000000,95.000000,91.510000,133.460000,865.650000,11.890000,192.660000,43.260000 +0,2023-08-08 18:00:00,0.000000,24.600000,26.000000,16.000000,95.000000,91.740000,133.720000,866.210000,12.290000,192.970000,44.190000 +0,2023-08-08 19:00:00,0.000000,24.600000,26.000000,16.000000,95.000000,91.930000,133.990000,866.780000,12.630000,193.280000,44.960000 +0,2023-08-08 20:00:00,0.000000,22.400000,30.000000,13.000000,91.000000,91.930000,134.210000,867.240000,10.860000,193.540000,40.820000 +0,2023-08-08 21:00:00,0.000000,22.400000,30.000000,13.000000,91.000000,91.930000,134.430000,867.700000,10.860000,193.800000,40.830000 +0,2023-08-08 22:00:00,0.000000,22.400000,30.000000,13.000000,91.000000,91.930000,134.430000,867.700000,10.860000,193.800000,40.830000 +0,2023-08-08 23:00:00,0.000000,18.800000,39.000000,12.000000,108.000000,91.770000,134.430000,867.700000,10.100000,193.800000,38.960000 +0,2023-08-09 00:00:00,0.000000,18.800000,39.000000,12.000000,108.000000,91.630000,134.430000,867.700000,9.900000,193.800000,38.470000 +0,2023-08-09 01:00:00,0.000000,18.800000,39.000000,12.000000,108.000000,91.510000,134.430000,867.700000,9.730000,193.800000,38.040000 +0,2023-08-09 02:00:00,0.000000,16.700000,46.000000,9.000000,128.000000,91.230000,134.430000,867.700000,8.040000,193.800000,33.540000 +0,2023-08-09 03:00:00,0.000000,16.700000,46.000000,9.000000,128.000000,90.980000,134.430000,867.700000,7.760000,193.800000,32.760000 +0,2023-08-09 04:00:00,0.000000,16.700000,46.000000,9.000000,128.000000,90.760000,134.430000,867.700000,7.520000,193.800000,32.080000 +0,2023-08-09 05:00:00,0.000000,14.200000,56.000000,8.000000,126.000000,90.330000,134.520000,867.890000,6.720000,193.900000,29.760000 +0,2023-08-09 06:00:00,0.000000,14.200000,56.000000,8.000000,126.000000,89.950000,134.600000,868.080000,6.370000,194.000000,28.680000 +0,2023-08-09 07:00:00,0.000000,14.200000,56.000000,8.000000,126.000000,89.620000,134.680000,868.270000,6.070000,194.100000,27.750000 +0,2023-08-09 08:00:00,0.000000,18.400000,46.000000,11.000000,121.000000,89.580000,134.820000,868.570000,7.020000,194.260000,30.640000 +0,2023-08-09 09:00:00,0.000000,18.400000,46.000000,11.000000,121.000000,89.540000,134.950000,868.870000,6.990000,194.420000,30.550000 +0,2023-08-09 10:00:00,0.000000,18.400000,46.000000,11.000000,121.000000,89.520000,135.090000,869.180000,6.960000,194.570000,30.470000 +0,2023-08-09 11:00:00,0.000000,22.800000,36.000000,16.000000,126.000000,89.660000,135.300000,869.650000,9.140000,194.820000,36.540000 +0,2023-08-09 12:00:00,0.000000,22.800000,36.000000,16.000000,126.000000,89.790000,135.500000,870.110000,9.300000,195.060000,36.970000 +0,2023-08-09 13:00:00,0.000000,22.800000,36.000000,16.000000,126.000000,89.890000,135.710000,870.580000,9.440000,195.310000,37.330000 +0,2023-08-09 14:00:00,0.000000,24.600000,31.000000,15.000000,135.000000,90.220000,135.960000,871.150000,9.410000,195.610000,37.260000 +0,2023-08-09 15:00:00,0.000000,24.600000,31.000000,15.000000,135.000000,90.490000,136.210000,871.710000,9.780000,195.900000,38.210000 +0,2023-08-09 16:00:00,0.000000,24.600000,31.000000,15.000000,135.000000,90.710000,136.470000,872.280000,10.090000,196.190000,39.010000 +0,2023-08-09 17:00:00,0.000000,24.300000,32.000000,14.000000,148.000000,90.830000,136.710000,872.820000,9.770000,196.480000,38.210000 +0,2023-08-09 18:00:00,0.000000,24.300000,32.000000,14.000000,148.000000,90.940000,136.950000,873.370000,9.920000,196.770000,38.590000 +0,2023-08-09 19:00:00,0.000000,24.300000,32.000000,14.000000,148.000000,91.020000,137.190000,873.920000,10.040000,197.050000,38.910000 +0,2023-08-09 20:00:00,0.000000,22.300000,37.000000,13.000000,149.000000,91.020000,137.390000,874.360000,9.550000,197.280000,37.660000 +0,2023-08-09 21:00:00,0.000000,22.300000,37.000000,13.000000,149.000000,91.020000,137.590000,874.810000,9.550000,197.520000,37.660000 +0,2023-08-09 22:00:00,0.000000,22.300000,37.000000,13.000000,149.000000,91.020000,137.590000,874.810000,9.550000,197.520000,37.660000 +0,2023-08-09 23:00:00,0.000000,17.700000,48.000000,9.000000,137.000000,90.760000,137.590000,874.810000,7.520000,197.520000,32.170000 +0,2023-08-10 00:00:00,0.000000,17.700000,48.000000,9.000000,137.000000,90.540000,137.590000,874.810000,7.280000,197.520000,31.480000 +0,2023-08-10 01:00:00,0.000000,17.700000,48.000000,9.000000,137.000000,90.340000,137.590000,874.810000,7.070000,197.520000,30.880000 +0,2023-08-10 02:00:00,0.000000,15.000000,57.000000,9.000000,130.000000,89.930000,137.590000,874.810000,6.670000,197.520000,29.690000 +0,2023-08-10 03:00:00,0.000000,15.000000,57.000000,9.000000,130.000000,89.570000,137.590000,874.810000,6.340000,197.520000,28.670000 +0,2023-08-10 04:00:00,0.000000,15.000000,57.000000,9.000000,130.000000,89.260000,137.590000,874.810000,6.060000,197.520000,27.800000 +0,2023-08-10 05:00:00,0.000000,13.400000,67.000000,9.000000,128.000000,88.740000,137.670000,875.040000,5.620000,197.610000,26.410000 +0,2023-08-10 06:00:00,0.000000,13.400000,67.000000,9.000000,128.000000,88.280000,137.750000,875.260000,5.270000,197.710000,25.240000 +0,2023-08-10 07:00:00,0.000000,13.400000,67.000000,9.000000,128.000000,87.880000,137.820000,875.480000,4.980000,197.800000,24.260000 +0,2023-08-10 08:00:00,0.000000,16.900000,58.000000,11.000000,137.000000,87.770000,137.940000,875.840000,5.420000,197.950000,25.740000 +0,2023-08-10 09:00:00,0.000000,16.900000,58.000000,11.000000,137.000000,87.670000,138.070000,876.200000,5.340000,198.100000,25.490000 +0,2023-08-10 10:00:00,0.000000,16.900000,58.000000,11.000000,137.000000,87.590000,138.190000,876.550000,5.280000,198.250000,25.280000 +0,2023-08-10 11:00:00,0.000000,21.100000,49.000000,10.000000,169.000000,87.610000,138.380000,877.110000,5.030000,198.480000,24.450000 +0,2023-08-10 12:00:00,0.000000,21.100000,49.000000,10.000000,169.000000,87.620000,138.580000,877.680000,5.040000,198.710000,24.490000 +0,2023-08-10 13:00:00,0.000000,21.100000,49.000000,10.000000,169.000000,87.630000,138.770000,878.240000,5.050000,198.950000,24.520000 +0,2023-08-10 14:00:00,0.110000,21.800000,55.000000,16.000000,198.000000,87.630000,138.950000,878.760000,6.830000,199.170000,30.190000 +0,2023-08-10 15:00:00,0.000000,21.800000,55.000000,16.000000,198.000000,87.630000,139.130000,879.280000,6.830000,199.380000,30.190000 +0,2023-08-10 16:00:00,0.000000,21.800000,55.000000,16.000000,198.000000,87.630000,139.300000,879.790000,6.830000,199.600000,30.190000 +0,2023-08-10 17:00:00,0.130000,21.600000,60.000000,15.000000,202.000000,87.600000,139.460000,880.250000,6.470000,199.790000,29.100000 +0,2023-08-10 18:00:00,0.000000,21.600000,60.000000,15.000000,202.000000,87.580000,139.620000,880.700000,6.440000,199.980000,29.040000 +0,2023-08-10 19:00:00,0.000000,21.600000,60.000000,15.000000,202.000000,87.560000,139.770000,881.160000,6.420000,200.170000,28.980000 +0,2023-08-10 20:00:00,0.000000,21.600000,60.000000,15.000000,202.000000,87.540000,139.930000,881.610000,6.410000,200.360000,28.930000 +0,2023-08-10 21:00:00,0.000000,21.600000,60.000000,15.000000,202.000000,87.520000,139.930000,881.610000,6.400000,200.360000,28.890000 +0,2023-08-10 22:00:00,0.000000,21.600000,60.000000,15.000000,202.000000,87.510000,139.930000,881.610000,6.380000,200.360000,28.860000 +0,2023-08-10 23:00:00,0.000000,18.400000,76.000000,12.000000,190.000000,86.960000,139.930000,881.610000,5.070000,200.360000,24.640000 +0,2023-08-11 00:00:00,0.000000,18.400000,76.000000,12.000000,190.000000,86.500000,139.930000,881.610000,4.750000,200.360000,23.530000 +0,2023-08-11 01:00:00,0.000000,18.400000,76.000000,12.000000,190.000000,86.110000,139.930000,881.610000,4.500000,200.360000,22.630000 +0,2023-08-11 02:00:00,0.000000,18.400000,76.000000,12.000000,190.000000,85.780000,139.930000,881.610000,4.290000,200.360000,21.890000 +0,2023-08-11 03:00:00,0.000000,18.400000,76.000000,12.000000,190.000000,85.500000,139.930000,881.610000,4.130000,200.360000,21.290000 +0,2023-08-11 04:00:00,0.000000,18.400000,76.000000,12.000000,190.000000,85.260000,139.930000,881.610000,4.000000,200.360000,20.800000 +0,2023-08-11 05:00:00,0.000000,15.600000,77.000000,10.000000,213.000000,85.000000,139.980000,881.740000,3.480000,200.420000,18.820000 +0,2023-08-11 06:00:00,0.000000,15.600000,77.000000,10.000000,213.000000,84.770000,140.040000,881.860000,3.370000,200.480000,18.390000 +0,2023-08-11 07:00:00,0.000000,15.600000,77.000000,10.000000,213.000000,84.570000,140.090000,881.980000,3.280000,200.550000,18.030000 +0,2023-08-11 08:00:00,0.000000,15.600000,77.000000,10.000000,213.000000,84.390000,140.150000,882.100000,3.210000,200.610000,17.720000 +0,2023-08-11 09:00:00,0.000000,15.600000,77.000000,10.000000,213.000000,84.250000,140.200000,882.220000,3.140000,200.680000,17.460000 +0,2023-08-11 10:00:00,0.000000,15.600000,77.000000,10.000000,213.000000,84.120000,140.260000,882.350000,3.090000,200.740000,17.240000 +0,2023-08-11 11:00:00,0.000000,25.600000,38.000000,14.000000,232.000000,85.250000,140.530000,882.960000,4.410000,201.060000,22.330000 +0,2023-08-11 12:00:00,0.000000,25.600000,38.000000,14.000000,232.000000,86.180000,140.810000,883.570000,5.020000,201.380000,24.480000 +0,2023-08-11 13:00:00,0.000000,25.600000,38.000000,14.000000,232.000000,86.950000,141.080000,884.180000,5.600000,201.700000,26.420000 +0,2023-08-11 14:00:00,0.000000,25.600000,38.000000,14.000000,232.000000,87.590000,141.350000,884.790000,6.140000,202.020000,28.120000 +0,2023-08-11 15:00:00,0.000000,25.600000,38.000000,14.000000,232.000000,88.110000,141.630000,885.400000,6.610000,202.340000,29.590000 +0,2023-08-11 16:00:00,0.000000,25.600000,38.000000,14.000000,232.000000,88.540000,141.900000,886.010000,7.030000,202.660000,30.850000 +0,2023-08-11 17:00:00,0.000000,28.500000,31.000000,15.000000,234.000000,89.330000,142.260000,886.810000,8.280000,203.080000,34.420000 +0,2023-08-11 18:00:00,0.000000,28.500000,31.000000,15.000000,234.000000,89.960000,142.620000,887.620000,9.060000,203.500000,36.540000 +0,2023-08-11 19:00:00,0.000000,28.500000,31.000000,15.000000,234.000000,90.450000,142.990000,888.420000,9.730000,203.920000,38.290000 +0,2023-08-11 20:00:00,0.000000,28.500000,31.000000,15.000000,234.000000,90.850000,143.350000,889.230000,10.300000,204.340000,39.730000 +0,2023-08-11 21:00:00,0.000000,28.500000,31.000000,15.000000,234.000000,91.160000,143.350000,889.230000,10.770000,204.340000,40.890000 +0,2023-08-11 22:00:00,0.000000,28.500000,31.000000,15.000000,234.000000,91.410000,143.350000,889.230000,11.150000,204.340000,41.820000 +0,2023-08-11 23:00:00,0.000000,22.900000,46.000000,13.000000,200.000000,91.210000,143.350000,889.230000,9.800000,204.340000,38.470000 +0,2023-08-12 00:00:00,0.000000,22.900000,46.000000,13.000000,200.000000,91.040000,143.350000,889.230000,9.560000,204.340000,37.860000 +0,2023-08-12 01:00:00,0.000000,22.900000,46.000000,13.000000,200.000000,90.890000,143.350000,889.230000,9.370000,204.340000,37.360000 +0,2023-08-12 02:00:00,0.000000,22.900000,46.000000,13.000000,200.000000,90.770000,143.350000,889.230000,9.210000,204.340000,36.930000 +0,2023-08-12 03:00:00,0.000000,22.900000,46.000000,13.000000,200.000000,90.660000,143.350000,889.230000,9.070000,204.340000,36.570000 +0,2023-08-12 04:00:00,0.000000,22.900000,46.000000,13.000000,200.000000,90.570000,143.350000,889.230000,8.950000,204.340000,36.270000 +0,2023-08-12 05:00:00,0.000000,20.600000,53.000000,15.000000,231.000000,90.260000,143.480000,889.500000,9.460000,204.500000,37.610000 +0,2023-08-12 06:00:00,0.000000,20.600000,53.000000,15.000000,231.000000,89.990000,143.620000,889.770000,9.100000,204.660000,36.670000 +0,2023-08-12 07:00:00,0.000000,20.600000,53.000000,15.000000,231.000000,89.760000,143.760000,890.050000,8.810000,204.820000,35.890000 +0,2023-08-12 08:00:00,0.000000,20.600000,53.000000,15.000000,231.000000,89.560000,143.900000,890.320000,8.570000,204.970000,35.250000 +0,2023-08-12 09:00:00,0.000000,20.600000,53.000000,15.000000,231.000000,89.400000,144.030000,890.590000,8.370000,205.130000,34.700000 +0,2023-08-12 10:00:00,0.000000,20.600000,53.000000,15.000000,231.000000,89.260000,144.170000,890.870000,8.200000,205.290000,34.250000 +0,2023-08-12 11:00:00,0.000000,24.200000,29.000000,23.000000,254.000000,89.810000,144.430000,891.380000,13.290000,205.580000,46.790000 +0,2023-08-12 12:00:00,0.000000,24.200000,29.000000,23.000000,254.000000,90.250000,144.690000,891.890000,14.160000,205.880000,48.710000 +0,2023-08-12 13:00:00,0.000000,24.200000,29.000000,23.000000,254.000000,90.610000,144.950000,892.410000,14.890000,206.180000,50.290000 +0,2023-08-12 14:00:00,0.000000,24.200000,29.000000,23.000000,254.000000,90.890000,145.210000,892.920000,15.500000,206.470000,51.580000 +0,2023-08-12 15:00:00,0.000000,24.200000,29.000000,23.000000,254.000000,91.120000,145.470000,893.430000,16.010000,206.770000,52.640000 +0,2023-08-12 16:00:00,0.000000,24.200000,29.000000,23.000000,254.000000,91.300000,145.730000,893.950000,16.430000,207.070000,53.490000 +0,2023-08-12 17:00:00,0.000000,26.600000,21.000000,17.000000,258.000000,91.900000,146.060000,894.610000,13.230000,207.450000,46.710000 +0,2023-08-12 18:00:00,0.000000,26.600000,21.000000,17.000000,258.000000,92.380000,146.390000,895.270000,14.150000,207.820000,48.750000 +0,2023-08-12 19:00:00,0.000000,26.600000,21.000000,17.000000,258.000000,92.760000,146.720000,895.930000,14.920000,208.200000,50.410000 +0,2023-08-12 20:00:00,0.000000,26.600000,21.000000,17.000000,258.000000,93.050000,147.050000,896.590000,15.560000,208.580000,51.760000 +0,2023-08-12 21:00:00,0.000000,26.600000,21.000000,17.000000,258.000000,93.290000,147.050000,896.590000,16.090000,208.580000,52.830000 +0,2023-08-12 22:00:00,0.000000,26.600000,21.000000,17.000000,258.000000,93.480000,147.050000,896.590000,16.510000,208.580000,53.690000 +0,2023-08-12 23:00:00,0.000000,19.900000,32.000000,8.000000,197.000000,93.340000,147.050000,896.590000,10.290000,208.580000,39.790000 +0,2023-08-13 00:00:00,0.000000,19.900000,32.000000,8.000000,197.000000,93.210000,147.050000,896.590000,10.110000,208.580000,39.340000 +0,2023-08-13 01:00:00,0.000000,19.900000,32.000000,8.000000,197.000000,93.100000,147.050000,896.590000,9.950000,208.580000,38.950000 +0,2023-08-13 02:00:00,0.000000,19.900000,32.000000,8.000000,197.000000,93.000000,147.050000,896.590000,9.810000,208.580000,38.590000 +0,2023-08-13 03:00:00,0.000000,19.900000,32.000000,8.000000,197.000000,92.910000,147.050000,896.590000,9.690000,208.580000,38.280000 +0,2023-08-13 04:00:00,0.000000,19.900000,32.000000,8.000000,197.000000,92.830000,147.050000,896.590000,9.580000,208.580000,37.990000 +0,2023-08-13 05:00:00,0.000000,20.800000,51.000000,12.000000,206.000000,92.250000,147.190000,896.850000,10.800000,208.740000,41.080000 +0,2023-08-13 06:00:00,0.000000,20.800000,51.000000,12.000000,206.000000,91.760000,147.330000,897.110000,10.080000,208.890000,39.270000 +0,2023-08-13 07:00:00,0.000000,20.800000,51.000000,12.000000,206.000000,91.340000,147.460000,897.370000,9.490000,209.050000,37.780000 +0,2023-08-13 08:00:00,0.000000,20.800000,51.000000,12.000000,206.000000,90.980000,147.600000,897.630000,9.020000,209.200000,36.540000 +0,2023-08-13 09:00:00,0.000000,20.800000,51.000000,12.000000,206.000000,90.670000,147.740000,897.900000,8.640000,209.360000,35.510000 +0,2023-08-13 10:00:00,0.000000,20.800000,51.000000,12.000000,206.000000,90.410000,147.870000,898.160000,8.320000,209.510000,34.650000 +0,2023-08-13 11:00:00,0.000000,30.300000,32.000000,17.000000,242.000000,90.870000,148.210000,898.800000,11.430000,209.890000,42.610000 +0,2023-08-13 12:00:00,0.000000,30.300000,32.000000,17.000000,242.000000,91.230000,148.540000,899.430000,12.020000,210.270000,44.020000 +0,2023-08-13 13:00:00,0.000000,30.300000,32.000000,17.000000,242.000000,91.500000,148.870000,900.070000,12.500000,210.640000,45.140000 +0,2023-08-13 14:00:00,0.000000,30.300000,32.000000,17.000000,242.000000,91.710000,149.200000,900.710000,12.890000,211.020000,46.020000 +0,2023-08-13 15:00:00,0.000000,30.300000,32.000000,17.000000,242.000000,91.880000,149.540000,901.350000,13.190000,211.400000,46.710000 +0,2023-08-13 16:00:00,0.000000,30.300000,32.000000,17.000000,242.000000,92.010000,149.870000,901.990000,13.430000,211.770000,47.250000 +0,2023-08-13 17:00:00,0.000000,32.200000,27.000000,15.000000,247.000000,92.440000,150.270000,902.750000,12.900000,212.220000,46.080000 +0,2023-08-13 18:00:00,0.000000,32.200000,27.000000,15.000000,247.000000,92.760000,150.670000,903.520000,13.510000,212.670000,47.450000 +0,2023-08-13 19:00:00,0.000000,32.200000,27.000000,15.000000,247.000000,93.010000,151.060000,904.280000,13.990000,213.120000,48.520000 +0,2023-08-13 20:00:00,0.000000,32.200000,27.000000,15.000000,247.000000,93.200000,151.460000,905.040000,14.360000,213.570000,49.340000 +0,2023-08-13 21:00:00,0.000000,32.200000,27.000000,15.000000,247.000000,93.340000,151.460000,905.040000,14.650000,213.570000,49.960000 +0,2023-08-13 22:00:00,0.000000,32.200000,27.000000,15.000000,247.000000,93.450000,151.460000,905.040000,14.880000,213.570000,50.440000 +0,2023-08-13 23:00:00,0.000000,26.800000,39.000000,12.000000,214.000000,93.220000,151.460000,905.040000,12.390000,213.570000,44.930000 +0,2023-08-14 00:00:00,0.000000,26.800000,39.000000,12.000000,214.000000,93.030000,151.460000,905.040000,12.060000,213.570000,44.170000 +0,2023-08-14 01:00:00,0.000000,26.800000,39.000000,12.000000,214.000000,92.870000,151.460000,905.040000,11.780000,213.570000,43.530000 +0,2023-08-14 02:00:00,0.000000,26.800000,39.000000,12.000000,214.000000,92.730000,151.460000,905.040000,11.560000,213.570000,43.000000 +0,2023-08-14 03:00:00,0.000000,26.800000,39.000000,12.000000,214.000000,92.610000,151.460000,905.040000,11.370000,213.570000,42.550000 +0,2023-08-14 04:00:00,0.000000,26.800000,39.000000,12.000000,214.000000,92.520000,151.460000,905.040000,11.220000,213.570000,42.180000 +0,2023-08-14 05:00:00,0.000000,23.600000,49.000000,11.000000,228.000000,92.080000,151.640000,905.360000,10.030000,213.760000,39.240000 +0,2023-08-14 06:00:00,0.000000,23.600000,49.000000,11.000000,228.000000,91.710000,151.810000,905.680000,9.520000,213.960000,37.930000 +0,2023-08-14 07:00:00,0.000000,23.600000,49.000000,11.000000,228.000000,91.400000,151.980000,906.000000,9.110000,214.150000,36.850000 +0,2023-08-14 08:00:00,0.000000,23.600000,49.000000,11.000000,228.000000,91.130000,152.150000,906.310000,8.770000,214.350000,35.960000 +0,2023-08-14 09:00:00,0.000000,23.600000,49.000000,11.000000,228.000000,90.910000,152.330000,906.630000,8.490000,214.540000,35.210000 +0,2023-08-14 10:00:00,0.000000,23.600000,49.000000,11.000000,228.000000,90.720000,152.500000,906.950000,8.270000,214.730000,34.590000 +0,2023-08-14 11:00:00,0.000000,27.900000,27.000000,20.000000,287.000000,91.240000,152.820000,907.530000,14.010000,215.090000,48.610000 +0,2023-08-14 12:00:00,0.000000,27.900000,27.000000,20.000000,287.000000,91.640000,153.140000,908.120000,14.840000,215.450000,50.400000 +0,2023-08-14 13:00:00,0.000000,27.900000,27.000000,20.000000,287.000000,91.960000,153.460000,908.710000,15.510000,215.810000,51.830000 +0,2023-08-14 14:00:00,0.000000,27.900000,27.000000,20.000000,287.000000,92.200000,153.780000,909.290000,16.060000,216.160000,52.970000 +0,2023-08-14 15:00:00,0.000000,27.900000,27.000000,20.000000,287.000000,92.390000,154.100000,909.880000,16.500000,216.520000,53.870000 +0,2023-08-14 16:00:00,0.000000,27.900000,27.000000,20.000000,287.000000,92.540000,154.420000,910.470000,16.850000,216.880000,54.580000 +0,2023-08-14 17:00:00,0.000000,27.500000,17.000000,17.000000,285.000000,93.140000,154.770000,911.120000,15.740000,217.270000,52.340000 +0,2023-08-14 18:00:00,0.000000,27.500000,17.000000,17.000000,285.000000,93.600000,155.120000,911.770000,16.800000,217.670000,54.500000 +0,2023-08-14 19:00:00,0.000000,27.500000,17.000000,17.000000,285.000000,93.970000,155.480000,912.420000,17.670000,218.060000,56.240000 +0,2023-08-14 20:00:00,0.000000,27.500000,17.000000,17.000000,285.000000,94.250000,155.830000,913.070000,18.390000,218.460000,57.630000 +0,2023-08-14 21:00:00,0.000000,27.500000,17.000000,17.000000,285.000000,94.470000,155.830000,913.070000,18.960000,218.460000,58.730000 +0,2023-08-14 22:00:00,0.000000,27.500000,17.000000,17.000000,285.000000,94.650000,155.830000,913.070000,19.420000,218.460000,59.590000 +0,2023-08-14 23:00:00,0.000000,18.600000,36.000000,7.000000,266.000000,94.290000,155.830000,913.070000,11.160000,218.460000,42.130000 +0,2023-08-15 00:00:00,0.000000,18.600000,36.000000,7.000000,266.000000,93.960000,155.830000,913.070000,10.670000,218.460000,40.940000 +0,2023-08-15 01:00:00,0.000000,18.600000,36.000000,7.000000,266.000000,93.670000,155.830000,913.070000,10.250000,218.460000,39.890000 +0,2023-08-15 02:00:00,0.000000,18.600000,36.000000,7.000000,266.000000,93.420000,155.830000,913.070000,9.890000,218.460000,38.970000 +0,2023-08-15 03:00:00,0.000000,18.600000,36.000000,7.000000,266.000000,93.180000,155.830000,913.070000,9.570000,218.460000,38.150000 +0,2023-08-15 04:00:00,0.000000,18.600000,36.000000,7.000000,266.000000,92.970000,155.830000,913.070000,9.300000,218.460000,37.430000 +0,2023-08-15 05:00:00,0.000000,15.500000,47.000000,9.000000,239.000000,92.500000,155.950000,913.310000,9.620000,218.590000,38.260000 +0,2023-08-15 06:00:00,0.000000,15.500000,47.000000,9.000000,239.000000,92.070000,156.070000,913.550000,9.060000,218.720000,36.790000 +0,2023-08-15 07:00:00,0.000000,15.500000,47.000000,9.000000,239.000000,91.690000,156.190000,913.780000,8.590000,218.860000,35.530000 +0,2023-08-15 08:00:00,0.000000,15.500000,47.000000,9.000000,239.000000,91.360000,156.310000,914.020000,8.190000,218.990000,34.430000 +0,2023-08-15 09:00:00,0.000000,15.500000,47.000000,9.000000,239.000000,91.060000,156.430000,914.260000,7.850000,219.130000,33.480000 +0,2023-08-15 10:00:00,0.000000,15.500000,47.000000,9.000000,239.000000,90.800000,156.550000,914.500000,7.560000,219.260000,32.660000 +0,2023-08-15 11:00:00,0.000000,23.800000,29.000000,12.000000,270.000000,91.000000,156.820000,915.030000,9.050000,219.560000,36.780000 +0,2023-08-15 12:00:00,0.000000,23.800000,29.000000,12.000000,270.000000,91.170000,157.080000,915.570000,9.260000,219.860000,37.360000 +0,2023-08-15 13:00:00,0.000000,23.800000,29.000000,12.000000,270.000000,91.300000,157.350000,916.100000,9.450000,220.160000,37.840000 +0,2023-08-15 14:00:00,0.000000,23.800000,29.000000,12.000000,270.000000,91.410000,157.620000,916.630000,9.600000,220.460000,38.250000 +0,2023-08-15 15:00:00,0.000000,23.800000,29.000000,12.000000,270.000000,91.510000,157.890000,917.170000,9.730000,220.760000,38.580000 +0,2023-08-15 16:00:00,0.000000,23.800000,29.000000,12.000000,270.000000,91.580000,158.150000,917.700000,9.830000,221.060000,38.860000 +0,2023-08-15 17:00:00,0.000000,26.100000,23.000000,10.000000,320.000000,91.970000,158.490000,918.370000,9.390000,221.440000,37.710000 +0,2023-08-15 18:00:00,0.000000,26.100000,23.000000,10.000000,320.000000,92.280000,158.820000,919.030000,9.810000,221.810000,38.820000 +0,2023-08-15 19:00:00,0.000000,26.100000,23.000000,10.000000,320.000000,92.540000,159.150000,919.690000,10.170000,222.180000,39.730000 +0,2023-08-15 20:00:00,0.000000,26.100000,23.000000,10.000000,320.000000,92.740000,159.480000,920.360000,10.470000,222.550000,40.490000 +0,2023-08-15 21:00:00,0.000000,26.100000,23.000000,10.000000,320.000000,92.910000,159.480000,920.360000,10.720000,222.550000,41.110000 +0,2023-08-15 22:00:00,0.000000,26.100000,23.000000,10.000000,320.000000,93.050000,159.480000,920.360000,10.920000,222.550000,41.620000 +0,2023-08-15 23:00:00,0.000000,18.400000,42.000000,5.000000,17.000000,92.730000,159.480000,920.360000,8.130000,222.550000,34.320000 +0,2023-08-16 00:00:00,0.000000,18.400000,42.000000,5.000000,17.000000,92.450000,159.480000,920.360000,7.810000,222.550000,33.430000 +0,2023-08-16 01:00:00,0.000000,18.400000,42.000000,5.000000,17.000000,92.200000,159.480000,920.360000,7.540000,222.550000,32.650000 +0,2023-08-16 02:00:00,0.000000,18.400000,42.000000,5.000000,17.000000,91.980000,159.480000,920.360000,7.310000,222.550000,31.970000 +0,2023-08-16 03:00:00,0.000000,18.400000,42.000000,5.000000,17.000000,91.780000,159.480000,920.360000,7.100000,222.550000,31.360000 +0,2023-08-16 04:00:00,0.000000,18.400000,42.000000,5.000000,17.000000,91.600000,159.480000,920.360000,6.920000,222.550000,30.830000 +0,2023-08-16 05:00:00,0.000000,16.100000,51.000000,8.000000,13.000000,91.190000,159.600000,920.660000,7.600000,222.690000,32.830000 +0,2023-08-16 06:00:00,0.000000,16.100000,51.000000,8.000000,13.000000,90.840000,159.720000,920.960000,7.230000,222.830000,31.740000 +0,2023-08-16 07:00:00,0.000000,16.100000,51.000000,8.000000,13.000000,90.520000,159.840000,921.260000,6.910000,222.970000,30.800000 +0,2023-08-16 08:00:00,0.000000,16.100000,51.000000,8.000000,13.000000,90.250000,159.960000,921.560000,6.640000,223.100000,29.980000 +0,2023-08-16 09:00:00,0.000000,16.100000,51.000000,8.000000,13.000000,90.000000,160.070000,921.870000,6.410000,223.240000,29.280000 +0,2023-08-16 10:00:00,0.000000,16.100000,51.000000,8.000000,13.000000,89.780000,160.190000,922.170000,6.210000,223.380000,28.660000 +0,2023-08-16 11:00:00,0.000000,21.300000,42.000000,21.000000,38.000000,89.780000,160.390000,922.660000,11.960000,223.600000,44.120000 +0,2023-08-16 12:00:00,0.000000,21.300000,42.000000,21.000000,38.000000,89.780000,160.580000,923.160000,11.960000,223.830000,44.130000 +0,2023-08-16 13:00:00,0.000000,21.300000,42.000000,21.000000,38.000000,89.780000,160.770000,923.650000,11.960000,224.050000,44.130000 +0,2023-08-16 14:00:00,0.000000,21.300000,42.000000,21.000000,38.000000,89.780000,160.970000,924.140000,11.960000,224.280000,44.130000 +0,2023-08-16 15:00:00,0.000000,21.300000,42.000000,21.000000,38.000000,89.780000,161.160000,924.640000,11.960000,224.500000,44.140000 +0,2023-08-16 16:00:00,0.000000,21.300000,42.000000,21.000000,38.000000,89.780000,161.360000,925.130000,11.960000,224.720000,44.140000 +0,2023-08-16 17:00:00,0.000000,19.900000,34.000000,19.000000,32.000000,89.860000,161.560000,925.650000,10.940000,224.960000,41.700000 +0,2023-08-16 18:00:00,0.000000,19.900000,34.000000,19.000000,32.000000,89.930000,161.760000,926.160000,11.050000,225.190000,41.960000 +0,2023-08-16 19:00:00,0.000000,19.900000,34.000000,19.000000,32.000000,89.990000,161.960000,926.680000,11.140000,225.430000,42.180000 +0,2023-08-16 20:00:00,0.000000,19.900000,34.000000,19.000000,32.000000,90.030000,162.170000,927.200000,11.210000,225.660000,42.370000 +0,2023-08-16 21:00:00,0.000000,19.900000,34.000000,19.000000,32.000000,90.070000,162.170000,927.200000,11.270000,225.660000,42.520000 +0,2023-08-16 22:00:00,0.000000,19.900000,34.000000,19.000000,32.000000,90.100000,162.170000,927.200000,11.330000,225.660000,42.650000 +0,2023-08-16 23:00:00,0.000000,16.500000,45.000000,11.000000,356.000000,90.000000,162.170000,927.200000,7.450000,225.660000,32.440000 +0,2023-08-17 00:00:00,0.000000,16.500000,45.000000,11.000000,356.000000,89.900000,162.170000,927.200000,7.350000,225.660000,32.140000 +0,2023-08-17 01:00:00,0.000000,16.500000,45.000000,11.000000,356.000000,89.820000,162.170000,927.200000,7.260000,225.660000,31.880000 +0,2023-08-17 02:00:00,0.000000,16.500000,45.000000,11.000000,356.000000,89.740000,162.170000,927.200000,7.190000,225.660000,31.650000 +0,2023-08-17 03:00:00,0.000000,16.500000,45.000000,11.000000,356.000000,89.680000,162.170000,927.200000,7.120000,225.660000,31.450000 +0,2023-08-17 04:00:00,0.000000,16.500000,45.000000,11.000000,356.000000,89.620000,162.170000,927.200000,7.060000,225.660000,31.270000 +0,2023-08-17 05:00:00,0.000000,15.400000,53.000000,10.000000,353.000000,89.380000,162.170000,927.200000,6.490000,225.660000,29.550000 +0,2023-08-17 06:00:00,0.000000,15.400000,53.000000,10.000000,353.000000,89.180000,162.280000,927.510000,6.300000,225.790000,28.960000 +0,2023-08-17 07:00:00,0.000000,15.400000,53.000000,10.000000,353.000000,88.990000,162.390000,927.820000,6.140000,225.920000,28.450000 +0,2023-08-17 08:00:00,0.000000,15.400000,53.000000,10.000000,353.000000,88.830000,162.500000,928.140000,6.000000,226.060000,28.010000 +0,2023-08-17 09:00:00,0.000000,15.400000,53.000000,10.000000,353.000000,88.690000,162.610000,928.450000,5.880000,226.190000,27.620000 +0,2023-08-17 10:00:00,0.000000,15.400000,53.000000,10.000000,353.000000,88.570000,162.730000,928.770000,5.770000,226.320000,27.290000 +0,2023-08-17 11:00:00,0.000000,17.600000,43.000000,13.000000,13.000000,88.570000,162.880000,929.210000,6.710000,226.500000,30.250000 +0,2023-08-17 12:00:00,0.000000,17.600000,43.000000,13.000000,13.000000,88.570000,163.040000,929.640000,6.710000,226.690000,30.250000 +0,2023-08-17 13:00:00,0.000000,17.600000,43.000000,13.000000,13.000000,88.570000,163.190000,930.080000,6.710000,226.870000,30.250000 +0,2023-08-17 14:00:00,0.000000,17.600000,43.000000,13.000000,13.000000,88.570000,163.350000,930.520000,6.710000,227.050000,30.250000 +0,2023-08-17 15:00:00,0.000000,17.600000,43.000000,13.000000,13.000000,88.570000,163.510000,930.960000,6.710000,227.240000,30.250000 +0,2023-08-17 16:00:00,0.000000,17.600000,43.000000,13.000000,13.000000,88.570000,163.660000,931.400000,6.710000,227.420000,30.260000 +0,2023-08-17 17:00:00,0.000000,18.100000,38.000000,12.000000,32.000000,88.650000,163.840000,931.890000,6.460000,227.630000,29.490000 +0,2023-08-17 18:00:00,0.000000,18.100000,38.000000,12.000000,32.000000,88.730000,164.010000,932.380000,6.530000,227.830000,29.710000 +0,2023-08-17 19:00:00,0.000000,18.100000,38.000000,12.000000,32.000000,88.790000,164.190000,932.880000,6.600000,228.040000,29.900000 +0,2023-08-17 20:00:00,0.000000,18.100000,38.000000,12.000000,32.000000,88.850000,164.370000,933.370000,6.650000,228.250000,30.070000 +0,2023-08-17 21:00:00,0.000000,18.100000,38.000000,12.000000,32.000000,88.900000,164.370000,933.370000,6.700000,228.250000,30.210000 +0,2023-08-17 22:00:00,0.000000,18.100000,38.000000,12.000000,32.000000,88.940000,164.370000,933.370000,6.740000,228.250000,30.330000 +0,2023-08-17 23:00:00,0.000000,12.500000,58.000000,3.000000,330.000000,88.700000,164.370000,933.370000,4.130000,228.250000,21.620000 +0,2023-08-18 00:00:00,0.000000,12.500000,58.000000,3.000000,330.000000,88.480000,164.370000,933.370000,4.010000,228.250000,21.140000 +0,2023-08-18 01:00:00,0.000000,12.500000,58.000000,3.000000,330.000000,88.280000,164.370000,933.370000,3.890000,228.250000,20.710000 +0,2023-08-18 02:00:00,0.000000,12.500000,58.000000,3.000000,330.000000,88.100000,164.370000,933.370000,3.800000,228.250000,20.330000 +0,2023-08-18 03:00:00,0.000000,12.500000,58.000000,3.000000,330.000000,87.940000,164.370000,933.370000,3.710000,228.250000,19.990000 +0,2023-08-18 04:00:00,0.000000,12.500000,58.000000,3.000000,330.000000,87.790000,164.370000,933.370000,3.630000,228.250000,19.680000 +0,2023-08-18 05:00:00,0.000000,7.600000,78.000000,4.000000,220.000000,87.240000,164.370000,933.370000,3.530000,228.250000,19.280000 +0,2023-08-18 06:00:00,0.000000,7.600000,78.000000,4.000000,220.000000,86.740000,164.420000,933.490000,3.290000,228.310000,18.300000 +0,2023-08-18 07:00:00,0.000000,7.600000,78.000000,4.000000,220.000000,86.290000,164.470000,933.620000,3.080000,228.370000,17.460000 +0,2023-08-18 08:00:00,0.000000,7.600000,78.000000,4.000000,220.000000,85.880000,164.520000,933.740000,2.910000,228.420000,16.730000 +0,2023-08-18 09:00:00,0.000000,7.600000,78.000000,4.000000,220.000000,85.510000,164.570000,933.860000,2.760000,228.480000,16.090000 +0,2023-08-18 10:00:00,0.000000,7.600000,78.000000,4.000000,220.000000,85.180000,164.630000,933.990000,2.640000,228.540000,15.530000 +0,2023-08-18 11:00:00,0.000000,19.800000,36.000000,9.000000,136.000000,85.820000,164.960000,934.790000,3.710000,228.930000,20.020000 +0,2023-08-18 12:00:00,0.000000,19.800000,36.000000,9.000000,136.000000,86.380000,165.300000,935.590000,4.020000,229.310000,21.190000 +0,2023-08-18 13:00:00,0.000000,19.800000,36.000000,9.000000,136.000000,86.870000,165.630000,936.380000,4.300000,229.690000,22.260000 +0,2023-08-18 14:00:00,0.000000,19.800000,36.000000,9.000000,136.000000,87.290000,165.970000,937.180000,4.570000,230.080000,23.220000 +0,2023-08-18 15:00:00,0.000000,19.800000,36.000000,9.000000,136.000000,87.650000,166.310000,937.980000,4.810000,230.460000,24.080000 +0,2023-08-18 16:00:00,0.000000,19.800000,36.000000,9.000000,136.000000,87.960000,166.640000,938.780000,5.030000,230.840000,24.840000 +0,2023-08-18 17:00:00,0.000000,23.700000,27.000000,10.000000,133.000000,88.700000,167.130000,939.940000,5.880000,231.400000,27.680000 +1,2023-08-03 00:00:00,0.000000,15.300000,64.000000,5.000000,93.000000,85.970000,118.400000,826.100000,3.100000,174.330000,16.840000 +1,2023-08-03 01:00:00,0.000000,15.300000,64.000000,5.000000,93.000000,85.950000,118.400000,826.100000,3.090000,174.330000,16.800000 +1,2023-08-03 02:00:00,0.000000,12.700000,72.000000,2.000000,119.000000,85.740000,118.400000,826.100000,2.580000,174.330000,14.660000 +1,2023-08-03 03:00:00,0.000000,12.700000,72.000000,2.000000,119.000000,85.560000,118.400000,826.100000,2.520000,174.330000,14.380000 +1,2023-08-03 04:00:00,0.000000,12.700000,72.000000,2.000000,119.000000,85.400000,118.400000,826.100000,2.460000,174.330000,14.130000 +1,2023-08-03 05:00:00,0.000000,11.400000,78.000000,1.000000,319.000000,85.130000,118.440000,826.180000,2.250000,174.380000,13.190000 +1,2023-08-03 06:00:00,0.000000,11.400000,78.000000,1.000000,319.000000,84.880000,118.480000,826.270000,2.180000,174.430000,12.850000 +1,2023-08-03 07:00:00,0.000000,11.400000,78.000000,1.000000,319.000000,84.660000,118.520000,826.350000,2.110000,174.480000,12.540000 +1,2023-08-03 08:00:00,0.000000,17.000000,57.000000,2.000000,320.000000,84.750000,118.630000,826.590000,2.250000,174.610000,13.170000 +1,2023-08-03 09:00:00,0.000000,17.000000,57.000000,2.000000,320.000000,84.820000,118.740000,826.830000,2.270000,174.750000,13.290000 +1,2023-08-03 10:00:00,0.000000,17.000000,57.000000,2.000000,320.000000,84.900000,118.850000,827.070000,2.300000,174.880000,13.390000 +1,2023-08-03 11:00:00,0.000000,23.400000,33.000000,8.000000,54.000000,85.850000,119.110000,827.620000,3.540000,175.190000,18.620000 +1,2023-08-03 12:00:00,0.000000,23.400000,33.000000,8.000000,54.000000,86.650000,119.370000,828.160000,3.970000,175.500000,20.240000 +1,2023-08-03 13:00:00,0.000000,23.400000,33.000000,8.000000,54.000000,87.340000,119.630000,828.710000,4.380000,175.810000,21.720000 +1,2023-08-03 14:00:00,0.000000,24.900000,30.000000,12.000000,35.000000,88.160000,119.920000,829.340000,6.020000,176.160000,27.150000 +1,2023-08-03 15:00:00,0.000000,24.900000,30.000000,12.000000,35.000000,88.830000,120.220000,829.970000,6.630000,176.520000,29.010000 +1,2023-08-03 16:00:00,0.000000,24.900000,30.000000,12.000000,35.000000,89.380000,120.510000,830.600000,7.180000,176.870000,30.630000 +1,2023-08-03 17:00:00,0.000000,24.600000,31.000000,14.000000,38.000000,89.800000,120.800000,831.210000,8.430000,177.210000,34.110000 +1,2023-08-03 18:00:00,0.000000,24.600000,31.000000,14.000000,38.000000,90.140000,121.080000,831.810000,8.850000,177.550000,35.250000 +1,2023-08-03 19:00:00,0.000000,24.600000,31.000000,14.000000,38.000000,90.420000,121.370000,832.420000,9.210000,177.890000,36.200000 +1,2023-08-03 20:00:00,0.000000,21.800000,40.000000,5.000000,27.000000,90.420000,121.580000,832.870000,5.850000,178.150000,26.690000 +1,2023-08-03 21:00:00,0.000000,21.800000,40.000000,5.000000,27.000000,90.420000,121.790000,833.320000,5.850000,178.400000,26.700000 +1,2023-08-03 22:00:00,0.000000,21.800000,40.000000,5.000000,27.000000,90.420000,121.790000,833.320000,5.850000,178.400000,26.700000 +1,2023-08-03 23:00:00,0.000000,15.700000,67.000000,7.000000,274.000000,89.780000,121.790000,833.320000,5.910000,178.400000,26.870000 +1,2023-08-04 00:00:00,0.000000,15.700000,67.000000,7.000000,274.000000,89.220000,121.790000,833.320000,5.450000,178.400000,25.420000 +1,2023-08-04 01:00:00,0.000000,15.700000,67.000000,7.000000,274.000000,88.740000,121.790000,833.320000,5.080000,178.400000,24.210000 +1,2023-08-04 02:00:00,0.000000,13.100000,90.000000,7.000000,263.000000,87.480000,121.790000,833.320000,4.250000,178.400000,21.320000 +1,2023-08-04 03:00:00,0.000000,13.100000,90.000000,7.000000,263.000000,86.400000,121.790000,833.320000,3.640000,178.400000,19.070000 +1,2023-08-04 04:00:00,0.000000,13.100000,90.000000,7.000000,263.000000,85.460000,121.790000,833.320000,3.190000,178.400000,17.300000 +1,2023-08-04 05:00:00,0.000000,12.200000,97.000000,7.000000,250.000000,84.150000,121.790000,833.330000,2.670000,178.400000,15.110000 +1,2023-08-04 06:00:00,0.000000,12.200000,97.000000,7.000000,250.000000,83.010000,121.800000,833.340000,2.300000,178.410000,13.460000 +1,2023-08-04 07:00:00,0.000000,12.200000,97.000000,7.000000,250.000000,82.020000,121.800000,833.360000,2.030000,178.410000,12.210000 +1,2023-08-04 08:00:00,0.000000,18.500000,71.000000,6.000000,267.000000,82.140000,121.880000,833.550000,1.960000,178.510000,11.870000 +1,2023-08-04 09:00:00,0.000000,18.500000,71.000000,6.000000,267.000000,82.250000,121.950000,833.750000,1.990000,178.600000,12.000000 +1,2023-08-04 10:00:00,0.000000,18.500000,71.000000,6.000000,267.000000,82.350000,122.030000,833.940000,2.010000,178.690000,12.120000 +1,2023-08-04 11:00:00,0.000000,24.500000,47.000000,9.000000,299.000000,83.290000,122.220000,834.460000,2.630000,178.920000,14.970000 +1,2023-08-04 12:00:00,0.000000,24.500000,47.000000,9.000000,299.000000,84.080000,122.420000,834.970000,2.930000,179.160000,16.220000 +1,2023-08-04 13:00:00,0.000000,24.500000,47.000000,9.000000,299.000000,84.770000,122.610000,835.490000,3.210000,179.400000,17.390000 +1,2023-08-04 14:00:00,0.140000,26.400000,36.000000,11.000000,297.000000,84.900000,122.870000,836.190000,3.610000,179.720000,18.990000 +1,2023-08-04 15:00:00,0.000000,26.400000,36.000000,11.000000,297.000000,85.980000,123.140000,836.880000,4.200000,180.040000,21.170000 +1,2023-08-04 16:00:00,0.000000,26.400000,36.000000,11.000000,297.000000,86.870000,123.400000,837.580000,4.760000,180.370000,23.160000 +1,2023-08-04 17:00:00,0.120000,26.000000,36.000000,10.000000,305.000000,86.710000,123.660000,838.260000,4.430000,180.680000,22.020000 +1,2023-08-04 18:00:00,0.000000,26.000000,36.000000,10.000000,305.000000,87.440000,123.910000,838.940000,4.910000,180.990000,23.700000 +1,2023-08-04 19:00:00,0.000000,26.000000,36.000000,10.000000,305.000000,88.050000,124.170000,839.620000,5.360000,181.310000,25.190000 +1,2023-08-04 20:00:00,0.500000,24.200000,42.000000,6.000000,302.000000,84.590000,124.380000,840.180000,2.690000,181.560000,15.280000 +1,2023-08-04 21:00:00,0.000000,24.200000,42.000000,6.000000,302.000000,85.290000,124.590000,840.730000,2.970000,181.820000,16.440000 +1,2023-08-04 22:00:00,0.000000,24.200000,42.000000,6.000000,302.000000,85.900000,124.590000,840.730000,3.230000,181.820000,17.500000 +1,2023-08-04 23:00:00,0.000000,18.000000,68.000000,7.000000,256.000000,85.840000,124.590000,840.730000,3.370000,181.820000,18.060000 +1,2023-08-05 00:00:00,0.000000,18.000000,68.000000,7.000000,256.000000,85.790000,124.590000,840.730000,3.340000,181.820000,17.970000 +1,2023-08-05 01:00:00,0.000000,18.000000,68.000000,7.000000,256.000000,85.750000,124.590000,840.730000,3.320000,181.820000,17.890000 +1,2023-08-05 02:00:00,0.000000,16.300000,87.000000,9.000000,262.000000,85.010000,124.590000,840.730000,3.320000,181.820000,17.870000 +1,2023-08-05 03:00:00,0.000000,16.300000,87.000000,9.000000,262.000000,84.380000,124.590000,840.730000,3.050000,181.820000,16.770000 +1,2023-08-05 04:00:00,0.000000,16.300000,87.000000,9.000000,262.000000,83.850000,124.590000,840.730000,2.830000,181.820000,15.890000 +1,2023-08-05 05:00:00,0.000000,15.900000,96.000000,9.000000,259.000000,82.740000,124.600000,840.760000,2.450000,181.830000,14.230000 +1,2023-08-05 06:00:00,0.000000,15.900000,96.000000,9.000000,259.000000,81.790000,124.610000,840.790000,2.190000,181.850000,13.000000 +1,2023-08-05 07:00:00,0.000000,15.900000,96.000000,9.000000,259.000000,80.990000,124.620000,840.820000,1.990000,181.860000,12.070000 +1,2023-08-05 08:00:00,0.000000,20.400000,75.000000,10.000000,271.000000,81.180000,124.720000,841.080000,2.140000,181.980000,12.780000 +1,2023-08-05 09:00:00,0.000000,20.400000,75.000000,10.000000,271.000000,81.340000,124.810000,841.340000,2.180000,182.090000,12.980000 +1,2023-08-05 10:00:00,0.000000,20.400000,75.000000,10.000000,271.000000,81.490000,124.910000,841.590000,2.220000,182.210000,13.160000 +1,2023-08-05 11:00:00,0.000000,25.400000,49.000000,9.000000,303.000000,82.540000,125.170000,842.300000,2.390000,182.530000,13.970000 +1,2023-08-05 12:00:00,0.000000,25.400000,49.000000,9.000000,303.000000,83.420000,125.430000,843.010000,2.680000,182.850000,15.250000 +1,2023-08-05 13:00:00,0.000000,25.400000,49.000000,9.000000,303.000000,84.180000,125.690000,843.720000,2.970000,183.170000,16.460000 +1,2023-08-05 14:00:00,1.610000,24.600000,67.000000,5.000000,321.000000,58.860000,101.130000,830.140000,0.490000,155.040000,2.950000 +1,2023-08-05 15:00:00,0.000000,24.600000,67.000000,5.000000,321.000000,61.290000,101.290000,830.580000,0.570000,155.250000,3.540000 +1,2023-08-05 16:00:00,0.000000,24.600000,67.000000,5.000000,321.000000,63.530000,101.450000,831.020000,0.640000,155.460000,4.030000 +1,2023-08-05 17:00:00,0.000000,27.200000,41.000000,6.000000,294.000000,67.250000,101.790000,831.930000,0.770000,155.890000,4.960000 +1,2023-08-05 18:00:00,0.000000,27.200000,41.000000,6.000000,294.000000,70.530000,102.130000,832.840000,0.860000,156.330000,5.520000 +1,2023-08-05 19:00:00,0.000000,27.200000,41.000000,6.000000,294.000000,73.400000,102.460000,833.750000,0.960000,156.760000,6.130000 +1,2023-08-05 20:00:00,1.810000,22.500000,77.000000,2.000000,272.000000,49.290000,84.790000,818.270000,0.170000,134.690000,0.550000 +1,2023-08-05 21:00:00,0.000000,22.500000,77.000000,2.000000,272.000000,51.100000,84.890000,818.540000,0.210000,134.830000,0.690000 +1,2023-08-05 22:00:00,0.000000,22.500000,77.000000,2.000000,272.000000,52.840000,84.890000,818.540000,0.250000,134.830000,0.840000 +1,2023-08-05 23:00:00,1.470000,18.200000,89.000000,5.000000,247.000000,38.960000,74.350000,805.740000,0.040000,120.830000,0.110000 +1,2023-08-06 00:00:00,0.000000,18.200000,89.000000,5.000000,247.000000,40.200000,74.350000,805.740000,0.050000,120.830000,0.150000 +1,2023-08-06 01:00:00,0.000000,18.200000,89.000000,5.000000,247.000000,41.400000,74.350000,805.740000,0.060000,120.830000,0.180000 +1,2023-08-06 02:00:00,0.180000,16.800000,96.000000,6.000000,246.000000,40.300000,73.010000,804.290000,0.050000,119.010000,0.150000 +1,2023-08-06 03:00:00,0.000000,16.800000,96.000000,6.000000,246.000000,40.770000,73.010000,804.290000,0.050000,119.010000,0.170000 +1,2023-08-06 04:00:00,0.000000,16.800000,96.000000,6.000000,246.000000,41.240000,73.010000,804.290000,0.060000,119.010000,0.180000 +1,2023-08-06 05:00:00,0.000000,15.600000,99.000000,3.000000,239.000000,41.330000,73.010000,804.300000,0.050000,119.010000,0.160000 +1,2023-08-06 06:00:00,0.000000,15.600000,99.000000,3.000000,239.000000,41.420000,73.010000,804.310000,0.050000,119.020000,0.160000 +1,2023-08-06 07:00:00,0.000000,15.600000,99.000000,3.000000,239.000000,41.510000,73.020000,804.320000,0.050000,119.020000,0.170000 +1,2023-08-06 08:00:00,0.000000,18.900000,84.000000,3.000000,88.000000,42.980000,73.070000,804.520000,0.070000,119.090000,0.210000 +1,2023-08-06 09:00:00,0.000000,18.900000,84.000000,3.000000,88.000000,44.420000,73.120000,804.720000,0.090000,119.170000,0.270000 +1,2023-08-06 10:00:00,0.000000,18.900000,84.000000,3.000000,88.000000,45.810000,73.170000,804.920000,0.110000,119.240000,0.340000 +1,2023-08-06 11:00:00,0.000000,23.100000,63.000000,7.000000,102.000000,49.370000,73.320000,805.510000,0.220000,119.460000,0.670000 +1,2023-08-06 12:00:00,0.000000,23.100000,63.000000,7.000000,102.000000,52.710000,73.470000,806.100000,0.320000,119.680000,0.990000 +1,2023-08-06 13:00:00,0.000000,23.100000,63.000000,7.000000,102.000000,55.830000,73.630000,806.690000,0.430000,119.890000,2.040000 +1,2023-08-06 14:00:00,1.160000,24.200000,58.000000,6.000000,111.000000,46.760000,66.290000,798.070000,0.140000,109.780000,0.430000 +1,2023-08-06 15:00:00,0.000000,24.200000,58.000000,6.000000,111.000000,50.600000,66.480000,798.780000,0.240000,110.050000,0.710000 +1,2023-08-06 16:00:00,0.000000,24.200000,58.000000,6.000000,111.000000,54.190000,66.660000,799.500000,0.350000,110.320000,1.220000 +1,2023-08-06 17:00:00,2.150000,24.000000,61.000000,5.000000,95.000000,37.310000,55.530000,782.850000,0.030000,94.330000,0.070000 +1,2023-08-06 18:00:00,0.000000,24.000000,61.000000,5.000000,95.000000,41.300000,55.700000,783.510000,0.060000,94.590000,0.150000 +1,2023-08-06 19:00:00,0.000000,24.000000,61.000000,5.000000,95.000000,45.110000,55.870000,784.170000,0.110000,94.850000,0.290000 +1,2023-08-06 20:00:00,1.100000,20.500000,76.000000,6.000000,49.000000,37.970000,51.060000,775.640000,0.030000,87.690000,0.080000 +1,2023-08-06 21:00:00,0.000000,20.500000,76.000000,6.000000,49.000000,40.600000,51.140000,775.970000,0.050000,87.820000,0.130000 +1,2023-08-06 22:00:00,0.000000,20.500000,76.000000,6.000000,49.000000,43.130000,51.140000,775.970000,0.080000,87.820000,0.210000 +1,2023-08-06 23:00:00,0.360000,16.700000,80.000000,4.000000,19.000000,41.620000,49.610000,773.070000,0.060000,85.500000,0.140000 +1,2023-08-07 00:00:00,0.000000,16.700000,80.000000,4.000000,19.000000,43.340000,49.610000,773.070000,0.080000,85.500000,0.190000 +1,2023-08-07 01:00:00,0.000000,16.700000,80.000000,4.000000,19.000000,45.010000,49.610000,773.070000,0.100000,85.500000,0.250000 +1,2023-08-07 02:00:00,1.180000,15.400000,95.000000,2.000000,48.000000,36.140000,45.850000,773.070000,0.020000,79.860000,0.040000 +1,2023-08-07 03:00:00,0.000000,15.400000,95.000000,2.000000,48.000000,36.580000,45.850000,773.070000,0.020000,79.860000,0.050000 +1,2023-08-07 04:00:00,0.000000,15.400000,95.000000,2.000000,48.000000,37.020000,45.850000,773.070000,0.020000,79.860000,0.050000 +1,2023-08-07 05:00:00,0.660000,15.400000,94.000000,5.000000,89.000000,33.380000,43.870000,773.130000,0.010000,76.840000,0.020000 +1,2023-08-07 06:00:00,0.000000,15.400000,94.000000,5.000000,89.000000,34.080000,43.880000,773.190000,0.010000,76.860000,0.030000 +1,2023-08-07 07:00:00,0.000000,15.400000,94.000000,5.000000,89.000000,34.770000,43.890000,773.250000,0.010000,76.880000,0.030000 +1,2023-08-07 08:00:00,0.390000,17.500000,82.000000,6.000000,102.000000,34.370000,42.770000,773.450000,0.010000,75.160000,0.030000 +1,2023-08-07 09:00:00,0.000000,17.500000,82.000000,6.000000,102.000000,36.360000,42.810000,773.650000,0.020000,75.220000,0.050000 +1,2023-08-07 10:00:00,0.000000,17.500000,82.000000,6.000000,102.000000,38.300000,42.850000,773.860000,0.030000,75.280000,0.080000 +1,2023-08-07 11:00:00,0.140000,19.100000,72.000000,8.000000,101.000000,40.290000,42.470000,774.210000,0.050000,74.700000,0.120000 +1,2023-08-07 12:00:00,0.000000,19.100000,72.000000,8.000000,101.000000,43.160000,42.540000,774.550000,0.090000,74.800000,0.210000 +1,2023-08-07 13:00:00,0.000000,19.100000,72.000000,8.000000,101.000000,45.910000,42.600000,774.900000,0.140000,74.900000,0.320000 +1,2023-08-07 14:00:00,0.000000,20.100000,63.000000,10.000000,89.000000,49.340000,42.690000,775.390000,0.250000,75.050000,0.560000 +1,2023-08-07 15:00:00,0.000000,20.100000,63.000000,10.000000,89.000000,52.560000,42.780000,775.880000,0.360000,75.190000,0.820000 +1,2023-08-07 16:00:00,0.000000,20.100000,63.000000,10.000000,89.000000,55.570000,42.870000,776.370000,0.490000,75.330000,1.410000 +1,2023-08-07 17:00:00,0.000000,21.100000,54.000000,9.000000,98.000000,58.850000,42.980000,777.020000,0.600000,75.520000,2.080000 +1,2023-08-07 18:00:00,0.000000,21.100000,54.000000,9.000000,98.000000,61.860000,43.100000,777.670000,0.720000,75.710000,2.710000 +1,2023-08-07 19:00:00,0.000000,21.100000,54.000000,9.000000,98.000000,64.600000,43.220000,778.320000,0.820000,75.900000,3.200000 +1,2023-08-07 20:00:00,0.000000,19.800000,54.000000,5.000000,132.000000,66.720000,43.330000,778.920000,0.720000,76.070000,2.750000 +1,2023-08-07 21:00:00,0.000000,19.800000,54.000000,5.000000,132.000000,68.660000,43.430000,779.510000,0.770000,76.250000,3.000000 +1,2023-08-07 22:00:00,0.000000,19.800000,54.000000,5.000000,132.000000,70.440000,43.430000,779.510000,0.820000,76.250000,3.210000 +1,2023-08-07 23:00:00,0.000000,16.700000,62.000000,8.000000,152.000000,71.740000,43.430000,779.510000,0.990000,76.250000,4.030000 +1,2023-08-08 00:00:00,0.000000,16.700000,62.000000,8.000000,152.000000,72.930000,43.430000,779.510000,1.040000,76.250000,4.230000 +1,2023-08-08 01:00:00,0.000000,16.700000,62.000000,8.000000,152.000000,74.020000,43.430000,779.510000,1.090000,76.250000,4.450000 +1,2023-08-08 02:00:00,0.000000,15.700000,56.000000,8.000000,115.000000,75.130000,43.430000,779.510000,1.150000,76.250000,4.730000 +1,2023-08-08 03:00:00,0.000000,15.700000,56.000000,8.000000,115.000000,76.140000,43.430000,779.510000,1.230000,76.250000,5.040000 +1,2023-08-08 04:00:00,0.000000,15.700000,56.000000,8.000000,115.000000,77.060000,43.430000,779.510000,1.310000,76.250000,5.370000 +1,2023-08-08 05:00:00,0.000000,14.800000,50.000000,7.000000,82.000000,77.980000,43.540000,779.800000,1.340000,76.410000,5.500000 +1,2023-08-08 06:00:00,0.000000,14.800000,50.000000,7.000000,82.000000,78.820000,43.640000,780.090000,1.440000,76.570000,5.920000 +1,2023-08-08 07:00:00,0.000000,14.800000,50.000000,7.000000,82.000000,79.570000,43.740000,780.380000,1.550000,76.730000,6.350000 +1,2023-08-08 08:00:00,0.000000,15.800000,47.000000,10.000000,62.000000,80.420000,43.860000,780.710000,1.970000,76.910000,7.920000 +1,2023-08-08 09:00:00,0.000000,15.800000,47.000000,10.000000,62.000000,81.180000,43.970000,781.040000,2.140000,77.090000,8.540000 +1,2023-08-08 10:00:00,0.000000,15.800000,47.000000,10.000000,62.000000,81.860000,44.090000,781.370000,2.320000,77.280000,9.160000 +1,2023-08-08 11:00:00,0.000000,17.900000,44.000000,12.000000,70.000000,82.660000,44.230000,781.760000,2.830000,77.500000,10.840000 +1,2023-08-08 12:00:00,0.000000,17.900000,44.000000,12.000000,70.000000,83.360000,44.370000,782.160000,3.090000,77.710000,11.680000 +1,2023-08-08 13:00:00,0.000000,17.900000,44.000000,12.000000,70.000000,83.970000,44.510000,782.550000,3.350000,77.930000,12.470000 +1,2023-08-08 14:00:00,0.000000,20.300000,45.000000,15.000000,97.000000,84.600000,44.670000,783.000000,4.240000,78.180000,15.030000 +1,2023-08-08 15:00:00,0.000000,20.300000,45.000000,15.000000,97.000000,85.140000,44.830000,783.460000,4.570000,78.430000,15.930000 +1,2023-08-08 16:00:00,0.000000,20.300000,45.000000,15.000000,97.000000,85.610000,44.980000,783.910000,4.870000,78.680000,16.750000 +1,2023-08-08 17:00:00,0.000000,19.400000,48.000000,16.000000,109.000000,85.890000,45.130000,784.310000,5.340000,78.900000,17.940000 +1,2023-08-08 18:00:00,0.000000,19.400000,48.000000,16.000000,109.000000,86.140000,45.270000,784.710000,5.520000,79.130000,18.430000 +1,2023-08-08 19:00:00,0.000000,19.400000,48.000000,16.000000,109.000000,86.350000,45.410000,785.120000,5.690000,79.350000,18.870000 +1,2023-08-08 20:00:00,0.000000,17.200000,54.000000,13.000000,110.000000,86.350000,45.520000,785.430000,4.890000,79.520000,16.890000 +1,2023-08-08 21:00:00,0.000000,17.200000,54.000000,13.000000,110.000000,86.350000,45.630000,785.740000,4.890000,79.690000,16.910000 +1,2023-08-08 22:00:00,0.000000,17.200000,54.000000,13.000000,110.000000,86.350000,45.630000,785.740000,4.890000,79.690000,16.910000 +1,2023-08-08 23:00:00,0.000000,14.900000,63.000000,10.000000,97.000000,86.290000,45.630000,785.740000,4.170000,79.690000,14.980000 +1,2023-08-09 00:00:00,0.000000,14.900000,63.000000,10.000000,97.000000,86.230000,45.630000,785.740000,4.140000,79.690000,14.900000 +1,2023-08-09 01:00:00,0.000000,14.900000,63.000000,10.000000,97.000000,86.190000,45.630000,785.740000,4.110000,79.690000,14.820000 +1,2023-08-09 02:00:00,0.000000,13.800000,68.000000,9.000000,90.000000,86.020000,45.630000,785.740000,3.820000,79.690000,14.000000 +1,2023-08-09 03:00:00,0.000000,13.800000,68.000000,9.000000,90.000000,85.870000,45.630000,785.740000,3.740000,79.690000,13.780000 +1,2023-08-09 04:00:00,0.000000,13.800000,68.000000,9.000000,90.000000,85.740000,45.630000,785.740000,3.670000,79.690000,13.590000 +1,2023-08-09 05:00:00,0.020000,13.500000,71.000000,8.000000,80.000000,85.560000,45.690000,785.940000,3.400000,79.780000,12.810000 +1,2023-08-09 06:00:00,0.000000,13.500000,71.000000,8.000000,80.000000,85.400000,45.740000,786.140000,3.330000,79.870000,12.590000 +1,2023-08-09 07:00:00,0.000000,13.500000,71.000000,8.000000,80.000000,85.260000,45.800000,786.340000,3.260000,79.950000,12.400000 +1,2023-08-09 08:00:00,0.000000,15.800000,63.000000,11.000000,91.000000,85.260000,45.880000,786.640000,3.800000,80.080000,13.970000 +1,2023-08-09 09:00:00,0.000000,15.800000,63.000000,11.000000,91.000000,85.260000,45.960000,786.940000,3.800000,80.210000,13.990000 +1,2023-08-09 10:00:00,0.000000,15.800000,63.000000,11.000000,91.000000,85.260000,46.040000,787.240000,3.800000,80.340000,14.000000 +1,2023-08-09 11:00:00,0.000000,18.300000,57.000000,11.000000,101.000000,85.330000,46.150000,787.650000,3.840000,80.510000,14.130000 +1,2023-08-09 12:00:00,0.000000,18.300000,57.000000,11.000000,101.000000,85.400000,46.260000,788.050000,3.870000,80.690000,14.240000 +1,2023-08-09 13:00:00,0.000000,18.300000,57.000000,11.000000,101.000000,85.450000,46.380000,788.460000,3.900000,80.860000,14.350000 +1,2023-08-09 14:00:00,0.000000,18.900000,56.000000,10.000000,108.000000,85.540000,46.490000,788.890000,3.750000,81.050000,13.940000 +1,2023-08-09 15:00:00,0.000000,18.900000,56.000000,10.000000,108.000000,85.610000,46.610000,789.320000,3.790000,81.230000,14.070000 +1,2023-08-09 16:00:00,0.000000,18.900000,56.000000,10.000000,108.000000,85.670000,46.730000,789.750000,3.830000,81.420000,14.190000 +1,2023-08-09 17:00:00,0.000000,19.700000,53.000000,8.000000,109.000000,85.810000,46.860000,790.240000,3.520000,81.620000,13.330000 +1,2023-08-09 18:00:00,0.000000,19.700000,53.000000,8.000000,109.000000,85.930000,46.990000,790.720000,3.580000,81.830000,13.530000 +1,2023-08-09 19:00:00,0.000000,19.700000,53.000000,8.000000,109.000000,86.030000,47.130000,791.210000,3.640000,82.040000,13.700000 +1,2023-08-09 20:00:00,0.000000,18.600000,57.000000,7.000000,111.000000,86.030000,47.240000,791.620000,3.460000,82.220000,13.190000 +1,2023-08-09 21:00:00,0.000000,18.600000,57.000000,7.000000,111.000000,86.030000,47.350000,792.040000,3.460000,82.390000,13.210000 +1,2023-08-09 22:00:00,0.000000,18.600000,57.000000,7.000000,111.000000,86.030000,47.350000,792.040000,3.460000,82.390000,13.210000 +1,2023-08-09 23:00:00,0.000000,14.600000,73.000000,4.000000,100.000000,85.800000,47.350000,792.040000,2.880000,82.390000,11.400000 +1,2023-08-10 00:00:00,0.000000,14.600000,73.000000,4.000000,100.000000,85.600000,47.350000,792.040000,2.800000,82.390000,11.140000 +1,2023-08-10 01:00:00,0.000000,14.600000,73.000000,4.000000,100.000000,85.420000,47.350000,792.040000,2.730000,82.390000,10.920000 +1,2023-08-10 02:00:00,0.000000,12.400000,85.000000,2.000000,120.000000,84.930000,47.350000,792.040000,2.300000,82.390000,9.490000 +1,2023-08-10 03:00:00,0.000000,12.400000,85.000000,2.000000,120.000000,84.490000,47.350000,792.040000,2.170000,82.390000,9.020000 +1,2023-08-10 04:00:00,0.000000,12.400000,85.000000,2.000000,120.000000,84.100000,47.350000,792.040000,2.060000,82.390000,8.620000 +1,2023-08-10 05:00:00,0.000000,11.100000,92.000000,1.000000,158.000000,83.490000,47.370000,792.080000,1.810000,82.410000,7.680000 +1,2023-08-10 06:00:00,0.000000,11.100000,92.000000,1.000000,158.000000,82.940000,47.380000,792.120000,1.680000,82.430000,7.200000 +1,2023-08-10 07:00:00,0.000000,11.100000,92.000000,1.000000,158.000000,82.440000,47.390000,792.170000,1.580000,82.460000,6.810000 +1,2023-08-10 08:00:00,0.000000,15.400000,72.000000,3.000000,133.000000,82.470000,47.460000,792.370000,1.750000,82.550000,7.480000 +1,2023-08-10 09:00:00,0.000000,15.400000,72.000000,3.000000,133.000000,82.480000,47.520000,792.570000,1.760000,82.650000,7.510000 +1,2023-08-10 10:00:00,0.000000,15.400000,72.000000,3.000000,133.000000,82.500000,47.580000,792.770000,1.760000,82.750000,7.530000 +1,2023-08-10 11:00:00,0.000000,20.800000,53.000000,7.000000,114.000000,83.040000,47.730000,793.250000,2.310000,82.980000,9.540000 +1,2023-08-10 12:00:00,0.000000,20.800000,53.000000,7.000000,114.000000,83.510000,47.880000,793.720000,2.450000,83.220000,10.060000 +1,2023-08-10 13:00:00,0.000000,20.800000,53.000000,7.000000,114.000000,83.930000,48.030000,794.200000,2.590000,83.450000,10.550000 +1,2023-08-10 14:00:00,0.000000,23.300000,45.000000,6.000000,106.000000,84.590000,48.240000,794.840000,2.690000,83.760000,10.910000 +1,2023-08-10 15:00:00,0.000000,23.300000,45.000000,6.000000,106.000000,85.160000,48.440000,795.490000,2.910000,84.080000,11.660000 +1,2023-08-10 16:00:00,0.000000,23.300000,45.000000,6.000000,106.000000,85.660000,48.640000,796.140000,3.120000,84.400000,12.350000 +1,2023-08-10 17:00:00,0.000000,23.400000,44.000000,5.000000,101.000000,86.110000,48.850000,796.800000,3.160000,84.720000,12.500000 +1,2023-08-10 18:00:00,0.000000,23.400000,44.000000,5.000000,101.000000,86.500000,49.060000,797.460000,3.340000,85.040000,13.090000 +1,2023-08-10 19:00:00,0.000000,23.400000,44.000000,5.000000,101.000000,86.830000,49.270000,798.120000,3.500000,85.370000,13.610000 +1,2023-08-10 20:00:00,0.000000,23.400000,44.000000,5.000000,101.000000,87.120000,49.480000,798.790000,3.650000,85.690000,14.090000 +1,2023-08-10 21:00:00,0.000000,23.400000,44.000000,5.000000,101.000000,87.380000,49.480000,798.790000,3.780000,85.690000,14.490000 +1,2023-08-10 22:00:00,0.000000,23.400000,44.000000,5.000000,101.000000,87.590000,49.480000,798.790000,3.900000,85.690000,14.840000 +1,2023-08-10 23:00:00,0.000000,19.400000,55.000000,4.000000,98.000000,87.590000,49.480000,798.790000,3.710000,85.690000,14.280000 +1,2023-08-11 00:00:00,0.000000,19.400000,55.000000,4.000000,98.000000,87.590000,49.480000,798.790000,3.710000,85.690000,14.280000 +1,2023-08-11 01:00:00,0.000000,19.400000,55.000000,4.000000,98.000000,87.590000,49.480000,798.790000,3.710000,85.690000,14.280000 +1,2023-08-11 02:00:00,0.000000,19.400000,55.000000,4.000000,98.000000,87.590000,49.480000,798.790000,3.710000,85.690000,14.280000 +1,2023-08-11 03:00:00,0.000000,19.400000,55.000000,4.000000,98.000000,87.590000,49.480000,798.790000,3.710000,85.690000,14.280000 +1,2023-08-11 04:00:00,0.000000,19.400000,55.000000,4.000000,98.000000,87.590000,49.480000,798.790000,3.710000,85.690000,14.280000 +1,2023-08-11 05:00:00,0.000000,18.000000,62.000000,5.000000,122.000000,87.460000,49.590000,799.110000,3.830000,85.860000,14.650000 +1,2023-08-11 06:00:00,0.000000,18.000000,62.000000,5.000000,122.000000,87.350000,49.700000,799.430000,3.770000,86.020000,14.480000 +1,2023-08-11 07:00:00,0.000000,18.000000,62.000000,5.000000,122.000000,87.250000,49.810000,799.750000,3.720000,86.190000,14.340000 +1,2023-08-11 08:00:00,0.000000,18.000000,62.000000,5.000000,122.000000,87.160000,49.920000,800.070000,3.670000,86.360000,14.210000 +1,2023-08-11 09:00:00,0.000000,18.000000,62.000000,5.000000,122.000000,87.080000,50.030000,800.390000,3.630000,86.530000,14.110000 +1,2023-08-11 10:00:00,0.000000,18.000000,62.000000,5.000000,122.000000,87.020000,50.130000,800.710000,3.590000,86.700000,14.020000 +1,2023-08-11 11:00:00,0.070000,21.600000,50.000000,10.000000,110.000000,85.730000,49.970000,800.670000,3.850000,86.450000,14.770000 +1,2023-08-11 12:00:00,0.000000,21.600000,50.000000,10.000000,110.000000,85.990000,50.150000,801.200000,4.000000,86.730000,15.220000 +1,2023-08-11 13:00:00,0.000000,21.600000,50.000000,10.000000,110.000000,86.210000,50.330000,801.730000,4.130000,87.010000,15.620000 +1,2023-08-11 14:00:00,0.000000,21.600000,50.000000,10.000000,110.000000,86.410000,50.510000,802.260000,4.240000,87.280000,15.970000 +1,2023-08-11 15:00:00,0.000000,21.600000,50.000000,10.000000,110.000000,86.570000,50.690000,802.790000,4.340000,87.560000,16.290000 +1,2023-08-11 16:00:00,0.000000,21.600000,50.000000,10.000000,110.000000,86.720000,50.870000,803.320000,4.430000,87.840000,16.570000 +1,2023-08-11 17:00:00,0.050000,22.100000,59.000000,6.000000,190.000000,85.650000,50.760000,803.360000,3.120000,87.670000,12.620000 +1,2023-08-11 18:00:00,0.000000,22.100000,59.000000,6.000000,190.000000,85.710000,50.910000,803.810000,3.140000,87.900000,12.720000 +1,2023-08-11 19:00:00,0.000000,22.100000,59.000000,6.000000,190.000000,85.760000,51.060000,804.250000,3.170000,88.130000,12.810000 +1,2023-08-11 20:00:00,0.000000,22.100000,59.000000,6.000000,190.000000,85.810000,51.210000,804.700000,3.190000,88.370000,12.900000 +1,2023-08-11 21:00:00,0.000000,22.100000,59.000000,6.000000,190.000000,85.850000,51.210000,804.700000,3.200000,88.370000,12.960000 +1,2023-08-11 22:00:00,0.000000,22.100000,59.000000,6.000000,190.000000,85.880000,51.210000,804.700000,3.220000,88.370000,13.010000 +1,2023-08-11 23:00:00,5.220000,16.500000,99.000000,9.000000,260.000000,30.290000,33.320000,762.260000,0.010000,60.070000,0.010000 +1,2023-08-12 00:00:00,0.000000,16.500000,99.000000,9.000000,260.000000,30.450000,33.320000,762.260000,0.010000,60.070000,0.010000 +1,2023-08-12 01:00:00,0.000000,16.500000,99.000000,9.000000,260.000000,30.610000,33.320000,762.260000,0.010000,60.070000,0.010000 +1,2023-08-12 02:00:00,0.000000,16.500000,99.000000,9.000000,260.000000,30.770000,33.320000,762.260000,0.010000,60.070000,0.010000 +1,2023-08-12 03:00:00,0.000000,16.500000,99.000000,9.000000,260.000000,30.940000,33.320000,762.260000,0.010000,60.070000,0.010000 +1,2023-08-12 04:00:00,0.000000,16.500000,99.000000,9.000000,260.000000,31.100000,33.320000,762.260000,0.010000,60.070000,0.010000 +1,2023-08-12 05:00:00,8.720000,15.200000,98.000000,8.000000,263.000000,6.970000,18.260000,689.110000,0.000000,34.250000,0.000000 +1,2023-08-12 06:00:00,0.000000,15.200000,98.000000,8.000000,263.000000,7.310000,18.260000,689.190000,0.000000,34.260000,0.000000 +1,2023-08-12 07:00:00,0.000000,15.200000,98.000000,8.000000,263.000000,7.640000,18.270000,689.270000,0.000000,34.270000,0.000000 +1,2023-08-12 08:00:00,0.000000,15.200000,98.000000,8.000000,263.000000,7.980000,18.270000,689.350000,0.000000,34.270000,0.000000 +1,2023-08-12 09:00:00,0.000000,15.200000,98.000000,8.000000,263.000000,8.310000,18.280000,689.430000,0.000000,34.280000,0.000000 +1,2023-08-12 10:00:00,0.000000,15.200000,98.000000,8.000000,263.000000,8.650000,18.280000,689.510000,0.000000,34.290000,0.000000 +1,2023-08-12 11:00:00,1.460000,14.700000,91.000000,8.000000,259.000000,7.530000,16.200000,677.600000,0.000000,30.580000,0.000000 +1,2023-08-12 12:00:00,0.000000,14.700000,91.000000,8.000000,259.000000,8.830000,16.220000,677.950000,0.000000,30.610000,0.000000 +1,2023-08-12 13:00:00,0.000000,14.700000,91.000000,8.000000,259.000000,10.130000,16.240000,678.300000,0.000000,30.650000,0.000000 +1,2023-08-12 14:00:00,0.000000,14.700000,91.000000,8.000000,259.000000,11.420000,16.260000,678.640000,0.000000,30.680000,0.000000 +1,2023-08-12 15:00:00,0.000000,14.700000,91.000000,8.000000,259.000000,12.720000,16.280000,678.990000,0.000000,30.710000,0.000000 +1,2023-08-12 16:00:00,0.000000,14.700000,91.000000,8.000000,259.000000,14.010000,16.290000,679.340000,0.000000,30.740000,0.000000 +1,2023-08-12 17:00:00,0.550000,16.300000,82.000000,9.000000,251.000000,14.940000,15.560000,675.490000,0.000000,29.420000,0.000000 +1,2023-08-12 18:00:00,0.000000,16.300000,82.000000,9.000000,251.000000,17.350000,15.600000,676.260000,0.000000,29.490000,0.000000 +1,2023-08-12 19:00:00,0.000000,16.300000,82.000000,9.000000,251.000000,19.750000,15.640000,677.030000,0.000000,29.570000,0.000000 +1,2023-08-12 20:00:00,0.000000,16.300000,82.000000,9.000000,251.000000,22.130000,15.680000,677.800000,0.000000,29.640000,0.000000 +1,2023-08-12 21:00:00,0.000000,16.300000,82.000000,9.000000,251.000000,24.480000,15.680000,677.800000,0.000000,29.640000,0.000000 +1,2023-08-12 22:00:00,0.000000,16.300000,82.000000,9.000000,251.000000,26.790000,15.680000,677.800000,0.000000,29.640000,0.000000 +1,2023-08-12 23:00:00,0.000000,13.100000,99.000000,7.000000,269.000000,26.930000,15.680000,677.800000,0.000000,29.640000,0.000000 +1,2023-08-13 00:00:00,0.000000,13.100000,99.000000,7.000000,269.000000,27.060000,15.680000,677.800000,0.000000,29.640000,0.000000 +1,2023-08-13 01:00:00,0.000000,13.100000,99.000000,7.000000,269.000000,27.200000,15.680000,677.800000,0.000000,29.640000,0.000000 +1,2023-08-13 02:00:00,0.000000,13.100000,99.000000,7.000000,269.000000,27.340000,15.680000,677.800000,0.000000,29.640000,0.000000 +1,2023-08-13 03:00:00,0.000000,13.100000,99.000000,7.000000,269.000000,27.470000,15.680000,677.800000,0.000000,29.640000,0.000000 +1,2023-08-13 04:00:00,0.000000,13.100000,99.000000,7.000000,269.000000,27.600000,15.680000,677.800000,0.000000,29.640000,0.000000 +1,2023-08-13 05:00:00,0.280000,13.600000,96.000000,6.000000,329.000000,28.110000,15.690000,677.840000,0.000000,29.660000,0.000000 +1,2023-08-13 06:00:00,0.000000,13.600000,96.000000,6.000000,329.000000,28.610000,15.700000,677.870000,0.000000,29.680000,0.000000 +1,2023-08-13 07:00:00,0.000000,13.600000,96.000000,6.000000,329.000000,29.100000,15.710000,677.910000,0.000000,29.700000,0.000000 +1,2023-08-13 08:00:00,0.000000,13.600000,96.000000,6.000000,329.000000,29.600000,15.720000,677.940000,0.000000,29.720000,0.000000 +1,2023-08-13 09:00:00,0.000000,13.600000,96.000000,6.000000,329.000000,30.090000,15.730000,677.980000,0.000000,29.740000,0.010000 +1,2023-08-13 10:00:00,0.000000,13.600000,96.000000,6.000000,329.000000,30.580000,15.740000,678.010000,0.010000,29.760000,0.010000 +1,2023-08-13 11:00:00,0.000000,17.500000,50.000000,13.000000,317.000000,35.250000,15.920000,678.580000,0.020000,30.080000,0.030000 +1,2023-08-13 12:00:00,0.000000,17.500000,50.000000,13.000000,317.000000,39.740000,16.100000,679.140000,0.060000,30.390000,0.080000 +1,2023-08-13 13:00:00,0.000000,17.500000,50.000000,13.000000,317.000000,44.010000,16.270000,679.710000,0.130000,30.700000,0.160000 +1,2023-08-13 14:00:00,0.000000,17.500000,50.000000,13.000000,317.000000,48.050000,16.450000,680.270000,0.250000,31.020000,0.300000 +1,2023-08-13 15:00:00,0.000000,17.500000,50.000000,13.000000,317.000000,51.830000,16.620000,680.830000,0.390000,31.330000,0.470000 +1,2023-08-13 16:00:00,0.000000,17.500000,50.000000,13.000000,317.000000,55.360000,16.800000,681.400000,0.550000,31.650000,0.680000 +1,2023-08-13 17:00:00,0.000000,18.300000,46.000000,9.000000,336.000000,58.640000,17.000000,682.040000,0.590000,32.000000,0.730000 +1,2023-08-13 18:00:00,0.000000,18.300000,46.000000,9.000000,336.000000,61.660000,17.200000,682.680000,0.710000,32.360000,0.880000 +1,2023-08-13 19:00:00,0.000000,18.300000,46.000000,9.000000,336.000000,64.430000,17.400000,683.320000,0.810000,32.710000,1.110000 +1,2023-08-13 20:00:00,0.000000,18.300000,46.000000,9.000000,336.000000,66.960000,17.600000,683.960000,0.890000,33.070000,1.490000 +1,2023-08-13 21:00:00,0.000000,18.300000,46.000000,9.000000,336.000000,69.260000,17.600000,683.960000,0.960000,33.070000,1.730000 +1,2023-08-13 22:00:00,0.000000,18.300000,46.000000,9.000000,336.000000,71.330000,17.600000,683.960000,1.030000,33.070000,1.940000 +1,2023-08-13 23:00:00,0.000000,11.900000,71.000000,3.000000,244.000000,71.950000,17.600000,683.960000,0.780000,33.070000,0.980000 +1,2023-08-14 00:00:00,0.000000,11.900000,71.000000,3.000000,244.000000,72.530000,17.600000,683.960000,0.790000,33.070000,1.020000 +1,2023-08-14 01:00:00,0.000000,11.900000,71.000000,3.000000,244.000000,73.080000,17.600000,683.960000,0.810000,33.070000,1.150000 +1,2023-08-14 02:00:00,0.000000,11.900000,71.000000,3.000000,244.000000,73.600000,17.600000,683.960000,0.830000,33.070000,1.240000 +1,2023-08-14 03:00:00,0.000000,11.900000,71.000000,3.000000,244.000000,74.100000,17.600000,683.960000,0.850000,33.070000,1.330000 +1,2023-08-14 04:00:00,0.000000,11.900000,71.000000,3.000000,244.000000,74.570000,17.600000,683.960000,0.870000,33.070000,1.410000 +1,2023-08-14 05:00:00,0.000000,8.000000,96.000000,5.000000,229.000000,74.570000,17.600000,683.980000,0.960000,33.080000,1.730000 +1,2023-08-14 06:00:00,0.000000,8.000000,96.000000,5.000000,229.000000,74.570000,17.610000,684.000000,0.960000,33.090000,1.730000 +1,2023-08-14 07:00:00,0.000000,8.000000,96.000000,5.000000,229.000000,74.570000,17.620000,684.020000,0.960000,33.110000,1.730000 +1,2023-08-14 08:00:00,0.000000,8.000000,96.000000,5.000000,229.000000,74.570000,17.630000,684.040000,0.960000,33.120000,1.730000 +1,2023-08-14 09:00:00,0.000000,8.000000,96.000000,5.000000,229.000000,74.570000,17.630000,684.060000,0.960000,33.130000,1.730000 +1,2023-08-14 10:00:00,0.000000,8.000000,96.000000,5.000000,229.000000,74.570000,17.640000,684.080000,0.960000,33.140000,1.740000 +1,2023-08-14 11:00:00,0.000000,18.400000,47.000000,9.000000,152.000000,76.080000,17.830000,684.640000,1.280000,33.480000,2.720000 +1,2023-08-14 12:00:00,0.000000,18.400000,47.000000,9.000000,152.000000,77.430000,18.010000,685.190000,1.410000,33.810000,3.100000 +1,2023-08-14 13:00:00,0.000000,18.400000,47.000000,9.000000,152.000000,78.630000,18.200000,685.740000,1.560000,34.140000,3.530000 +1,2023-08-14 14:00:00,0.000000,18.400000,47.000000,9.000000,152.000000,79.700000,18.390000,686.300000,1.730000,34.470000,3.990000 +1,2023-08-14 15:00:00,0.000000,18.400000,47.000000,9.000000,152.000000,80.640000,18.570000,686.850000,1.920000,34.800000,4.470000 +1,2023-08-14 16:00:00,0.000000,18.400000,47.000000,9.000000,152.000000,81.480000,18.760000,687.400000,2.110000,35.130000,4.970000 +1,2023-08-14 17:00:00,0.000000,20.600000,40.000000,9.000000,129.000000,82.540000,19.000000,688.120000,2.390000,35.550000,5.690000 +1,2023-08-14 18:00:00,0.000000,20.600000,40.000000,9.000000,129.000000,83.450000,19.250000,688.840000,2.690000,35.980000,6.420000 +1,2023-08-14 19:00:00,0.000000,20.600000,40.000000,9.000000,129.000000,84.250000,19.490000,689.560000,2.990000,36.410000,7.130000 +1,2023-08-14 20:00:00,0.000000,20.600000,40.000000,9.000000,129.000000,84.940000,19.730000,690.270000,3.280000,36.830000,7.810000 +1,2023-08-14 21:00:00,0.000000,20.600000,40.000000,9.000000,129.000000,85.530000,19.730000,690.270000,3.570000,36.830000,8.400000 +1,2023-08-14 22:00:00,0.000000,20.600000,40.000000,9.000000,129.000000,86.050000,19.730000,690.270000,3.830000,36.830000,8.950000 +1,2023-08-14 23:00:00,0.000000,14.700000,55.000000,8.000000,107.000000,86.050000,19.730000,690.270000,3.650000,36.830000,8.570000 +1,2023-08-15 00:00:00,0.000000,14.700000,55.000000,8.000000,107.000000,86.050000,19.730000,690.270000,3.650000,36.830000,8.570000 +1,2023-08-15 01:00:00,0.000000,14.700000,55.000000,8.000000,107.000000,86.050000,19.730000,690.270000,3.650000,36.830000,8.570000 +1,2023-08-15 02:00:00,0.000000,14.700000,55.000000,8.000000,107.000000,86.050000,19.730000,690.270000,3.650000,36.830000,8.570000 +1,2023-08-15 03:00:00,0.000000,14.700000,55.000000,8.000000,107.000000,86.050000,19.730000,690.270000,3.650000,36.830000,8.570000 +1,2023-08-15 04:00:00,0.000000,14.700000,55.000000,8.000000,107.000000,86.050000,19.730000,690.270000,3.650000,36.830000,8.570000 +1,2023-08-15 05:00:00,0.000000,12.700000,59.000000,5.000000,106.000000,86.050000,19.810000,690.510000,3.130000,36.980000,7.510000 +1,2023-08-15 06:00:00,0.000000,12.700000,59.000000,5.000000,106.000000,86.050000,19.900000,690.740000,3.130000,37.120000,7.530000 +1,2023-08-15 07:00:00,0.000000,12.700000,59.000000,5.000000,106.000000,86.050000,19.980000,690.970000,3.130000,37.270000,7.550000 +1,2023-08-15 08:00:00,0.000000,12.700000,59.000000,5.000000,106.000000,86.050000,20.060000,691.200000,3.130000,37.410000,7.570000 +1,2023-08-15 09:00:00,0.000000,12.700000,59.000000,5.000000,106.000000,86.050000,20.150000,691.430000,3.130000,37.550000,7.580000 +1,2023-08-15 10:00:00,0.000000,12.700000,59.000000,5.000000,106.000000,86.050000,20.230000,691.660000,3.130000,37.700000,7.600000 +1,2023-08-15 11:00:00,0.000000,18.500000,44.000000,6.000000,49.000000,86.300000,20.390000,692.120000,3.410000,37.990000,8.240000 +1,2023-08-15 12:00:00,0.000000,18.500000,44.000000,6.000000,49.000000,86.520000,20.560000,692.580000,3.520000,38.270000,8.510000 +1,2023-08-15 13:00:00,0.000000,18.500000,44.000000,6.000000,49.000000,86.720000,20.720000,693.030000,3.620000,38.560000,8.750000 +1,2023-08-15 14:00:00,0.000000,18.500000,44.000000,6.000000,49.000000,86.890000,20.880000,693.490000,3.710000,38.840000,8.980000 +1,2023-08-15 15:00:00,0.000000,18.500000,44.000000,6.000000,49.000000,87.040000,21.050000,693.950000,3.790000,39.130000,9.190000 +1,2023-08-15 16:00:00,0.000000,18.500000,44.000000,6.000000,49.000000,87.170000,21.210000,694.410000,3.860000,39.410000,9.380000 +1,2023-08-15 17:00:00,0.000000,19.800000,38.000000,14.000000,25.000000,87.520000,21.410000,694.960000,6.080000,39.750000,13.620000 +1,2023-08-15 18:00:00,0.000000,19.800000,38.000000,14.000000,25.000000,87.810000,21.600000,695.510000,6.340000,40.090000,14.140000 +1,2023-08-15 19:00:00,0.000000,19.800000,38.000000,14.000000,25.000000,88.070000,21.800000,696.060000,6.570000,40.440000,14.600000 +1,2023-08-15 20:00:00,0.000000,19.800000,38.000000,14.000000,25.000000,88.280000,22.000000,696.610000,6.780000,40.780000,15.020000 +1,2023-08-15 21:00:00,0.000000,19.800000,38.000000,14.000000,25.000000,88.460000,22.000000,696.610000,6.950000,40.780000,15.320000 +1,2023-08-15 22:00:00,0.000000,19.800000,38.000000,14.000000,25.000000,88.620000,22.000000,696.610000,7.110000,40.780000,15.580000 +1,2023-08-15 23:00:00,0.000000,11.300000,64.000000,3.000000,77.000000,88.290000,22.000000,696.610000,3.900000,40.780000,9.640000 +1,2023-08-16 00:00:00,0.000000,11.300000,64.000000,3.000000,77.000000,88.000000,22.000000,696.610000,3.740000,40.780000,9.300000 +1,2023-08-16 01:00:00,0.000000,11.300000,64.000000,3.000000,77.000000,87.730000,22.000000,696.610000,3.600000,40.780000,9.000000 +1,2023-08-16 02:00:00,0.000000,11.300000,64.000000,3.000000,77.000000,87.490000,22.000000,696.610000,3.480000,40.780000,8.740000 +1,2023-08-16 03:00:00,0.000000,11.300000,64.000000,3.000000,77.000000,87.270000,22.000000,696.610000,3.370000,40.780000,8.500000 +1,2023-08-16 04:00:00,0.000000,11.300000,64.000000,3.000000,77.000000,87.070000,22.000000,696.610000,3.280000,40.780000,8.300000 +1,2023-08-16 05:00:00,0.000000,6.900000,84.000000,5.000000,226.000000,86.410000,22.020000,696.670000,3.300000,40.820000,8.350000 +1,2023-08-16 06:00:00,0.000000,6.900000,84.000000,5.000000,226.000000,85.820000,22.050000,696.730000,3.030000,40.860000,7.770000 +1,2023-08-16 07:00:00,0.000000,6.900000,84.000000,5.000000,226.000000,85.280000,22.070000,696.790000,2.820000,40.910000,7.270000 +1,2023-08-16 08:00:00,0.000000,6.900000,84.000000,5.000000,226.000000,84.800000,22.100000,696.850000,2.630000,40.950000,6.840000 +1,2023-08-16 09:00:00,0.000000,6.900000,84.000000,5.000000,226.000000,84.360000,22.130000,696.900000,2.480000,41.000000,6.480000 +1,2023-08-16 10:00:00,0.000000,6.900000,84.000000,5.000000,226.000000,83.970000,22.150000,696.960000,2.360000,41.040000,6.170000 +1,2023-08-16 11:00:00,0.000000,19.200000,33.000000,7.000000,133.000000,84.800000,22.390000,697.520000,2.920000,41.460000,7.560000 +1,2023-08-16 12:00:00,0.000000,19.200000,33.000000,7.000000,133.000000,85.530000,22.640000,698.080000,3.220000,41.880000,8.320000 +1,2023-08-16 13:00:00,0.000000,19.200000,33.000000,7.000000,133.000000,86.170000,22.880000,698.630000,3.530000,42.290000,9.040000 +1,2023-08-16 14:00:00,0.000000,19.200000,33.000000,7.000000,133.000000,86.720000,23.120000,699.190000,3.810000,42.710000,9.720000 +1,2023-08-16 15:00:00,0.000000,19.200000,33.000000,7.000000,133.000000,87.210000,23.360000,699.740000,4.080000,43.120000,10.350000 +1,2023-08-16 16:00:00,0.000000,19.200000,33.000000,7.000000,133.000000,87.630000,23.600000,700.300000,4.340000,43.530000,10.940000 +1,2023-08-16 17:00:00,0.000000,21.600000,28.000000,9.000000,126.000000,88.260000,23.900000,700.990000,5.250000,44.050000,12.850000 +1,2023-08-16 18:00:00,0.000000,21.600000,28.000000,9.000000,126.000000,88.810000,24.200000,701.680000,5.680000,44.560000,13.750000 +1,2023-08-16 19:00:00,0.000000,21.600000,28.000000,9.000000,126.000000,89.270000,24.500000,702.380000,6.070000,45.080000,14.560000 +1,2023-08-16 20:00:00,0.000000,21.600000,28.000000,9.000000,126.000000,89.660000,24.810000,703.070000,6.420000,45.590000,15.300000 +1,2023-08-16 21:00:00,0.000000,21.600000,28.000000,9.000000,126.000000,89.990000,24.810000,703.070000,6.730000,45.590000,15.860000 +1,2023-08-16 22:00:00,0.000000,21.600000,28.000000,9.000000,126.000000,90.270000,24.810000,703.070000,7.010000,45.590000,16.340000 +1,2023-08-16 23:00:00,0.000000,13.300000,47.000000,6.000000,124.000000,90.080000,24.810000,703.070000,5.860000,45.590000,14.270000 +1,2023-08-17 00:00:00,0.000000,13.300000,47.000000,6.000000,124.000000,89.910000,24.810000,703.070000,5.720000,45.590000,14.010000 +1,2023-08-17 01:00:00,0.000000,13.300000,47.000000,6.000000,124.000000,89.760000,24.810000,703.070000,5.600000,45.590000,13.770000 +1,2023-08-17 02:00:00,0.000000,13.300000,47.000000,6.000000,124.000000,89.620000,24.810000,703.070000,5.490000,45.590000,13.560000 +1,2023-08-17 03:00:00,0.000000,13.300000,47.000000,6.000000,124.000000,89.500000,24.810000,703.070000,5.390000,45.590000,13.370000 +1,2023-08-17 04:00:00,0.000000,13.300000,47.000000,6.000000,124.000000,89.390000,24.810000,703.070000,5.310000,45.590000,13.200000 +1,2023-08-17 05:00:00,0.000000,12.500000,61.000000,10.000000,137.000000,88.980000,24.810000,703.070000,6.120000,45.590000,14.760000 +1,2023-08-17 06:00:00,0.000000,12.500000,61.000000,10.000000,137.000000,88.620000,24.820000,703.710000,5.820000,45.630000,14.190000 +1,2023-08-17 07:00:00,0.000000,12.500000,61.000000,10.000000,137.000000,88.300000,24.840000,704.360000,5.560000,45.660000,13.700000 +1,2023-08-17 08:00:00,0.000000,12.500000,61.000000,10.000000,137.000000,88.020000,24.860000,705.010000,5.340000,45.700000,13.280000 +1,2023-08-17 09:00:00,0.000000,12.500000,61.000000,10.000000,137.000000,87.770000,24.880000,705.650000,5.150000,45.730000,12.920000 +1,2023-08-17 10:00:00,0.000000,12.500000,61.000000,10.000000,137.000000,87.550000,24.900000,706.300000,4.990000,45.770000,12.600000 +1,2023-08-17 11:00:00,4.970000,15.900000,95.000000,11.000000,155.000000,31.170000,19.530000,669.670000,0.010000,36.410000,0.010000 +1,2023-08-17 12:00:00,0.000000,15.900000,95.000000,11.000000,155.000000,31.960000,19.530000,669.770000,0.010000,36.410000,0.010000 +1,2023-08-17 13:00:00,0.000000,15.900000,95.000000,11.000000,155.000000,32.750000,19.540000,669.870000,0.010000,36.420000,0.020000 +1,2023-08-17 14:00:00,0.000000,15.900000,95.000000,11.000000,155.000000,33.520000,19.540000,669.980000,0.010000,36.420000,0.020000 +1,2023-08-17 15:00:00,0.000000,15.900000,95.000000,11.000000,155.000000,34.290000,19.540000,670.080000,0.020000,36.430000,0.020000 +1,2023-08-17 16:00:00,0.000000,15.900000,95.000000,11.000000,155.000000,35.050000,19.550000,670.180000,0.020000,36.430000,0.030000 +1,2023-08-17 17:00:00,9.450000,18.300000,79.000000,4.000000,165.000000,9.430000,10.890000,600.840000,0.000000,20.840000,0.000000 +1,2023-08-17 18:00:00,0.000000,18.300000,79.000000,4.000000,165.000000,11.790000,10.910000,601.350000,0.000000,20.870000,0.000000 +1,2023-08-17 19:00:00,0.000000,18.300000,79.000000,4.000000,165.000000,14.150000,10.920000,601.850000,0.000000,20.900000,0.000000 +1,2023-08-17 20:00:00,0.000000,18.300000,79.000000,4.000000,165.000000,16.510000,10.940000,602.360000,0.000000,20.930000,0.000000 +1,2023-08-17 21:00:00,0.000000,18.300000,79.000000,4.000000,165.000000,18.850000,10.940000,602.360000,0.000000,20.930000,0.000000 +1,2023-08-17 22:00:00,0.000000,18.300000,79.000000,4.000000,165.000000,21.180000,10.940000,602.360000,0.000000,20.930000,0.000000 +1,2023-08-17 23:00:00,0.000000,14.500000,66.000000,10.000000,257.000000,24.560000,10.940000,602.360000,0.000000,20.930000,0.000000 +1,2023-08-18 00:00:00,0.000000,14.500000,66.000000,10.000000,257.000000,27.880000,10.940000,602.360000,0.000000,20.930000,0.000000 +1,2023-08-18 01:00:00,0.000000,14.500000,66.000000,10.000000,257.000000,31.130000,10.940000,602.360000,0.010000,20.930000,0.010000 +1,2023-08-18 02:00:00,0.000000,14.500000,66.000000,10.000000,257.000000,34.300000,10.940000,602.360000,0.020000,20.930000,0.020000 +1,2023-08-18 03:00:00,0.000000,14.500000,66.000000,10.000000,257.000000,37.370000,10.940000,602.360000,0.030000,20.930000,0.030000 +1,2023-08-18 04:00:00,0.000000,14.500000,66.000000,10.000000,257.000000,40.350000,10.940000,602.360000,0.060000,20.930000,0.060000 +1,2023-08-18 05:00:00,0.000000,11.000000,75.000000,10.000000,207.000000,42.410000,10.940000,602.360000,0.090000,20.930000,0.080000 +1,2023-08-18 06:00:00,0.000000,11.000000,75.000000,10.000000,207.000000,44.410000,11.010000,602.570000,0.120000,21.060000,0.120000 +1,2023-08-18 07:00:00,0.000000,11.000000,75.000000,10.000000,207.000000,46.350000,11.090000,602.790000,0.170000,21.200000,0.160000 +1,2023-08-18 08:00:00,0.000000,11.000000,75.000000,10.000000,207.000000,48.210000,11.160000,603.010000,0.220000,21.330000,0.200000 +1,2023-08-18 09:00:00,0.000000,11.000000,75.000000,10.000000,207.000000,50.010000,11.230000,603.230000,0.270000,21.470000,0.260000 +1,2023-08-18 10:00:00,0.000000,11.000000,75.000000,10.000000,207.000000,51.730000,11.310000,603.440000,0.330000,21.600000,0.320000 +1,2023-08-18 11:00:00,0.000000,17.000000,45.000000,14.000000,223.000000,55.460000,11.550000,604.150000,0.590000,22.040000,0.570000 +1,2023-08-18 12:00:00,0.000000,17.000000,45.000000,14.000000,223.000000,58.910000,11.790000,604.860000,0.770000,22.480000,0.750000 +1,2023-08-18 13:00:00,0.000000,17.000000,45.000000,14.000000,223.000000,62.060000,12.030000,605.560000,0.930000,22.920000,0.920000 +1,2023-08-18 14:00:00,0.000000,17.000000,45.000000,14.000000,223.000000,64.940000,12.270000,606.270000,1.060000,23.350000,1.310000 +1,2023-08-18 15:00:00,0.000000,17.000000,45.000000,14.000000,223.000000,67.550000,12.510000,606.980000,1.170000,23.790000,1.660000 +1,2023-08-18 16:00:00,0.000000,17.000000,45.000000,14.000000,223.000000,69.910000,12.740000,607.680000,1.260000,24.220000,1.930000 +1,2023-08-18 17:00:00,0.000000,17.100000,43.000000,11.000000,233.000000,71.990000,12.990000,608.420000,1.160000,24.670000,1.710000 +2,2023-08-03 00:00:00,0.000000,13.700000,98.000000,6.000000,61.000000,84.500000,118.400000,826.100000,2.660000,174.330000,15.000000 +2,2023-08-03 01:00:00,0.000000,13.700000,98.000000,6.000000,61.000000,83.210000,118.400000,826.100000,2.240000,174.330000,13.130000 +2,2023-08-03 02:00:00,0.000000,11.900000,97.000000,2.000000,52.000000,82.330000,118.400000,826.100000,1.640000,174.330000,10.200000 +2,2023-08-03 03:00:00,0.000000,11.900000,97.000000,2.000000,52.000000,81.550000,118.400000,826.100000,1.490000,174.330000,9.430000 +2,2023-08-03 04:00:00,0.000000,11.900000,97.000000,2.000000,52.000000,80.860000,118.400000,826.100000,1.380000,174.330000,8.810000 +2,2023-08-03 05:00:00,0.000000,10.800000,97.000000,2.000000,10.000000,80.250000,118.410000,826.120000,1.290000,174.340000,8.310000 +2,2023-08-03 06:00:00,0.000000,10.800000,97.000000,2.000000,10.000000,79.710000,118.410000,826.150000,1.220000,174.350000,7.910000 +2,2023-08-03 07:00:00,0.000000,10.800000,97.000000,2.000000,10.000000,79.220000,118.420000,826.170000,1.160000,174.360000,7.580000 +2,2023-08-03 08:00:00,0.000000,14.600000,83.000000,2.000000,82.000000,79.250000,118.470000,826.340000,1.170000,174.420000,7.600000 +2,2023-08-03 09:00:00,0.000000,14.600000,83.000000,2.000000,82.000000,79.290000,118.510000,826.510000,1.170000,174.480000,7.620000 +2,2023-08-03 10:00:00,0.000000,14.600000,83.000000,2.000000,82.000000,79.320000,118.560000,826.680000,1.170000,174.540000,7.650000 +2,2023-08-03 11:00:00,0.000000,20.000000,59.000000,6.000000,83.000000,80.000000,118.710000,827.260000,1.540000,174.740000,9.670000 +2,2023-08-03 12:00:00,0.000000,20.000000,59.000000,6.000000,83.000000,80.610000,118.870000,827.840000,1.640000,174.940000,10.220000 +2,2023-08-03 13:00:00,0.000000,20.000000,59.000000,6.000000,83.000000,81.160000,119.030000,828.420000,1.750000,175.140000,10.760000 +2,2023-08-03 14:00:00,0.000000,23.200000,45.000000,8.000000,70.000000,82.230000,119.280000,829.370000,2.190000,175.470000,12.920000 +2,2023-08-03 15:00:00,0.000000,23.200000,45.000000,8.000000,70.000000,83.150000,119.540000,830.310000,2.460000,175.800000,14.160000 +2,2023-08-03 16:00:00,0.000000,23.200000,45.000000,8.000000,70.000000,83.950000,119.790000,831.260000,2.730000,176.130000,15.350000 +2,2023-08-03 17:00:00,1.870000,20.700000,73.000000,8.000000,66.000000,54.780000,95.590000,815.080000,0.410000,147.840000,2.250000 +2,2023-08-03 18:00:00,0.000000,20.700000,73.000000,8.000000,66.000000,57.020000,95.700000,815.480000,0.500000,147.980000,2.930000 +2,2023-08-03 19:00:00,0.000000,20.700000,73.000000,8.000000,66.000000,59.130000,95.810000,815.880000,0.580000,148.130000,3.540000 +2,2023-08-03 20:00:00,2.850000,18.200000,90.000000,3.000000,58.000000,32.000000,73.880000,790.740000,0.010000,119.780000,0.020000 +2,2023-08-03 21:00:00,0.000000,18.200000,90.000000,3.000000,58.000000,33.080000,73.920000,790.870000,0.010000,119.830000,0.030000 +2,2023-08-03 22:00:00,0.000000,18.200000,90.000000,3.000000,58.000000,34.160000,73.920000,790.870000,0.010000,119.830000,0.040000 +2,2023-08-03 23:00:00,1.020000,14.500000,94.000000,1.000000,284.000000,27.790000,68.090000,781.830000,0.000000,111.830000,0.010000 +2,2023-08-04 00:00:00,0.000000,14.500000,94.000000,1.000000,284.000000,28.270000,68.090000,781.830000,0.000000,111.830000,0.010000 +2,2023-08-04 01:00:00,0.000000,14.500000,94.000000,1.000000,284.000000,28.760000,68.090000,781.830000,0.000000,111.830000,0.010000 +2,2023-08-04 02:00:00,0.000000,12.500000,97.000000,3.000000,236.000000,29.050000,68.090000,781.830000,0.000000,111.830000,0.010000 +2,2023-08-04 03:00:00,0.000000,12.500000,97.000000,3.000000,236.000000,29.340000,68.090000,781.830000,0.000000,111.830000,0.010000 +2,2023-08-04 04:00:00,0.000000,12.500000,97.000000,3.000000,236.000000,29.640000,68.090000,781.830000,0.000000,111.830000,0.010000 +2,2023-08-04 05:00:00,0.010000,11.300000,98.000000,4.000000,269.000000,29.840000,68.090000,781.840000,0.000000,111.830000,0.010000 +2,2023-08-04 06:00:00,0.000000,11.300000,98.000000,4.000000,269.000000,30.040000,68.090000,781.850000,0.000000,111.840000,0.010000 +2,2023-08-04 07:00:00,0.000000,11.300000,98.000000,4.000000,269.000000,30.250000,68.100000,781.860000,0.000000,111.840000,0.010000 +2,2023-08-04 08:00:00,0.040000,14.700000,88.000000,3.000000,281.000000,31.380000,68.120000,781.950000,0.010000,111.880000,0.020000 +2,2023-08-04 09:00:00,0.000000,14.700000,88.000000,3.000000,281.000000,32.500000,68.150000,782.040000,0.010000,111.910000,0.020000 +2,2023-08-04 10:00:00,0.000000,14.700000,88.000000,3.000000,281.000000,33.610000,68.170000,782.130000,0.010000,111.950000,0.030000 +2,2023-08-04 11:00:00,0.000000,21.600000,59.000000,6.000000,39.000000,37.660000,68.300000,782.580000,0.030000,112.130000,0.090000 +2,2023-08-04 12:00:00,0.000000,21.600000,59.000000,6.000000,39.000000,41.540000,68.430000,783.040000,0.060000,112.310000,0.190000 +2,2023-08-04 13:00:00,0.000000,21.600000,59.000000,6.000000,39.000000,45.240000,68.550000,783.500000,0.120000,112.500000,0.350000 +2,2023-08-04 14:00:00,0.000000,23.400000,48.000000,11.000000,5.000000,50.140000,68.730000,784.150000,0.290000,112.760000,0.870000 +2,2023-08-04 15:00:00,0.000000,23.400000,48.000000,11.000000,5.000000,54.660000,68.910000,784.800000,0.470000,113.020000,2.240000 +2,2023-08-04 16:00:00,0.000000,23.400000,48.000000,11.000000,5.000000,58.780000,69.090000,785.440000,0.660000,113.280000,3.470000 +2,2023-08-04 17:00:00,0.000000,23.700000,44.000000,12.000000,354.000000,62.820000,69.290000,786.160000,0.880000,113.560000,4.770000 +2,2023-08-04 18:00:00,0.000000,23.700000,44.000000,12.000000,354.000000,66.430000,69.490000,786.870000,1.020000,113.850000,5.550000 +2,2023-08-04 19:00:00,0.000000,23.700000,44.000000,12.000000,354.000000,69.610000,69.690000,787.580000,1.130000,114.130000,6.160000 +2,2023-08-04 20:00:00,0.000000,22.000000,50.000000,5.000000,347.000000,71.620000,69.850000,788.150000,0.850000,114.360000,4.640000 +2,2023-08-04 21:00:00,0.000000,22.000000,50.000000,5.000000,347.000000,73.430000,70.010000,788.720000,0.910000,114.590000,4.990000 +2,2023-08-04 22:00:00,0.000000,22.000000,50.000000,5.000000,347.000000,75.060000,70.010000,788.720000,0.990000,114.590000,5.410000 +2,2023-08-04 23:00:00,0.000000,16.300000,70.000000,5.000000,267.000000,75.670000,70.010000,788.720000,1.020000,114.590000,5.610000 +2,2023-08-05 00:00:00,0.000000,16.300000,70.000000,5.000000,267.000000,76.240000,70.010000,788.720000,1.060000,114.590000,5.810000 +2,2023-08-05 01:00:00,0.000000,16.300000,70.000000,5.000000,267.000000,76.770000,70.010000,788.720000,1.100000,114.590000,6.010000 +2,2023-08-05 02:00:00,0.000000,13.800000,81.000000,7.000000,250.000000,76.990000,70.010000,788.720000,1.240000,114.590000,6.710000 +2,2023-08-05 03:00:00,0.000000,13.800000,81.000000,7.000000,250.000000,77.190000,70.010000,788.720000,1.260000,114.590000,6.810000 +2,2023-08-05 04:00:00,0.000000,13.800000,81.000000,7.000000,250.000000,77.380000,70.010000,788.720000,1.270000,114.590000,6.900000 +2,2023-08-05 05:00:00,0.000000,12.900000,88.000000,7.000000,261.000000,77.410000,70.030000,788.810000,1.280000,114.620000,6.920000 +2,2023-08-05 06:00:00,0.000000,12.900000,88.000000,7.000000,261.000000,77.440000,70.050000,788.890000,1.280000,114.650000,6.930000 +2,2023-08-05 07:00:00,0.000000,12.900000,88.000000,7.000000,261.000000,77.470000,70.080000,788.980000,1.280000,114.690000,6.950000 +2,2023-08-05 08:00:00,0.000000,18.100000,70.000000,4.000000,303.000000,77.940000,70.150000,789.270000,1.150000,114.800000,6.250000 +2,2023-08-05 09:00:00,0.000000,18.100000,70.000000,4.000000,303.000000,78.370000,70.230000,789.570000,1.190000,114.910000,6.480000 +2,2023-08-05 10:00:00,0.000000,18.100000,70.000000,4.000000,303.000000,78.780000,70.310000,789.860000,1.230000,115.020000,6.710000 +2,2023-08-05 11:00:00,0.000000,21.300000,61.000000,8.000000,351.000000,79.560000,70.430000,790.330000,1.630000,115.200000,8.600000 +2,2023-08-05 12:00:00,0.000000,21.300000,61.000000,8.000000,351.000000,80.250000,70.560000,790.800000,1.750000,115.380000,9.160000 +2,2023-08-05 13:00:00,0.000000,21.300000,61.000000,8.000000,351.000000,80.870000,70.680000,791.270000,1.870000,115.560000,9.710000 +2,2023-08-05 14:00:00,0.050000,21.000000,58.000000,10.000000,356.000000,81.520000,70.810000,791.770000,2.230000,115.750000,11.230000 +2,2023-08-05 15:00:00,0.000000,21.000000,58.000000,10.000000,356.000000,82.090000,70.940000,792.270000,2.380000,115.930000,11.880000 +2,2023-08-05 16:00:00,0.000000,21.000000,58.000000,10.000000,356.000000,82.590000,71.070000,792.760000,2.540000,116.120000,12.490000 +2,2023-08-05 17:00:00,0.000000,21.600000,52.000000,7.000000,3.000000,83.170000,71.230000,793.350000,2.350000,116.340000,11.750000 +2,2023-08-05 18:00:00,0.000000,21.600000,52.000000,7.000000,3.000000,83.690000,71.380000,793.940000,2.510000,116.570000,12.410000 +2,2023-08-05 19:00:00,0.000000,21.600000,52.000000,7.000000,3.000000,84.130000,71.540000,794.530000,2.660000,116.790000,13.020000 +2,2023-08-05 20:00:00,0.000000,20.500000,55.000000,4.000000,11.000000,84.400000,71.680000,795.040000,2.370000,116.990000,11.880000 +2,2023-08-05 21:00:00,0.000000,20.500000,55.000000,4.000000,11.000000,84.630000,71.810000,795.560000,2.450000,117.180000,12.200000 +2,2023-08-05 22:00:00,0.000000,20.500000,55.000000,4.000000,11.000000,84.840000,71.810000,795.560000,2.520000,117.180000,12.480000 +2,2023-08-05 23:00:00,0.000000,15.700000,74.000000,0.000000,72.000000,84.760000,71.810000,795.560000,2.040000,117.180000,10.510000 +2,2023-08-06 00:00:00,0.000000,15.700000,74.000000,0.000000,72.000000,84.690000,71.810000,795.560000,2.020000,117.180000,10.420000 +2,2023-08-06 01:00:00,0.000000,15.700000,74.000000,0.000000,72.000000,84.630000,71.810000,795.560000,2.000000,117.180000,10.350000 +2,2023-08-06 02:00:00,0.000000,13.500000,84.000000,2.000000,224.000000,84.260000,71.810000,795.560000,2.100000,117.180000,10.790000 +2,2023-08-06 03:00:00,0.000000,13.500000,84.000000,2.000000,224.000000,83.930000,71.810000,795.560000,2.010000,117.180000,10.410000 +2,2023-08-06 04:00:00,0.000000,13.500000,84.000000,2.000000,224.000000,83.640000,71.810000,795.560000,1.940000,117.180000,10.080000 +2,2023-08-06 05:00:00,0.000000,12.400000,88.000000,2.000000,198.000000,83.220000,71.830000,795.620000,1.840000,117.210000,9.640000 +2,2023-08-06 06:00:00,0.000000,12.400000,88.000000,2.000000,198.000000,82.860000,71.860000,795.680000,1.750000,117.240000,9.260000 +2,2023-08-06 07:00:00,0.000000,12.400000,88.000000,2.000000,198.000000,82.530000,71.880000,795.740000,1.680000,117.270000,8.940000 +2,2023-08-06 08:00:00,0.000000,17.400000,60.000000,4.000000,133.000000,82.770000,71.980000,796.010000,1.920000,117.420000,9.990000 +2,2023-08-06 09:00:00,0.000000,17.400000,60.000000,4.000000,133.000000,82.990000,72.080000,796.280000,1.970000,117.560000,10.240000 +2,2023-08-06 10:00:00,0.000000,17.400000,60.000000,4.000000,133.000000,83.190000,72.190000,796.550000,2.020000,117.710000,10.470000 +2,2023-08-06 11:00:00,0.000000,21.500000,44.000000,6.000000,120.000000,83.900000,72.370000,797.030000,2.450000,117.970000,12.260000 +2,2023-08-06 12:00:00,0.000000,21.500000,44.000000,6.000000,120.000000,84.510000,72.560000,797.520000,2.660000,118.220000,13.100000 +2,2023-08-06 13:00:00,0.000000,21.500000,44.000000,6.000000,120.000000,85.050000,72.740000,798.010000,2.870000,118.480000,13.900000 +2,2023-08-06 14:00:00,0.000000,23.400000,42.000000,7.000000,102.000000,85.670000,72.960000,798.570000,3.290000,118.790000,15.450000 +2,2023-08-06 15:00:00,0.000000,23.400000,42.000000,7.000000,102.000000,86.200000,73.170000,799.140000,3.540000,119.090000,16.360000 +2,2023-08-06 16:00:00,0.000000,23.400000,42.000000,7.000000,102.000000,86.650000,73.390000,799.710000,3.780000,119.390000,17.190000 +2,2023-08-06 17:00:00,0.000000,23.500000,40.000000,11.000000,76.000000,87.140000,73.610000,800.300000,4.950000,119.700000,20.980000 +2,2023-08-06 18:00:00,0.000000,23.500000,40.000000,11.000000,76.000000,87.560000,73.840000,800.890000,5.250000,120.010000,21.910000 +2,2023-08-06 19:00:00,0.000000,23.500000,40.000000,11.000000,76.000000,87.910000,74.060000,801.480000,5.520000,120.330000,22.730000 +2,2023-08-06 20:00:00,0.000000,20.900000,43.000000,10.000000,62.000000,88.020000,74.240000,801.960000,5.340000,120.580000,22.220000 +2,2023-08-06 21:00:00,0.000000,20.900000,43.000000,10.000000,62.000000,88.130000,74.420000,802.430000,5.420000,120.830000,22.470000 +2,2023-08-06 22:00:00,0.000000,20.900000,43.000000,10.000000,62.000000,88.210000,74.420000,802.430000,5.490000,120.830000,22.670000 +2,2023-08-06 23:00:00,0.000000,16.200000,53.000000,7.000000,65.000000,88.160000,74.420000,802.430000,4.680000,120.830000,20.240000 +2,2023-08-07 00:00:00,0.000000,16.200000,53.000000,7.000000,65.000000,88.120000,74.420000,802.430000,4.650000,120.830000,20.140000 +2,2023-08-07 01:00:00,0.000000,16.200000,53.000000,7.000000,65.000000,88.070000,74.420000,802.430000,4.620000,120.830000,20.050000 +2,2023-08-07 02:00:00,0.000000,14.900000,54.000000,6.000000,81.000000,88.000000,74.420000,802.430000,4.350000,120.830000,19.180000 +2,2023-08-07 03:00:00,0.000000,14.900000,54.000000,6.000000,81.000000,87.930000,74.420000,802.430000,4.310000,120.830000,19.050000 +2,2023-08-07 04:00:00,0.000000,14.900000,54.000000,6.000000,81.000000,87.870000,74.420000,802.430000,4.270000,120.830000,18.930000 +2,2023-08-07 05:00:00,0.000000,13.700000,57.000000,4.000000,71.000000,87.760000,74.500000,802.640000,3.800000,120.940000,17.360000 +2,2023-08-07 06:00:00,0.000000,13.700000,57.000000,4.000000,71.000000,87.650000,74.580000,802.840000,3.740000,121.050000,17.180000 +2,2023-08-07 07:00:00,0.000000,13.700000,57.000000,4.000000,71.000000,87.550000,74.660000,803.040000,3.690000,121.170000,17.010000 +2,2023-08-07 08:00:00,0.000000,17.200000,48.000000,6.000000,78.000000,87.550000,74.790000,803.350000,4.080000,121.330000,18.340000 +2,2023-08-07 09:00:00,0.000000,17.200000,48.000000,6.000000,78.000000,87.550000,74.910000,803.660000,4.080000,121.500000,18.350000 +2,2023-08-07 10:00:00,0.000000,17.200000,48.000000,6.000000,78.000000,87.550000,75.030000,803.970000,4.080000,121.670000,18.360000 +2,2023-08-07 11:00:00,0.000000,20.400000,41.000000,9.000000,71.000000,87.760000,75.190000,804.400000,4.890000,121.900000,20.950000 +2,2023-08-07 12:00:00,0.000000,20.400000,41.000000,9.000000,71.000000,87.930000,75.360000,804.820000,5.010000,122.130000,21.350000 +2,2023-08-07 13:00:00,0.000000,20.400000,41.000000,9.000000,71.000000,88.090000,75.530000,805.250000,5.120000,122.370000,21.700000 +2,2023-08-07 14:00:00,0.000000,21.300000,37.000000,10.000000,73.000000,88.360000,75.720000,805.730000,5.600000,122.630000,23.150000 +2,2023-08-07 15:00:00,0.000000,21.300000,37.000000,10.000000,73.000000,88.590000,75.910000,806.210000,5.790000,122.890000,23.720000 +2,2023-08-07 16:00:00,0.000000,21.300000,37.000000,10.000000,73.000000,88.790000,76.100000,806.690000,5.960000,123.150000,24.220000 +2,2023-08-07 17:00:00,0.000000,21.700000,35.000000,8.000000,87.000000,89.030000,76.300000,807.200000,5.580000,123.430000,23.130000 +2,2023-08-07 18:00:00,0.000000,21.700000,35.000000,8.000000,87.000000,89.230000,76.500000,807.710000,5.740000,123.700000,23.620000 +2,2023-08-07 19:00:00,0.000000,21.700000,35.000000,8.000000,87.000000,89.400000,76.700000,808.220000,5.880000,123.980000,24.050000 +2,2023-08-07 20:00:00,0.000000,20.200000,38.000000,3.000000,98.000000,89.410000,76.870000,808.670000,4.580000,124.220000,20.150000 +2,2023-08-07 21:00:00,0.000000,20.200000,38.000000,3.000000,98.000000,89.430000,77.040000,809.110000,4.590000,124.460000,20.200000 +2,2023-08-07 22:00:00,0.000000,20.200000,38.000000,3.000000,98.000000,89.440000,77.040000,809.110000,4.600000,124.460000,20.230000 +2,2023-08-07 23:00:00,0.000000,15.700000,49.000000,4.000000,62.000000,89.340000,77.040000,809.110000,4.770000,124.460000,20.750000 +2,2023-08-08 00:00:00,0.000000,15.700000,49.000000,4.000000,62.000000,89.240000,77.040000,809.110000,4.700000,124.460000,20.550000 +2,2023-08-08 01:00:00,0.000000,15.700000,49.000000,4.000000,62.000000,89.150000,77.040000,809.110000,4.640000,124.460000,20.360000 +2,2023-08-08 02:00:00,0.000000,12.500000,56.000000,5.000000,66.000000,88.910000,77.040000,809.110000,4.710000,124.460000,20.590000 +2,2023-08-08 03:00:00,0.000000,12.500000,56.000000,5.000000,66.000000,88.690000,77.040000,809.110000,4.570000,124.460000,20.130000 +2,2023-08-08 04:00:00,0.000000,12.500000,56.000000,5.000000,66.000000,88.500000,77.040000,809.110000,4.440000,124.460000,19.720000 +2,2023-08-08 05:00:00,0.000000,11.100000,57.000000,6.000000,68.000000,88.280000,77.130000,809.320000,4.530000,124.580000,20.010000 +2,2023-08-08 06:00:00,0.000000,11.100000,57.000000,6.000000,68.000000,88.090000,77.210000,809.520000,4.410000,124.690000,19.620000 +2,2023-08-08 07:00:00,0.000000,11.100000,57.000000,6.000000,68.000000,87.910000,77.300000,809.730000,4.300000,124.810000,19.270000 +2,2023-08-08 08:00:00,0.000000,15.900000,42.000000,11.000000,64.000000,87.940000,77.450000,810.100000,5.540000,125.020000,23.160000 +2,2023-08-08 09:00:00,0.000000,15.900000,42.000000,11.000000,64.000000,87.950000,77.610000,810.480000,5.560000,125.230000,23.220000 +2,2023-08-08 10:00:00,0.000000,15.900000,42.000000,11.000000,64.000000,87.970000,77.760000,810.860000,5.570000,125.450000,23.270000 +2,2023-08-08 11:00:00,0.000000,20.100000,38.000000,17.000000,53.000000,88.220000,77.980000,811.390000,7.810000,125.740000,29.420000 +2,2023-08-08 12:00:00,0.000000,20.100000,38.000000,17.000000,53.000000,88.430000,78.190000,811.920000,8.050000,126.040000,30.050000 +2,2023-08-08 13:00:00,0.000000,20.100000,38.000000,17.000000,53.000000,88.600000,78.410000,812.450000,8.260000,126.340000,30.590000 +2,2023-08-08 14:00:00,0.000000,21.900000,38.000000,19.000000,60.000000,88.810000,78.650000,813.030000,9.410000,126.670000,33.440000 +2,2023-08-08 15:00:00,0.000000,21.900000,38.000000,19.000000,60.000000,88.990000,78.890000,813.620000,9.650000,127.000000,34.030000 +2,2023-08-08 16:00:00,0.000000,21.900000,38.000000,19.000000,60.000000,89.140000,79.130000,814.210000,9.860000,127.330000,34.540000 +2,2023-08-08 17:00:00,1.400000,18.600000,63.000000,16.000000,90.000000,70.610000,79.250000,814.500000,1.430000,127.490000,8.090000 +2,2023-08-08 18:00:00,0.000000,18.600000,63.000000,16.000000,90.000000,72.220000,79.370000,814.790000,1.510000,127.650000,8.510000 +2,2023-08-08 19:00:00,0.000000,18.600000,63.000000,16.000000,90.000000,73.670000,79.490000,815.070000,1.600000,127.810000,8.960000 +2,2023-08-08 20:00:00,0.000000,17.700000,55.000000,10.000000,88.000000,75.010000,79.620000,815.400000,1.270000,128.000000,7.290000 +2,2023-08-08 21:00:00,0.000000,17.700000,55.000000,10.000000,88.000000,76.220000,79.760000,815.730000,1.360000,128.180000,7.790000 +2,2023-08-08 22:00:00,0.000000,17.700000,55.000000,10.000000,88.000000,77.310000,79.760000,815.730000,1.470000,128.180000,8.340000 +2,2023-08-08 23:00:00,0.000000,12.800000,78.000000,6.000000,83.000000,77.530000,79.760000,815.730000,1.230000,128.180000,7.070000 +2,2023-08-09 00:00:00,0.000000,12.800000,78.000000,6.000000,83.000000,77.740000,79.760000,815.730000,1.250000,128.180000,7.180000 +2,2023-08-09 01:00:00,0.000000,12.800000,78.000000,6.000000,83.000000,77.940000,79.760000,815.730000,1.270000,128.180000,7.290000 +2,2023-08-09 02:00:00,0.000000,10.100000,90.000000,3.000000,91.000000,77.940000,79.760000,815.730000,1.090000,128.180000,6.340000 +2,2023-08-09 03:00:00,0.000000,10.100000,90.000000,3.000000,91.000000,77.940000,79.760000,815.730000,1.090000,128.180000,6.340000 +2,2023-08-09 04:00:00,0.000000,10.100000,90.000000,3.000000,91.000000,77.940000,79.760000,815.730000,1.090000,128.180000,6.340000 +2,2023-08-09 05:00:00,0.000000,8.500000,96.000000,2.000000,67.000000,77.690000,79.760000,815.750000,1.010000,128.190000,5.920000 +2,2023-08-09 06:00:00,0.000000,8.500000,96.000000,2.000000,67.000000,77.460000,79.770000,815.760000,1.000000,128.200000,5.820000 +2,2023-08-09 07:00:00,0.000000,8.500000,96.000000,2.000000,67.000000,77.250000,79.780000,815.770000,0.980000,128.210000,5.730000 +2,2023-08-09 08:00:00,0.000000,14.500000,59.000000,6.000000,86.000000,77.910000,79.870000,815.990000,1.260000,128.330000,7.280000 +2,2023-08-09 09:00:00,0.000000,14.500000,59.000000,6.000000,86.000000,78.520000,79.960000,816.200000,1.330000,128.460000,7.640000 +2,2023-08-09 10:00:00,0.000000,14.500000,59.000000,6.000000,86.000000,79.080000,80.060000,816.420000,1.400000,128.590000,8.000000 +2,2023-08-09 11:00:00,0.000000,20.700000,35.000000,12.000000,88.000000,80.690000,80.270000,816.920000,2.240000,128.890000,11.870000 +2,2023-08-09 12:00:00,0.000000,20.700000,35.000000,12.000000,88.000000,82.090000,80.490000,817.420000,2.630000,129.180000,13.520000 +2,2023-08-09 13:00:00,0.000000,20.700000,35.000000,12.000000,88.000000,83.290000,80.710000,817.930000,3.060000,129.480000,15.200000 +2,2023-08-09 14:00:00,0.000000,22.600000,30.000000,14.000000,76.000000,84.660000,80.980000,818.530000,4.070000,129.840000,18.810000 +2,2023-08-09 15:00:00,0.000000,22.600000,30.000000,14.000000,76.000000,85.810000,81.240000,819.140000,4.770000,130.200000,21.130000 +2,2023-08-09 16:00:00,0.000000,22.600000,30.000000,14.000000,76.000000,86.770000,81.500000,819.750000,5.460000,130.560000,23.310000 +2,2023-08-09 17:00:00,0.000000,22.500000,31.000000,17.000000,66.000000,87.570000,81.760000,820.350000,7.120000,130.910000,28.030000 +2,2023-08-09 18:00:00,0.000000,22.500000,31.000000,17.000000,66.000000,88.220000,82.020000,820.940000,7.820000,131.260000,29.910000 +2,2023-08-09 19:00:00,0.000000,22.500000,31.000000,17.000000,66.000000,88.770000,82.280000,821.540000,8.450000,131.610000,31.550000 +2,2023-08-09 20:00:00,0.000000,20.100000,38.000000,15.000000,64.000000,88.890000,82.480000,822.000000,7.770000,131.880000,29.840000 +2,2023-08-09 21:00:00,0.000000,20.100000,38.000000,15.000000,64.000000,88.990000,82.680000,822.460000,7.890000,132.150000,30.160000 +2,2023-08-09 22:00:00,0.000000,20.100000,38.000000,15.000000,64.000000,89.070000,82.680000,822.460000,7.980000,132.150000,30.410000 +2,2023-08-09 23:00:00,0.000000,16.600000,49.000000,9.000000,85.000000,89.000000,82.680000,822.460000,5.840000,132.150000,24.550000 +2,2023-08-10 00:00:00,0.000000,16.600000,49.000000,9.000000,85.000000,88.950000,82.680000,822.460000,5.800000,132.150000,24.400000 +2,2023-08-10 01:00:00,0.000000,16.600000,49.000000,9.000000,85.000000,88.890000,82.680000,822.460000,5.750000,132.150000,24.270000 +2,2023-08-10 02:00:00,0.000000,15.000000,49.000000,9.000000,120.000000,88.820000,82.680000,822.460000,5.690000,132.150000,24.100000 +2,2023-08-10 03:00:00,0.000000,15.000000,49.000000,9.000000,120.000000,88.760000,82.680000,822.460000,5.640000,132.150000,23.940000 +2,2023-08-10 04:00:00,0.000000,15.000000,49.000000,9.000000,120.000000,88.700000,82.680000,822.460000,5.590000,132.150000,23.800000 +2,2023-08-10 05:00:00,0.000000,13.600000,57.000000,8.000000,100.000000,88.480000,82.780000,822.700000,5.150000,132.290000,22.470000 +2,2023-08-10 06:00:00,0.000000,13.600000,57.000000,8.000000,100.000000,88.280000,82.880000,822.930000,5.010000,132.420000,22.020000 +2,2023-08-10 07:00:00,0.000000,13.600000,57.000000,8.000000,100.000000,88.100000,82.980000,823.170000,4.880000,132.550000,21.640000 +2,2023-08-10 08:00:00,0.000000,17.200000,51.000000,11.000000,101.000000,88.100000,83.120000,823.510000,5.680000,132.750000,24.090000 +2,2023-08-10 09:00:00,0.000000,17.200000,51.000000,11.000000,101.000000,88.100000,83.260000,823.850000,5.680000,132.940000,24.110000 +2,2023-08-10 10:00:00,0.000000,17.200000,51.000000,11.000000,101.000000,88.100000,83.410000,824.190000,5.680000,133.130000,24.120000 +2,2023-08-10 11:00:00,0.000000,21.300000,38.000000,17.000000,115.000000,88.370000,83.640000,824.740000,7.980000,133.440000,30.510000 +2,2023-08-10 12:00:00,0.000000,21.300000,38.000000,17.000000,115.000000,88.590000,83.870000,825.300000,8.250000,133.760000,31.210000 +2,2023-08-10 13:00:00,0.000000,21.300000,38.000000,17.000000,115.000000,88.780000,84.100000,825.850000,8.470000,134.070000,31.800000 +2,2023-08-10 14:00:00,0.000000,21.800000,38.000000,17.000000,136.000000,88.960000,84.340000,826.420000,8.690000,134.400000,32.370000 +2,2023-08-10 15:00:00,0.000000,21.800000,38.000000,17.000000,136.000000,89.100000,84.580000,826.990000,8.870000,134.720000,32.840000 +2,2023-08-10 16:00:00,0.000000,21.800000,38.000000,17.000000,136.000000,89.220000,84.820000,827.560000,9.020000,135.040000,33.250000 +2,2023-08-10 17:00:00,0.000000,20.200000,48.000000,17.000000,148.000000,89.220000,85.000000,828.000000,9.020000,135.290000,33.270000 +2,2023-08-10 18:00:00,0.000000,20.200000,48.000000,17.000000,148.000000,89.220000,85.190000,828.430000,9.020000,135.530000,33.290000 +2,2023-08-10 19:00:00,0.000000,20.200000,48.000000,17.000000,148.000000,89.220000,85.370000,828.870000,9.020000,135.780000,33.310000 +2,2023-08-10 20:00:00,0.000000,20.200000,48.000000,17.000000,148.000000,89.220000,85.550000,829.300000,9.020000,136.020000,33.330000 +2,2023-08-10 21:00:00,0.000000,20.200000,48.000000,17.000000,148.000000,89.220000,85.550000,829.300000,9.020000,136.020000,33.330000 +2,2023-08-10 22:00:00,0.000000,20.200000,48.000000,17.000000,148.000000,89.220000,85.550000,829.300000,9.020000,136.020000,33.330000 +2,2023-08-10 23:00:00,0.030000,17.000000,65.000000,7.000000,125.000000,88.790000,85.550000,829.300000,5.120000,136.020000,22.610000 +2,2023-08-11 00:00:00,0.000000,17.000000,65.000000,7.000000,125.000000,88.420000,85.550000,829.300000,4.860000,136.020000,21.760000 +2,2023-08-11 01:00:00,0.000000,17.000000,65.000000,7.000000,125.000000,88.090000,85.550000,829.300000,4.630000,136.020000,21.050000 +2,2023-08-11 02:00:00,0.000000,17.000000,65.000000,7.000000,125.000000,87.810000,85.550000,829.300000,4.450000,136.020000,20.440000 +2,2023-08-11 03:00:00,0.000000,17.000000,65.000000,7.000000,125.000000,87.560000,85.550000,829.300000,4.290000,136.020000,19.920000 +2,2023-08-11 04:00:00,0.000000,17.000000,65.000000,7.000000,125.000000,87.340000,85.550000,829.300000,4.160000,136.020000,19.480000 +2,2023-08-11 05:00:00,0.000000,14.000000,77.000000,4.000000,109.000000,86.850000,85.600000,829.430000,3.340000,136.080000,16.550000 +2,2023-08-11 06:00:00,0.000000,14.000000,77.000000,4.000000,109.000000,86.420000,85.640000,829.560000,3.140000,136.140000,15.800000 +2,2023-08-11 07:00:00,0.000000,14.000000,77.000000,4.000000,109.000000,86.040000,85.690000,829.690000,2.980000,136.210000,15.170000 +2,2023-08-11 08:00:00,0.000000,14.000000,77.000000,4.000000,109.000000,85.700000,85.730000,829.820000,2.840000,136.270000,14.630000 +2,2023-08-11 09:00:00,0.000000,14.000000,77.000000,4.000000,109.000000,85.400000,85.780000,829.950000,2.720000,136.330000,14.170000 +2,2023-08-11 10:00:00,0.000000,14.000000,77.000000,4.000000,109.000000,85.140000,85.820000,830.080000,2.620000,136.390000,13.770000 +2,2023-08-11 11:00:00,0.000000,21.100000,48.000000,5.000000,172.000000,85.470000,85.990000,830.550000,2.890000,136.610000,14.850000 +2,2023-08-11 12:00:00,0.000000,21.100000,48.000000,5.000000,172.000000,85.760000,86.150000,831.010000,3.010000,136.830000,15.330000 +2,2023-08-11 13:00:00,0.000000,21.100000,48.000000,5.000000,172.000000,86.020000,86.310000,831.470000,3.120000,137.060000,15.770000 +2,2023-08-11 14:00:00,0.000000,21.100000,48.000000,5.000000,172.000000,86.250000,86.470000,831.940000,3.220000,137.280000,16.160000 +2,2023-08-11 15:00:00,0.000000,21.100000,48.000000,5.000000,172.000000,86.450000,86.640000,832.400000,3.310000,137.500000,16.520000 +2,2023-08-11 16:00:00,0.000000,21.100000,48.000000,5.000000,172.000000,86.620000,86.800000,832.860000,3.400000,137.720000,16.840000 +2,2023-08-11 17:00:00,0.000000,25.200000,29.000000,10.000000,162.000000,87.590000,87.080000,833.670000,5.020000,138.100000,22.390000 +2,2023-08-11 18:00:00,0.000000,25.200000,29.000000,10.000000,162.000000,88.390000,87.370000,834.480000,5.630000,138.480000,24.310000 +2,2023-08-11 19:00:00,0.000000,25.200000,29.000000,10.000000,162.000000,89.060000,87.650000,835.290000,6.190000,138.870000,26.010000 +2,2023-08-11 20:00:00,0.000000,25.200000,29.000000,10.000000,162.000000,89.610000,87.930000,836.100000,6.700000,139.250000,27.490000 +2,2023-08-11 21:00:00,0.000000,25.200000,29.000000,10.000000,162.000000,90.060000,87.930000,836.100000,7.160000,139.250000,28.740000 +2,2023-08-11 22:00:00,0.000000,25.200000,29.000000,10.000000,162.000000,90.440000,87.930000,836.100000,7.550000,139.250000,29.810000 +2,2023-08-11 23:00:00,0.000000,17.600000,50.000000,7.000000,146.000000,90.210000,87.930000,836.100000,6.290000,139.250000,26.300000 +2,2023-08-12 00:00:00,0.000000,17.600000,50.000000,7.000000,146.000000,90.020000,87.930000,836.100000,6.110000,139.250000,25.780000 +2,2023-08-12 01:00:00,0.000000,17.600000,50.000000,7.000000,146.000000,89.840000,87.930000,836.100000,5.960000,139.250000,25.340000 +2,2023-08-12 02:00:00,0.000000,17.600000,50.000000,7.000000,146.000000,89.690000,87.930000,836.100000,5.830000,139.250000,24.950000 +2,2023-08-12 03:00:00,0.000000,17.600000,50.000000,7.000000,146.000000,89.550000,87.930000,836.100000,5.710000,139.250000,24.610000 +2,2023-08-12 04:00:00,0.000000,17.600000,50.000000,7.000000,146.000000,89.430000,87.930000,836.100000,5.610000,139.250000,24.310000 +2,2023-08-12 05:00:00,0.000000,13.600000,72.000000,4.000000,78.000000,88.830000,87.980000,836.260000,4.430000,139.320000,20.550000 +2,2023-08-12 06:00:00,0.000000,13.600000,72.000000,4.000000,78.000000,88.300000,88.040000,836.420000,4.110000,139.390000,19.450000 +2,2023-08-12 07:00:00,0.000000,13.600000,72.000000,4.000000,78.000000,87.830000,88.090000,836.580000,3.840000,139.460000,18.520000 +2,2023-08-12 08:00:00,0.000000,13.600000,72.000000,4.000000,78.000000,87.420000,88.140000,836.740000,3.620000,139.530000,17.730000 +2,2023-08-12 09:00:00,0.000000,13.600000,72.000000,4.000000,78.000000,87.050000,88.190000,836.900000,3.430000,139.600000,17.050000 +2,2023-08-12 10:00:00,0.000000,13.600000,72.000000,4.000000,78.000000,86.720000,88.240000,837.060000,3.280000,139.670000,16.470000 +2,2023-08-12 11:00:00,0.300000,20.800000,52.000000,4.000000,3.000000,86.770000,88.380000,837.490000,3.300000,139.860000,16.560000 +2,2023-08-12 12:00:00,0.000000,20.800000,52.000000,4.000000,3.000000,86.810000,88.520000,837.920000,3.320000,140.050000,16.640000 +2,2023-08-12 13:00:00,0.000000,20.800000,52.000000,4.000000,3.000000,86.850000,88.660000,838.350000,3.330000,140.240000,16.720000 +2,2023-08-12 14:00:00,0.000000,20.800000,52.000000,4.000000,3.000000,86.880000,88.800000,838.790000,3.350000,140.430000,16.780000 +2,2023-08-12 15:00:00,0.000000,20.800000,52.000000,4.000000,3.000000,86.910000,88.930000,839.220000,3.360000,140.620000,16.840000 +2,2023-08-12 16:00:00,0.000000,20.800000,52.000000,4.000000,3.000000,86.930000,89.070000,839.650000,3.380000,140.800000,16.900000 +2,2023-08-12 17:00:00,0.000000,25.500000,33.000000,5.000000,29.000000,87.630000,89.330000,840.450000,3.920000,141.150000,18.900000 +2,2023-08-12 18:00:00,0.000000,25.500000,33.000000,5.000000,29.000000,88.220000,89.590000,841.250000,4.270000,141.500000,20.110000 +2,2023-08-12 19:00:00,0.000000,25.500000,33.000000,5.000000,29.000000,88.720000,89.850000,842.050000,4.590000,141.850000,21.200000 +2,2023-08-12 20:00:00,0.000000,25.500000,33.000000,5.000000,29.000000,89.150000,90.100000,842.850000,4.880000,142.200000,22.160000 +2,2023-08-12 21:00:00,0.000000,25.500000,33.000000,5.000000,29.000000,89.500000,90.100000,842.850000,5.130000,142.200000,22.980000 +2,2023-08-12 22:00:00,0.000000,25.500000,33.000000,5.000000,29.000000,89.800000,90.100000,842.850000,5.360000,142.200000,23.690000 +2,2023-08-12 23:00:00,0.000000,18.800000,53.000000,7.000000,168.000000,89.600000,90.100000,842.850000,5.760000,142.200000,24.920000 +2,2023-08-13 00:00:00,0.000000,18.800000,53.000000,7.000000,168.000000,89.430000,90.100000,842.850000,5.620000,142.200000,24.480000 +2,2023-08-13 01:00:00,0.000000,18.800000,53.000000,7.000000,168.000000,89.280000,90.100000,842.850000,5.490000,142.200000,24.110000 +2,2023-08-13 02:00:00,0.000000,18.800000,53.000000,7.000000,168.000000,89.140000,90.100000,842.850000,5.390000,142.200000,23.780000 +2,2023-08-13 03:00:00,0.000000,18.800000,53.000000,7.000000,168.000000,89.020000,90.100000,842.850000,5.300000,142.200000,23.500000 +2,2023-08-13 04:00:00,0.000000,18.800000,53.000000,7.000000,168.000000,88.920000,90.100000,842.850000,5.220000,142.200000,23.260000 +2,2023-08-13 05:00:00,0.000000,15.300000,66.000000,9.000000,203.000000,88.480000,90.180000,843.020000,5.420000,142.310000,23.880000 +2,2023-08-13 06:00:00,0.000000,15.300000,66.000000,9.000000,203.000000,88.090000,90.260000,843.200000,5.120000,142.410000,22.960000 +2,2023-08-13 07:00:00,0.000000,15.300000,66.000000,9.000000,203.000000,87.750000,90.340000,843.370000,4.880000,142.520000,22.190000 +2,2023-08-13 08:00:00,0.000000,15.300000,66.000000,9.000000,203.000000,87.450000,90.430000,843.540000,4.680000,142.630000,21.540000 +2,2023-08-13 09:00:00,0.000000,15.300000,66.000000,9.000000,203.000000,87.200000,90.510000,843.720000,4.510000,142.730000,20.990000 +2,2023-08-13 10:00:00,0.000000,15.300000,66.000000,9.000000,203.000000,86.970000,90.590000,843.890000,4.370000,142.840000,20.510000 +2,2023-08-13 11:00:00,0.000000,24.800000,35.000000,14.000000,223.000000,87.670000,90.860000,844.490000,6.210000,143.210000,26.320000 +2,2023-08-13 12:00:00,0.000000,24.800000,35.000000,14.000000,223.000000,88.250000,91.140000,845.080000,6.750000,143.570000,27.890000 +2,2023-08-13 13:00:00,0.000000,24.800000,35.000000,14.000000,223.000000,88.730000,91.420000,845.680000,7.230000,143.940000,29.240000 +2,2023-08-13 14:00:00,0.000000,24.800000,35.000000,14.000000,223.000000,89.120000,91.700000,846.270000,7.650000,144.300000,30.400000 +2,2023-08-13 15:00:00,0.000000,24.800000,35.000000,14.000000,223.000000,89.440000,91.970000,846.870000,8.010000,144.670000,31.380000 +2,2023-08-13 16:00:00,0.000000,24.800000,35.000000,14.000000,223.000000,89.710000,92.250000,847.470000,8.320000,145.030000,32.210000 +2,2023-08-13 17:00:00,0.000000,26.800000,31.000000,17.000000,234.000000,90.180000,92.580000,848.180000,10.350000,145.470000,37.270000 +2,2023-08-13 18:00:00,0.000000,26.800000,31.000000,17.000000,234.000000,90.560000,92.920000,848.890000,10.930000,145.910000,38.640000 +2,2023-08-13 19:00:00,0.000000,26.800000,31.000000,17.000000,234.000000,90.860000,93.250000,849.610000,11.410000,146.340000,39.780000 +2,2023-08-13 20:00:00,0.000000,26.800000,31.000000,17.000000,234.000000,91.100000,93.580000,850.320000,11.810000,146.780000,40.700000 +2,2023-08-13 21:00:00,0.000000,26.800000,31.000000,17.000000,234.000000,91.300000,93.580000,850.320000,12.140000,146.780000,41.420000 +2,2023-08-13 22:00:00,0.000000,26.800000,31.000000,17.000000,234.000000,91.450000,93.580000,850.320000,12.410000,146.780000,42.000000 +2,2023-08-13 23:00:00,0.000000,23.000000,42.000000,13.000000,216.000000,91.350000,93.580000,850.320000,10.010000,146.780000,36.540000 +2,2023-08-14 00:00:00,0.000000,23.000000,42.000000,13.000000,216.000000,91.270000,93.580000,850.320000,9.890000,146.780000,36.260000 +2,2023-08-14 01:00:00,0.000000,23.000000,42.000000,13.000000,216.000000,91.200000,93.580000,850.320000,9.790000,146.780000,36.030000 +2,2023-08-14 02:00:00,0.000000,23.000000,42.000000,13.000000,216.000000,91.140000,93.580000,850.320000,9.710000,146.780000,35.830000 +2,2023-08-14 03:00:00,0.000000,23.000000,42.000000,13.000000,216.000000,91.090000,93.580000,850.320000,9.640000,146.780000,35.660000 +2,2023-08-14 04:00:00,0.000000,23.000000,42.000000,13.000000,216.000000,91.050000,93.580000,850.320000,9.580000,146.780000,35.520000 +2,2023-08-14 05:00:00,0.000000,20.500000,41.000000,12.000000,269.000000,90.990000,93.750000,850.660000,9.030000,147.000000,34.160000 +2,2023-08-14 06:00:00,0.000000,20.500000,41.000000,12.000000,269.000000,90.930000,93.920000,851.010000,8.960000,147.220000,33.990000 +2,2023-08-14 07:00:00,0.000000,20.500000,41.000000,12.000000,269.000000,90.880000,94.090000,851.360000,8.890000,147.450000,33.850000 +2,2023-08-14 08:00:00,0.000000,20.500000,41.000000,12.000000,269.000000,90.840000,94.270000,851.710000,8.840000,147.670000,33.730000 +2,2023-08-14 09:00:00,0.000000,20.500000,41.000000,12.000000,269.000000,90.800000,94.440000,852.050000,8.790000,147.900000,33.620000 +2,2023-08-14 10:00:00,0.000000,20.500000,41.000000,12.000000,269.000000,90.770000,94.610000,852.400000,8.750000,148.120000,33.530000 +2,2023-08-14 11:00:00,0.000000,24.100000,30.000000,11.000000,310.000000,90.940000,94.870000,852.910000,8.540000,148.450000,33.000000 +2,2023-08-14 12:00:00,0.000000,24.100000,30.000000,11.000000,310.000000,91.090000,95.120000,853.420000,8.720000,148.780000,33.480000 +2,2023-08-14 13:00:00,0.000000,24.100000,30.000000,11.000000,310.000000,91.210000,95.370000,853.940000,8.870000,149.110000,33.890000 +2,2023-08-14 14:00:00,0.000000,24.100000,30.000000,11.000000,310.000000,91.310000,95.630000,854.450000,8.990000,149.440000,34.230000 +2,2023-08-14 15:00:00,0.000000,24.100000,30.000000,11.000000,310.000000,91.390000,95.880000,854.960000,9.100000,149.770000,34.520000 +2,2023-08-14 16:00:00,0.000000,24.100000,30.000000,11.000000,310.000000,91.460000,96.140000,855.470000,9.190000,150.100000,34.760000 +2,2023-08-14 17:00:00,0.000000,24.700000,28.000000,4.000000,344.000000,91.590000,96.410000,856.020000,6.580000,150.450000,27.780000 +2,2023-08-14 18:00:00,0.000000,24.700000,28.000000,4.000000,344.000000,91.700000,96.680000,856.570000,6.680000,150.800000,28.100000 +2,2023-08-14 19:00:00,0.000000,24.700000,28.000000,4.000000,344.000000,91.800000,96.950000,857.110000,6.770000,151.160000,28.370000 +2,2023-08-14 20:00:00,0.000000,24.700000,28.000000,4.000000,344.000000,91.870000,97.220000,857.660000,6.850000,151.510000,28.610000 +2,2023-08-14 21:00:00,0.000000,24.700000,28.000000,4.000000,344.000000,91.940000,97.220000,857.660000,6.910000,151.510000,28.790000 +2,2023-08-14 22:00:00,0.000000,24.700000,28.000000,4.000000,344.000000,92.000000,97.220000,857.660000,6.970000,151.510000,28.950000 +2,2023-08-14 23:00:00,0.000000,19.100000,42.000000,2.000000,101.000000,91.830000,97.220000,857.660000,6.150000,151.510000,26.580000 +2,2023-08-15 00:00:00,0.000000,19.100000,42.000000,2.000000,101.000000,91.670000,97.220000,857.660000,6.020000,151.510000,26.180000 +2,2023-08-15 01:00:00,0.000000,19.100000,42.000000,2.000000,101.000000,91.530000,97.220000,857.660000,5.900000,151.510000,25.820000 +2,2023-08-15 02:00:00,0.000000,19.100000,42.000000,2.000000,101.000000,91.400000,97.220000,857.660000,5.790000,151.510000,25.500000 +2,2023-08-15 03:00:00,0.000000,19.100000,42.000000,2.000000,101.000000,91.290000,97.220000,857.660000,5.700000,151.510000,25.210000 +2,2023-08-15 04:00:00,0.000000,19.100000,42.000000,2.000000,101.000000,91.180000,97.220000,857.660000,5.610000,151.510000,24.950000 +2,2023-08-15 05:00:00,0.000000,16.500000,46.000000,1.000000,302.000000,91.010000,97.310000,858.030000,5.200000,151.630000,23.660000 +2,2023-08-15 06:00:00,0.000000,16.500000,46.000000,1.000000,302.000000,90.840000,97.400000,858.390000,5.080000,151.750000,23.280000 +2,2023-08-15 07:00:00,0.000000,16.500000,46.000000,1.000000,302.000000,90.690000,97.490000,858.760000,4.970000,151.870000,22.940000 +2,2023-08-15 08:00:00,0.000000,16.500000,46.000000,1.000000,302.000000,90.550000,97.580000,859.120000,4.880000,151.990000,22.620000 +2,2023-08-15 09:00:00,0.000000,16.500000,46.000000,1.000000,302.000000,90.430000,97.660000,859.490000,4.790000,152.120000,22.340000 +2,2023-08-15 10:00:00,0.000000,16.500000,46.000000,1.000000,302.000000,90.310000,97.750000,859.860000,4.710000,152.240000,22.080000 +2,2023-08-15 11:00:00,0.000000,16.400000,60.000000,12.000000,17.000000,89.820000,97.820000,860.130000,7.640000,152.330000,30.860000 +2,2023-08-15 12:00:00,0.000000,16.400000,60.000000,12.000000,17.000000,89.390000,97.880000,860.400000,7.180000,152.420000,29.610000 +2,2023-08-15 13:00:00,0.000000,16.400000,60.000000,12.000000,17.000000,89.020000,97.950000,860.670000,6.810000,152.510000,28.570000 +2,2023-08-15 14:00:00,0.000000,16.400000,60.000000,12.000000,17.000000,88.700000,98.010000,860.930000,6.510000,152.600000,27.690000 +2,2023-08-15 15:00:00,0.000000,16.400000,60.000000,12.000000,17.000000,88.420000,98.080000,861.200000,6.250000,152.690000,26.950000 +2,2023-08-15 16:00:00,0.000000,16.400000,60.000000,12.000000,17.000000,88.180000,98.150000,861.470000,6.040000,152.780000,26.320000 +2,2023-08-15 17:00:00,0.000000,20.100000,37.000000,17.000000,309.000000,88.430000,98.280000,862.010000,8.050000,152.960000,32.000000 +2,2023-08-15 18:00:00,0.000000,20.100000,37.000000,17.000000,309.000000,88.630000,98.410000,862.540000,8.290000,153.130000,32.650000 +2,2023-08-15 19:00:00,0.000000,20.100000,37.000000,17.000000,309.000000,88.810000,98.540000,863.080000,8.500000,153.310000,33.210000 +2,2023-08-15 20:00:00,0.000000,20.100000,37.000000,17.000000,309.000000,88.950000,98.670000,863.620000,8.680000,153.490000,33.690000 +2,2023-08-15 21:00:00,0.000000,20.100000,37.000000,17.000000,309.000000,89.080000,98.670000,863.620000,8.840000,153.490000,34.080000 +2,2023-08-15 22:00:00,0.000000,20.100000,37.000000,17.000000,309.000000,89.180000,98.670000,863.620000,8.970000,153.490000,34.420000 +2,2023-08-15 23:00:00,0.000000,15.200000,56.000000,10.000000,276.000000,88.930000,98.670000,863.620000,6.080000,153.490000,26.470000 +2,2023-08-16 00:00:00,0.000000,15.200000,56.000000,10.000000,276.000000,88.710000,98.670000,863.620000,5.890000,153.490000,25.900000 +2,2023-08-16 01:00:00,0.000000,15.200000,56.000000,10.000000,276.000000,88.520000,98.670000,863.620000,5.730000,153.490000,25.410000 +2,2023-08-16 02:00:00,0.000000,15.200000,56.000000,10.000000,276.000000,88.350000,98.670000,863.620000,5.590000,153.490000,24.980000 +2,2023-08-16 03:00:00,0.000000,15.200000,56.000000,10.000000,276.000000,88.200000,98.670000,863.620000,5.470000,153.490000,24.600000 +2,2023-08-16 04:00:00,0.000000,15.200000,56.000000,10.000000,276.000000,88.060000,98.670000,863.620000,5.370000,153.490000,24.280000 +2,2023-08-16 05:00:00,0.000000,14.600000,58.000000,14.000000,288.000000,87.890000,98.760000,863.830000,6.400000,153.610000,27.440000 +2,2023-08-16 06:00:00,0.000000,14.600000,58.000000,14.000000,288.000000,87.730000,98.850000,864.050000,6.260000,153.730000,27.020000 +2,2023-08-16 07:00:00,0.000000,14.600000,58.000000,14.000000,288.000000,87.590000,98.940000,864.260000,6.140000,153.850000,26.670000 +2,2023-08-16 08:00:00,0.000000,14.600000,58.000000,14.000000,288.000000,87.470000,99.030000,864.480000,6.040000,153.970000,26.360000 +2,2023-08-16 09:00:00,0.000000,14.600000,58.000000,14.000000,288.000000,87.370000,99.120000,864.700000,5.950000,154.080000,26.100000 +2,2023-08-16 10:00:00,0.000000,14.600000,58.000000,14.000000,288.000000,87.280000,99.210000,864.910000,5.870000,154.200000,25.870000 +2,2023-08-16 11:00:00,0.000000,20.700000,37.000000,20.000000,309.000000,87.710000,99.410000,865.390000,8.440000,154.460000,33.120000 +2,2023-08-16 12:00:00,0.000000,20.700000,37.000000,20.000000,309.000000,88.060000,99.610000,865.860000,8.880000,154.720000,34.270000 +2,2023-08-16 13:00:00,0.000000,20.700000,37.000000,20.000000,309.000000,88.360000,99.810000,866.340000,9.270000,154.980000,35.260000 +2,2023-08-16 14:00:00,0.000000,20.700000,37.000000,20.000000,309.000000,88.600000,100.010000,866.810000,9.600000,155.250000,36.110000 +2,2023-08-16 15:00:00,0.000000,20.700000,37.000000,20.000000,309.000000,88.810000,100.210000,867.290000,9.890000,155.510000,36.830000 +2,2023-08-16 16:00:00,0.000000,20.700000,37.000000,20.000000,309.000000,88.980000,100.410000,867.770000,10.140000,155.770000,37.440000 +2,2023-08-16 17:00:00,0.000000,23.500000,28.000000,13.000000,327.000000,89.530000,100.690000,868.410000,7.710000,156.120000,31.250000 +2,2023-08-16 18:00:00,0.000000,23.500000,28.000000,13.000000,327.000000,89.980000,100.960000,869.060000,8.220000,156.470000,32.650000 +2,2023-08-16 19:00:00,0.000000,23.500000,28.000000,13.000000,327.000000,90.350000,101.230000,869.700000,8.680000,156.820000,33.860000 +2,2023-08-16 20:00:00,0.000000,23.500000,28.000000,13.000000,327.000000,90.660000,101.500000,870.350000,9.070000,157.180000,34.880000 +2,2023-08-16 21:00:00,0.000000,23.500000,28.000000,13.000000,327.000000,90.920000,101.500000,870.350000,9.410000,157.180000,35.730000 +2,2023-08-16 22:00:00,0.000000,23.500000,28.000000,13.000000,327.000000,91.130000,101.500000,870.350000,9.690000,157.180000,36.440000 +2,2023-08-16 23:00:00,0.000000,14.500000,54.000000,2.000000,141.000000,90.780000,101.500000,870.350000,5.300000,157.180000,24.210000 +2,2023-08-17 00:00:00,0.000000,14.500000,54.000000,2.000000,141.000000,90.470000,101.500000,870.350000,5.070000,157.180000,23.460000 +2,2023-08-17 01:00:00,0.000000,14.500000,54.000000,2.000000,141.000000,90.180000,101.500000,870.350000,4.860000,157.180000,22.790000 +2,2023-08-17 02:00:00,0.000000,14.500000,54.000000,2.000000,141.000000,89.920000,101.500000,870.350000,4.690000,157.180000,22.200000 +2,2023-08-17 03:00:00,0.000000,14.500000,54.000000,2.000000,141.000000,89.690000,101.500000,870.350000,4.530000,157.180000,21.670000 +2,2023-08-17 04:00:00,0.000000,14.500000,54.000000,2.000000,141.000000,89.470000,101.500000,870.350000,4.390000,157.180000,21.200000 +2,2023-08-17 05:00:00,0.000000,11.400000,69.000000,5.000000,136.000000,88.930000,101.500000,870.350000,4.730000,157.180000,22.340000 +2,2023-08-17 06:00:00,0.000000,11.400000,69.000000,5.000000,136.000000,88.450000,101.560000,870.470000,4.410000,157.250000,21.260000 +2,2023-08-17 07:00:00,0.000000,11.400000,69.000000,5.000000,136.000000,88.020000,101.610000,870.600000,4.150000,157.320000,20.340000 +2,2023-08-17 08:00:00,0.000000,11.400000,69.000000,5.000000,136.000000,87.630000,101.670000,870.720000,3.920000,157.390000,19.540000 +2,2023-08-17 09:00:00,0.000000,11.400000,69.000000,5.000000,136.000000,87.280000,101.730000,870.850000,3.730000,157.470000,18.850000 +2,2023-08-17 10:00:00,0.000000,11.400000,69.000000,5.000000,136.000000,86.970000,101.780000,870.970000,3.570000,157.540000,18.240000 +2,2023-08-17 11:00:00,0.000000,22.200000,35.000000,11.000000,126.000000,87.520000,102.020000,871.500000,5.220000,157.840000,24.000000 +2,2023-08-17 12:00:00,0.000000,22.200000,35.000000,11.000000,126.000000,87.980000,102.250000,872.020000,5.580000,158.140000,25.150000 +2,2023-08-17 13:00:00,0.000000,22.200000,35.000000,11.000000,126.000000,88.370000,102.480000,872.540000,5.900000,158.440000,26.160000 +2,2023-08-17 14:00:00,0.000000,22.200000,35.000000,11.000000,126.000000,88.700000,102.720000,873.070000,6.190000,158.740000,27.040000 +2,2023-08-17 15:00:00,0.000000,22.200000,35.000000,11.000000,126.000000,88.980000,102.950000,873.590000,6.440000,159.040000,27.810000 +2,2023-08-17 16:00:00,0.000000,22.200000,35.000000,11.000000,126.000000,89.220000,103.180000,874.110000,6.670000,159.340000,28.470000 +2,2023-08-17 17:00:00,0.000000,27.300000,26.000000,8.000000,135.000000,89.950000,103.540000,874.920000,6.360000,159.810000,27.590000 +2,2023-08-17 18:00:00,0.000000,27.300000,26.000000,8.000000,135.000000,90.540000,103.910000,875.730000,6.930000,160.270000,29.270000 +2,2023-08-17 19:00:00,0.000000,27.300000,26.000000,8.000000,135.000000,91.030000,104.270000,876.540000,7.430000,160.730000,30.700000 +2,2023-08-17 20:00:00,0.000000,27.300000,26.000000,8.000000,135.000000,91.430000,104.630000,877.350000,7.860000,161.200000,31.920000 +2,2023-08-17 21:00:00,0.000000,27.300000,26.000000,8.000000,135.000000,91.750000,104.630000,877.350000,8.230000,161.200000,32.910000 +2,2023-08-17 22:00:00,0.000000,27.300000,26.000000,8.000000,135.000000,92.020000,104.630000,877.350000,8.550000,161.200000,33.740000 +2,2023-08-17 23:00:00,0.000000,19.600000,46.000000,8.000000,136.000000,91.710000,104.630000,877.350000,8.180000,161.200000,32.790000 +2,2023-08-18 00:00:00,0.000000,19.600000,46.000000,8.000000,136.000000,91.440000,104.630000,877.350000,7.880000,161.200000,31.960000 +2,2023-08-18 01:00:00,0.000000,19.600000,46.000000,8.000000,136.000000,91.210000,104.630000,877.350000,7.620000,161.200000,31.250000 +2,2023-08-18 02:00:00,0.000000,19.600000,46.000000,8.000000,136.000000,91.000000,104.630000,877.350000,7.400000,161.200000,30.640000 +2,2023-08-18 03:00:00,0.000000,19.600000,46.000000,8.000000,136.000000,90.820000,104.630000,877.350000,7.210000,161.200000,30.110000 +2,2023-08-18 04:00:00,0.000000,19.600000,46.000000,8.000000,136.000000,90.660000,104.630000,877.350000,7.050000,161.200000,29.650000 +2,2023-08-18 05:00:00,0.000000,16.200000,71.000000,8.000000,223.000000,89.860000,104.630000,877.350000,6.280000,161.200000,27.420000 +2,2023-08-18 06:00:00,0.000000,16.200000,71.000000,8.000000,223.000000,89.170000,104.730000,877.570000,5.690000,161.330000,25.610000 +2,2023-08-18 07:00:00,0.000000,16.200000,71.000000,8.000000,223.000000,88.570000,104.840000,877.790000,5.220000,161.460000,24.130000 +2,2023-08-18 08:00:00,0.000000,16.200000,71.000000,8.000000,223.000000,88.050000,104.940000,878.020000,4.850000,161.590000,22.900000 +2,2023-08-18 09:00:00,0.000000,16.200000,71.000000,8.000000,223.000000,87.600000,105.040000,878.240000,4.550000,161.730000,21.880000 +2,2023-08-18 10:00:00,0.000000,16.200000,71.000000,8.000000,223.000000,87.210000,105.150000,878.460000,4.300000,161.860000,21.040000 +2,2023-08-18 11:00:00,0.000000,27.100000,37.000000,10.000000,255.000000,87.880000,105.590000,879.410000,5.230000,162.420000,24.180000 +2,2023-08-18 12:00:00,0.000000,27.100000,37.000000,10.000000,255.000000,88.420000,106.030000,880.350000,5.650000,162.980000,25.560000 +2,2023-08-18 13:00:00,0.000000,27.100000,37.000000,10.000000,255.000000,88.870000,106.470000,881.300000,6.030000,163.540000,26.750000 +2,2023-08-18 14:00:00,0.000000,27.100000,37.000000,10.000000,255.000000,89.240000,106.910000,882.240000,6.360000,164.100000,27.760000 +2,2023-08-18 15:00:00,0.000000,27.100000,37.000000,10.000000,255.000000,89.540000,107.350000,883.190000,6.640000,164.660000,28.610000 +2,2023-08-18 16:00:00,0.000000,27.100000,37.000000,10.000000,255.000000,89.790000,107.780000,884.130000,6.880000,165.220000,29.340000 +2,2023-08-18 17:00:00,0.000000,28.600000,33.000000,10.000000,327.000000,90.210000,108.300000,885.230000,7.300000,165.860000,30.580000 +3,2023-08-03 00:00:00,0.000000,16.000000,63.000000,6.000000,65.000000,86.000000,118.400000,826.100000,3.270000,174.330000,17.540000 +3,2023-08-03 01:00:00,0.000000,16.000000,63.000000,6.000000,65.000000,86.000000,118.400000,826.100000,3.270000,174.330000,17.540000 +3,2023-08-03 02:00:00,0.000000,13.300000,71.000000,2.000000,99.000000,85.820000,118.400000,826.100000,2.610000,174.330000,14.780000 +3,2023-08-03 03:00:00,0.000000,13.300000,71.000000,2.000000,99.000000,85.660000,118.400000,826.100000,2.550000,174.330000,14.520000 +3,2023-08-03 04:00:00,0.000000,13.300000,71.000000,2.000000,99.000000,85.510000,118.400000,826.100000,2.500000,174.330000,14.300000 +3,2023-08-03 05:00:00,0.000000,11.800000,75.000000,2.000000,270.000000,85.280000,118.450000,826.220000,2.420000,174.390000,13.950000 +3,2023-08-03 06:00:00,0.000000,11.800000,75.000000,2.000000,270.000000,85.080000,118.490000,826.330000,2.350000,174.450000,13.650000 +3,2023-08-03 07:00:00,0.000000,11.800000,75.000000,2.000000,270.000000,84.890000,118.540000,826.450000,2.290000,174.510000,13.380000 +3,2023-08-03 08:00:00,0.000000,16.800000,56.000000,1.000000,351.000000,84.960000,118.660000,826.740000,2.200000,174.650000,12.960000 +3,2023-08-03 09:00:00,0.000000,16.800000,56.000000,1.000000,351.000000,85.030000,118.770000,827.020000,2.220000,174.790000,13.060000 +3,2023-08-03 10:00:00,0.000000,16.800000,56.000000,1.000000,351.000000,85.090000,118.890000,827.310000,2.240000,174.930000,13.150000 +3,2023-08-03 11:00:00,0.000000,21.700000,41.000000,5.000000,55.000000,85.630000,119.090000,827.830000,2.960000,175.180000,16.270000 +3,2023-08-03 12:00:00,0.000000,21.700000,41.000000,5.000000,55.000000,86.100000,119.300000,828.340000,3.160000,175.440000,17.100000 +3,2023-08-03 13:00:00,0.000000,21.700000,41.000000,5.000000,55.000000,86.510000,119.510000,828.860000,3.350000,175.690000,17.860000 +3,2023-08-03 14:00:00,0.000000,23.000000,41.000000,7.000000,50.000000,86.940000,119.740000,829.420000,3.930000,175.970000,20.100000 +3,2023-08-03 15:00:00,0.000000,23.000000,41.000000,7.000000,50.000000,87.300000,119.960000,829.990000,4.140000,176.240000,20.870000 +3,2023-08-03 16:00:00,0.000000,23.000000,41.000000,7.000000,50.000000,87.610000,120.190000,830.550000,4.330000,176.520000,21.550000 +3,2023-08-03 17:00:00,0.000000,22.900000,41.000000,7.000000,60.000000,87.880000,120.410000,831.110000,4.490000,176.790000,22.150000 +3,2023-08-03 18:00:00,0.000000,22.900000,41.000000,7.000000,60.000000,88.100000,120.640000,831.660000,4.640000,177.060000,22.670000 +3,2023-08-03 19:00:00,0.000000,22.900000,41.000000,7.000000,60.000000,88.300000,120.860000,832.220000,4.770000,177.340000,23.130000 +3,2023-08-03 20:00:00,0.000000,20.600000,52.000000,8.000000,271.000000,88.300000,121.020000,832.620000,5.020000,177.530000,23.970000 +3,2023-08-03 21:00:00,0.000000,20.600000,52.000000,8.000000,271.000000,88.300000,121.180000,833.010000,5.020000,177.720000,23.980000 +3,2023-08-03 22:00:00,0.000000,20.600000,52.000000,8.000000,271.000000,88.300000,121.180000,833.010000,5.020000,177.720000,23.980000 +3,2023-08-03 23:00:00,0.000000,16.500000,76.000000,5.000000,266.000000,87.710000,121.180000,833.010000,3.970000,177.720000,20.270000 +3,2023-08-04 00:00:00,0.000000,16.500000,76.000000,5.000000,266.000000,87.190000,121.180000,833.010000,3.680000,177.720000,19.220000 +3,2023-08-04 01:00:00,0.000000,16.500000,76.000000,5.000000,266.000000,86.750000,121.180000,833.010000,3.460000,177.720000,18.340000 +3,2023-08-04 02:00:00,0.000000,14.600000,90.000000,5.000000,257.000000,85.780000,121.180000,833.010000,3.020000,177.720000,16.580000 +3,2023-08-04 03:00:00,0.000000,14.600000,90.000000,5.000000,257.000000,84.950000,121.180000,833.010000,2.690000,177.720000,15.190000 +3,2023-08-04 04:00:00,0.000000,14.600000,90.000000,5.000000,257.000000,84.220000,121.180000,833.010000,2.440000,177.720000,14.080000 +3,2023-08-04 05:00:00,0.000000,13.900000,93.000000,5.000000,241.000000,83.410000,121.190000,833.040000,2.190000,177.740000,12.950000 +3,2023-08-04 06:00:00,0.000000,13.900000,93.000000,5.000000,241.000000,82.700000,121.200000,833.080000,2.000000,177.750000,12.040000 +3,2023-08-04 07:00:00,0.000000,13.900000,93.000000,5.000000,241.000000,82.090000,121.220000,833.110000,1.850000,177.770000,11.320000 +3,2023-08-04 08:00:00,0.000000,18.300000,69.000000,5.000000,260.000000,82.230000,121.290000,833.310000,1.880000,177.860000,11.490000 +3,2023-08-04 09:00:00,0.000000,18.300000,69.000000,5.000000,260.000000,82.360000,121.370000,833.510000,1.910000,177.950000,11.640000 +3,2023-08-04 10:00:00,0.000000,18.300000,69.000000,5.000000,260.000000,82.480000,121.440000,833.710000,1.940000,178.050000,11.780000 +3,2023-08-04 11:00:00,0.000000,23.600000,46.000000,7.000000,292.000000,83.340000,121.620000,834.190000,2.400000,178.270000,13.920000 +3,2023-08-04 12:00:00,0.000000,23.600000,46.000000,7.000000,292.000000,84.080000,121.810000,834.670000,2.640000,178.490000,15.010000 +3,2023-08-04 13:00:00,0.000000,23.600000,46.000000,7.000000,292.000000,84.720000,121.990000,835.150000,2.880000,178.720000,16.040000 +3,2023-08-04 14:00:00,0.000000,25.500000,35.000000,12.000000,328.000000,85.830000,122.230000,835.790000,4.320000,179.020000,21.600000 +3,2023-08-04 15:00:00,0.000000,25.500000,35.000000,12.000000,328.000000,86.740000,122.480000,836.440000,4.920000,179.320000,23.680000 +3,2023-08-04 16:00:00,0.000000,25.500000,35.000000,12.000000,328.000000,87.500000,122.730000,837.090000,5.480000,179.620000,25.540000 +3,2023-08-04 17:00:00,0.000000,25.600000,32.000000,13.000000,324.000000,88.260000,122.980000,837.770000,6.430000,179.930000,28.500000 +3,2023-08-04 18:00:00,0.000000,25.600000,32.000000,13.000000,324.000000,88.880000,123.240000,838.450000,7.020000,180.250000,30.290000 +3,2023-08-04 19:00:00,0.000000,25.600000,32.000000,13.000000,324.000000,89.390000,123.500000,839.130000,7.560000,180.570000,31.830000 +3,2023-08-04 20:00:00,0.000000,23.500000,36.000000,11.000000,318.000000,89.570000,123.720000,839.700000,7.010000,180.830000,30.270000 +3,2023-08-04 21:00:00,0.000000,23.500000,36.000000,11.000000,318.000000,89.720000,123.930000,840.260000,7.170000,181.090000,30.730000 +3,2023-08-04 22:00:00,0.000000,23.500000,36.000000,11.000000,318.000000,89.850000,123.930000,840.260000,7.300000,181.090000,31.100000 +3,2023-08-04 23:00:00,0.000000,19.200000,53.000000,10.000000,317.000000,89.630000,123.930000,840.260000,6.730000,181.090000,29.450000 +3,2023-08-05 00:00:00,0.000000,19.200000,53.000000,10.000000,317.000000,89.450000,123.930000,840.260000,6.550000,181.090000,28.920000 +3,2023-08-05 01:00:00,0.000000,19.200000,53.000000,10.000000,317.000000,89.290000,123.930000,840.260000,6.400000,181.090000,28.470000 +3,2023-08-05 02:00:00,0.000000,17.500000,71.000000,9.000000,294.000000,88.660000,123.930000,840.260000,5.570000,181.090000,25.860000 +3,2023-08-05 03:00:00,0.000000,17.500000,71.000000,9.000000,294.000000,88.130000,123.930000,840.260000,5.150000,181.090000,24.510000 +3,2023-08-05 04:00:00,0.000000,17.500000,71.000000,9.000000,294.000000,87.670000,123.930000,840.260000,4.830000,181.090000,23.400000 +3,2023-08-05 05:00:00,0.000000,16.900000,78.000000,11.000000,295.000000,87.030000,123.990000,840.390000,4.870000,181.150000,23.550000 +3,2023-08-05 06:00:00,0.000000,16.900000,78.000000,11.000000,295.000000,86.480000,124.040000,840.510000,4.500000,181.220000,22.290000 +3,2023-08-05 07:00:00,0.000000,16.900000,78.000000,11.000000,295.000000,86.010000,124.100000,840.640000,4.220000,181.290000,21.270000 +3,2023-08-05 08:00:00,0.000000,19.200000,59.000000,13.000000,322.000000,86.010000,124.210000,840.910000,4.660000,181.430000,22.860000 +3,2023-08-05 09:00:00,0.000000,19.200000,59.000000,13.000000,322.000000,86.010000,124.330000,841.180000,4.660000,181.570000,22.860000 +3,2023-08-05 10:00:00,0.000000,19.200000,59.000000,13.000000,322.000000,86.010000,124.450000,841.450000,4.660000,181.710000,22.860000 +3,2023-08-05 11:00:00,0.000000,22.600000,37.000000,13.000000,343.000000,86.680000,124.670000,841.970000,5.130000,181.980000,24.440000 +3,2023-08-05 12:00:00,0.000000,22.600000,37.000000,13.000000,343.000000,87.240000,124.900000,842.480000,5.550000,182.250000,25.850000 +3,2023-08-05 13:00:00,0.000000,22.600000,37.000000,13.000000,343.000000,87.710000,125.120000,842.990000,5.940000,182.520000,27.090000 +3,2023-08-05 14:00:00,0.000000,24.000000,34.000000,14.000000,356.000000,88.280000,125.380000,843.580000,6.780000,182.820000,29.650000 +3,2023-08-05 15:00:00,0.000000,24.000000,34.000000,14.000000,356.000000,88.760000,125.630000,844.160000,7.260000,183.130000,31.050000 +3,2023-08-05 16:00:00,0.000000,24.000000,34.000000,14.000000,356.000000,89.150000,125.890000,844.750000,7.670000,183.430000,32.240000 +3,2023-08-05 17:00:00,0.000000,23.500000,35.000000,12.000000,15.000000,89.400000,126.130000,845.310000,7.200000,183.730000,30.900000 +3,2023-08-05 18:00:00,0.000000,23.500000,35.000000,12.000000,15.000000,89.620000,126.370000,845.870000,7.430000,184.020000,31.560000 +3,2023-08-05 19:00:00,0.000000,23.500000,35.000000,12.000000,15.000000,89.800000,126.620000,846.430000,7.620000,184.310000,32.110000 +3,2023-08-05 20:00:00,0.000000,21.600000,41.000000,8.000000,49.000000,89.800000,126.820000,846.880000,6.230000,184.550000,28.030000 +3,2023-08-05 21:00:00,0.000000,21.600000,41.000000,8.000000,49.000000,89.800000,127.010000,847.330000,6.230000,184.780000,28.030000 +3,2023-08-05 22:00:00,0.000000,21.600000,41.000000,8.000000,49.000000,89.800000,127.010000,847.330000,6.230000,184.780000,28.030000 +3,2023-08-05 23:00:00,0.000000,19.000000,50.000000,2.000000,92.000000,89.690000,127.010000,847.330000,4.530000,184.780000,22.470000 +3,2023-08-06 00:00:00,0.000000,19.000000,50.000000,2.000000,92.000000,89.590000,127.010000,847.330000,4.470000,184.780000,22.250000 +3,2023-08-06 01:00:00,0.000000,19.000000,50.000000,2.000000,92.000000,89.510000,127.010000,847.330000,4.410000,184.780000,22.050000 +3,2023-08-06 02:00:00,0.030000,17.400000,61.000000,6.000000,239.000000,88.990000,127.010000,847.330000,5.020000,184.780000,24.130000 +3,2023-08-06 03:00:00,0.000000,17.400000,61.000000,6.000000,239.000000,88.700000,127.010000,847.330000,4.810000,184.780000,23.430000 +3,2023-08-06 04:00:00,0.000000,17.400000,61.000000,6.000000,239.000000,88.440000,127.010000,847.330000,4.640000,184.780000,22.830000 +3,2023-08-06 05:00:00,0.000000,16.200000,75.000000,6.000000,274.000000,87.850000,127.080000,847.560000,4.260000,184.870000,21.490000 +3,2023-08-06 06:00:00,0.000000,16.200000,75.000000,6.000000,274.000000,87.330000,127.160000,847.790000,3.950000,184.960000,20.380000 +3,2023-08-06 07:00:00,0.000000,16.200000,75.000000,6.000000,274.000000,86.880000,127.230000,848.020000,3.710000,185.050000,19.460000 +3,2023-08-06 08:00:00,0.000000,17.500000,67.000000,9.000000,340.000000,86.710000,127.330000,848.350000,4.210000,185.170000,21.320000 +3,2023-08-06 09:00:00,0.000000,17.500000,67.000000,9.000000,340.000000,86.550000,127.430000,848.680000,4.120000,185.300000,20.990000 +3,2023-08-06 10:00:00,0.000000,17.500000,67.000000,9.000000,340.000000,86.420000,127.530000,849.010000,4.040000,185.430000,20.710000 +3,2023-08-06 11:00:00,0.000000,19.800000,53.000000,14.000000,345.000000,86.470000,127.700000,849.550000,5.240000,185.640000,24.890000 +3,2023-08-06 12:00:00,0.000000,19.800000,53.000000,14.000000,345.000000,86.520000,127.870000,850.100000,5.270000,185.850000,25.010000 +3,2023-08-06 13:00:00,0.000000,19.800000,53.000000,14.000000,345.000000,86.560000,128.030000,850.640000,5.300000,186.060000,25.110000 +3,2023-08-06 14:00:00,0.520000,16.700000,67.000000,20.000000,37.000000,83.640000,128.130000,850.950000,4.800000,186.180000,23.430000 +3,2023-08-06 15:00:00,0.000000,16.700000,67.000000,20.000000,37.000000,83.670000,128.230000,851.260000,4.820000,186.300000,23.500000 +3,2023-08-06 16:00:00,0.000000,16.700000,67.000000,20.000000,37.000000,83.690000,128.320000,851.580000,4.840000,186.420000,23.560000 +3,2023-08-06 17:00:00,0.100000,16.800000,50.000000,13.000000,40.000000,83.590000,128.470000,852.060000,3.350000,186.600000,18.100000 +3,2023-08-06 18:00:00,0.000000,16.800000,50.000000,13.000000,40.000000,83.990000,128.620000,852.530000,3.530000,186.790000,18.820000 +3,2023-08-06 19:00:00,0.000000,16.800000,50.000000,13.000000,40.000000,84.340000,128.770000,853.010000,3.700000,186.970000,19.480000 +3,2023-08-06 20:00:00,0.000000,15.400000,49.000000,9.000000,29.000000,84.610000,128.900000,853.460000,3.140000,187.140000,17.250000 +3,2023-08-06 21:00:00,0.000000,15.400000,49.000000,9.000000,29.000000,84.850000,129.040000,853.900000,3.240000,187.310000,17.670000 +3,2023-08-06 22:00:00,0.000000,15.400000,49.000000,9.000000,29.000000,85.060000,129.040000,853.900000,3.340000,187.310000,18.060000 +3,2023-08-06 23:00:00,0.000000,11.500000,65.000000,5.000000,279.000000,85.050000,129.040000,853.900000,2.730000,187.310000,15.510000 +3,2023-08-07 00:00:00,0.000000,11.500000,65.000000,5.000000,279.000000,85.040000,129.040000,853.900000,2.720000,187.310000,15.500000 +3,2023-08-07 01:00:00,0.000000,11.500000,65.000000,5.000000,279.000000,85.030000,129.040000,853.900000,2.720000,187.310000,15.480000 +3,2023-08-07 02:00:00,0.000000,11.000000,69.000000,8.000000,282.000000,84.940000,129.040000,853.900000,3.120000,187.310000,17.190000 +3,2023-08-07 03:00:00,0.000000,11.000000,69.000000,8.000000,282.000000,84.860000,129.040000,853.900000,3.090000,187.310000,17.040000 +3,2023-08-07 04:00:00,0.000000,11.000000,69.000000,8.000000,282.000000,84.780000,129.040000,853.900000,3.060000,187.310000,16.920000 +3,2023-08-07 05:00:00,0.000000,10.100000,79.000000,7.000000,293.000000,84.480000,129.080000,854.010000,2.790000,187.360000,15.790000 +3,2023-08-07 06:00:00,0.000000,10.100000,79.000000,7.000000,293.000000,84.220000,129.110000,854.130000,2.690000,187.410000,15.370000 +3,2023-08-07 07:00:00,0.000000,10.100000,79.000000,7.000000,293.000000,83.980000,129.150000,854.240000,2.610000,187.450000,15.000000 +3,2023-08-07 08:00:00,0.000000,14.500000,63.000000,7.000000,302.000000,84.000000,129.240000,854.500000,2.620000,187.560000,15.040000 +3,2023-08-07 09:00:00,0.000000,14.500000,63.000000,7.000000,302.000000,84.020000,129.330000,854.760000,2.620000,187.670000,15.070000 +3,2023-08-07 10:00:00,0.000000,14.500000,63.000000,7.000000,302.000000,84.040000,129.410000,855.030000,2.630000,187.770000,15.100000 +3,2023-08-07 11:00:00,0.000000,17.500000,47.000000,4.000000,18.000000,84.400000,129.560000,855.480000,2.370000,187.960000,13.950000 +3,2023-08-07 12:00:00,0.000000,17.500000,47.000000,4.000000,18.000000,84.720000,129.710000,855.940000,2.480000,188.150000,14.430000 +3,2023-08-07 13:00:00,0.000000,17.500000,47.000000,4.000000,18.000000,85.010000,129.860000,856.390000,2.580000,188.330000,14.870000 +3,2023-08-07 14:00:00,0.030000,18.400000,46.000000,5.000000,16.000000,85.320000,130.030000,856.880000,2.830000,188.530000,15.980000 +3,2023-08-07 15:00:00,0.000000,18.400000,46.000000,5.000000,16.000000,85.600000,130.190000,857.380000,2.940000,188.730000,16.450000 +3,2023-08-07 16:00:00,0.000000,18.400000,46.000000,5.000000,16.000000,85.850000,130.350000,857.870000,3.050000,188.930000,16.890000 +3,2023-08-07 17:00:00,0.000000,18.100000,48.000000,9.000000,47.000000,86.030000,130.510000,858.330000,3.830000,189.120000,19.980000 +3,2023-08-07 18:00:00,0.000000,18.100000,48.000000,9.000000,47.000000,86.200000,130.660000,858.800000,3.920000,189.310000,20.320000 +3,2023-08-07 19:00:00,0.000000,18.100000,48.000000,9.000000,47.000000,86.340000,130.810000,859.260000,4.000000,189.500000,20.630000 +3,2023-08-07 20:00:00,0.000000,16.900000,52.000000,10.000000,72.000000,86.360000,130.940000,859.660000,4.210000,189.660000,21.430000 +3,2023-08-07 21:00:00,0.000000,16.900000,52.000000,10.000000,72.000000,86.380000,131.080000,860.060000,4.220000,189.830000,21.470000 +3,2023-08-07 22:00:00,0.000000,16.900000,52.000000,10.000000,72.000000,86.390000,131.080000,860.060000,4.230000,189.830000,21.500000 +3,2023-08-07 23:00:00,0.000000,12.500000,67.000000,6.000000,67.000000,86.220000,131.080000,860.060000,3.380000,189.830000,18.250000 +3,2023-08-08 00:00:00,0.000000,12.500000,67.000000,6.000000,67.000000,86.070000,131.080000,860.060000,3.300000,189.830000,17.950000 +3,2023-08-08 01:00:00,0.000000,12.500000,67.000000,6.000000,67.000000,85.930000,131.080000,860.060000,3.240000,189.830000,17.700000 +3,2023-08-08 02:00:00,0.000000,9.700000,73.000000,4.000000,86.000000,85.670000,131.080000,860.060000,2.830000,189.830000,15.970000 +3,2023-08-08 03:00:00,0.000000,9.700000,73.000000,4.000000,86.000000,85.440000,131.080000,860.060000,2.740000,189.830000,15.590000 +3,2023-08-08 04:00:00,0.000000,9.700000,73.000000,4.000000,86.000000,85.220000,131.080000,860.060000,2.660000,189.830000,15.240000 +3,2023-08-08 05:00:00,0.000000,7.900000,79.000000,2.000000,118.000000,84.920000,131.110000,860.130000,2.300000,189.860000,13.650000 +3,2023-08-08 06:00:00,0.000000,7.900000,79.000000,2.000000,118.000000,84.640000,131.140000,860.210000,2.220000,189.900000,13.250000 +3,2023-08-08 07:00:00,0.000000,7.900000,79.000000,2.000000,118.000000,84.380000,131.170000,860.290000,2.140000,189.940000,12.890000 +3,2023-08-08 08:00:00,0.000000,13.300000,55.000000,3.000000,118.000000,84.470000,131.260000,860.530000,2.280000,190.050000,13.530000 +3,2023-08-08 09:00:00,0.000000,13.300000,55.000000,3.000000,118.000000,84.540000,131.360000,860.780000,2.300000,190.170000,13.640000 +3,2023-08-08 10:00:00,0.000000,13.300000,55.000000,3.000000,118.000000,84.610000,131.450000,861.020000,2.320000,190.280000,13.750000 +3,2023-08-08 11:00:00,0.000000,18.800000,39.000000,6.000000,62.000000,85.170000,131.640000,861.480000,2.910000,190.500000,16.360000 +3,2023-08-08 12:00:00,0.000000,18.800000,39.000000,6.000000,62.000000,85.650000,131.820000,861.950000,3.120000,190.720000,17.210000 +3,2023-08-08 13:00:00,0.000000,18.800000,39.000000,6.000000,62.000000,86.080000,132.000000,862.410000,3.310000,190.940000,18.000000 +3,2023-08-08 14:00:00,0.000000,21.000000,35.000000,12.000000,47.000000,86.720000,132.220000,862.980000,4.900000,191.210000,23.880000 +3,2023-08-08 15:00:00,0.000000,21.000000,35.000000,12.000000,47.000000,87.260000,132.450000,863.550000,5.300000,191.480000,25.210000 +3,2023-08-08 16:00:00,0.000000,21.000000,35.000000,12.000000,47.000000,87.720000,132.670000,864.120000,5.660000,191.740000,26.400000 +3,2023-08-08 17:00:00,0.000000,21.000000,39.000000,14.000000,51.000000,88.000000,132.880000,864.650000,6.510000,192.000000,29.070000 +3,2023-08-08 18:00:00,0.000000,21.000000,39.000000,14.000000,51.000000,88.230000,133.090000,865.190000,6.730000,192.250000,29.740000 +3,2023-08-08 19:00:00,0.000000,21.000000,39.000000,14.000000,51.000000,88.430000,133.300000,865.720000,6.920000,192.500000,30.320000 +3,2023-08-08 20:00:00,0.000000,18.600000,52.000000,11.000000,62.000000,88.410000,133.440000,866.080000,5.940000,192.670000,27.320000 +3,2023-08-08 21:00:00,0.000000,18.600000,52.000000,11.000000,62.000000,88.400000,133.580000,866.440000,5.930000,192.840000,27.290000 +3,2023-08-08 22:00:00,0.000000,18.600000,52.000000,11.000000,62.000000,88.390000,133.580000,866.440000,5.920000,192.840000,27.260000 +3,2023-08-08 23:00:00,0.000000,13.200000,84.000000,6.000000,61.000000,87.500000,133.580000,866.440000,4.050000,192.840000,20.880000 +3,2023-08-09 00:00:00,0.000000,13.200000,84.000000,6.000000,61.000000,86.730000,133.580000,866.440000,3.630000,192.840000,19.280000 +3,2023-08-09 01:00:00,0.000000,13.200000,84.000000,6.000000,61.000000,86.050000,133.580000,866.440000,3.300000,192.840000,17.970000 +3,2023-08-09 02:00:00,0.000000,10.900000,99.000000,5.000000,75.000000,84.570000,133.580000,866.440000,2.550000,192.840000,14.820000 +3,2023-08-09 03:00:00,0.000000,10.900000,99.000000,5.000000,75.000000,83.270000,133.580000,866.440000,2.150000,192.840000,12.960000 +3,2023-08-09 04:00:00,0.000000,10.900000,99.000000,5.000000,75.000000,82.130000,133.580000,866.440000,1.860000,192.840000,11.560000 +3,2023-08-09 05:00:00,0.010000,10.900000,99.000000,5.000000,107.000000,81.130000,133.580000,866.450000,1.650000,192.840000,10.490000 +3,2023-08-09 06:00:00,0.000000,10.900000,99.000000,5.000000,107.000000,80.250000,133.590000,866.450000,1.500000,192.840000,9.680000 +3,2023-08-09 07:00:00,0.000000,10.900000,99.000000,5.000000,107.000000,79.480000,133.590000,866.460000,1.390000,192.840000,9.040000 +3,2023-08-09 08:00:00,0.000000,15.100000,69.000000,8.000000,123.000000,79.790000,133.650000,866.620000,1.660000,192.920000,10.550000 +3,2023-08-09 09:00:00,0.000000,15.100000,69.000000,8.000000,123.000000,80.080000,133.720000,866.780000,1.710000,193.000000,10.810000 +3,2023-08-09 10:00:00,0.000000,15.100000,69.000000,8.000000,123.000000,80.350000,133.780000,866.940000,1.760000,193.080000,11.070000 +3,2023-08-09 11:00:00,0.000000,21.300000,40.000000,12.000000,115.000000,81.660000,133.970000,867.410000,2.500000,193.300000,14.610000 +3,2023-08-09 12:00:00,0.000000,21.300000,40.000000,12.000000,115.000000,82.790000,134.160000,867.870000,2.880000,193.530000,16.240000 +3,2023-08-09 13:00:00,0.000000,21.300000,40.000000,12.000000,115.000000,83.760000,134.350000,868.330000,3.260000,193.750000,17.840000 +3,2023-08-09 14:00:00,0.000000,24.400000,31.000000,11.000000,115.000000,85.090000,134.610000,868.970000,3.710000,194.060000,19.610000 +3,2023-08-09 15:00:00,0.000000,24.400000,31.000000,11.000000,115.000000,86.200000,134.870000,869.620000,4.330000,194.380000,21.930000 +3,2023-08-09 16:00:00,0.000000,24.400000,31.000000,11.000000,115.000000,87.130000,135.130000,870.260000,4.940000,194.690000,24.070000 +3,2023-08-09 17:00:00,0.000000,24.700000,31.000000,13.000000,119.000000,87.940000,135.400000,870.910000,6.140000,195.000000,27.990000 +3,2023-08-09 18:00:00,0.000000,24.700000,31.000000,13.000000,119.000000,88.610000,135.660000,871.570000,6.760000,195.320000,29.890000 +3,2023-08-09 19:00:00,0.000000,24.700000,31.000000,13.000000,119.000000,89.160000,135.930000,872.220000,7.320000,195.630000,31.540000 +3,2023-08-09 20:00:00,0.000000,22.700000,37.000000,7.000000,120.000000,89.310000,136.140000,872.750000,5.520000,195.890000,26.050000 +3,2023-08-09 21:00:00,0.000000,22.700000,37.000000,7.000000,120.000000,89.440000,136.360000,873.280000,5.620000,196.150000,26.380000 +3,2023-08-09 22:00:00,0.000000,22.700000,37.000000,7.000000,120.000000,89.540000,136.360000,873.280000,5.710000,196.150000,26.660000 +3,2023-08-09 23:00:00,0.000000,18.000000,50.000000,7.000000,147.000000,89.430000,136.360000,873.280000,5.620000,196.150000,26.360000 +3,2023-08-10 00:00:00,0.000000,18.000000,50.000000,7.000000,147.000000,89.330000,136.360000,873.280000,5.530000,196.150000,26.090000 +3,2023-08-10 01:00:00,0.000000,18.000000,50.000000,7.000000,147.000000,89.240000,136.360000,873.280000,5.460000,196.150000,25.860000 +3,2023-08-10 02:00:00,0.000000,14.600000,63.000000,7.000000,171.000000,88.840000,136.360000,873.280000,5.160000,196.150000,24.850000 +3,2023-08-10 03:00:00,0.000000,14.600000,63.000000,7.000000,171.000000,88.490000,136.360000,873.280000,4.910000,196.150000,23.990000 +3,2023-08-10 04:00:00,0.000000,14.600000,63.000000,7.000000,171.000000,88.180000,136.360000,873.280000,4.690000,196.150000,23.250000 +3,2023-08-10 05:00:00,0.000000,12.500000,78.000000,8.000000,177.000000,87.510000,136.400000,873.390000,4.480000,196.200000,22.510000 +3,2023-08-10 06:00:00,0.000000,12.500000,78.000000,8.000000,177.000000,86.920000,136.440000,873.490000,4.120000,196.240000,21.200000 +3,2023-08-10 07:00:00,0.000000,12.500000,78.000000,8.000000,177.000000,86.400000,136.480000,873.590000,3.830000,196.290000,20.110000 +3,2023-08-10 08:00:00,0.000000,17.400000,61.000000,11.000000,169.000000,86.400000,136.580000,873.840000,4.450000,196.410000,22.410000 +3,2023-08-10 09:00:00,0.000000,17.400000,61.000000,11.000000,169.000000,86.400000,136.680000,874.090000,4.450000,196.530000,22.410000 +3,2023-08-10 10:00:00,0.000000,17.400000,61.000000,11.000000,169.000000,86.400000,136.780000,874.340000,4.450000,196.650000,22.410000 +3,2023-08-10 11:00:00,0.000000,23.100000,43.000000,15.000000,169.000000,86.840000,136.990000,874.860000,5.800000,196.900000,26.970000 +3,2023-08-10 12:00:00,0.000000,23.100000,43.000000,15.000000,169.000000,87.220000,137.190000,875.380000,6.120000,197.140000,27.980000 +3,2023-08-10 13:00:00,0.000000,23.100000,43.000000,15.000000,169.000000,87.530000,137.400000,875.900000,6.400000,197.390000,28.850000 +3,2023-08-10 14:00:00,0.000000,24.900000,37.000000,15.000000,188.000000,88.070000,137.650000,876.550000,6.920000,197.690000,30.420000 +3,2023-08-10 15:00:00,0.000000,24.900000,37.000000,15.000000,188.000000,88.520000,137.910000,877.190000,7.370000,198.000000,31.760000 +3,2023-08-10 16:00:00,0.000000,24.900000,37.000000,15.000000,188.000000,88.880000,138.160000,877.830000,7.770000,198.300000,32.900000 +3,2023-08-10 17:00:00,0.000000,25.500000,38.000000,17.000000,195.000000,89.180000,138.420000,878.480000,8.970000,198.610000,36.170000 +3,2023-08-10 18:00:00,0.000000,25.500000,38.000000,17.000000,195.000000,89.420000,138.680000,879.140000,9.280000,198.920000,37.000000 +3,2023-08-10 19:00:00,0.000000,25.500000,38.000000,17.000000,195.000000,89.610000,138.940000,879.790000,9.540000,199.230000,37.690000 +3,2023-08-10 20:00:00,0.000000,25.500000,38.000000,17.000000,195.000000,89.770000,139.200000,880.440000,9.760000,199.540000,38.260000 +3,2023-08-10 21:00:00,0.000000,25.500000,38.000000,17.000000,195.000000,89.900000,139.200000,880.440000,9.940000,199.540000,38.710000 +3,2023-08-10 22:00:00,0.000000,25.500000,38.000000,17.000000,195.000000,90.000000,139.200000,880.440000,10.090000,199.540000,39.090000 +3,2023-08-10 23:00:00,0.000000,21.100000,63.000000,15.000000,206.000000,89.480000,139.200000,880.440000,8.470000,199.540000,34.850000 +3,2023-08-11 00:00:00,0.000000,21.100000,63.000000,15.000000,206.000000,89.050000,139.200000,880.440000,7.960000,199.540000,33.440000 +3,2023-08-11 01:00:00,0.000000,21.100000,63.000000,15.000000,206.000000,88.690000,139.200000,880.440000,7.550000,199.540000,32.310000 +3,2023-08-11 02:00:00,0.000000,21.100000,63.000000,15.000000,206.000000,88.380000,139.200000,880.440000,7.230000,199.540000,31.390000 +3,2023-08-11 03:00:00,0.000000,21.100000,63.000000,15.000000,206.000000,88.130000,139.200000,880.440000,6.980000,199.540000,30.640000 +3,2023-08-11 04:00:00,0.000000,21.100000,63.000000,15.000000,206.000000,87.920000,139.200000,880.440000,6.770000,199.540000,30.020000 +3,2023-08-11 05:00:00,0.000000,18.400000,76.000000,13.000000,205.000000,87.300000,139.310000,880.690000,5.600000,199.660000,26.370000 +3,2023-08-11 06:00:00,0.000000,18.400000,76.000000,13.000000,205.000000,86.780000,139.410000,880.930000,5.200000,199.780000,25.040000 +3,2023-08-11 07:00:00,0.000000,18.400000,76.000000,13.000000,205.000000,86.340000,139.510000,881.180000,4.880000,199.900000,23.980000 +3,2023-08-11 08:00:00,0.000000,18.400000,76.000000,13.000000,205.000000,85.970000,139.610000,881.420000,4.640000,200.020000,23.110000 +3,2023-08-11 09:00:00,0.000000,18.400000,76.000000,13.000000,205.000000,85.650000,139.710000,881.660000,4.440000,200.140000,22.410000 +3,2023-08-11 10:00:00,0.000000,18.400000,76.000000,13.000000,205.000000,85.390000,139.810000,881.910000,4.280000,200.260000,21.830000 +3,2023-08-11 11:00:00,0.000000,26.100000,43.000000,15.000000,216.000000,86.150000,140.200000,882.830000,5.260000,200.710000,25.270000 +3,2023-08-11 12:00:00,0.000000,26.100000,43.000000,15.000000,216.000000,86.780000,140.580000,883.760000,5.750000,201.160000,26.880000 +3,2023-08-11 13:00:00,0.000000,26.100000,43.000000,15.000000,216.000000,87.290000,140.970000,884.680000,6.190000,201.620000,28.270000 +3,2023-08-11 14:00:00,0.000000,26.100000,43.000000,15.000000,216.000000,87.710000,141.350000,885.610000,6.570000,202.070000,29.470000 +3,2023-08-11 15:00:00,0.000000,26.100000,43.000000,15.000000,216.000000,88.060000,141.740000,886.530000,6.910000,202.520000,30.480000 +3,2023-08-11 16:00:00,0.000000,26.100000,43.000000,15.000000,216.000000,88.340000,142.120000,887.460000,7.190000,202.980000,31.330000 +3,2023-08-11 17:00:00,6.820000,20.300000,85.000000,7.000000,216.000000,27.850000,71.880000,816.130000,0.000000,117.820000,0.010000 +3,2023-08-11 18:00:00,0.000000,20.300000,85.000000,7.000000,216.000000,29.990000,71.950000,816.300000,0.000000,117.920000,0.020000 +3,2023-08-11 19:00:00,0.000000,20.300000,85.000000,7.000000,216.000000,32.100000,72.030000,816.480000,0.010000,118.020000,0.030000 +3,2023-08-11 20:00:00,0.000000,20.300000,85.000000,7.000000,216.000000,34.160000,72.100000,816.650000,0.010000,118.120000,0.040000 +3,2023-08-11 21:00:00,0.000000,20.300000,85.000000,7.000000,216.000000,36.180000,72.100000,816.650000,0.020000,118.120000,0.070000 +3,2023-08-11 22:00:00,0.000000,20.300000,85.000000,7.000000,216.000000,38.140000,72.100000,816.650000,0.030000,118.120000,0.110000 +3,2023-08-11 23:00:00,0.090000,18.400000,67.000000,9.000000,255.000000,40.700000,71.560000,815.700000,0.060000,117.370000,0.190000 +3,2023-08-12 00:00:00,0.000000,18.400000,67.000000,9.000000,255.000000,43.860000,71.560000,815.700000,0.110000,117.370000,0.330000 +3,2023-08-12 01:00:00,0.000000,18.400000,67.000000,9.000000,255.000000,46.890000,71.560000,815.700000,0.170000,117.370000,0.530000 +3,2023-08-12 02:00:00,0.000000,18.400000,67.000000,9.000000,255.000000,49.760000,71.560000,815.700000,0.250000,117.370000,0.770000 +3,2023-08-12 03:00:00,0.000000,18.400000,67.000000,9.000000,255.000000,52.470000,71.560000,815.700000,0.340000,117.370000,1.280000 +3,2023-08-12 04:00:00,0.000000,18.400000,67.000000,9.000000,255.000000,55.030000,71.560000,815.700000,0.440000,117.370000,2.100000 +3,2023-08-12 05:00:00,0.160000,16.600000,57.000000,14.000000,255.000000,57.970000,71.670000,815.980000,0.720000,117.530000,3.960000 +3,2023-08-12 06:00:00,0.000000,16.600000,57.000000,14.000000,255.000000,60.690000,71.780000,816.260000,0.860000,117.680000,4.810000 +3,2023-08-12 07:00:00,0.000000,16.600000,57.000000,14.000000,255.000000,63.200000,71.890000,816.530000,0.990000,117.840000,5.500000 +3,2023-08-12 08:00:00,0.000000,16.600000,57.000000,14.000000,255.000000,65.490000,71.990000,816.810000,1.090000,117.990000,6.050000 +3,2023-08-12 09:00:00,0.000000,16.600000,57.000000,14.000000,255.000000,67.580000,72.100000,817.090000,1.170000,118.140000,6.500000 +3,2023-08-12 10:00:00,0.000000,16.600000,57.000000,14.000000,255.000000,69.490000,72.210000,817.370000,1.250000,118.300000,6.880000 +3,2023-08-12 11:00:00,0.000000,23.500000,44.000000,19.000000,279.000000,72.560000,72.430000,817.920000,1.780000,118.600000,9.450000 +3,2023-08-12 12:00:00,0.000000,23.500000,44.000000,19.000000,279.000000,75.210000,72.650000,818.470000,2.020000,118.910000,10.500000 +3,2023-08-12 13:00:00,0.000000,23.500000,44.000000,19.000000,279.000000,77.460000,72.860000,819.030000,2.350000,119.210000,11.890000 +3,2023-08-12 14:00:00,0.000000,23.500000,44.000000,19.000000,279.000000,79.370000,73.080000,819.580000,2.780000,119.520000,13.610000 +3,2023-08-12 15:00:00,0.000000,23.500000,44.000000,19.000000,279.000000,80.990000,73.300000,820.130000,3.290000,119.830000,15.540000 +3,2023-08-12 16:00:00,0.000000,23.500000,44.000000,19.000000,279.000000,82.340000,73.520000,820.680000,3.870000,120.130000,17.550000 +3,2023-08-12 17:00:00,0.020000,24.400000,46.000000,18.000000,310.000000,83.450000,73.740000,821.250000,4.230000,120.440000,18.780000 +3,2023-08-12 18:00:00,0.000000,24.400000,46.000000,18.000000,310.000000,84.370000,73.960000,821.810000,4.790000,120.750000,20.550000 +3,2023-08-12 19:00:00,0.000000,24.400000,46.000000,18.000000,310.000000,85.140000,74.180000,822.370000,5.310000,121.060000,22.180000 +3,2023-08-12 20:00:00,0.000000,24.400000,46.000000,18.000000,310.000000,85.770000,74.400000,822.940000,5.810000,121.370000,23.630000 +3,2023-08-12 21:00:00,0.000000,24.400000,46.000000,18.000000,310.000000,86.300000,74.400000,822.940000,6.250000,121.370000,24.890000 +3,2023-08-12 22:00:00,0.000000,24.400000,46.000000,18.000000,310.000000,86.740000,74.400000,822.940000,6.650000,121.370000,25.980000 +3,2023-08-12 23:00:00,0.000000,18.100000,65.000000,6.000000,244.000000,86.650000,74.400000,822.940000,3.590000,121.370000,16.660000 +3,2023-08-13 00:00:00,0.000000,18.100000,65.000000,6.000000,244.000000,86.570000,74.400000,822.940000,3.550000,121.370000,16.520000 +3,2023-08-13 01:00:00,0.000000,18.100000,65.000000,6.000000,244.000000,86.500000,74.400000,822.940000,3.510000,121.370000,16.400000 +3,2023-08-13 02:00:00,0.000000,18.100000,65.000000,6.000000,244.000000,86.440000,74.400000,822.940000,3.480000,121.370000,16.290000 +3,2023-08-13 03:00:00,0.000000,18.100000,65.000000,6.000000,244.000000,86.380000,74.400000,822.940000,3.450000,121.370000,16.200000 +3,2023-08-13 04:00:00,0.000000,18.100000,65.000000,6.000000,244.000000,86.340000,74.400000,822.940000,3.430000,121.370000,16.120000 +3,2023-08-13 05:00:00,0.000000,15.100000,57.000000,9.000000,222.000000,86.340000,74.490000,823.130000,3.990000,121.500000,18.050000 +3,2023-08-13 06:00:00,0.000000,15.100000,57.000000,9.000000,222.000000,86.340000,74.590000,823.320000,3.990000,121.630000,18.060000 +3,2023-08-13 07:00:00,0.000000,15.100000,57.000000,9.000000,222.000000,86.340000,74.680000,823.510000,3.990000,121.760000,18.070000 +3,2023-08-13 08:00:00,0.000000,15.100000,57.000000,9.000000,222.000000,86.340000,74.770000,823.700000,3.990000,121.880000,18.080000 +3,2023-08-13 09:00:00,0.000000,15.100000,57.000000,9.000000,222.000000,86.340000,74.860000,823.890000,3.990000,122.010000,18.080000 +3,2023-08-13 10:00:00,0.000000,15.100000,57.000000,9.000000,222.000000,86.340000,74.960000,824.090000,3.990000,122.140000,18.090000 +3,2023-08-13 11:00:00,0.000000,24.200000,32.000000,11.000000,240.000000,87.190000,75.210000,824.620000,4.980000,122.500000,21.290000 +3,2023-08-13 12:00:00,0.000000,24.200000,32.000000,11.000000,240.000000,87.910000,75.470000,825.150000,5.520000,122.850000,22.920000 +3,2023-08-13 13:00:00,0.000000,24.200000,32.000000,11.000000,240.000000,88.500000,75.730000,825.690000,6.010000,123.210000,24.370000 +3,2023-08-13 14:00:00,0.000000,24.200000,32.000000,11.000000,240.000000,89.000000,75.990000,826.220000,6.460000,123.560000,25.640000 +3,2023-08-13 15:00:00,0.000000,24.200000,32.000000,11.000000,240.000000,89.410000,76.240000,826.750000,6.850000,123.920000,26.740000 +3,2023-08-13 16:00:00,0.000000,24.200000,32.000000,11.000000,240.000000,89.750000,76.500000,827.280000,7.190000,124.270000,27.690000 +3,2023-08-13 17:00:00,0.000000,28.400000,25.000000,11.000000,282.000000,90.520000,76.860000,828.040000,8.040000,124.770000,29.900000 +3,2023-08-13 18:00:00,0.000000,28.400000,25.000000,11.000000,282.000000,91.140000,77.230000,828.790000,8.780000,125.270000,31.780000 +3,2023-08-13 19:00:00,0.000000,28.400000,25.000000,11.000000,282.000000,91.640000,77.590000,829.540000,9.420000,125.770000,33.360000 +3,2023-08-13 20:00:00,0.000000,28.400000,25.000000,11.000000,282.000000,92.030000,77.950000,830.300000,9.960000,126.270000,34.670000 +3,2023-08-13 21:00:00,0.000000,28.400000,25.000000,11.000000,282.000000,92.350000,77.950000,830.300000,10.410000,126.270000,35.700000 +3,2023-08-13 22:00:00,0.000000,28.400000,25.000000,11.000000,282.000000,92.600000,77.950000,830.300000,10.790000,126.270000,36.540000 +3,2023-08-13 23:00:00,0.000000,19.400000,47.000000,4.000000,226.000000,92.240000,77.950000,830.300000,7.210000,126.270000,27.890000 +3,2023-08-14 00:00:00,0.000000,19.400000,47.000000,4.000000,226.000000,91.920000,77.950000,830.300000,6.890000,126.270000,27.040000 +3,2023-08-14 01:00:00,0.000000,19.400000,47.000000,4.000000,226.000000,91.630000,77.950000,830.300000,6.620000,126.270000,26.300000 +3,2023-08-14 02:00:00,0.000000,19.400000,47.000000,4.000000,226.000000,91.380000,77.950000,830.300000,6.380000,126.270000,25.660000 +3,2023-08-14 03:00:00,0.000000,19.400000,47.000000,4.000000,226.000000,91.160000,77.950000,830.300000,6.180000,126.270000,25.090000 +3,2023-08-14 04:00:00,0.000000,19.400000,47.000000,4.000000,226.000000,90.960000,77.950000,830.300000,6.010000,126.270000,24.600000 +3,2023-08-14 05:00:00,0.000000,15.900000,59.000000,8.000000,201.000000,90.440000,78.050000,830.470000,6.830000,126.390000,26.890000 +3,2023-08-14 06:00:00,0.000000,15.900000,59.000000,8.000000,201.000000,89.990000,78.140000,830.630000,6.400000,126.520000,25.720000 +3,2023-08-14 07:00:00,0.000000,15.900000,59.000000,8.000000,201.000000,89.590000,78.230000,830.800000,6.050000,126.640000,24.730000 +3,2023-08-14 08:00:00,0.000000,15.900000,59.000000,8.000000,201.000000,89.240000,78.320000,830.970000,5.750000,126.770000,23.890000 +3,2023-08-14 09:00:00,0.000000,15.900000,59.000000,8.000000,201.000000,88.940000,78.410000,831.140000,5.500000,126.890000,23.170000 +3,2023-08-14 10:00:00,0.000000,15.900000,59.000000,8.000000,201.000000,88.670000,78.500000,831.310000,5.290000,127.020000,22.550000 +3,2023-08-14 11:00:00,0.000000,28.500000,28.000000,11.000000,175.000000,89.520000,78.850000,831.940000,6.960000,127.490000,27.340000 +3,2023-08-14 12:00:00,0.000000,28.500000,28.000000,11.000000,175.000000,90.210000,79.190000,832.580000,7.680000,127.950000,29.280000 +3,2023-08-14 13:00:00,0.000000,28.500000,28.000000,11.000000,175.000000,90.760000,79.530000,833.220000,8.310000,128.420000,30.930000 +3,2023-08-14 14:00:00,0.000000,28.500000,28.000000,11.000000,175.000000,91.200000,79.880000,833.850000,8.850000,128.890000,32.300000 +3,2023-08-14 15:00:00,0.000000,28.500000,28.000000,11.000000,175.000000,91.550000,80.220000,834.490000,9.310000,129.360000,33.440000 +3,2023-08-14 16:00:00,0.000000,28.500000,28.000000,11.000000,175.000000,91.840000,80.570000,835.130000,9.690000,129.820000,34.390000 +3,2023-08-14 17:00:00,0.000000,32.100000,24.000000,8.000000,231.000000,92.400000,81.010000,835.950000,9.020000,130.430000,32.850000 +3,2023-08-14 18:00:00,0.000000,32.100000,24.000000,8.000000,231.000000,92.840000,81.460000,836.780000,9.600000,131.030000,34.290000 +3,2023-08-14 19:00:00,0.000000,32.100000,24.000000,8.000000,231.000000,93.190000,81.910000,837.610000,10.080000,131.630000,35.460000 +3,2023-08-14 20:00:00,0.000000,32.100000,24.000000,8.000000,231.000000,93.460000,82.350000,838.430000,10.460000,132.240000,36.410000 +3,2023-08-14 21:00:00,0.000000,32.100000,24.000000,8.000000,231.000000,93.670000,82.350000,838.430000,10.780000,132.240000,37.120000 +3,2023-08-14 22:00:00,0.000000,32.100000,24.000000,8.000000,231.000000,93.830000,82.350000,838.430000,11.030000,132.240000,37.680000 +3,2023-08-14 23:00:00,0.000000,25.800000,37.000000,16.000000,332.000000,93.570000,82.350000,838.430000,15.910000,132.240000,47.670000 +3,2023-08-15 00:00:00,0.000000,25.800000,37.000000,16.000000,332.000000,93.350000,82.350000,838.430000,15.430000,132.240000,46.750000 +3,2023-08-15 01:00:00,0.000000,25.800000,37.000000,16.000000,332.000000,93.170000,82.350000,838.430000,15.040000,132.240000,45.990000 +3,2023-08-15 02:00:00,0.000000,25.800000,37.000000,16.000000,332.000000,93.010000,82.350000,838.430000,14.710000,132.240000,45.360000 +3,2023-08-15 03:00:00,0.000000,25.800000,37.000000,16.000000,332.000000,92.880000,82.350000,838.430000,14.450000,132.240000,44.840000 +3,2023-08-15 04:00:00,0.000000,25.800000,37.000000,16.000000,332.000000,92.770000,82.350000,838.430000,14.220000,132.240000,44.400000 +3,2023-08-15 05:00:00,0.000000,17.800000,64.000000,6.000000,303.000000,91.920000,82.440000,838.650000,7.620000,132.360000,29.470000 +3,2023-08-15 06:00:00,0.000000,17.800000,64.000000,6.000000,303.000000,91.170000,82.530000,838.860000,6.860000,132.480000,27.440000 +3,2023-08-15 07:00:00,0.000000,17.800000,64.000000,6.000000,303.000000,90.530000,82.620000,839.070000,6.250000,132.600000,25.760000 +3,2023-08-15 08:00:00,0.000000,17.800000,64.000000,6.000000,303.000000,89.970000,82.710000,839.290000,5.770000,132.720000,24.370000 +3,2023-08-15 09:00:00,0.000000,17.800000,64.000000,6.000000,303.000000,89.480000,82.800000,839.500000,5.380000,132.840000,23.210000 +3,2023-08-15 10:00:00,0.000000,17.800000,64.000000,6.000000,303.000000,89.060000,82.880000,839.720000,5.070000,132.960000,22.240000 +3,2023-08-15 11:00:00,0.000000,24.300000,42.000000,4.000000,301.000000,89.120000,83.100000,840.230000,4.620000,133.250000,20.840000 +3,2023-08-15 12:00:00,0.000000,24.300000,42.000000,4.000000,301.000000,89.170000,83.310000,840.750000,4.650000,133.540000,20.970000 +3,2023-08-15 13:00:00,0.000000,24.300000,42.000000,4.000000,301.000000,89.220000,83.520000,841.260000,4.680000,133.830000,21.080000 +3,2023-08-15 14:00:00,0.000000,24.300000,42.000000,4.000000,301.000000,89.250000,83.730000,841.780000,4.710000,134.120000,21.180000 +3,2023-08-15 15:00:00,0.000000,24.300000,42.000000,4.000000,301.000000,89.290000,83.950000,842.300000,4.730000,134.410000,21.260000 +3,2023-08-15 16:00:00,0.000000,24.300000,42.000000,4.000000,301.000000,89.310000,84.160000,842.810000,4.750000,134.690000,21.340000 +3,2023-08-15 17:00:00,0.000000,27.700000,31.000000,2.000000,133.000000,89.760000,84.470000,843.560000,4.580000,135.110000,20.800000 +3,2023-08-15 18:00:00,0.000000,27.700000,31.000000,2.000000,133.000000,90.130000,84.780000,844.310000,4.830000,135.530000,21.650000 +3,2023-08-15 19:00:00,0.000000,27.700000,31.000000,2.000000,133.000000,90.450000,85.090000,845.060000,5.050000,135.950000,22.380000 +3,2023-08-15 20:00:00,0.000000,27.700000,31.000000,2.000000,133.000000,90.720000,85.400000,845.810000,5.250000,136.370000,23.030000 +3,2023-08-15 21:00:00,0.000000,27.700000,31.000000,2.000000,133.000000,90.950000,85.400000,845.810000,5.430000,136.370000,23.560000 +3,2023-08-15 22:00:00,0.000000,27.700000,31.000000,2.000000,133.000000,91.140000,85.400000,845.810000,5.580000,136.370000,24.020000 +3,2023-08-15 23:00:00,0.000000,21.800000,50.000000,4.000000,349.000000,90.900000,85.400000,845.810000,5.960000,136.370000,25.170000 +3,2023-08-16 00:00:00,0.000000,21.800000,50.000000,4.000000,349.000000,90.700000,85.400000,845.810000,5.790000,136.370000,24.660000 +3,2023-08-16 01:00:00,0.000000,21.800000,50.000000,4.000000,349.000000,90.510000,85.400000,845.810000,5.640000,136.370000,24.210000 +3,2023-08-16 02:00:00,0.000000,21.800000,50.000000,4.000000,349.000000,90.350000,85.400000,845.810000,5.510000,136.370000,23.830000 +3,2023-08-16 03:00:00,0.000000,21.800000,50.000000,4.000000,349.000000,90.210000,85.400000,845.810000,5.400000,136.370000,23.490000 +3,2023-08-16 04:00:00,0.000000,21.800000,50.000000,4.000000,349.000000,90.090000,85.400000,845.810000,5.310000,136.370000,23.200000 +3,2023-08-16 05:00:00,0.000000,19.000000,61.000000,4.000000,204.000000,89.700000,85.510000,846.050000,5.020000,136.520000,22.300000 +3,2023-08-16 06:00:00,0.000000,19.000000,61.000000,4.000000,204.000000,89.350000,85.620000,846.300000,4.770000,136.670000,21.530000 +3,2023-08-16 07:00:00,0.000000,19.000000,61.000000,4.000000,204.000000,89.050000,85.730000,846.540000,4.570000,136.820000,20.880000 +3,2023-08-16 08:00:00,0.000000,19.000000,61.000000,4.000000,204.000000,88.780000,85.840000,846.790000,4.400000,136.970000,20.320000 +3,2023-08-16 09:00:00,0.000000,19.000000,61.000000,4.000000,204.000000,88.550000,85.960000,847.030000,4.250000,137.120000,19.840000 +3,2023-08-16 10:00:00,0.000000,19.000000,61.000000,4.000000,204.000000,88.340000,86.070000,847.270000,4.130000,137.270000,19.430000 +3,2023-08-16 11:00:00,0.000000,27.300000,38.000000,13.000000,194.000000,88.800000,86.360000,847.920000,6.940000,137.670000,28.040000 +3,2023-08-16 12:00:00,0.000000,27.300000,38.000000,13.000000,194.000000,89.170000,86.660000,848.560000,7.320000,138.060000,29.110000 +3,2023-08-16 13:00:00,0.000000,27.300000,38.000000,13.000000,194.000000,89.470000,86.950000,849.200000,7.640000,138.460000,30.000000 +3,2023-08-16 14:00:00,0.000000,27.300000,38.000000,13.000000,194.000000,89.710000,87.250000,849.840000,7.910000,138.850000,30.740000 +3,2023-08-16 15:00:00,0.000000,27.300000,38.000000,13.000000,194.000000,89.910000,87.540000,850.480000,8.140000,139.250000,31.360000 +3,2023-08-16 16:00:00,0.000000,27.300000,38.000000,13.000000,194.000000,90.070000,87.830000,851.120000,8.330000,139.640000,31.870000 +3,2023-08-16 17:00:00,0.000000,24.800000,27.000000,15.000000,225.000000,90.540000,88.130000,851.770000,9.850000,140.040000,35.660000 +3,2023-08-16 18:00:00,0.000000,24.800000,27.000000,15.000000,225.000000,90.920000,88.430000,852.420000,10.400000,140.440000,36.980000 +3,2023-08-16 19:00:00,0.000000,24.800000,27.000000,15.000000,225.000000,91.220000,88.730000,853.080000,10.870000,140.840000,38.090000 +3,2023-08-16 20:00:00,0.000000,24.800000,27.000000,15.000000,225.000000,91.470000,89.030000,853.730000,11.260000,141.240000,39.010000 +3,2023-08-16 21:00:00,0.000000,24.800000,27.000000,15.000000,225.000000,91.680000,89.030000,853.730000,11.590000,141.240000,39.750000 +3,2023-08-16 22:00:00,0.000000,24.800000,27.000000,15.000000,225.000000,91.840000,89.030000,853.730000,11.860000,141.240000,40.350000 +3,2023-08-16 23:00:00,0.000000,18.000000,36.000000,16.000000,222.000000,91.740000,89.030000,853.730000,12.300000,141.240000,41.320000 +3,2023-08-17 00:00:00,0.000000,18.000000,36.000000,16.000000,222.000000,91.660000,89.030000,853.730000,12.160000,141.240000,41.000000 +3,2023-08-17 01:00:00,0.000000,18.000000,36.000000,16.000000,222.000000,91.580000,89.030000,853.730000,12.030000,141.240000,40.720000 +3,2023-08-17 02:00:00,0.000000,18.000000,36.000000,16.000000,222.000000,91.520000,89.030000,853.730000,11.920000,141.240000,40.470000 +3,2023-08-17 03:00:00,0.000000,18.000000,36.000000,16.000000,222.000000,91.460000,89.030000,853.730000,11.820000,141.240000,40.260000 +3,2023-08-17 04:00:00,0.000000,18.000000,36.000000,16.000000,222.000000,91.410000,89.030000,853.730000,11.730000,141.240000,40.070000 +3,2023-08-17 05:00:00,0.000000,14.300000,40.000000,13.000000,219.000000,91.230000,89.030000,853.730000,9.830000,141.240000,35.700000 +3,2023-08-17 06:00:00,0.000000,14.300000,40.000000,13.000000,219.000000,91.060000,89.160000,854.010000,9.600000,141.420000,35.170000 +3,2023-08-17 07:00:00,0.000000,14.300000,40.000000,13.000000,219.000000,90.920000,89.300000,854.290000,9.400000,141.590000,34.700000 +3,2023-08-17 08:00:00,0.000000,14.300000,40.000000,13.000000,219.000000,90.790000,89.430000,854.570000,9.230000,141.770000,34.290000 +3,2023-08-17 09:00:00,0.000000,14.300000,40.000000,13.000000,219.000000,90.670000,89.570000,854.850000,9.080000,141.950000,33.930000 +3,2023-08-17 10:00:00,0.000000,14.300000,40.000000,13.000000,219.000000,90.570000,89.700000,855.140000,8.940000,142.130000,33.610000 +3,2023-08-17 11:00:00,0.000000,20.000000,28.000000,14.000000,219.000000,90.720000,89.930000,855.620000,9.610000,142.430000,35.270000 +3,2023-08-17 12:00:00,0.000000,20.000000,28.000000,14.000000,219.000000,90.850000,90.160000,856.110000,9.790000,142.740000,35.720000 +3,2023-08-17 13:00:00,0.000000,20.000000,28.000000,14.000000,219.000000,90.950000,90.390000,856.590000,9.940000,143.050000,36.110000 +3,2023-08-17 14:00:00,0.000000,20.000000,28.000000,14.000000,219.000000,91.040000,90.620000,857.080000,10.070000,143.350000,36.440000 +3,2023-08-17 15:00:00,0.000000,20.000000,28.000000,14.000000,219.000000,91.120000,90.850000,857.560000,10.180000,143.660000,36.720000 +3,2023-08-17 16:00:00,0.000000,20.000000,28.000000,14.000000,219.000000,91.180000,91.080000,858.050000,10.270000,143.960000,36.960000 +3,2023-08-17 17:00:00,0.000000,22.200000,26.000000,17.000000,239.000000,91.390000,91.350000,858.620000,12.300000,144.320000,41.580000 +3,2023-08-17 18:00:00,0.000000,22.200000,26.000000,17.000000,239.000000,91.560000,91.620000,859.190000,12.600000,144.680000,42.250000 +3,2023-08-17 19:00:00,0.000000,22.200000,26.000000,17.000000,239.000000,91.690000,91.900000,859.760000,12.840000,145.040000,42.810000 +3,2023-08-17 20:00:00,0.000000,22.200000,26.000000,17.000000,239.000000,91.800000,92.170000,860.330000,13.050000,145.390000,43.280000 +3,2023-08-17 21:00:00,0.000000,22.200000,26.000000,17.000000,239.000000,91.900000,92.170000,860.330000,13.220000,145.390000,43.640000 +3,2023-08-17 22:00:00,0.000000,22.200000,26.000000,17.000000,239.000000,91.970000,92.170000,860.330000,13.370000,145.390000,43.940000 +3,2023-08-17 23:00:00,0.000000,17.300000,43.000000,20.000000,274.000000,91.660000,92.170000,860.330000,14.870000,145.390000,47.030000 +3,2023-08-18 00:00:00,0.000000,17.300000,43.000000,20.000000,274.000000,91.390000,92.170000,860.330000,14.310000,145.390000,45.900000 +3,2023-08-18 01:00:00,0.000000,17.300000,43.000000,20.000000,274.000000,91.160000,92.170000,860.330000,13.850000,145.390000,44.940000 +3,2023-08-18 02:00:00,0.000000,17.300000,43.000000,20.000000,274.000000,90.960000,92.170000,860.330000,13.450000,145.390000,44.130000 +3,2023-08-18 03:00:00,0.000000,17.300000,43.000000,20.000000,274.000000,90.780000,92.170000,860.330000,13.120000,145.390000,43.430000 +3,2023-08-18 04:00:00,0.000000,17.300000,43.000000,20.000000,274.000000,90.630000,92.170000,860.330000,12.840000,145.390000,42.830000 +3,2023-08-18 05:00:00,0.000000,11.300000,55.000000,21.000000,268.000000,90.140000,92.170000,860.330000,12.590000,145.390000,42.290000 +3,2023-08-18 06:00:00,0.000000,11.300000,55.000000,21.000000,268.000000,89.710000,92.270000,860.750000,11.830000,145.530000,40.650000 +3,2023-08-18 07:00:00,0.000000,11.300000,55.000000,21.000000,268.000000,89.330000,92.360000,861.170000,11.210000,145.670000,39.260000 +3,2023-08-18 08:00:00,0.000000,11.300000,55.000000,21.000000,268.000000,89.000000,92.460000,861.590000,10.690000,145.810000,38.080000 +3,2023-08-18 09:00:00,0.000000,11.300000,55.000000,21.000000,268.000000,88.710000,92.560000,862.010000,10.260000,145.950000,37.070000 +3,2023-08-18 10:00:00,0.000000,11.300000,55.000000,21.000000,268.000000,88.460000,92.660000,862.430000,9.890000,146.080000,36.200000 +3,2023-08-18 11:00:00,0.150000,12.600000,56.000000,22.000000,266.000000,88.220000,92.770000,862.870000,10.060000,146.230000,36.630000 +3,2023-08-18 12:00:00,0.000000,12.600000,56.000000,22.000000,266.000000,88.020000,92.870000,863.320000,9.770000,146.380000,35.950000 +3,2023-08-18 13:00:00,0.000000,12.600000,56.000000,22.000000,266.000000,87.850000,92.980000,863.770000,9.530000,146.530000,35.370000 +3,2023-08-18 14:00:00,0.000000,12.600000,56.000000,22.000000,266.000000,87.690000,93.080000,864.210000,9.320000,146.670000,34.870000 +3,2023-08-18 15:00:00,0.000000,12.600000,56.000000,22.000000,266.000000,87.560000,93.190000,864.660000,9.150000,146.820000,34.450000 +3,2023-08-18 16:00:00,0.000000,12.600000,56.000000,22.000000,266.000000,87.450000,93.290000,865.110000,9.000000,146.970000,34.080000 +3,2023-08-18 17:00:00,0.080000,13.500000,54.000000,19.000000,287.000000,87.410000,93.410000,865.600000,7.690000,147.130000,30.700000 +4,2023-08-03 00:00:00,0.000000,14.800000,74.000000,4.000000,56.000000,85.750000,118.400000,826.100000,2.860000,174.330000,15.840000 +4,2023-08-03 01:00:00,0.000000,14.800000,74.000000,4.000000,56.000000,85.530000,118.400000,826.100000,2.770000,174.330000,15.480000 +4,2023-08-03 02:00:00,0.000000,12.100000,88.000000,2.000000,100.000000,84.910000,118.400000,826.100000,2.300000,174.330000,13.410000 +4,2023-08-03 03:00:00,0.000000,12.100000,88.000000,2.000000,100.000000,84.360000,118.400000,826.100000,2.140000,174.330000,12.640000 +4,2023-08-03 04:00:00,0.000000,12.100000,88.000000,2.000000,100.000000,83.870000,118.400000,826.100000,2.000000,174.330000,12.000000 +4,2023-08-03 05:00:00,0.000000,11.500000,93.000000,3.000000,108.000000,83.170000,118.410000,826.140000,1.920000,174.350000,11.600000 +4,2023-08-03 06:00:00,0.000000,11.500000,93.000000,3.000000,108.000000,82.540000,118.430000,826.180000,1.770000,174.370000,10.870000 +4,2023-08-03 07:00:00,0.000000,11.500000,93.000000,3.000000,108.000000,81.990000,118.440000,826.210000,1.650000,174.380000,10.270000 +4,2023-08-03 08:00:00,0.000000,15.600000,74.000000,4.000000,119.000000,82.010000,118.500000,826.390000,1.740000,174.460000,10.740000 +4,2023-08-03 09:00:00,0.000000,15.600000,74.000000,4.000000,119.000000,82.040000,118.570000,826.580000,1.750000,174.540000,10.770000 +4,2023-08-03 10:00:00,0.000000,15.600000,74.000000,4.000000,119.000000,82.060000,118.630000,826.760000,1.760000,174.620000,10.800000 +4,2023-08-03 11:00:00,0.000000,20.900000,48.000000,4.000000,83.000000,82.720000,118.810000,827.270000,1.900000,174.840000,11.540000 +4,2023-08-03 12:00:00,0.000000,20.900000,48.000000,4.000000,83.000000,83.310000,118.980000,827.770000,2.050000,175.060000,12.270000 +4,2023-08-03 13:00:00,0.000000,20.900000,48.000000,4.000000,83.000000,83.830000,119.160000,828.280000,2.200000,175.280000,12.960000 +4,2023-08-03 14:00:00,0.000000,23.600000,42.000000,8.000000,43.000000,84.650000,119.390000,828.950000,3.000000,175.570000,16.470000 +4,2023-08-03 15:00:00,0.000000,23.600000,42.000000,8.000000,43.000000,85.350000,119.630000,829.620000,3.300000,175.860000,17.700000 +4,2023-08-03 16:00:00,0.000000,23.600000,42.000000,8.000000,43.000000,85.950000,119.860000,830.280000,3.590000,176.150000,18.830000 +4,2023-08-03 17:00:00,0.180000,23.200000,44.000000,10.000000,50.000000,84.070000,120.080000,830.910000,3.070000,176.420000,16.770000 +4,2023-08-03 18:00:00,0.000000,23.200000,44.000000,10.000000,50.000000,84.800000,120.300000,831.540000,3.390000,176.690000,18.050000 +4,2023-08-03 19:00:00,0.000000,23.200000,44.000000,10.000000,50.000000,85.420000,120.520000,832.170000,3.690000,176.970000,19.230000 +4,2023-08-03 20:00:00,1.140000,20.300000,63.000000,3.000000,121.000000,71.110000,120.640000,832.520000,0.750000,177.120000,5.050000 +4,2023-08-03 21:00:00,0.000000,20.300000,63.000000,3.000000,121.000000,72.300000,120.760000,832.870000,0.790000,177.270000,5.270000 +4,2023-08-03 22:00:00,0.000000,20.300000,63.000000,3.000000,121.000000,73.390000,120.760000,832.870000,0.820000,177.270000,5.510000 +4,2023-08-03 23:00:00,0.000000,15.500000,85.000000,5.000000,235.000000,73.680000,120.760000,832.870000,0.920000,177.270000,6.150000 +4,2023-08-04 00:00:00,0.000000,15.500000,85.000000,5.000000,235.000000,73.960000,120.760000,832.870000,0.930000,177.270000,6.220000 +4,2023-08-04 01:00:00,0.000000,15.500000,85.000000,5.000000,235.000000,74.230000,120.760000,832.870000,0.950000,177.270000,6.300000 +4,2023-08-04 02:00:00,0.000000,13.600000,96.000000,7.000000,243.000000,74.230000,120.760000,832.870000,1.050000,177.270000,6.920000 +4,2023-08-04 03:00:00,0.000000,13.600000,96.000000,7.000000,243.000000,74.230000,120.760000,832.870000,1.050000,177.270000,6.920000 +4,2023-08-04 04:00:00,0.000000,13.600000,96.000000,7.000000,243.000000,74.230000,120.760000,832.870000,1.050000,177.270000,6.920000 +4,2023-08-04 05:00:00,0.000000,12.600000,96.000000,7.000000,253.000000,74.230000,120.770000,832.890000,1.050000,177.280000,6.920000 +4,2023-08-04 06:00:00,0.000000,12.600000,96.000000,7.000000,253.000000,74.230000,120.780000,832.910000,1.050000,177.290000,6.920000 +4,2023-08-04 07:00:00,0.000000,12.600000,96.000000,7.000000,253.000000,74.230000,120.780000,832.930000,1.050000,177.290000,6.920000 +4,2023-08-04 08:00:00,0.000000,18.100000,70.000000,7.000000,262.000000,75.020000,120.870000,833.140000,1.090000,177.400000,7.190000 +4,2023-08-04 09:00:00,0.000000,18.100000,70.000000,7.000000,262.000000,75.750000,120.950000,833.360000,1.140000,177.500000,7.470000 +4,2023-08-04 10:00:00,0.000000,18.100000,70.000000,7.000000,262.000000,76.420000,121.030000,833.570000,1.190000,177.600000,7.770000 +4,2023-08-04 11:00:00,0.000000,23.000000,45.000000,10.000000,309.000000,78.150000,121.240000,834.110000,1.580000,177.850000,9.930000 +4,2023-08-04 12:00:00,0.000000,23.000000,45.000000,10.000000,309.000000,79.660000,121.440000,834.650000,1.820000,178.100000,11.150000 +4,2023-08-04 13:00:00,0.000000,23.000000,45.000000,10.000000,309.000000,80.970000,121.650000,835.180000,2.090000,178.350000,12.480000 +4,2023-08-04 14:00:00,0.000000,24.100000,42.000000,13.000000,328.000000,82.330000,121.880000,835.790000,2.860000,178.640000,15.920000 +4,2023-08-04 15:00:00,0.000000,24.100000,42.000000,13.000000,328.000000,83.490000,122.110000,836.390000,3.310000,178.920000,17.780000 +4,2023-08-04 16:00:00,0.000000,24.100000,42.000000,13.000000,328.000000,84.470000,122.340000,836.990000,3.770000,179.200000,19.570000 +4,2023-08-04 17:00:00,0.000000,24.400000,40.000000,13.000000,334.000000,85.370000,122.590000,837.630000,4.270000,179.500000,21.410000 +4,2023-08-04 18:00:00,0.000000,24.400000,40.000000,13.000000,334.000000,86.130000,122.830000,838.260000,4.750000,179.800000,23.100000 +4,2023-08-04 19:00:00,0.000000,24.400000,40.000000,13.000000,334.000000,86.770000,123.070000,838.900000,5.190000,180.090000,24.600000 +4,2023-08-04 20:00:00,0.000000,23.000000,43.000000,5.000000,326.000000,87.080000,123.290000,839.450000,3.630000,180.350000,19.050000 +4,2023-08-04 21:00:00,0.000000,23.000000,43.000000,5.000000,326.000000,87.350000,123.500000,840.010000,3.770000,180.610000,19.600000 +4,2023-08-04 22:00:00,0.000000,23.000000,43.000000,5.000000,326.000000,87.590000,123.500000,840.010000,3.900000,180.610000,20.090000 +4,2023-08-04 23:00:00,0.000000,17.300000,63.000000,6.000000,281.000000,87.420000,123.500000,840.010000,4.000000,180.610000,20.480000 +4,2023-08-05 00:00:00,0.000000,17.300000,63.000000,6.000000,281.000000,87.280000,123.500000,840.010000,3.920000,180.610000,20.170000 +4,2023-08-05 01:00:00,0.000000,17.300000,63.000000,6.000000,281.000000,87.150000,123.500000,840.010000,3.850000,180.610000,19.910000 +4,2023-08-05 02:00:00,0.000000,15.700000,75.000000,6.000000,285.000000,86.720000,123.500000,840.010000,3.620000,180.610000,19.050000 +4,2023-08-05 03:00:00,0.000000,15.700000,75.000000,6.000000,285.000000,86.350000,123.500000,840.010000,3.440000,180.610000,18.330000 +4,2023-08-05 04:00:00,0.000000,15.700000,75.000000,6.000000,285.000000,86.020000,123.500000,840.010000,3.280000,180.610000,17.710000 +4,2023-08-05 05:00:00,0.000000,15.400000,81.000000,6.000000,295.000000,85.550000,123.540000,840.130000,3.070000,180.660000,16.860000 +4,2023-08-05 06:00:00,0.000000,15.400000,81.000000,6.000000,295.000000,85.140000,123.580000,840.260000,2.900000,180.710000,16.150000 +4,2023-08-05 07:00:00,0.000000,15.400000,81.000000,6.000000,295.000000,84.770000,123.620000,840.380000,2.760000,180.760000,15.560000 +4,2023-08-05 08:00:00,0.000000,18.400000,65.000000,4.000000,332.000000,84.770000,123.700000,840.660000,2.500000,180.870000,14.400000 +4,2023-08-05 09:00:00,0.000000,18.400000,65.000000,4.000000,332.000000,84.770000,123.790000,840.940000,2.500000,180.980000,14.410000 +4,2023-08-05 10:00:00,0.000000,18.400000,65.000000,4.000000,332.000000,84.770000,123.880000,841.220000,2.500000,181.090000,14.410000 +4,2023-08-05 11:00:00,0.000000,21.000000,53.000000,3.000000,24.000000,85.010000,124.020000,841.650000,2.450000,181.260000,14.210000 +4,2023-08-05 12:00:00,0.000000,21.000000,53.000000,3.000000,24.000000,85.220000,124.160000,842.090000,2.530000,181.440000,14.540000 +4,2023-08-05 13:00:00,0.000000,21.000000,53.000000,3.000000,24.000000,85.410000,124.290000,842.530000,2.590000,181.610000,14.840000 +4,2023-08-05 14:00:00,0.020000,22.400000,48.000000,5.000000,40.000000,85.750000,124.460000,843.050000,3.010000,181.820000,16.610000 +4,2023-08-05 15:00:00,0.000000,22.400000,48.000000,5.000000,40.000000,86.050000,124.630000,843.580000,3.140000,182.030000,17.140000 +4,2023-08-05 16:00:00,0.000000,22.400000,48.000000,5.000000,40.000000,86.310000,124.790000,844.110000,3.250000,182.230000,17.620000 +4,2023-08-05 17:00:00,0.010000,22.900000,47.000000,3.000000,121.000000,86.560000,124.970000,844.660000,3.050000,182.450000,16.780000 +4,2023-08-05 18:00:00,0.000000,22.900000,47.000000,3.000000,121.000000,86.780000,125.140000,845.220000,3.140000,182.670000,17.180000 +4,2023-08-05 19:00:00,0.000000,22.900000,47.000000,3.000000,121.000000,86.970000,125.320000,845.770000,3.230000,182.890000,17.530000 +4,2023-08-05 20:00:00,0.000000,21.900000,48.000000,1.000000,61.000000,87.080000,125.480000,846.280000,2.960000,183.090000,16.450000 +4,2023-08-05 21:00:00,0.000000,21.900000,48.000000,1.000000,61.000000,87.170000,125.640000,846.790000,3.000000,183.290000,16.630000 +4,2023-08-05 22:00:00,0.000000,21.900000,48.000000,1.000000,61.000000,87.260000,125.640000,846.790000,3.040000,183.290000,16.780000 +4,2023-08-05 23:00:00,0.000000,17.700000,62.000000,4.000000,17.000000,87.170000,125.640000,846.790000,3.490000,183.290000,18.590000 +4,2023-08-06 00:00:00,0.000000,17.700000,62.000000,4.000000,17.000000,87.090000,125.640000,846.790000,3.450000,183.290000,18.430000 +4,2023-08-06 01:00:00,0.000000,17.700000,62.000000,4.000000,17.000000,87.020000,125.640000,846.790000,3.420000,183.290000,18.300000 +4,2023-08-06 02:00:00,0.000000,15.600000,53.000000,9.000000,42.000000,87.020000,125.640000,846.790000,4.400000,183.290000,21.960000 +4,2023-08-06 03:00:00,0.000000,15.600000,53.000000,9.000000,42.000000,87.020000,125.640000,846.790000,4.400000,183.290000,21.960000 +4,2023-08-06 04:00:00,0.000000,15.600000,53.000000,9.000000,42.000000,87.020000,125.640000,846.790000,4.400000,183.290000,21.960000 +4,2023-08-06 05:00:00,0.000000,14.000000,59.000000,6.000000,14.000000,86.950000,125.720000,847.010000,3.740000,183.390000,19.560000 +4,2023-08-06 06:00:00,0.000000,14.000000,59.000000,6.000000,14.000000,86.890000,125.800000,847.220000,3.710000,183.480000,19.440000 +4,2023-08-06 07:00:00,0.000000,14.000000,59.000000,6.000000,14.000000,86.840000,125.870000,847.430000,3.680000,183.580000,19.330000 +4,2023-08-06 08:00:00,0.000000,16.400000,57.000000,9.000000,33.000000,86.840000,125.970000,847.690000,4.280000,183.690000,21.570000 +4,2023-08-06 09:00:00,0.000000,16.400000,57.000000,9.000000,33.000000,86.840000,126.060000,847.950000,4.280000,183.810000,21.570000 +4,2023-08-06 10:00:00,0.000000,16.400000,57.000000,9.000000,33.000000,86.840000,126.160000,848.210000,4.280000,183.930000,21.570000 +4,2023-08-06 11:00:00,0.000000,19.300000,44.000000,11.000000,51.000000,87.030000,126.310000,848.620000,4.870000,184.110000,23.640000 +4,2023-08-06 12:00:00,0.000000,19.300000,44.000000,11.000000,51.000000,87.210000,126.450000,849.020000,5.000000,184.290000,24.060000 +4,2023-08-06 13:00:00,0.000000,19.300000,44.000000,11.000000,51.000000,87.350000,126.600000,849.430000,5.100000,184.470000,24.420000 +4,2023-08-06 14:00:00,0.000000,21.100000,38.000000,11.000000,57.000000,87.710000,126.790000,849.930000,5.370000,184.690000,25.290000 +4,2023-08-06 15:00:00,0.000000,21.100000,38.000000,11.000000,57.000000,88.000000,126.970000,850.440000,5.600000,184.920000,26.060000 +4,2023-08-06 16:00:00,0.000000,21.100000,38.000000,11.000000,57.000000,88.260000,127.150000,850.940000,5.810000,185.140000,26.730000 +4,2023-08-06 17:00:00,0.000000,21.100000,37.000000,12.000000,60.000000,88.510000,127.340000,851.450000,6.330000,185.370000,28.370000 +4,2023-08-06 18:00:00,0.000000,21.100000,37.000000,12.000000,60.000000,88.720000,127.520000,851.960000,6.530000,185.600000,28.970000 +4,2023-08-06 19:00:00,0.000000,21.100000,37.000000,12.000000,60.000000,88.900000,127.710000,852.470000,6.700000,185.820000,29.490000 +4,2023-08-06 20:00:00,0.000000,18.800000,43.000000,12.000000,71.000000,88.900000,127.860000,852.870000,6.700000,186.000000,29.490000 +4,2023-08-06 21:00:00,0.000000,18.800000,43.000000,12.000000,71.000000,88.900000,128.000000,853.270000,6.700000,186.180000,29.500000 +4,2023-08-06 22:00:00,0.000000,18.800000,43.000000,12.000000,71.000000,88.900000,128.000000,853.270000,6.700000,186.180000,29.500000 +4,2023-08-06 23:00:00,0.000000,14.600000,58.000000,6.000000,80.000000,88.660000,128.000000,853.270000,4.780000,186.180000,23.360000 +4,2023-08-07 00:00:00,0.000000,14.600000,58.000000,6.000000,80.000000,88.440000,128.000000,853.270000,4.630000,186.180000,22.850000 +4,2023-08-07 01:00:00,0.000000,14.600000,58.000000,6.000000,80.000000,88.250000,128.000000,853.270000,4.510000,186.180000,22.410000 +4,2023-08-07 02:00:00,0.000000,12.200000,69.000000,5.000000,99.000000,87.840000,128.000000,853.270000,4.040000,186.180000,20.730000 +4,2023-08-07 03:00:00,0.000000,12.200000,69.000000,5.000000,99.000000,87.470000,128.000000,853.270000,3.830000,186.180000,19.960000 +4,2023-08-07 04:00:00,0.000000,12.200000,69.000000,5.000000,99.000000,87.150000,128.000000,853.270000,3.660000,186.180000,19.290000 +4,2023-08-07 05:00:00,0.000000,12.800000,66.000000,5.000000,128.000000,86.920000,128.060000,853.430000,3.540000,186.250000,18.850000 +4,2023-08-07 06:00:00,0.000000,12.800000,66.000000,5.000000,128.000000,86.720000,128.110000,853.580000,3.450000,186.320000,18.460000 +4,2023-08-07 07:00:00,0.000000,12.800000,66.000000,5.000000,128.000000,86.540000,128.170000,853.730000,3.360000,186.380000,18.120000 +4,2023-08-07 08:00:00,0.000000,15.100000,55.000000,6.000000,127.000000,86.540000,128.250000,853.970000,3.530000,186.490000,18.800000 +4,2023-08-07 09:00:00,0.000000,15.100000,55.000000,6.000000,127.000000,86.540000,128.340000,854.200000,3.530000,186.590000,18.800000 +4,2023-08-07 10:00:00,0.000000,15.100000,55.000000,6.000000,127.000000,86.540000,128.430000,854.440000,3.530000,186.700000,18.810000 +4,2023-08-07 11:00:00,0.000000,18.600000,43.000000,9.000000,107.000000,86.770000,128.560000,854.810000,4.250000,186.860000,21.490000 +4,2023-08-07 12:00:00,0.000000,18.600000,43.000000,9.000000,107.000000,86.980000,128.700000,855.180000,4.370000,187.030000,21.950000 +4,2023-08-07 13:00:00,0.000000,18.600000,43.000000,9.000000,107.000000,87.160000,128.830000,855.560000,4.480000,187.200000,22.350000 +4,2023-08-07 14:00:00,0.000000,21.600000,31.000000,11.000000,77.000000,87.780000,129.030000,856.100000,5.430000,187.440000,25.550000 +4,2023-08-07 15:00:00,0.000000,21.600000,31.000000,11.000000,77.000000,88.310000,129.230000,856.640000,5.850000,187.680000,26.940000 +4,2023-08-07 16:00:00,0.000000,21.600000,31.000000,11.000000,77.000000,88.760000,129.430000,857.190000,6.240000,187.920000,28.160000 +4,2023-08-07 17:00:00,0.000000,21.200000,28.000000,18.000000,54.000000,89.270000,129.630000,857.740000,9.560000,188.170000,37.440000 +4,2023-08-07 18:00:00,0.000000,21.200000,28.000000,18.000000,54.000000,89.700000,129.830000,858.290000,10.160000,188.410000,38.960000 +4,2023-08-07 19:00:00,0.000000,21.200000,28.000000,18.000000,54.000000,90.050000,130.040000,858.850000,10.690000,188.660000,40.260000 +4,2023-08-07 20:00:00,0.000000,17.700000,37.000000,17.000000,48.000000,90.050000,130.180000,859.230000,10.160000,188.830000,38.980000 +4,2023-08-07 21:00:00,0.000000,17.700000,37.000000,17.000000,48.000000,90.050000,130.320000,859.620000,10.160000,189.010000,38.980000 +4,2023-08-07 22:00:00,0.000000,17.700000,37.000000,17.000000,48.000000,90.050000,130.320000,859.620000,10.160000,189.010000,38.980000 +4,2023-08-07 23:00:00,0.000000,14.000000,56.000000,10.000000,45.000000,89.690000,130.320000,859.620000,6.780000,189.010000,29.810000 +4,2023-08-08 00:00:00,0.000000,14.000000,56.000000,10.000000,45.000000,89.360000,130.320000,859.620000,6.470000,189.010000,28.890000 +4,2023-08-08 01:00:00,0.000000,14.000000,56.000000,10.000000,45.000000,89.080000,130.320000,859.620000,6.210000,189.010000,28.100000 +4,2023-08-08 02:00:00,0.000000,11.600000,69.000000,8.000000,55.000000,88.540000,130.320000,859.620000,5.200000,189.010000,24.850000 +4,2023-08-08 03:00:00,0.000000,11.600000,69.000000,8.000000,55.000000,88.070000,130.320000,859.620000,4.860000,189.010000,23.690000 +4,2023-08-08 04:00:00,0.000000,11.600000,69.000000,8.000000,55.000000,87.650000,130.320000,859.620000,4.570000,189.010000,22.700000 +4,2023-08-08 05:00:00,0.000000,10.000000,68.000000,8.000000,66.000000,87.290000,130.370000,859.730000,4.350000,189.060000,21.890000 +4,2023-08-08 06:00:00,0.000000,10.000000,68.000000,8.000000,66.000000,86.970000,130.410000,859.830000,4.150000,189.120000,21.190000 +4,2023-08-08 07:00:00,0.000000,10.000000,68.000000,8.000000,66.000000,86.680000,130.460000,859.930000,3.980000,189.170000,20.580000 +4,2023-08-08 08:00:00,0.000000,15.200000,45.000000,12.000000,91.000000,86.770000,130.570000,860.190000,4.940000,189.300000,23.970000 +4,2023-08-08 09:00:00,0.000000,15.200000,45.000000,12.000000,91.000000,86.850000,130.680000,860.440000,5.000000,189.440000,24.170000 +4,2023-08-08 10:00:00,0.000000,15.200000,45.000000,12.000000,91.000000,86.920000,130.790000,860.690000,5.050000,189.570000,24.340000 +4,2023-08-08 11:00:00,0.000000,20.700000,33.000000,14.000000,94.000000,87.500000,130.990000,861.120000,6.060000,189.800000,27.640000 +4,2023-08-08 12:00:00,0.000000,20.700000,33.000000,14.000000,94.000000,87.990000,131.180000,861.550000,6.500000,190.030000,29.010000 +4,2023-08-08 13:00:00,0.000000,20.700000,33.000000,14.000000,94.000000,88.410000,131.370000,861.980000,6.900000,190.260000,30.200000 +4,2023-08-08 14:00:00,0.000000,23.100000,26.000000,17.000000,93.000000,89.150000,131.620000,862.530000,8.930000,190.550000,35.870000 +4,2023-08-08 15:00:00,0.000000,23.100000,26.000000,17.000000,93.000000,89.760000,131.870000,863.080000,9.740000,190.840000,37.990000 +4,2023-08-08 16:00:00,0.000000,23.100000,26.000000,17.000000,93.000000,90.260000,132.120000,863.630000,10.470000,191.130000,39.800000 +4,2023-08-08 17:00:00,0.000000,23.500000,24.000000,14.000000,110.000000,90.750000,132.380000,864.210000,9.650000,191.440000,37.770000 +4,2023-08-08 18:00:00,0.000000,23.500000,24.000000,14.000000,110.000000,91.150000,132.640000,864.790000,10.230000,191.750000,39.230000 +4,2023-08-08 19:00:00,0.000000,23.500000,24.000000,14.000000,110.000000,91.480000,132.900000,865.370000,10.720000,192.060000,40.450000 +4,2023-08-08 20:00:00,0.000000,21.400000,27.000000,9.000000,106.000000,91.560000,133.110000,865.860000,8.420000,192.320000,34.560000 +4,2023-08-08 21:00:00,0.000000,21.400000,27.000000,9.000000,106.000000,91.620000,133.330000,866.350000,8.500000,192.570000,34.770000 +4,2023-08-08 22:00:00,0.000000,21.400000,27.000000,9.000000,106.000000,91.680000,133.330000,866.350000,8.560000,192.570000,34.950000 +4,2023-08-08 23:00:00,0.000000,17.700000,35.000000,12.000000,110.000000,91.620000,133.330000,866.350000,9.880000,192.570000,38.390000 +4,2023-08-09 00:00:00,0.000000,17.700000,35.000000,12.000000,110.000000,91.570000,133.330000,866.350000,9.820000,192.570000,38.220000 +4,2023-08-09 01:00:00,0.000000,17.700000,35.000000,12.000000,110.000000,91.530000,133.330000,866.350000,9.760000,192.570000,38.060000 +4,2023-08-09 02:00:00,0.000000,14.500000,46.000000,8.000000,116.000000,91.230000,133.330000,866.350000,7.650000,192.570000,32.420000 +4,2023-08-09 03:00:00,0.000000,14.500000,46.000000,8.000000,116.000000,90.970000,133.330000,866.350000,7.360000,192.570000,31.610000 +4,2023-08-09 04:00:00,0.000000,14.500000,46.000000,8.000000,116.000000,90.730000,133.330000,866.350000,7.120000,192.570000,30.900000 +4,2023-08-09 05:00:00,0.000000,11.100000,60.000000,5.000000,117.000000,90.250000,133.400000,866.490000,5.720000,192.650000,26.610000 +4,2023-08-09 06:00:00,0.000000,11.100000,60.000000,5.000000,117.000000,89.820000,133.460000,866.620000,5.370000,192.720000,25.490000 +4,2023-08-09 07:00:00,0.000000,11.100000,60.000000,5.000000,117.000000,89.430000,133.530000,866.760000,5.080000,192.800000,24.520000 +4,2023-08-09 08:00:00,0.000000,16.400000,45.000000,7.000000,119.000000,89.400000,133.650000,867.010000,5.590000,192.940000,26.220000 +4,2023-08-09 09:00:00,0.000000,16.400000,45.000000,7.000000,119.000000,89.380000,133.770000,867.270000,5.570000,193.090000,26.160000 +4,2023-08-09 10:00:00,0.000000,16.400000,45.000000,7.000000,119.000000,89.350000,133.890000,867.530000,5.550000,193.230000,26.100000 +4,2023-08-09 11:00:00,0.000000,22.300000,31.000000,12.000000,129.000000,89.670000,134.120000,868.000000,7.480000,193.490000,31.960000 +4,2023-08-09 12:00:00,0.000000,22.300000,31.000000,12.000000,129.000000,89.930000,134.340000,868.470000,7.770000,193.750000,32.790000 +4,2023-08-09 13:00:00,0.000000,22.300000,31.000000,12.000000,129.000000,90.160000,134.560000,868.940000,8.020000,194.020000,33.500000 +4,2023-08-09 14:00:00,0.000000,24.900000,26.000000,12.000000,111.000000,90.630000,134.840000,869.530000,8.590000,194.340000,35.060000 +4,2023-08-09 15:00:00,0.000000,24.900000,26.000000,12.000000,111.000000,91.030000,135.120000,870.120000,9.080000,194.670000,36.380000 +4,2023-08-09 16:00:00,0.000000,24.900000,26.000000,12.000000,111.000000,91.350000,135.400000,870.710000,9.510000,195.000000,37.490000 +4,2023-08-09 17:00:00,0.000000,24.500000,26.000000,13.000000,114.000000,91.600000,135.680000,871.290000,10.360000,195.320000,39.650000 +4,2023-08-09 18:00:00,0.000000,24.500000,26.000000,13.000000,114.000000,91.800000,135.950000,871.860000,10.660000,195.640000,40.410000 +4,2023-08-09 19:00:00,0.000000,24.500000,26.000000,13.000000,114.000000,91.970000,136.230000,872.440000,10.920000,195.960000,41.040000 +4,2023-08-09 20:00:00,0.000000,22.400000,32.000000,11.000000,118.000000,91.970000,136.450000,872.910000,9.870000,196.220000,38.450000 +4,2023-08-09 21:00:00,0.000000,22.400000,32.000000,11.000000,118.000000,91.970000,136.670000,873.370000,9.870000,196.470000,38.460000 +4,2023-08-09 22:00:00,0.000000,22.400000,32.000000,11.000000,118.000000,91.970000,136.670000,873.370000,9.870000,196.470000,38.460000 +4,2023-08-09 23:00:00,0.000000,17.900000,46.000000,9.000000,119.000000,91.640000,136.670000,873.370000,8.520000,196.470000,34.940000 +4,2023-08-10 00:00:00,0.000000,17.900000,46.000000,9.000000,119.000000,91.360000,136.670000,873.370000,8.190000,196.470000,34.010000 +4,2023-08-10 01:00:00,0.000000,17.900000,46.000000,9.000000,119.000000,91.110000,136.670000,873.370000,7.900000,196.470000,33.220000 +4,2023-08-10 02:00:00,0.000000,15.300000,59.000000,7.000000,124.000000,90.580000,136.670000,873.370000,6.630000,196.470000,29.520000 +4,2023-08-10 03:00:00,0.000000,15.300000,59.000000,7.000000,124.000000,90.120000,136.670000,873.370000,6.200000,196.470000,28.220000 +4,2023-08-10 04:00:00,0.000000,15.300000,59.000000,7.000000,124.000000,89.710000,136.670000,873.370000,5.850000,196.470000,27.120000 +4,2023-08-10 05:00:00,0.000000,12.600000,73.000000,5.000000,128.000000,89.050000,136.720000,873.480000,4.810000,196.530000,23.650000 +4,2023-08-10 06:00:00,0.000000,12.600000,73.000000,5.000000,128.000000,88.450000,136.770000,873.580000,4.410000,196.590000,22.270000 +4,2023-08-10 07:00:00,0.000000,12.600000,73.000000,5.000000,128.000000,87.930000,136.820000,873.680000,4.090000,196.650000,21.100000 +4,2023-08-10 08:00:00,0.000000,17.500000,54.000000,8.000000,127.000000,87.910000,136.930000,873.920000,4.750000,196.780000,23.460000 +4,2023-08-10 09:00:00,0.000000,17.500000,54.000000,8.000000,127.000000,87.900000,137.050000,874.160000,4.740000,196.910000,23.430000 +4,2023-08-10 10:00:00,0.000000,17.500000,54.000000,8.000000,127.000000,87.880000,137.160000,874.400000,4.730000,197.050000,23.400000 +4,2023-08-10 11:00:00,0.000000,23.600000,32.000000,14.000000,136.000000,88.480000,137.410000,874.920000,6.970000,197.340000,30.580000 +4,2023-08-10 12:00:00,0.000000,23.600000,32.000000,14.000000,136.000000,88.970000,137.660000,875.440000,7.490000,197.630000,32.070000 +4,2023-08-10 13:00:00,0.000000,23.600000,32.000000,14.000000,136.000000,89.380000,137.900000,875.960000,7.940000,197.910000,33.360000 +4,2023-08-10 14:00:00,0.000000,26.000000,27.000000,14.000000,130.000000,90.030000,138.210000,876.600000,8.710000,198.270000,35.490000 +4,2023-08-10 15:00:00,0.000000,26.000000,27.000000,14.000000,130.000000,90.560000,138.520000,877.240000,9.390000,198.630000,37.290000 +4,2023-08-10 16:00:00,0.000000,26.000000,27.000000,14.000000,130.000000,90.980000,138.830000,877.890000,9.980000,198.980000,38.810000 +4,2023-08-10 17:00:00,0.000000,26.400000,24.000000,16.000000,129.000000,91.490000,139.150000,878.570000,11.860000,199.360000,43.390000 +4,2023-08-10 18:00:00,0.000000,26.400000,24.000000,16.000000,129.000000,91.890000,139.480000,879.250000,12.560000,199.740000,45.010000 +4,2023-08-10 19:00:00,0.000000,26.400000,24.000000,16.000000,129.000000,92.210000,139.810000,879.940000,13.150000,200.120000,46.340000 +4,2023-08-10 20:00:00,0.000000,26.400000,24.000000,16.000000,129.000000,92.470000,140.140000,880.620000,13.630000,200.500000,47.420000 +4,2023-08-10 21:00:00,0.000000,26.400000,24.000000,16.000000,129.000000,92.670000,140.140000,880.620000,14.030000,200.500000,48.280000 +4,2023-08-10 22:00:00,0.000000,26.400000,24.000000,16.000000,129.000000,92.830000,140.140000,880.620000,14.350000,200.500000,48.980000 +4,2023-08-10 23:00:00,0.000000,19.000000,38.000000,9.000000,135.000000,92.610000,140.140000,880.620000,9.770000,200.500000,38.310000 +4,2023-08-11 00:00:00,0.000000,19.000000,38.000000,9.000000,135.000000,92.410000,140.140000,880.620000,9.500000,200.500000,37.620000 +4,2023-08-11 01:00:00,0.000000,19.000000,38.000000,9.000000,135.000000,92.240000,140.140000,880.620000,9.270000,200.500000,37.020000 +4,2023-08-11 02:00:00,0.000000,19.000000,38.000000,9.000000,135.000000,92.080000,140.140000,880.620000,9.070000,200.500000,36.490000 +4,2023-08-11 03:00:00,0.000000,19.000000,38.000000,9.000000,135.000000,91.940000,140.140000,880.620000,8.890000,200.500000,36.020000 +4,2023-08-11 04:00:00,0.000000,19.000000,38.000000,9.000000,135.000000,91.820000,140.140000,880.620000,8.740000,200.500000,35.610000 +4,2023-08-11 05:00:00,0.000000,13.400000,59.000000,7.000000,155.000000,91.210000,140.260000,880.920000,7.250000,200.650000,31.450000 +4,2023-08-11 06:00:00,0.000000,13.400000,59.000000,7.000000,155.000000,90.680000,140.380000,881.220000,6.720000,200.790000,29.870000 +4,2023-08-11 07:00:00,0.000000,13.400000,59.000000,7.000000,155.000000,90.200000,140.500000,881.520000,6.270000,200.930000,28.520000 +4,2023-08-11 08:00:00,0.000000,13.400000,59.000000,7.000000,155.000000,89.770000,140.620000,881.820000,5.900000,201.070000,27.360000 +4,2023-08-11 09:00:00,0.000000,13.400000,59.000000,7.000000,155.000000,89.400000,140.740000,882.120000,5.590000,201.220000,26.370000 +4,2023-08-11 10:00:00,0.000000,13.400000,59.000000,7.000000,155.000000,89.060000,140.860000,882.420000,5.330000,201.360000,25.500000 +4,2023-08-11 11:00:00,0.020000,22.900000,42.000000,15.000000,164.000000,88.670000,140.760000,882.970000,7.540000,201.290000,32.300000 +4,2023-08-11 12:00:00,0.000000,22.900000,42.000000,15.000000,164.000000,88.770000,141.070000,883.740000,7.640000,201.660000,32.610000 +4,2023-08-11 13:00:00,0.000000,22.900000,42.000000,15.000000,164.000000,88.850000,141.380000,884.510000,7.730000,202.020000,32.870000 +4,2023-08-11 14:00:00,0.000000,22.900000,42.000000,15.000000,164.000000,88.920000,141.690000,885.280000,7.810000,202.390000,33.090000 +4,2023-08-11 15:00:00,0.000000,22.900000,42.000000,15.000000,164.000000,88.970000,141.990000,886.040000,7.870000,202.760000,33.280000 +4,2023-08-11 16:00:00,0.000000,22.900000,42.000000,15.000000,164.000000,89.020000,142.300000,886.810000,7.920000,203.120000,33.430000 +4,2023-08-11 17:00:00,4.180000,21.500000,85.000000,9.000000,185.000000,36.470000,106.590000,843.120000,0.030000,161.980000,0.100000 +4,2023-08-11 18:00:00,0.000000,21.500000,85.000000,9.000000,185.000000,38.680000,106.660000,843.300000,0.040000,162.070000,0.150000 +4,2023-08-11 19:00:00,0.000000,21.500000,85.000000,9.000000,185.000000,40.820000,106.730000,843.490000,0.060000,162.170000,0.230000 +4,2023-08-11 20:00:00,0.000000,21.500000,85.000000,9.000000,185.000000,42.890000,106.810000,843.670000,0.090000,162.260000,0.330000 +4,2023-08-11 21:00:00,0.000000,21.500000,85.000000,9.000000,185.000000,44.900000,106.810000,843.670000,0.130000,162.260000,0.460000 +4,2023-08-11 22:00:00,0.000000,21.500000,85.000000,9.000000,185.000000,46.830000,106.810000,843.670000,0.170000,162.260000,0.610000 +4,2023-08-11 23:00:00,14.590000,16.600000,98.000000,9.000000,171.000000,7.580000,59.530000,690.540000,0.000000,97.950000,0.000000 +4,2023-08-12 00:00:00,0.000000,16.600000,98.000000,9.000000,171.000000,7.950000,59.530000,690.540000,0.000000,97.950000,0.000000 +4,2023-08-12 01:00:00,0.000000,16.600000,98.000000,9.000000,171.000000,8.310000,59.530000,690.540000,0.000000,97.950000,0.000000 +4,2023-08-12 02:00:00,0.000000,16.600000,98.000000,9.000000,171.000000,8.680000,59.530000,690.540000,0.000000,97.950000,0.000000 +4,2023-08-12 03:00:00,0.000000,16.600000,98.000000,9.000000,171.000000,9.050000,59.530000,690.540000,0.000000,97.950000,0.000000 +4,2023-08-12 04:00:00,0.000000,16.600000,98.000000,9.000000,171.000000,9.410000,59.530000,690.540000,0.000000,97.950000,0.000000 +4,2023-08-12 05:00:00,0.010000,15.700000,97.000000,12.000000,208.000000,9.920000,59.420000,690.510000,0.000000,97.810000,0.000000 +4,2023-08-12 06:00:00,0.000000,15.700000,97.000000,12.000000,208.000000,10.500000,59.430000,690.540000,0.000000,97.820000,0.000000 +4,2023-08-12 07:00:00,0.000000,15.700000,97.000000,12.000000,208.000000,11.070000,59.440000,690.570000,0.000000,97.830000,0.000000 +4,2023-08-12 08:00:00,0.000000,15.700000,97.000000,12.000000,208.000000,11.650000,59.450000,690.600000,0.000000,97.850000,0.000000 +4,2023-08-12 09:00:00,0.000000,15.700000,97.000000,12.000000,208.000000,12.220000,59.460000,690.630000,0.000000,97.860000,0.000000 +4,2023-08-12 10:00:00,0.000000,15.700000,97.000000,12.000000,208.000000,12.800000,59.470000,690.660000,0.000000,97.870000,0.000000 +4,2023-08-12 11:00:00,0.020000,23.400000,56.000000,15.000000,212.000000,18.810000,59.520000,691.270000,0.000000,97.960000,0.000000 +4,2023-08-12 12:00:00,0.000000,23.400000,56.000000,15.000000,212.000000,24.820000,59.750000,691.990000,0.000000,98.280000,0.000000 +4,2023-08-12 13:00:00,0.000000,23.400000,56.000000,15.000000,212.000000,30.690000,59.970000,692.710000,0.010000,98.600000,0.020000 +4,2023-08-12 14:00:00,0.000000,23.400000,56.000000,15.000000,212.000000,36.340000,60.190000,693.430000,0.030000,98.920000,0.100000 +4,2023-08-12 15:00:00,0.000000,23.400000,56.000000,15.000000,212.000000,41.700000,60.410000,694.150000,0.100000,99.230000,0.280000 +4,2023-08-12 16:00:00,0.000000,23.400000,56.000000,15.000000,212.000000,46.730000,60.630000,694.870000,0.230000,99.550000,0.630000 +4,2023-08-12 17:00:00,1.130000,22.000000,55.000000,17.000000,217.000000,41.650000,55.050000,688.950000,0.110000,91.770000,0.290000 +4,2023-08-12 18:00:00,0.000000,22.000000,55.000000,17.000000,217.000000,46.630000,55.260000,689.630000,0.250000,92.080000,0.650000 +4,2023-08-12 19:00:00,0.000000,22.000000,55.000000,17.000000,217.000000,51.260000,55.470000,690.310000,0.450000,92.380000,1.630000 +4,2023-08-12 20:00:00,0.000000,22.000000,55.000000,17.000000,217.000000,55.510000,55.680000,690.980000,0.690000,92.690000,3.100000 +4,2023-08-12 21:00:00,0.000000,22.000000,55.000000,17.000000,217.000000,59.380000,55.680000,690.980000,0.930000,92.690000,4.360000 +4,2023-08-12 22:00:00,0.000000,22.000000,55.000000,17.000000,217.000000,62.870000,55.680000,690.980000,1.130000,92.690000,5.360000 +4,2023-08-12 23:00:00,3.300000,15.200000,95.000000,16.000000,203.000000,31.450000,42.030000,671.720000,0.010000,72.700000,0.020000 +4,2023-08-13 00:00:00,0.000000,15.200000,95.000000,16.000000,203.000000,32.320000,42.030000,671.720000,0.010000,72.700000,0.030000 +4,2023-08-13 01:00:00,0.000000,15.200000,95.000000,16.000000,203.000000,33.190000,42.030000,671.720000,0.020000,72.700000,0.040000 +4,2023-08-13 02:00:00,0.000000,15.200000,95.000000,16.000000,203.000000,34.050000,42.030000,671.720000,0.020000,72.700000,0.050000 +4,2023-08-13 03:00:00,0.000000,15.200000,95.000000,16.000000,203.000000,34.890000,42.030000,671.720000,0.030000,72.700000,0.060000 +4,2023-08-13 04:00:00,0.000000,15.200000,95.000000,16.000000,203.000000,35.730000,42.030000,671.720000,0.030000,72.700000,0.070000 +4,2023-08-13 05:00:00,0.000000,14.600000,88.000000,16.000000,252.000000,37.450000,42.060000,671.820000,0.050000,72.740000,0.100000 +4,2023-08-13 06:00:00,0.000000,14.600000,88.000000,16.000000,252.000000,39.140000,42.100000,671.920000,0.070000,72.790000,0.140000 +4,2023-08-13 07:00:00,0.000000,14.600000,88.000000,16.000000,252.000000,40.780000,42.130000,672.020000,0.090000,72.840000,0.200000 +4,2023-08-13 08:00:00,0.000000,14.600000,88.000000,16.000000,252.000000,42.370000,42.160000,672.120000,0.120000,72.880000,0.260000 +4,2023-08-13 09:00:00,0.000000,14.600000,88.000000,16.000000,252.000000,43.930000,42.190000,672.210000,0.150000,72.930000,0.340000 +4,2023-08-13 10:00:00,0.000000,14.600000,88.000000,16.000000,252.000000,45.430000,42.220000,672.310000,0.200000,72.980000,0.430000 +4,2023-08-13 11:00:00,0.000000,21.700000,55.000000,14.000000,263.000000,49.880000,42.390000,672.890000,0.330000,73.250000,0.730000 +4,2023-08-13 12:00:00,0.000000,21.700000,55.000000,14.000000,263.000000,54.000000,42.570000,673.470000,0.510000,73.530000,1.540000 +4,2023-08-13 13:00:00,0.000000,21.700000,55.000000,14.000000,263.000000,57.780000,42.750000,674.050000,0.710000,73.800000,2.610000 +4,2023-08-13 14:00:00,0.000000,21.700000,55.000000,14.000000,263.000000,61.230000,42.930000,674.630000,0.890000,74.070000,3.480000 +4,2023-08-13 15:00:00,0.000000,21.700000,55.000000,14.000000,263.000000,64.340000,43.110000,675.210000,1.040000,74.350000,4.150000 +4,2023-08-13 16:00:00,0.000000,21.700000,55.000000,14.000000,263.000000,67.140000,43.280000,675.790000,1.150000,74.620000,4.650000 +4,2023-08-13 17:00:00,0.000000,23.600000,51.000000,19.000000,309.000000,70.220000,43.500000,676.500000,1.640000,74.950000,6.600000 +4,2023-08-13 18:00:00,0.000000,23.600000,51.000000,19.000000,309.000000,72.900000,43.720000,677.210000,1.810000,75.290000,7.230000 +4,2023-08-13 19:00:00,0.000000,23.600000,51.000000,19.000000,309.000000,75.210000,43.940000,677.920000,2.020000,75.620000,8.010000 +4,2023-08-13 20:00:00,0.000000,23.600000,51.000000,19.000000,309.000000,77.190000,44.150000,678.630000,2.300000,75.950000,9.000000 +4,2023-08-13 21:00:00,0.000000,23.600000,51.000000,19.000000,309.000000,78.880000,44.150000,678.630000,2.650000,75.950000,10.150000 +4,2023-08-13 22:00:00,0.000000,23.600000,51.000000,19.000000,309.000000,80.320000,44.150000,678.630000,3.060000,75.950000,11.420000 +4,2023-08-13 23:00:00,0.000000,17.500000,68.000000,7.000000,258.000000,80.630000,44.150000,678.630000,1.730000,75.950000,6.990000 +4,2023-08-14 00:00:00,0.000000,17.500000,68.000000,7.000000,258.000000,80.920000,44.150000,678.630000,1.790000,75.950000,7.200000 +4,2023-08-14 01:00:00,0.000000,17.500000,68.000000,7.000000,258.000000,81.180000,44.150000,678.630000,1.840000,75.950000,7.390000 +4,2023-08-14 02:00:00,0.000000,17.500000,68.000000,7.000000,258.000000,81.420000,44.150000,678.630000,1.890000,75.950000,7.580000 +4,2023-08-14 03:00:00,0.000000,17.500000,68.000000,7.000000,258.000000,81.640000,44.150000,678.630000,1.940000,75.950000,7.760000 +4,2023-08-14 04:00:00,0.000000,17.500000,68.000000,7.000000,258.000000,81.840000,44.150000,678.630000,1.990000,75.950000,7.920000 +4,2023-08-14 05:00:00,0.000000,14.100000,80.000000,7.000000,267.000000,81.840000,44.190000,678.750000,1.990000,76.010000,7.920000 +4,2023-08-14 06:00:00,0.000000,14.100000,80.000000,7.000000,267.000000,81.840000,44.230000,678.880000,1.990000,76.070000,7.930000 +4,2023-08-14 07:00:00,0.000000,14.100000,80.000000,7.000000,267.000000,81.840000,44.270000,679.000000,1.990000,76.140000,7.930000 +4,2023-08-14 08:00:00,0.000000,14.100000,80.000000,7.000000,267.000000,81.840000,44.310000,679.120000,1.990000,76.200000,7.940000 +4,2023-08-14 09:00:00,0.000000,14.100000,80.000000,7.000000,267.000000,81.840000,44.350000,679.250000,1.990000,76.260000,7.940000 +4,2023-08-14 10:00:00,0.000000,14.100000,80.000000,7.000000,267.000000,81.840000,44.390000,679.370000,1.990000,76.320000,7.950000 +4,2023-08-14 11:00:00,0.000000,22.600000,53.000000,3.000000,329.000000,82.440000,44.550000,679.860000,1.750000,76.560000,7.100000 +4,2023-08-14 12:00:00,0.000000,22.600000,53.000000,3.000000,329.000000,82.970000,44.720000,680.360000,1.870000,76.810000,7.560000 +4,2023-08-14 13:00:00,0.000000,22.600000,53.000000,3.000000,329.000000,83.450000,44.880000,680.850000,1.990000,77.060000,8.000000 +4,2023-08-14 14:00:00,0.000000,22.600000,53.000000,3.000000,329.000000,83.870000,45.040000,681.350000,2.100000,77.300000,8.420000 +4,2023-08-14 15:00:00,0.000000,22.600000,53.000000,3.000000,329.000000,84.250000,45.200000,681.840000,2.210000,77.550000,8.820000 +4,2023-08-14 16:00:00,0.000000,22.600000,53.000000,3.000000,329.000000,84.590000,45.360000,682.340000,2.320000,77.790000,9.190000 +4,2023-08-14 17:00:00,0.000000,26.300000,36.000000,7.000000,346.000000,85.630000,45.630000,683.180000,3.270000,78.210000,12.260000 +4,2023-08-14 18:00:00,0.000000,26.300000,36.000000,7.000000,346.000000,86.510000,45.910000,684.020000,3.700000,78.620000,13.550000 +4,2023-08-14 19:00:00,0.000000,26.300000,36.000000,7.000000,346.000000,87.240000,46.180000,684.860000,4.100000,79.030000,14.740000 +4,2023-08-14 20:00:00,0.000000,26.300000,36.000000,7.000000,346.000000,87.860000,46.450000,685.700000,4.480000,79.450000,15.810000 +4,2023-08-14 21:00:00,0.000000,26.300000,36.000000,7.000000,346.000000,88.370000,46.450000,685.700000,4.830000,79.450000,16.710000 +4,2023-08-14 22:00:00,0.000000,26.300000,36.000000,7.000000,346.000000,88.800000,46.450000,685.700000,5.130000,79.450000,17.500000 +4,2023-08-14 23:00:00,0.000000,17.800000,62.000000,6.000000,148.000000,88.520000,46.450000,685.700000,4.680000,79.450000,16.340000 +4,2023-08-15 00:00:00,0.000000,17.800000,62.000000,6.000000,148.000000,88.260000,46.450000,685.700000,4.520000,79.450000,15.900000 +4,2023-08-15 01:00:00,0.000000,17.800000,62.000000,6.000000,148.000000,88.040000,46.450000,685.700000,4.380000,79.450000,15.530000 +4,2023-08-15 02:00:00,0.000000,17.800000,62.000000,6.000000,148.000000,87.850000,46.450000,685.700000,4.260000,79.450000,15.200000 +4,2023-08-15 03:00:00,0.000000,17.800000,62.000000,6.000000,148.000000,87.680000,46.450000,685.700000,4.160000,79.450000,14.920000 +4,2023-08-15 04:00:00,0.000000,17.800000,62.000000,6.000000,148.000000,87.540000,46.450000,685.700000,4.070000,79.450000,14.680000 +4,2023-08-15 05:00:00,0.000000,15.900000,70.000000,10.000000,172.000000,87.170000,46.520000,685.830000,4.720000,79.540000,16.450000 +4,2023-08-15 06:00:00,0.000000,15.900000,70.000000,10.000000,172.000000,86.850000,46.580000,685.960000,4.510000,79.640000,15.910000 +4,2023-08-15 07:00:00,0.000000,15.900000,70.000000,10.000000,172.000000,86.570000,46.640000,686.090000,4.340000,79.730000,15.450000 +4,2023-08-15 08:00:00,0.000000,15.900000,70.000000,10.000000,172.000000,86.330000,46.700000,686.220000,4.190000,79.830000,15.070000 +4,2023-08-15 09:00:00,0.000000,15.900000,70.000000,10.000000,172.000000,86.120000,46.770000,686.350000,4.070000,79.920000,14.740000 +4,2023-08-15 10:00:00,0.000000,15.900000,70.000000,10.000000,172.000000,85.940000,46.830000,686.480000,3.970000,80.020000,14.460000 +4,2023-08-15 11:00:00,0.000000,27.900000,35.000000,13.000000,185.000000,87.000000,47.120000,687.070000,5.370000,80.440000,18.200000 +4,2023-08-15 12:00:00,0.000000,27.900000,35.000000,13.000000,185.000000,87.870000,47.400000,687.660000,6.070000,80.870000,19.970000 +4,2023-08-15 13:00:00,0.000000,27.900000,35.000000,13.000000,185.000000,88.560000,47.680000,688.240000,6.710000,81.290000,21.520000 +4,2023-08-15 14:00:00,0.000000,27.900000,35.000000,13.000000,185.000000,89.120000,47.970000,688.830000,7.270000,81.710000,22.860000 +4,2023-08-15 15:00:00,0.000000,27.900000,35.000000,13.000000,185.000000,89.580000,48.250000,689.420000,7.760000,82.140000,24.000000 +4,2023-08-15 16:00:00,0.000000,27.900000,35.000000,13.000000,185.000000,89.940000,48.540000,690.000000,8.180000,82.560000,24.960000 +4,2023-08-15 17:00:00,0.000000,33.000000,23.000000,13.000000,182.000000,91.110000,48.990000,690.930000,9.670000,83.230000,28.130000 +4,2023-08-15 18:00:00,0.000000,33.000000,23.000000,13.000000,182.000000,92.000000,49.440000,691.870000,10.970000,83.890000,30.770000 +4,2023-08-15 19:00:00,0.000000,33.000000,23.000000,13.000000,182.000000,92.680000,49.890000,692.800000,12.080000,84.560000,32.940000 +4,2023-08-15 20:00:00,0.000000,33.000000,23.000000,13.000000,182.000000,93.200000,50.340000,693.730000,12.980000,85.230000,34.690000 +4,2023-08-15 21:00:00,0.000000,33.000000,23.000000,13.000000,182.000000,93.590000,50.340000,693.730000,13.700000,85.230000,35.960000 +4,2023-08-15 22:00:00,0.000000,33.000000,23.000000,13.000000,182.000000,93.880000,50.340000,693.730000,14.280000,85.230000,36.930000 +4,2023-08-15 23:00:00,0.000000,25.900000,35.000000,14.000000,178.000000,93.690000,50.340000,693.730000,14.610000,85.230000,37.500000 +4,2023-08-16 00:00:00,0.000000,25.900000,35.000000,14.000000,178.000000,93.520000,50.340000,693.730000,14.280000,85.230000,36.940000 +4,2023-08-16 01:00:00,0.000000,25.900000,35.000000,14.000000,178.000000,93.380000,50.340000,693.730000,14.000000,85.230000,36.460000 +4,2023-08-16 02:00:00,0.000000,25.900000,35.000000,14.000000,178.000000,93.260000,50.340000,693.730000,13.770000,85.230000,36.060000 +4,2023-08-16 03:00:00,0.000000,25.900000,35.000000,14.000000,178.000000,93.160000,50.340000,693.730000,13.570000,85.230000,35.730000 +4,2023-08-16 04:00:00,0.000000,25.900000,35.000000,14.000000,178.000000,93.070000,50.340000,693.730000,13.410000,85.230000,35.440000 +4,2023-08-16 05:00:00,0.000000,22.300000,42.000000,13.000000,169.000000,92.730000,50.510000,694.020000,12.150000,85.470000,33.260000 +4,2023-08-16 06:00:00,0.000000,22.300000,42.000000,13.000000,169.000000,92.440000,50.680000,694.300000,11.670000,85.710000,32.410000 +4,2023-08-16 07:00:00,0.000000,22.300000,42.000000,13.000000,169.000000,92.190000,50.840000,694.590000,11.260000,85.960000,31.700000 +4,2023-08-16 08:00:00,0.000000,22.300000,42.000000,13.000000,169.000000,91.970000,51.010000,694.880000,10.920000,86.200000,31.100000 +4,2023-08-16 09:00:00,0.000000,22.300000,42.000000,13.000000,169.000000,91.790000,51.180000,695.170000,10.640000,86.440000,30.600000 +4,2023-08-16 10:00:00,0.000000,22.300000,42.000000,13.000000,169.000000,91.630000,51.340000,695.460000,10.410000,86.690000,30.190000 +4,2023-08-16 11:00:00,0.000000,32.100000,26.000000,16.000000,214.000000,92.200000,51.720000,696.110000,13.130000,87.240000,35.360000 +4,2023-08-16 12:00:00,0.000000,32.100000,26.000000,16.000000,214.000000,92.640000,52.100000,696.760000,13.960000,87.790000,36.930000 +4,2023-08-16 13:00:00,0.000000,32.100000,26.000000,16.000000,214.000000,92.970000,52.470000,697.420000,14.620000,88.330000,38.170000 +4,2023-08-16 14:00:00,0.000000,32.100000,26.000000,16.000000,214.000000,93.220000,52.850000,698.070000,15.140000,88.880000,39.160000 +4,2023-08-16 15:00:00,0.000000,32.100000,26.000000,16.000000,214.000000,93.410000,53.230000,698.720000,15.550000,89.430000,39.950000 +4,2023-08-16 16:00:00,0.000000,32.100000,26.000000,16.000000,214.000000,93.550000,53.610000,699.380000,15.860000,89.970000,40.580000 +4,2023-08-16 17:00:00,0.000000,34.400000,22.000000,6.000000,284.000000,93.940000,54.060000,700.160000,10.110000,90.620000,30.260000 +4,2023-08-16 18:00:00,0.000000,34.400000,22.000000,6.000000,284.000000,94.230000,54.510000,700.940000,10.540000,91.280000,31.230000 +4,2023-08-16 19:00:00,0.000000,34.400000,22.000000,6.000000,284.000000,94.470000,54.960000,701.730000,10.880000,91.930000,32.010000 +4,2023-08-16 20:00:00,0.000000,34.400000,22.000000,6.000000,284.000000,94.640000,55.420000,702.510000,11.150000,92.580000,32.650000 +4,2023-08-16 21:00:00,0.000000,34.400000,22.000000,6.000000,284.000000,94.780000,55.420000,702.510000,11.360000,92.580000,33.060000 +4,2023-08-16 22:00:00,0.000000,34.400000,22.000000,6.000000,284.000000,94.890000,55.420000,702.510000,11.530000,92.580000,33.380000 +4,2023-08-16 23:00:00,2.550000,21.600000,80.000000,3.000000,222.000000,55.080000,46.170000,702.510000,0.330000,79.310000,0.770000 +4,2023-08-17 00:00:00,0.000000,21.600000,80.000000,3.000000,222.000000,56.540000,46.170000,702.510000,0.370000,79.310000,0.870000 +4,2023-08-17 01:00:00,0.000000,21.600000,80.000000,3.000000,222.000000,57.940000,46.170000,702.510000,0.410000,79.310000,0.970000 +4,2023-08-17 02:00:00,0.000000,21.600000,80.000000,3.000000,222.000000,59.270000,46.170000,702.510000,0.450000,79.310000,1.310000 +4,2023-08-17 03:00:00,0.000000,21.600000,80.000000,3.000000,222.000000,60.550000,46.170000,702.510000,0.490000,79.310000,1.580000 +4,2023-08-17 04:00:00,0.000000,21.600000,80.000000,3.000000,222.000000,61.760000,46.170000,702.510000,0.530000,79.310000,1.800000 +4,2023-08-17 05:00:00,2.420000,19.400000,75.000000,10.000000,26.000000,37.750000,38.680000,685.390000,0.040000,67.790000,0.080000 +4,2023-08-17 06:00:00,0.000000,19.400000,75.000000,10.000000,26.000000,40.700000,38.700000,686.000000,0.070000,67.830000,0.140000 +4,2023-08-17 07:00:00,0.000000,19.400000,75.000000,10.000000,26.000000,43.540000,38.720000,686.610000,0.110000,67.860000,0.230000 +4,2023-08-17 08:00:00,0.000000,19.400000,75.000000,10.000000,26.000000,46.260000,38.730000,687.210000,0.160000,67.900000,0.340000 +4,2023-08-17 09:00:00,0.000000,19.400000,75.000000,10.000000,26.000000,48.850000,38.750000,687.820000,0.230000,67.930000,0.490000 +4,2023-08-17 10:00:00,0.000000,19.400000,75.000000,10.000000,26.000000,51.310000,38.770000,688.420000,0.320000,67.970000,0.660000 +4,2023-08-17 11:00:00,2.000000,14.800000,95.000000,16.000000,323.000000,32.820000,33.410000,674.370000,0.020000,59.460000,0.030000 +4,2023-08-17 12:00:00,0.000000,14.800000,95.000000,16.000000,323.000000,33.670000,33.410000,674.460000,0.020000,59.460000,0.040000 +4,2023-08-17 13:00:00,0.000000,14.800000,95.000000,16.000000,323.000000,34.500000,33.420000,674.550000,0.020000,59.470000,0.050000 +4,2023-08-17 14:00:00,0.000000,14.800000,95.000000,16.000000,323.000000,35.330000,33.420000,674.640000,0.030000,59.470000,0.060000 +4,2023-08-17 15:00:00,0.000000,14.800000,95.000000,16.000000,323.000000,36.150000,33.420000,674.730000,0.040000,59.480000,0.070000 +4,2023-08-17 16:00:00,0.000000,14.800000,95.000000,16.000000,323.000000,36.960000,33.430000,674.820000,0.040000,59.480000,0.080000 +4,2023-08-17 17:00:00,3.250000,15.900000,73.000000,12.000000,299.000000,21.210000,25.950000,652.360000,0.000000,47.210000,0.000000 +4,2023-08-17 18:00:00,0.000000,15.900000,73.000000,12.000000,299.000000,24.480000,25.970000,652.890000,0.000000,47.240000,0.000000 +4,2023-08-17 19:00:00,0.000000,15.900000,73.000000,12.000000,299.000000,27.700000,25.980000,653.410000,0.000000,47.270000,0.010000 +4,2023-08-17 20:00:00,0.000000,15.900000,73.000000,12.000000,299.000000,30.850000,26.000000,653.940000,0.010000,47.300000,0.010000 +4,2023-08-17 21:00:00,0.000000,15.900000,73.000000,12.000000,299.000000,33.920000,26.000000,653.940000,0.020000,47.300000,0.030000 +4,2023-08-17 22:00:00,0.000000,15.900000,73.000000,12.000000,299.000000,36.900000,26.000000,653.940000,0.030000,47.300000,0.050000 +4,2023-08-17 23:00:00,0.000000,12.700000,79.000000,5.000000,216.000000,38.620000,26.000000,653.940000,0.030000,47.300000,0.050000 +4,2023-08-18 00:00:00,0.000000,12.700000,79.000000,5.000000,216.000000,40.300000,26.000000,653.940000,0.050000,47.300000,0.080000 +4,2023-08-18 01:00:00,0.000000,12.700000,79.000000,5.000000,216.000000,41.940000,26.000000,653.940000,0.060000,47.300000,0.100000 +4,2023-08-18 02:00:00,0.000000,12.700000,79.000000,5.000000,216.000000,43.530000,26.000000,653.940000,0.080000,47.300000,0.130000 +4,2023-08-18 03:00:00,0.000000,12.700000,79.000000,5.000000,216.000000,45.090000,26.000000,653.940000,0.110000,47.300000,0.170000 +4,2023-08-18 04:00:00,0.000000,12.700000,79.000000,5.000000,216.000000,46.600000,26.000000,653.940000,0.130000,47.300000,0.220000 +4,2023-08-18 05:00:00,0.000000,10.400000,87.000000,8.000000,196.000000,47.640000,26.000000,653.940000,0.180000,47.300000,0.290000 +4,2023-08-18 06:00:00,0.000000,10.400000,87.000000,8.000000,196.000000,48.650000,26.040000,654.040000,0.210000,47.360000,0.330000 +4,2023-08-18 07:00:00,0.000000,10.400000,87.000000,8.000000,196.000000,49.630000,26.070000,654.150000,0.230000,47.420000,0.380000 +4,2023-08-18 08:00:00,0.000000,10.400000,87.000000,8.000000,196.000000,50.600000,26.110000,654.260000,0.260000,47.480000,0.430000 +4,2023-08-18 09:00:00,0.000000,10.400000,87.000000,8.000000,196.000000,51.530000,26.150000,654.360000,0.290000,47.540000,0.480000 +4,2023-08-18 10:00:00,0.000000,10.400000,87.000000,8.000000,196.000000,52.450000,26.180000,654.470000,0.320000,47.610000,0.530000 +4,2023-08-18 11:00:00,0.000000,19.900000,48.000000,14.000000,161.000000,56.420000,26.450000,655.260000,0.640000,48.060000,1.230000 +4,2023-08-18 12:00:00,0.000000,19.900000,48.000000,14.000000,161.000000,60.060000,26.720000,656.050000,0.830000,48.510000,2.120000 +4,2023-08-18 13:00:00,0.000000,19.900000,48.000000,14.000000,161.000000,63.370000,26.990000,656.840000,0.990000,48.960000,2.750000 +4,2023-08-18 14:00:00,0.000000,19.900000,48.000000,14.000000,161.000000,66.350000,27.260000,657.630000,1.120000,49.410000,3.230000 +4,2023-08-18 15:00:00,0.000000,19.900000,48.000000,14.000000,161.000000,69.020000,27.530000,658.420000,1.230000,49.860000,3.610000 +4,2023-08-18 16:00:00,0.000000,19.900000,48.000000,14.000000,161.000000,71.400000,27.800000,659.210000,1.330000,50.300000,3.970000 +4,2023-08-18 17:00:00,0.000000,24.100000,33.000000,14.000000,158.000000,74.570000,28.250000,660.520000,1.510000,51.050000,4.640000 +5,2023-08-03 00:00:00,0.000000,16.300000,68.000000,4.000000,80.000000,85.910000,118.400000,826.100000,2.920000,174.330000,16.110000 +5,2023-08-03 01:00:00,0.000000,16.300000,68.000000,4.000000,80.000000,85.820000,118.400000,826.100000,2.890000,174.330000,15.970000 +5,2023-08-03 02:00:00,0.000000,13.200000,84.000000,1.000000,48.000000,85.350000,118.400000,826.100000,2.320000,174.330000,13.520000 +5,2023-08-03 03:00:00,0.000000,13.200000,84.000000,1.000000,48.000000,84.930000,118.400000,826.100000,2.190000,174.330000,12.910000 +5,2023-08-03 04:00:00,0.000000,13.200000,84.000000,1.000000,48.000000,84.550000,118.400000,826.100000,2.080000,174.330000,12.390000 +5,2023-08-03 05:00:00,0.000000,11.100000,97.000000,2.000000,336.000000,83.540000,118.410000,826.120000,1.910000,174.340000,11.570000 +5,2023-08-03 06:00:00,0.000000,11.100000,97.000000,2.000000,336.000000,82.640000,118.410000,826.140000,1.700000,174.350000,10.530000 +5,2023-08-03 07:00:00,0.000000,11.100000,97.000000,2.000000,336.000000,81.830000,118.420000,826.150000,1.540000,174.360000,9.700000 +5,2023-08-03 08:00:00,0.000000,16.200000,72.000000,4.000000,15.000000,81.910000,118.510000,826.390000,1.720000,174.460000,10.630000 +5,2023-08-03 09:00:00,0.000000,16.200000,72.000000,4.000000,15.000000,81.980000,118.590000,826.620000,1.740000,174.570000,10.710000 +5,2023-08-03 10:00:00,0.000000,16.200000,72.000000,4.000000,15.000000,82.040000,118.680000,826.860000,1.750000,174.680000,10.780000 +5,2023-08-03 11:00:00,0.000000,22.200000,47.000000,5.000000,34.000000,82.810000,118.910000,827.500000,2.030000,174.970000,12.140000 +5,2023-08-03 12:00:00,0.000000,22.200000,47.000000,5.000000,34.000000,83.490000,119.150000,828.150000,2.210000,175.260000,13.010000 +5,2023-08-03 13:00:00,0.000000,22.200000,47.000000,5.000000,34.000000,84.090000,119.380000,828.800000,2.390000,175.550000,13.850000 +5,2023-08-03 14:00:00,2.030000,22.300000,53.000000,7.000000,15.000000,55.500000,92.390000,814.760000,0.410000,143.970000,2.260000 +5,2023-08-03 15:00:00,0.000000,22.300000,53.000000,7.000000,15.000000,58.830000,92.600000,815.330000,0.540000,144.250000,3.200000 +5,2023-08-03 16:00:00,0.000000,22.300000,53.000000,7.000000,15.000000,61.880000,92.810000,815.910000,0.650000,144.530000,3.980000 +5,2023-08-03 17:00:00,1.590000,22.000000,57.000000,10.000000,28.000000,47.410000,79.300000,804.980000,0.190000,127.260000,0.630000 +5,2023-08-03 18:00:00,0.000000,22.000000,57.000000,10.000000,28.000000,51.340000,79.490000,805.500000,0.320000,127.520000,1.180000 +5,2023-08-03 19:00:00,0.000000,22.000000,57.000000,10.000000,28.000000,54.990000,79.680000,806.010000,0.460000,127.780000,2.420000 +5,2023-08-03 20:00:00,0.000000,20.700000,54.000000,9.000000,10.000000,58.260000,79.860000,806.520000,0.570000,128.030000,3.210000 +5,2023-08-03 21:00:00,0.000000,20.700000,54.000000,9.000000,10.000000,61.270000,80.050000,807.040000,0.690000,128.290000,4.020000 +5,2023-08-03 22:00:00,0.000000,20.700000,54.000000,9.000000,10.000000,64.030000,80.050000,807.040000,0.800000,128.290000,4.650000 +5,2023-08-03 23:00:00,0.000000,15.200000,73.000000,6.000000,300.000000,65.230000,80.050000,807.040000,0.720000,128.290000,4.180000 +5,2023-08-04 00:00:00,0.000000,15.200000,73.000000,6.000000,300.000000,66.370000,80.050000,807.040000,0.750000,128.290000,4.370000 +5,2023-08-04 01:00:00,0.000000,15.200000,73.000000,6.000000,300.000000,67.440000,80.050000,807.040000,0.780000,128.290000,4.550000 +5,2023-08-04 02:00:00,0.000000,13.000000,82.000000,8.000000,277.000000,68.110000,80.050000,807.040000,0.880000,128.290000,5.160000 +5,2023-08-04 03:00:00,0.000000,13.000000,82.000000,8.000000,277.000000,68.750000,80.050000,807.040000,0.900000,128.290000,5.270000 +5,2023-08-04 04:00:00,0.000000,13.000000,82.000000,8.000000,277.000000,69.350000,80.050000,807.040000,0.920000,128.290000,5.370000 +5,2023-08-04 05:00:00,0.000000,12.900000,90.000000,8.000000,275.000000,69.640000,80.060000,807.100000,0.920000,128.300000,5.420000 +5,2023-08-04 06:00:00,0.000000,12.900000,90.000000,8.000000,275.000000,69.910000,80.060000,807.170000,0.930000,128.310000,5.460000 +5,2023-08-04 07:00:00,0.000000,12.900000,90.000000,8.000000,275.000000,70.180000,80.070000,807.230000,0.940000,128.320000,5.510000 +5,2023-08-04 08:00:00,0.150000,17.800000,74.000000,10.000000,306.000000,69.150000,79.020000,807.470000,1.010000,126.970000,5.860000 +5,2023-08-04 09:00:00,0.000000,17.800000,74.000000,10.000000,306.000000,70.270000,79.040000,807.700000,1.040000,127.010000,6.060000 +5,2023-08-04 10:00:00,0.000000,17.800000,74.000000,10.000000,306.000000,71.300000,79.060000,807.940000,1.080000,127.050000,6.260000 +5,2023-08-04 11:00:00,1.490000,18.200000,85.000000,6.000000,327.000000,53.110000,70.270000,808.070000,0.310000,115.450000,0.960000 +5,2023-08-04 12:00:00,0.000000,18.200000,85.000000,6.000000,327.000000,54.350000,70.290000,808.210000,0.360000,115.470000,1.380000 +5,2023-08-04 13:00:00,0.000000,18.200000,85.000000,6.000000,327.000000,55.560000,70.300000,808.350000,0.400000,115.490000,1.730000 +5,2023-08-04 14:00:00,0.780000,22.000000,59.000000,3.000000,289.000000,50.450000,66.320000,808.830000,0.200000,110.080000,0.600000 +5,2023-08-04 15:00:00,0.000000,22.000000,59.000000,3.000000,289.000000,53.330000,66.370000,809.310000,0.280000,110.150000,0.820000 +5,2023-08-04 16:00:00,0.000000,22.000000,59.000000,3.000000,289.000000,56.040000,66.410000,809.790000,0.360000,110.230000,1.280000 +5,2023-08-04 17:00:00,0.000000,23.900000,43.000000,9.000000,351.000000,60.200000,66.480000,810.540000,0.650000,110.340000,3.370000 +5,2023-08-04 18:00:00,0.000000,23.900000,43.000000,9.000000,351.000000,63.960000,66.550000,811.280000,0.790000,110.460000,4.220000 +5,2023-08-04 19:00:00,0.000000,23.900000,43.000000,9.000000,351.000000,67.320000,66.630000,812.030000,0.900000,110.570000,4.830000 +5,2023-08-04 20:00:00,0.000000,22.600000,47.000000,4.000000,2.000000,69.640000,66.690000,812.670000,0.760000,110.670000,4.000000 +5,2023-08-04 21:00:00,0.000000,22.600000,47.000000,4.000000,2.000000,71.740000,66.750000,813.320000,0.810000,110.770000,4.320000 +5,2023-08-04 22:00:00,0.000000,22.600000,47.000000,4.000000,2.000000,73.630000,66.750000,813.320000,0.870000,110.770000,4.680000 +5,2023-08-04 23:00:00,0.000000,17.000000,66.000000,4.000000,258.000000,74.440000,66.750000,813.320000,0.910000,110.770000,4.870000 +5,2023-08-05 00:00:00,0.000000,17.000000,66.000000,4.000000,258.000000,75.190000,66.750000,813.320000,0.950000,110.770000,5.070000 +5,2023-08-05 01:00:00,0.000000,17.000000,66.000000,4.000000,258.000000,75.890000,66.750000,813.320000,0.990000,110.770000,5.290000 +5,2023-08-05 02:00:00,0.000000,14.400000,76.000000,6.000000,258.000000,76.270000,66.750000,813.320000,1.120000,110.770000,5.980000 +5,2023-08-05 03:00:00,0.000000,14.400000,76.000000,6.000000,258.000000,76.630000,66.750000,813.320000,1.150000,110.770000,6.120000 +5,2023-08-05 04:00:00,0.000000,14.400000,76.000000,6.000000,258.000000,76.960000,66.750000,813.320000,1.170000,110.770000,6.260000 +5,2023-08-05 05:00:00,0.000000,13.100000,85.000000,7.000000,260.000000,77.070000,66.780000,813.410000,1.240000,110.820000,6.620000 +5,2023-08-05 06:00:00,0.000000,13.100000,85.000000,7.000000,260.000000,77.180000,66.810000,813.510000,1.250000,110.860000,6.670000 +5,2023-08-05 07:00:00,0.000000,13.100000,85.000000,7.000000,260.000000,77.270000,66.850000,813.600000,1.260000,110.910000,6.720000 +5,2023-08-05 08:00:00,0.000000,19.000000,66.000000,4.000000,289.000000,77.880000,66.960000,813.920000,1.140000,111.070000,6.100000 +5,2023-08-05 09:00:00,0.000000,19.000000,66.000000,4.000000,289.000000,78.440000,67.060000,814.230000,1.200000,111.230000,6.390000 +5,2023-08-05 10:00:00,0.000000,19.000000,66.000000,4.000000,289.000000,78.950000,67.170000,814.550000,1.250000,111.380000,6.680000 +5,2023-08-05 11:00:00,0.000000,23.700000,51.000000,6.000000,17.000000,80.080000,67.380000,815.160000,1.550000,111.690000,8.110000 +5,2023-08-05 12:00:00,0.000000,23.700000,51.000000,6.000000,17.000000,81.080000,67.590000,815.760000,1.730000,111.990000,8.930000 +5,2023-08-05 13:00:00,0.000000,23.700000,51.000000,6.000000,17.000000,81.950000,67.800000,816.370000,1.910000,112.290000,9.760000 +5,2023-08-05 14:00:00,0.040000,23.000000,51.000000,9.000000,2.000000,82.730000,68.000000,816.950000,2.450000,112.580000,11.980000 +5,2023-08-05 15:00:00,0.000000,23.000000,51.000000,9.000000,2.000000,83.410000,68.200000,817.530000,2.680000,112.870000,12.860000 +5,2023-08-05 16:00:00,0.000000,23.000000,51.000000,9.000000,2.000000,84.000000,68.400000,818.110000,2.890000,113.150000,13.690000 +5,2023-08-05 17:00:00,0.160000,21.700000,55.000000,4.000000,13.000000,84.310000,68.570000,818.600000,2.340000,113.400000,11.590000 +5,2023-08-05 18:00:00,0.000000,21.700000,55.000000,4.000000,13.000000,84.580000,68.740000,819.100000,2.430000,113.640000,11.960000 +5,2023-08-05 19:00:00,0.000000,21.700000,55.000000,4.000000,13.000000,84.830000,68.910000,819.590000,2.520000,113.890000,12.290000 +5,2023-08-05 20:00:00,0.000000,20.800000,52.000000,6.000000,29.000000,85.100000,69.090000,820.090000,2.890000,114.130000,13.730000 +5,2023-08-05 21:00:00,0.000000,20.800000,52.000000,6.000000,29.000000,85.350000,69.260000,820.590000,2.990000,114.380000,14.110000 +5,2023-08-05 22:00:00,0.000000,20.800000,52.000000,6.000000,29.000000,85.560000,69.260000,820.590000,3.080000,114.380000,14.430000 +5,2023-08-05 23:00:00,0.000000,16.500000,61.000000,6.000000,36.000000,85.560000,69.260000,820.590000,3.080000,114.380000,14.430000 +5,2023-08-06 00:00:00,0.000000,16.500000,61.000000,6.000000,36.000000,85.560000,69.260000,820.590000,3.080000,114.380000,14.430000 +5,2023-08-06 01:00:00,0.000000,16.500000,61.000000,6.000000,36.000000,85.560000,69.260000,820.590000,3.080000,114.380000,14.430000 +5,2023-08-06 02:00:00,0.000000,14.900000,61.000000,5.000000,18.000000,85.560000,69.260000,820.590000,2.930000,114.380000,13.880000 +5,2023-08-06 03:00:00,0.000000,14.900000,61.000000,5.000000,18.000000,85.560000,69.260000,820.590000,2.930000,114.380000,13.880000 +5,2023-08-06 04:00:00,0.000000,14.900000,61.000000,5.000000,18.000000,85.560000,69.260000,820.590000,2.930000,114.380000,13.880000 +5,2023-08-06 05:00:00,0.000000,14.500000,62.000000,5.000000,359.000000,85.560000,69.330000,820.780000,2.930000,114.490000,13.890000 +5,2023-08-06 06:00:00,0.000000,14.500000,62.000000,5.000000,359.000000,85.560000,69.410000,820.980000,2.930000,114.600000,13.890000 +5,2023-08-06 07:00:00,0.000000,14.500000,62.000000,5.000000,359.000000,85.560000,69.480000,821.170000,2.930000,114.700000,13.900000 +5,2023-08-06 08:00:00,0.000000,17.600000,55.000000,4.000000,20.000000,85.620000,69.590000,821.460000,2.800000,114.860000,13.450000 +5,2023-08-06 09:00:00,0.000000,17.600000,55.000000,4.000000,20.000000,85.660000,69.700000,821.740000,2.820000,115.020000,13.530000 +5,2023-08-06 10:00:00,0.000000,17.600000,55.000000,4.000000,20.000000,85.710000,69.810000,822.020000,2.840000,115.170000,13.600000 +5,2023-08-06 11:00:00,0.000000,21.500000,43.000000,7.000000,70.000000,86.130000,69.990000,822.480000,3.510000,115.420000,16.010000 +5,2023-08-06 12:00:00,0.000000,21.500000,43.000000,7.000000,70.000000,86.500000,70.160000,822.930000,3.690000,115.670000,16.660000 +5,2023-08-06 13:00:00,0.000000,21.500000,43.000000,7.000000,70.000000,86.810000,70.340000,823.390000,3.860000,115.920000,17.250000 +5,2023-08-06 14:00:00,0.000000,23.100000,41.000000,9.000000,80.000000,87.220000,70.540000,823.910000,4.520000,116.210000,19.400000 +5,2023-08-06 15:00:00,0.000000,23.100000,41.000000,9.000000,80.000000,87.560000,70.740000,824.430000,4.750000,116.500000,20.120000 +5,2023-08-06 16:00:00,0.000000,23.100000,41.000000,9.000000,80.000000,87.850000,70.940000,824.950000,4.950000,116.780000,20.760000 +5,2023-08-06 17:00:00,0.000000,23.100000,38.000000,10.000000,68.000000,88.190000,71.160000,825.490000,5.470000,117.080000,22.320000 +5,2023-08-06 18:00:00,0.000000,23.100000,38.000000,10.000000,68.000000,88.480000,71.370000,826.040000,5.700000,117.380000,23.010000 +5,2023-08-06 19:00:00,0.000000,23.100000,38.000000,10.000000,68.000000,88.730000,71.580000,826.590000,5.910000,117.680000,23.620000 +5,2023-08-06 20:00:00,0.000000,20.800000,43.000000,10.000000,69.000000,88.730000,71.750000,827.020000,5.910000,117.920000,23.640000 +5,2023-08-06 21:00:00,0.000000,20.800000,43.000000,10.000000,69.000000,88.730000,71.920000,827.460000,5.910000,118.160000,23.660000 +5,2023-08-06 22:00:00,0.000000,20.800000,43.000000,10.000000,69.000000,88.730000,71.920000,827.460000,5.910000,118.160000,23.660000 +5,2023-08-06 23:00:00,0.000000,16.200000,55.000000,7.000000,75.000000,88.580000,71.920000,827.460000,4.970000,118.160000,20.920000 +5,2023-08-07 00:00:00,0.000000,16.200000,55.000000,7.000000,75.000000,88.450000,71.920000,827.460000,4.880000,118.160000,20.640000 +5,2023-08-07 01:00:00,0.000000,16.200000,55.000000,7.000000,75.000000,88.330000,71.920000,827.460000,4.790000,118.160000,20.390000 +5,2023-08-07 02:00:00,0.000000,13.600000,59.000000,3.000000,86.000000,88.140000,71.920000,827.460000,3.810000,118.160000,17.240000 +5,2023-08-07 03:00:00,0.000000,13.600000,59.000000,3.000000,86.000000,87.960000,71.920000,827.460000,3.720000,118.160000,16.920000 +5,2023-08-07 04:00:00,0.000000,13.600000,59.000000,3.000000,86.000000,87.810000,71.920000,827.460000,3.640000,118.160000,16.640000 +5,2023-08-07 05:00:00,0.000000,12.400000,63.000000,1.000000,80.000000,87.610000,71.980000,827.620000,3.200000,118.250000,15.090000 +5,2023-08-07 06:00:00,0.000000,12.400000,63.000000,1.000000,80.000000,87.420000,72.050000,827.770000,3.110000,118.350000,14.800000 +5,2023-08-07 07:00:00,0.000000,12.400000,63.000000,1.000000,80.000000,87.260000,72.120000,827.930000,3.040000,118.440000,14.530000 +5,2023-08-07 08:00:00,0.000000,16.300000,51.000000,3.000000,95.000000,87.260000,72.230000,828.190000,3.360000,118.600000,15.710000 +5,2023-08-07 09:00:00,0.000000,16.300000,51.000000,3.000000,95.000000,87.260000,72.340000,828.460000,3.360000,118.760000,15.720000 +5,2023-08-07 10:00:00,0.000000,16.300000,51.000000,3.000000,95.000000,87.260000,72.460000,828.730000,3.360000,118.920000,15.730000 +5,2023-08-07 11:00:00,0.000000,21.300000,37.000000,7.000000,87.000000,87.630000,72.650000,829.190000,4.340000,119.200000,19.030000 +5,2023-08-07 12:00:00,0.000000,21.300000,37.000000,7.000000,87.000000,87.950000,72.850000,829.660000,4.540000,119.480000,19.700000 +5,2023-08-07 13:00:00,0.000000,21.300000,37.000000,7.000000,87.000000,88.230000,73.050000,830.130000,4.730000,119.760000,20.300000 +5,2023-08-07 14:00:00,0.000000,22.800000,31.000000,8.000000,67.000000,88.720000,73.290000,830.690000,5.330000,120.090000,22.150000 +5,2023-08-07 15:00:00,0.000000,22.800000,31.000000,8.000000,67.000000,89.130000,73.530000,831.250000,5.660000,120.430000,23.130000 +5,2023-08-07 16:00:00,0.000000,22.800000,31.000000,8.000000,67.000000,89.480000,73.770000,831.810000,5.950000,120.760000,23.990000 +5,2023-08-07 17:00:00,0.000000,22.400000,30.000000,12.000000,54.000000,89.810000,74.000000,832.360000,7.630000,121.090000,28.540000 +5,2023-08-07 18:00:00,0.000000,22.400000,30.000000,12.000000,54.000000,90.090000,74.240000,832.920000,7.950000,121.420000,29.360000 +5,2023-08-07 19:00:00,0.000000,22.400000,30.000000,12.000000,54.000000,90.330000,74.480000,833.470000,8.220000,121.750000,30.070000 +5,2023-08-07 20:00:00,0.000000,19.600000,38.000000,12.000000,49.000000,90.330000,74.650000,833.880000,8.220000,122.000000,30.100000 +5,2023-08-07 21:00:00,0.000000,19.600000,38.000000,12.000000,49.000000,90.330000,74.830000,834.300000,8.220000,122.250000,30.120000 +5,2023-08-07 22:00:00,0.000000,19.600000,38.000000,12.000000,49.000000,90.330000,74.830000,834.300000,8.220000,122.250000,30.120000 +5,2023-08-07 23:00:00,0.000000,14.900000,55.000000,7.000000,44.000000,89.980000,74.830000,834.300000,6.080000,122.250000,24.490000 +5,2023-08-08 00:00:00,0.000000,14.900000,55.000000,7.000000,44.000000,89.680000,74.830000,834.300000,5.820000,122.250000,23.740000 +5,2023-08-08 01:00:00,0.000000,14.900000,55.000000,7.000000,44.000000,89.400000,74.830000,834.300000,5.600000,122.250000,23.100000 +5,2023-08-08 02:00:00,0.000000,12.000000,70.000000,7.000000,53.000000,88.820000,74.830000,834.300000,5.140000,122.250000,21.760000 +5,2023-08-08 03:00:00,0.000000,12.000000,70.000000,7.000000,53.000000,88.300000,74.830000,834.300000,4.780000,122.250000,20.630000 +5,2023-08-08 04:00:00,0.000000,12.000000,70.000000,7.000000,53.000000,87.840000,74.830000,834.300000,4.470000,122.250000,19.660000 +5,2023-08-08 05:00:00,0.000000,10.600000,76.000000,6.000000,60.000000,87.290000,74.870000,834.390000,3.930000,122.300000,17.900000 +5,2023-08-08 06:00:00,0.000000,10.600000,76.000000,6.000000,60.000000,86.810000,74.910000,834.480000,3.670000,122.360000,17.010000 +5,2023-08-08 07:00:00,0.000000,10.600000,76.000000,6.000000,60.000000,86.380000,74.950000,834.580000,3.450000,122.410000,16.250000 +5,2023-08-08 08:00:00,0.000000,16.000000,51.000000,8.000000,87.000000,86.390000,75.060000,834.850000,3.830000,122.580000,17.560000 +5,2023-08-08 09:00:00,0.000000,16.000000,51.000000,8.000000,87.000000,86.410000,75.180000,835.110000,3.830000,122.740000,17.600000 +5,2023-08-08 10:00:00,0.000000,16.000000,51.000000,8.000000,87.000000,86.420000,75.300000,835.380000,3.840000,122.900000,17.630000 +5,2023-08-08 11:00:00,0.000000,21.800000,37.000000,14.000000,89.000000,87.000000,75.510000,835.880000,5.640000,123.200000,23.300000 +5,2023-08-08 12:00:00,0.000000,21.800000,37.000000,14.000000,89.000000,87.480000,75.720000,836.380000,6.040000,123.490000,24.480000 +5,2023-08-08 13:00:00,0.000000,21.800000,37.000000,14.000000,89.000000,87.890000,75.940000,836.870000,6.410000,123.790000,25.520000 +5,2023-08-08 14:00:00,0.000000,23.500000,32.000000,17.000000,71.000000,88.500000,76.190000,837.470000,8.140000,124.150000,30.090000 +5,2023-08-08 15:00:00,0.000000,23.500000,32.000000,17.000000,71.000000,89.010000,76.450000,838.060000,8.750000,124.500000,31.630000 +5,2023-08-08 16:00:00,0.000000,23.500000,32.000000,17.000000,71.000000,89.420000,76.700000,838.660000,9.280000,124.860000,32.950000 +5,2023-08-08 17:00:00,0.000000,23.400000,35.000000,21.000000,61.000000,89.650000,76.950000,839.220000,11.740000,125.190000,38.500000 +5,2023-08-08 18:00:00,0.000000,23.400000,35.000000,21.000000,61.000000,89.840000,77.190000,839.790000,12.070000,125.530000,39.230000 +5,2023-08-08 19:00:00,0.000000,23.400000,35.000000,21.000000,61.000000,90.000000,77.430000,840.350000,12.340000,125.870000,39.830000 +5,2023-08-08 20:00:00,0.000000,21.100000,42.000000,16.000000,64.000000,90.000000,77.620000,840.790000,9.590000,126.130000,33.800000 +5,2023-08-08 21:00:00,0.000000,21.100000,42.000000,16.000000,64.000000,90.000000,77.810000,841.230000,9.590000,126.390000,33.820000 +5,2023-08-08 22:00:00,0.000000,21.100000,42.000000,16.000000,64.000000,90.000000,77.810000,841.230000,9.590000,126.390000,33.820000 +5,2023-08-08 23:00:00,0.000000,16.100000,55.000000,8.000000,84.000000,89.690000,77.810000,841.230000,6.130000,126.390000,24.960000 +5,2023-08-09 00:00:00,0.000000,16.100000,55.000000,8.000000,84.000000,89.420000,77.810000,841.230000,5.900000,126.390000,24.300000 +5,2023-08-09 01:00:00,0.000000,16.100000,55.000000,8.000000,84.000000,89.190000,77.810000,841.230000,5.700000,126.390000,23.730000 +5,2023-08-09 02:00:00,0.000000,13.000000,62.000000,6.000000,104.000000,88.820000,77.810000,841.230000,4.890000,126.390000,21.270000 +5,2023-08-09 03:00:00,0.000000,13.000000,62.000000,6.000000,104.000000,88.490000,77.810000,841.230000,4.670000,126.390000,20.560000 +5,2023-08-09 04:00:00,0.000000,13.000000,62.000000,6.000000,104.000000,88.190000,77.810000,841.230000,4.470000,126.390000,19.950000 +5,2023-08-09 05:00:00,0.000000,10.700000,71.000000,5.000000,109.000000,87.740000,77.850000,841.330000,3.990000,126.450000,18.340000 +5,2023-08-09 06:00:00,0.000000,10.700000,71.000000,5.000000,109.000000,87.340000,77.900000,841.430000,3.760000,126.520000,17.580000 +5,2023-08-09 07:00:00,0.000000,10.700000,71.000000,5.000000,109.000000,86.980000,77.950000,841.540000,3.570000,126.580000,16.920000 +5,2023-08-09 08:00:00,0.000000,16.400000,52.000000,7.000000,103.000000,86.980000,78.060000,841.780000,3.950000,126.740000,18.240000 +5,2023-08-09 09:00:00,0.000000,16.400000,52.000000,7.000000,103.000000,86.980000,78.170000,842.030000,3.950000,126.890000,18.250000 +5,2023-08-09 10:00:00,0.000000,16.400000,52.000000,7.000000,103.000000,86.980000,78.280000,842.280000,3.950000,127.040000,18.260000 +5,2023-08-09 11:00:00,0.000000,22.800000,35.000000,17.000000,105.000000,87.600000,78.510000,842.770000,7.150000,127.350000,27.840000 +5,2023-08-09 12:00:00,0.000000,22.800000,35.000000,17.000000,105.000000,88.120000,78.730000,843.270000,7.700000,127.660000,29.310000 +5,2023-08-09 13:00:00,0.000000,22.800000,35.000000,17.000000,105.000000,88.550000,78.960000,843.770000,8.190000,127.970000,30.580000 +5,2023-08-09 14:00:00,0.000000,24.700000,30.000000,20.000000,94.000000,89.200000,79.230000,844.370000,10.470000,128.350000,36.040000 +5,2023-08-09 15:00:00,0.000000,24.700000,30.000000,20.000000,94.000000,89.730000,79.500000,844.970000,11.290000,128.720000,37.910000 +5,2023-08-09 16:00:00,0.000000,24.700000,30.000000,20.000000,94.000000,90.160000,79.770000,845.570000,12.010000,129.090000,39.490000 +5,2023-08-09 17:00:00,0.000000,24.700000,30.000000,20.000000,83.000000,90.500000,80.040000,846.170000,12.610000,129.460000,40.800000 +5,2023-08-09 18:00:00,0.000000,24.700000,30.000000,20.000000,83.000000,90.780000,80.310000,846.770000,13.110000,129.840000,41.890000 +5,2023-08-09 19:00:00,0.000000,24.700000,30.000000,20.000000,83.000000,91.000000,80.580000,847.370000,13.530000,130.210000,42.780000 +5,2023-08-09 20:00:00,0.000000,22.200000,35.000000,16.000000,76.000000,91.000000,80.800000,847.850000,11.060000,130.510000,37.590000 +5,2023-08-09 21:00:00,0.000000,22.200000,35.000000,16.000000,76.000000,91.000000,81.020000,848.330000,11.060000,130.800000,37.620000 +5,2023-08-09 22:00:00,0.000000,22.200000,35.000000,16.000000,76.000000,91.000000,81.020000,848.330000,11.060000,130.800000,37.620000 +5,2023-08-09 23:00:00,0.000000,18.000000,45.000000,11.000000,101.000000,90.800000,81.020000,848.330000,8.370000,130.800000,31.270000 +5,2023-08-10 00:00:00,0.000000,18.000000,45.000000,11.000000,101.000000,90.640000,81.020000,848.330000,8.170000,130.800000,30.760000 +5,2023-08-10 01:00:00,0.000000,18.000000,45.000000,11.000000,101.000000,90.490000,81.020000,848.330000,8.000000,130.800000,30.330000 +5,2023-08-10 02:00:00,0.000000,15.700000,49.000000,9.000000,118.000000,90.250000,81.020000,848.330000,6.990000,130.800000,27.660000 +5,2023-08-10 03:00:00,0.000000,15.700000,49.000000,9.000000,118.000000,90.030000,81.020000,848.330000,6.780000,130.800000,27.090000 +5,2023-08-10 04:00:00,0.000000,15.700000,49.000000,9.000000,118.000000,89.840000,81.020000,848.330000,6.590000,130.800000,26.590000 +5,2023-08-10 05:00:00,0.000000,13.200000,58.000000,6.000000,117.000000,89.490000,81.090000,848.500000,5.390000,130.910000,23.100000 +5,2023-08-10 06:00:00,0.000000,13.200000,58.000000,6.000000,117.000000,89.170000,81.170000,848.670000,5.150000,131.020000,22.370000 +5,2023-08-10 07:00:00,0.000000,13.200000,58.000000,6.000000,117.000000,88.890000,81.250000,848.830000,4.940000,131.120000,21.730000 +5,2023-08-10 08:00:00,0.000000,17.300000,46.000000,8.000000,107.000000,88.890000,81.380000,849.110000,5.460000,131.300000,23.360000 +5,2023-08-10 09:00:00,0.000000,17.300000,46.000000,8.000000,107.000000,88.890000,81.510000,849.390000,5.460000,131.480000,23.370000 +5,2023-08-10 10:00:00,0.000000,17.300000,46.000000,8.000000,107.000000,88.890000,81.640000,849.660000,5.460000,131.660000,23.380000 +5,2023-08-10 11:00:00,0.000000,22.800000,32.000000,15.000000,96.000000,89.280000,81.870000,850.150000,8.230000,131.970000,31.010000 +5,2023-08-10 12:00:00,0.000000,22.800000,32.000000,15.000000,96.000000,89.610000,82.110000,850.640000,8.620000,132.290000,32.030000 +5,2023-08-10 13:00:00,0.000000,22.800000,32.000000,15.000000,96.000000,89.880000,82.340000,851.130000,8.960000,132.600000,32.900000 +5,2023-08-10 14:00:00,0.000000,25.100000,27.000000,13.000000,87.000000,90.380000,82.620000,851.740000,8.710000,132.990000,32.310000 +5,2023-08-10 15:00:00,0.000000,25.100000,27.000000,13.000000,87.000000,90.790000,82.910000,852.340000,9.240000,133.380000,33.630000 +5,2023-08-10 16:00:00,0.000000,25.100000,27.000000,13.000000,87.000000,91.130000,83.190000,852.950000,9.690000,133.770000,34.750000 +5,2023-08-10 17:00:00,0.000000,25.400000,26.000000,14.000000,68.000000,91.460000,83.490000,853.570000,10.680000,134.170000,37.090000 +5,2023-08-10 18:00:00,0.000000,25.400000,26.000000,14.000000,68.000000,91.730000,83.780000,854.190000,11.100000,134.570000,38.060000 +5,2023-08-10 19:00:00,0.000000,25.400000,26.000000,14.000000,68.000000,91.940000,84.080000,854.820000,11.440000,134.970000,38.870000 +5,2023-08-10 20:00:00,0.000000,25.400000,26.000000,14.000000,68.000000,92.120000,84.370000,855.440000,11.730000,135.360000,39.530000 +5,2023-08-10 21:00:00,0.000000,25.400000,26.000000,14.000000,68.000000,92.260000,84.370000,855.440000,11.970000,135.360000,40.050000 +5,2023-08-10 22:00:00,0.000000,25.400000,26.000000,14.000000,68.000000,92.380000,84.370000,855.440000,12.160000,135.360000,40.470000 +5,2023-08-10 23:00:00,0.000000,17.400000,44.000000,8.000000,41.000000,92.050000,84.370000,855.440000,8.590000,135.360000,32.210000 +5,2023-08-11 00:00:00,0.000000,17.400000,44.000000,8.000000,41.000000,91.770000,84.370000,855.440000,8.250000,135.360000,31.350000 +5,2023-08-11 01:00:00,0.000000,17.400000,44.000000,8.000000,41.000000,91.520000,84.370000,855.440000,7.960000,135.360000,30.600000 +5,2023-08-11 02:00:00,0.000000,17.400000,44.000000,8.000000,41.000000,91.290000,84.370000,855.440000,7.710000,135.360000,29.950000 +5,2023-08-11 03:00:00,0.000000,17.400000,44.000000,8.000000,41.000000,91.090000,84.370000,855.440000,7.500000,135.360000,29.380000 +5,2023-08-11 04:00:00,0.000000,17.400000,44.000000,8.000000,41.000000,90.920000,84.370000,855.440000,7.310000,135.360000,28.880000 +5,2023-08-11 05:00:00,0.000000,11.500000,71.000000,6.000000,332.000000,90.150000,84.440000,855.590000,5.920000,135.460000,25.000000 +5,2023-08-11 06:00:00,0.000000,11.500000,71.000000,6.000000,332.000000,89.470000,84.510000,855.730000,5.370000,135.550000,23.350000 +5,2023-08-11 07:00:00,0.000000,11.500000,71.000000,6.000000,332.000000,88.870000,84.580000,855.870000,4.930000,135.640000,21.970000 +5,2023-08-11 08:00:00,0.000000,11.500000,71.000000,6.000000,332.000000,88.330000,84.640000,856.020000,4.560000,135.730000,20.800000 +5,2023-08-11 09:00:00,0.000000,11.500000,71.000000,6.000000,332.000000,87.860000,84.710000,856.160000,4.260000,135.830000,19.800000 +5,2023-08-11 10:00:00,0.000000,11.500000,71.000000,6.000000,332.000000,87.430000,84.780000,856.310000,4.010000,135.920000,18.940000 +5,2023-08-11 11:00:00,0.010000,22.400000,31.000000,11.000000,14.000000,88.050000,85.110000,856.990000,5.640000,136.360000,24.210000 +5,2023-08-11 12:00:00,0.000000,22.400000,31.000000,11.000000,14.000000,88.580000,85.430000,857.670000,6.080000,136.800000,25.540000 +5,2023-08-11 13:00:00,0.000000,22.400000,31.000000,11.000000,14.000000,89.020000,85.760000,858.360000,6.480000,137.240000,26.710000 +5,2023-08-11 14:00:00,0.000000,22.400000,31.000000,11.000000,14.000000,89.390000,86.080000,859.040000,6.830000,137.680000,27.740000 +5,2023-08-11 15:00:00,0.000000,22.400000,31.000000,11.000000,14.000000,89.700000,86.410000,859.730000,7.140000,138.110000,28.620000 +5,2023-08-11 16:00:00,0.000000,22.400000,31.000000,11.000000,14.000000,89.960000,86.730000,860.410000,7.410000,138.550000,29.390000 +5,2023-08-11 17:00:00,0.000000,19.600000,38.000000,22.000000,22.000000,89.960000,86.980000,860.930000,12.900000,138.880000,42.380000 +5,2023-08-11 18:00:00,0.000000,19.600000,38.000000,22.000000,22.000000,89.960000,87.230000,861.440000,12.900000,139.210000,42.410000 +5,2023-08-11 19:00:00,0.000000,19.600000,38.000000,22.000000,22.000000,89.960000,87.470000,861.960000,12.900000,139.540000,42.440000 +5,2023-08-11 20:00:00,0.000000,19.600000,38.000000,22.000000,22.000000,89.960000,87.720000,862.480000,12.900000,139.870000,42.480000 +5,2023-08-11 21:00:00,0.000000,19.600000,38.000000,22.000000,22.000000,89.960000,87.720000,862.480000,12.900000,139.870000,42.480000 +5,2023-08-11 22:00:00,0.000000,19.600000,38.000000,22.000000,22.000000,89.960000,87.720000,862.480000,12.900000,139.870000,42.480000 +5,2023-08-11 23:00:00,0.000000,13.400000,45.000000,10.000000,9.000000,89.830000,87.720000,862.480000,6.920000,139.870000,28.120000 +5,2023-08-12 00:00:00,0.000000,13.400000,45.000000,10.000000,9.000000,89.710000,87.720000,862.480000,6.800000,139.870000,27.790000 +5,2023-08-12 01:00:00,0.000000,13.400000,45.000000,10.000000,9.000000,89.600000,87.720000,862.480000,6.690000,139.870000,27.500000 +5,2023-08-12 02:00:00,0.000000,13.400000,45.000000,10.000000,9.000000,89.500000,87.720000,862.480000,6.600000,139.870000,27.240000 +5,2023-08-12 03:00:00,0.000000,13.400000,45.000000,10.000000,9.000000,89.420000,87.720000,862.480000,6.520000,139.870000,27.010000 +5,2023-08-12 04:00:00,0.000000,13.400000,45.000000,10.000000,9.000000,89.340000,87.720000,862.480000,6.450000,139.870000,26.800000 +5,2023-08-12 05:00:00,0.000000,9.700000,49.000000,6.000000,56.000000,89.170000,87.810000,862.680000,5.150000,139.990000,22.900000 +5,2023-08-12 06:00:00,0.000000,9.700000,49.000000,6.000000,56.000000,89.020000,87.890000,862.880000,5.030000,140.110000,22.560000 +5,2023-08-12 07:00:00,0.000000,9.700000,49.000000,6.000000,56.000000,88.880000,87.980000,863.080000,4.930000,140.220000,22.240000 +5,2023-08-12 08:00:00,0.000000,9.700000,49.000000,6.000000,56.000000,88.750000,88.070000,863.280000,4.840000,140.340000,21.960000 +5,2023-08-12 09:00:00,0.000000,9.700000,49.000000,6.000000,56.000000,88.630000,88.150000,863.480000,4.760000,140.460000,21.700000 +5,2023-08-12 10:00:00,0.000000,9.700000,49.000000,6.000000,56.000000,88.520000,88.240000,863.680000,4.690000,140.580000,21.470000 +5,2023-08-12 11:00:00,0.000000,18.000000,31.000000,9.000000,76.000000,88.800000,88.440000,864.140000,5.680000,140.850000,24.590000 +5,2023-08-12 12:00:00,0.000000,18.000000,31.000000,9.000000,76.000000,89.040000,88.650000,864.610000,5.870000,141.120000,25.200000 +5,2023-08-12 13:00:00,0.000000,18.000000,31.000000,9.000000,76.000000,89.250000,88.850000,865.070000,6.050000,141.390000,25.740000 +5,2023-08-12 14:00:00,0.000000,18.000000,31.000000,9.000000,76.000000,89.420000,89.050000,865.540000,6.210000,141.660000,26.210000 +5,2023-08-12 15:00:00,0.000000,18.000000,31.000000,9.000000,76.000000,89.580000,89.250000,866.000000,6.350000,141.940000,26.630000 +5,2023-08-12 16:00:00,0.000000,18.000000,31.000000,9.000000,76.000000,89.710000,89.460000,866.470000,6.470000,142.210000,27.000000 +5,2023-08-12 17:00:00,0.000000,20.200000,27.000000,15.000000,44.000000,90.050000,89.700000,867.030000,9.180000,142.540000,34.230000 +5,2023-08-12 18:00:00,0.000000,20.200000,27.000000,15.000000,44.000000,90.330000,89.950000,867.590000,9.560000,142.870000,35.180000 +5,2023-08-12 19:00:00,0.000000,20.200000,27.000000,15.000000,44.000000,90.560000,90.190000,868.160000,9.890000,143.190000,35.990000 +5,2023-08-12 20:00:00,0.000000,20.200000,27.000000,15.000000,44.000000,90.760000,90.440000,868.720000,10.170000,143.520000,36.680000 +5,2023-08-12 21:00:00,0.000000,20.200000,27.000000,15.000000,44.000000,90.920000,90.440000,868.720000,10.410000,143.520000,37.250000 +5,2023-08-12 22:00:00,0.000000,20.200000,27.000000,15.000000,44.000000,91.060000,90.440000,868.720000,10.620000,143.520000,37.740000 +5,2023-08-12 23:00:00,0.000000,12.400000,52.000000,9.000000,30.000000,90.670000,90.440000,868.720000,7.420000,143.520000,29.740000 +5,2023-08-13 00:00:00,0.000000,12.400000,52.000000,9.000000,30.000000,90.320000,90.440000,868.720000,7.060000,143.520000,28.750000 +5,2023-08-13 01:00:00,0.000000,12.400000,52.000000,9.000000,30.000000,90.010000,90.440000,868.720000,6.750000,143.520000,27.890000 +5,2023-08-13 02:00:00,0.000000,12.400000,52.000000,9.000000,30.000000,89.730000,90.440000,868.720000,6.480000,143.520000,27.130000 +5,2023-08-13 03:00:00,0.000000,12.400000,52.000000,9.000000,30.000000,89.480000,90.440000,868.720000,6.260000,143.520000,26.460000 +5,2023-08-13 04:00:00,0.000000,12.400000,52.000000,9.000000,30.000000,89.250000,90.440000,868.720000,6.060000,143.520000,25.880000 +5,2023-08-13 05:00:00,0.000000,8.300000,63.000000,6.000000,41.000000,88.850000,90.500000,868.870000,4.910000,143.600000,22.350000 +5,2023-08-13 06:00:00,0.000000,8.300000,63.000000,6.000000,41.000000,88.480000,90.560000,869.010000,4.660000,143.690000,21.520000 +5,2023-08-13 07:00:00,0.000000,8.300000,63.000000,6.000000,41.000000,88.140000,90.620000,869.160000,4.440000,143.770000,20.790000 +5,2023-08-13 08:00:00,0.000000,8.300000,63.000000,6.000000,41.000000,87.840000,90.680000,869.310000,4.250000,143.850000,20.160000 +5,2023-08-13 09:00:00,0.000000,8.300000,63.000000,6.000000,41.000000,87.560000,90.740000,869.450000,4.090000,143.930000,19.590000 +5,2023-08-13 10:00:00,0.000000,8.300000,63.000000,6.000000,41.000000,87.310000,90.800000,869.600000,3.940000,144.010000,19.090000 +5,2023-08-13 11:00:00,0.000000,18.900000,36.000000,13.000000,70.000000,87.660000,91.010000,870.100000,5.900000,144.290000,25.440000 +5,2023-08-13 12:00:00,0.000000,18.900000,36.000000,13.000000,70.000000,87.960000,91.220000,870.610000,6.150000,144.570000,26.220000 +5,2023-08-13 13:00:00,0.000000,18.900000,36.000000,13.000000,70.000000,88.210000,91.420000,871.110000,6.380000,144.850000,26.910000 +5,2023-08-13 14:00:00,0.000000,18.900000,36.000000,13.000000,70.000000,88.430000,91.630000,871.620000,6.590000,145.120000,27.510000 +5,2023-08-13 15:00:00,0.000000,18.900000,36.000000,13.000000,70.000000,88.620000,91.840000,872.120000,6.770000,145.400000,28.040000 +5,2023-08-13 16:00:00,0.000000,18.900000,36.000000,13.000000,70.000000,88.780000,92.050000,872.630000,6.920000,145.680000,28.500000 +5,2023-08-13 17:00:00,0.000000,21.400000,32.000000,16.000000,46.000000,89.140000,92.310000,873.250000,8.480000,146.030000,32.700000 +5,2023-08-13 18:00:00,0.000000,21.400000,32.000000,16.000000,46.000000,89.440000,92.570000,873.880000,8.850000,146.370000,33.670000 +5,2023-08-13 19:00:00,0.000000,21.400000,32.000000,16.000000,46.000000,89.690000,92.820000,874.500000,9.180000,146.710000,34.510000 +5,2023-08-13 20:00:00,0.000000,21.400000,32.000000,16.000000,46.000000,89.900000,93.080000,875.130000,9.450000,147.060000,35.220000 +5,2023-08-13 21:00:00,0.000000,21.400000,32.000000,16.000000,46.000000,90.070000,93.080000,875.130000,9.690000,147.060000,35.800000 +5,2023-08-13 22:00:00,0.000000,21.400000,32.000000,16.000000,46.000000,90.210000,93.080000,875.130000,9.890000,147.060000,36.280000 +5,2023-08-13 23:00:00,0.000000,13.500000,61.000000,7.000000,43.000000,89.740000,93.080000,875.130000,5.880000,147.060000,25.530000 +5,2023-08-14 00:00:00,0.000000,13.500000,61.000000,7.000000,43.000000,89.330000,93.080000,875.130000,5.540000,147.060000,24.490000 +5,2023-08-14 01:00:00,0.000000,13.500000,61.000000,7.000000,43.000000,88.960000,93.080000,875.130000,5.250000,147.060000,23.600000 +5,2023-08-14 02:00:00,0.000000,13.500000,61.000000,7.000000,43.000000,88.630000,93.080000,875.130000,5.010000,147.060000,22.820000 +5,2023-08-14 03:00:00,0.000000,13.500000,61.000000,7.000000,43.000000,88.340000,93.080000,875.130000,4.800000,147.060000,22.160000 +5,2023-08-14 04:00:00,0.000000,13.500000,61.000000,7.000000,43.000000,88.080000,93.080000,875.130000,4.630000,147.060000,21.580000 +5,2023-08-14 05:00:00,0.130000,11.900000,67.000000,6.000000,232.000000,84.980000,91.880000,873.990000,2.840000,145.520000,15.000000 +5,2023-08-14 06:00:00,0.000000,11.900000,67.000000,6.000000,232.000000,84.950000,91.930000,874.220000,2.830000,145.580000,14.950000 +5,2023-08-14 07:00:00,0.000000,11.900000,67.000000,6.000000,232.000000,84.920000,91.970000,874.440000,2.820000,145.650000,14.900000 +5,2023-08-14 08:00:00,0.000000,11.900000,67.000000,6.000000,232.000000,84.890000,92.020000,874.670000,2.810000,145.710000,14.870000 +5,2023-08-14 09:00:00,0.000000,11.900000,67.000000,6.000000,232.000000,84.870000,92.060000,874.900000,2.800000,145.780000,14.830000 +5,2023-08-14 10:00:00,0.000000,11.900000,67.000000,6.000000,232.000000,84.850000,92.110000,875.130000,2.790000,145.840000,14.800000 +5,2023-08-14 11:00:00,1.050000,19.000000,69.000000,15.000000,294.000000,66.250000,83.760000,864.420000,1.180000,134.860000,6.980000 +5,2023-08-14 12:00:00,0.000000,19.000000,69.000000,15.000000,294.000000,68.030000,83.830000,864.760000,1.250000,134.960000,7.380000 +5,2023-08-14 13:00:00,0.000000,19.000000,69.000000,15.000000,294.000000,69.660000,83.900000,865.100000,1.320000,135.050000,7.740000 +5,2023-08-14 14:00:00,0.000000,19.000000,69.000000,15.000000,294.000000,71.140000,83.970000,865.430000,1.380000,135.150000,8.080000 +5,2023-08-14 15:00:00,0.000000,19.000000,69.000000,15.000000,294.000000,72.480000,84.030000,865.770000,1.450000,135.250000,8.430000 +5,2023-08-14 16:00:00,0.000000,19.000000,69.000000,15.000000,294.000000,73.680000,84.100000,866.110000,1.530000,135.350000,8.810000 +5,2023-08-14 17:00:00,0.700000,22.000000,42.000000,18.000000,295.000000,65.520000,79.360000,859.500000,1.330000,128.950000,7.650000 +5,2023-08-14 18:00:00,0.000000,22.000000,42.000000,18.000000,295.000000,68.960000,79.510000,860.260000,1.500000,129.170000,8.490000 +5,2023-08-14 19:00:00,0.000000,22.000000,42.000000,18.000000,295.000000,71.970000,79.660000,861.020000,1.660000,129.400000,9.260000 +5,2023-08-14 20:00:00,0.000000,22.000000,42.000000,18.000000,295.000000,74.580000,79.810000,861.780000,1.850000,129.620000,10.200000 +5,2023-08-14 21:00:00,0.000000,22.000000,42.000000,18.000000,295.000000,76.830000,79.810000,861.780000,2.130000,129.620000,11.420000 +5,2023-08-14 22:00:00,0.000000,22.000000,42.000000,18.000000,295.000000,78.760000,79.810000,861.780000,2.490000,129.620000,12.950000 +5,2023-08-14 23:00:00,5.750000,12.700000,88.000000,11.000000,291.000000,27.240000,52.540000,801.310000,0.000000,90.270000,0.010000 +5,2023-08-15 00:00:00,0.000000,12.700000,88.000000,11.000000,291.000000,28.790000,52.540000,801.310000,0.000000,90.270000,0.010000 +5,2023-08-15 01:00:00,0.000000,12.700000,88.000000,11.000000,291.000000,30.320000,52.540000,801.310000,0.010000,90.270000,0.020000 +5,2023-08-15 02:00:00,0.000000,12.700000,88.000000,11.000000,291.000000,31.830000,52.540000,801.310000,0.010000,90.270000,0.030000 +5,2023-08-15 03:00:00,0.000000,12.700000,88.000000,11.000000,291.000000,33.320000,52.540000,801.310000,0.010000,90.270000,0.040000 +5,2023-08-15 04:00:00,0.000000,12.700000,88.000000,11.000000,291.000000,34.780000,52.540000,801.310000,0.020000,90.270000,0.050000 +5,2023-08-15 05:00:00,0.000000,11.300000,87.000000,8.000000,287.000000,36.100000,52.560000,801.400000,0.020000,90.310000,0.060000 +5,2023-08-15 06:00:00,0.000000,11.300000,87.000000,8.000000,287.000000,37.390000,52.580000,801.490000,0.030000,90.350000,0.080000 +5,2023-08-15 07:00:00,0.000000,11.300000,87.000000,8.000000,287.000000,38.660000,52.610000,801.580000,0.040000,90.380000,0.100000 +5,2023-08-15 08:00:00,0.000000,11.300000,87.000000,8.000000,287.000000,39.900000,52.630000,801.670000,0.050000,90.420000,0.130000 +5,2023-08-15 09:00:00,0.000000,11.300000,87.000000,8.000000,287.000000,41.120000,52.650000,801.760000,0.060000,90.450000,0.170000 +5,2023-08-15 10:00:00,0.000000,11.300000,87.000000,8.000000,287.000000,42.320000,52.670000,801.850000,0.080000,90.490000,0.200000 +5,2023-08-15 11:00:00,0.000000,19.200000,60.000000,8.000000,338.000000,45.810000,52.790000,802.310000,0.140000,90.670000,0.360000 +5,2023-08-15 12:00:00,0.000000,19.200000,60.000000,8.000000,338.000000,49.120000,52.910000,802.770000,0.220000,90.850000,0.570000 +5,2023-08-15 13:00:00,0.000000,19.200000,60.000000,8.000000,338.000000,52.240000,53.030000,803.230000,0.320000,91.040000,0.830000 +5,2023-08-15 14:00:00,0.000000,19.200000,60.000000,8.000000,338.000000,55.170000,53.150000,803.680000,0.420000,91.220000,1.430000 +5,2023-08-15 15:00:00,0.000000,19.200000,60.000000,8.000000,338.000000,57.900000,53.270000,804.140000,0.530000,91.400000,2.150000 +5,2023-08-15 16:00:00,0.000000,19.200000,60.000000,8.000000,338.000000,60.440000,53.390000,804.600000,0.630000,91.590000,2.750000 +5,2023-08-15 17:00:00,0.000000,22.300000,43.000000,11.000000,56.000000,64.080000,53.600000,805.390000,0.880000,91.900000,4.120000 +5,2023-08-15 18:00:00,0.000000,22.300000,43.000000,11.000000,56.000000,67.340000,53.800000,806.190000,1.000000,92.220000,4.710000 +5,2023-08-15 19:00:00,0.000000,22.300000,43.000000,11.000000,56.000000,70.240000,54.010000,806.980000,1.100000,92.530000,5.190000 +5,2023-08-15 20:00:00,0.000000,22.300000,43.000000,11.000000,56.000000,72.800000,54.210000,807.770000,1.200000,92.850000,5.700000 +5,2023-08-15 21:00:00,0.000000,22.300000,43.000000,11.000000,56.000000,75.040000,54.210000,807.770000,1.340000,92.850000,6.310000 +5,2023-08-15 22:00:00,0.000000,22.300000,43.000000,11.000000,56.000000,77.010000,54.210000,807.770000,1.520000,92.850000,7.090000 +5,2023-08-15 23:00:00,0.000000,15.500000,70.000000,9.000000,109.000000,77.520000,54.210000,807.770000,1.420000,92.850000,6.700000 +5,2023-08-16 00:00:00,0.000000,15.500000,70.000000,9.000000,109.000000,78.000000,54.210000,807.770000,1.480000,92.850000,6.940000 +5,2023-08-16 01:00:00,0.000000,15.500000,70.000000,9.000000,109.000000,78.430000,54.210000,807.770000,1.540000,92.850000,7.190000 +5,2023-08-16 02:00:00,0.000000,15.500000,70.000000,9.000000,109.000000,78.830000,54.210000,807.770000,1.590000,92.850000,7.430000 +5,2023-08-16 03:00:00,0.000000,15.500000,70.000000,9.000000,109.000000,79.200000,54.210000,807.770000,1.650000,92.850000,7.660000 +5,2023-08-16 04:00:00,0.000000,15.500000,70.000000,9.000000,109.000000,79.540000,54.210000,807.770000,1.710000,92.850000,7.890000 +5,2023-08-16 05:00:00,0.000000,12.100000,79.000000,8.000000,179.000000,79.610000,54.250000,807.870000,1.630000,92.910000,7.600000 +5,2023-08-16 06:00:00,0.000000,12.100000,79.000000,8.000000,179.000000,79.680000,54.300000,807.960000,1.650000,92.970000,7.650000 +5,2023-08-16 07:00:00,0.000000,12.100000,79.000000,8.000000,179.000000,79.740000,54.340000,808.060000,1.660000,93.040000,7.690000 +5,2023-08-16 08:00:00,0.000000,12.100000,79.000000,8.000000,179.000000,79.810000,54.380000,808.150000,1.670000,93.100000,7.740000 +5,2023-08-16 09:00:00,0.000000,12.100000,79.000000,8.000000,179.000000,79.860000,54.420000,808.250000,1.680000,93.160000,7.790000 +5,2023-08-16 10:00:00,0.000000,12.100000,79.000000,8.000000,179.000000,79.920000,54.460000,808.350000,1.690000,93.230000,7.830000 +5,2023-08-16 11:00:00,0.000000,22.100000,36.000000,12.000000,167.000000,81.490000,54.710000,808.900000,2.450000,93.590000,10.810000 +5,2023-08-16 12:00:00,0.000000,22.100000,36.000000,12.000000,167.000000,82.830000,54.950000,809.450000,2.890000,93.950000,12.370000 +5,2023-08-16 13:00:00,0.000000,22.100000,36.000000,12.000000,167.000000,83.980000,55.190000,810.000000,3.360000,94.320000,13.940000 +5,2023-08-16 14:00:00,0.000000,22.100000,36.000000,12.000000,167.000000,84.960000,55.430000,810.550000,3.830000,94.680000,15.470000 +5,2023-08-16 15:00:00,0.000000,22.100000,36.000000,12.000000,167.000000,85.780000,55.670000,811.100000,4.300000,95.040000,16.910000 +5,2023-08-16 16:00:00,0.000000,22.100000,36.000000,12.000000,167.000000,86.490000,55.920000,811.650000,4.740000,95.400000,18.230000 +5,2023-08-16 17:00:00,0.000000,25.800000,28.000000,10.000000,157.000000,87.560000,56.260000,812.430000,4.990000,95.910000,18.980000 +5,2023-08-16 18:00:00,0.000000,25.800000,28.000000,10.000000,157.000000,88.440000,56.600000,813.200000,5.670000,96.420000,20.870000 +5,2023-08-16 19:00:00,0.000000,25.800000,28.000000,10.000000,157.000000,89.170000,56.940000,813.980000,6.290000,96.920000,22.540000 +5,2023-08-16 20:00:00,0.000000,25.800000,28.000000,10.000000,157.000000,89.770000,57.280000,814.750000,6.860000,97.430000,24.020000 +5,2023-08-16 21:00:00,0.000000,25.800000,28.000000,10.000000,157.000000,90.260000,57.280000,814.750000,7.360000,97.430000,25.240000 +5,2023-08-16 22:00:00,0.000000,25.800000,28.000000,10.000000,157.000000,90.670000,57.280000,814.750000,7.800000,97.430000,26.270000 +5,2023-08-16 23:00:00,0.000000,18.800000,43.000000,8.000000,176.000000,90.580000,57.280000,814.750000,6.970000,97.430000,24.280000 +5,2023-08-17 00:00:00,0.000000,18.800000,43.000000,8.000000,176.000000,90.500000,57.280000,814.750000,6.890000,97.430000,24.090000 +5,2023-08-17 01:00:00,0.000000,18.800000,43.000000,8.000000,176.000000,90.430000,57.280000,814.750000,6.820000,97.430000,23.930000 +5,2023-08-17 02:00:00,0.000000,18.800000,43.000000,8.000000,176.000000,90.370000,57.280000,814.750000,6.760000,97.430000,23.780000 +5,2023-08-17 03:00:00,0.000000,18.800000,43.000000,8.000000,176.000000,90.320000,57.280000,814.750000,6.710000,97.430000,23.660000 +5,2023-08-17 04:00:00,0.000000,18.800000,43.000000,8.000000,176.000000,90.270000,57.280000,814.750000,6.670000,97.430000,23.540000 +5,2023-08-17 05:00:00,0.000000,14.300000,64.000000,6.000000,147.000000,89.740000,57.280000,814.750000,5.580000,97.430000,20.760000 +5,2023-08-17 06:00:00,0.000000,14.300000,64.000000,6.000000,147.000000,89.270000,57.360000,814.950000,5.220000,97.550000,19.780000 +5,2023-08-17 07:00:00,0.000000,14.300000,64.000000,6.000000,147.000000,88.850000,57.440000,815.140000,4.920000,97.670000,18.950000 +5,2023-08-17 08:00:00,0.000000,14.300000,64.000000,6.000000,147.000000,88.490000,57.510000,815.330000,4.660000,97.780000,18.240000 +5,2023-08-17 09:00:00,0.000000,14.300000,64.000000,6.000000,147.000000,88.160000,57.590000,815.530000,4.450000,97.900000,17.630000 +5,2023-08-17 10:00:00,0.000000,14.300000,64.000000,6.000000,147.000000,87.870000,57.670000,815.720000,4.270000,98.020000,17.110000 +5,2023-08-17 11:00:00,0.000000,24.900000,43.000000,8.000000,143.000000,88.110000,57.910000,816.310000,4.890000,98.380000,18.940000 +5,2023-08-17 12:00:00,0.000000,24.900000,43.000000,8.000000,143.000000,88.310000,58.160000,816.910000,5.030000,98.740000,19.380000 +5,2023-08-17 13:00:00,0.000000,24.900000,43.000000,8.000000,143.000000,88.490000,58.400000,817.500000,5.160000,99.100000,19.770000 +5,2023-08-17 14:00:00,0.000000,24.900000,43.000000,8.000000,143.000000,88.630000,58.640000,818.090000,5.270000,99.460000,20.100000 +5,2023-08-17 15:00:00,0.000000,24.900000,43.000000,8.000000,143.000000,88.750000,58.880000,818.680000,5.360000,99.820000,20.400000 +5,2023-08-17 16:00:00,0.000000,24.900000,43.000000,8.000000,143.000000,88.850000,59.130000,819.280000,5.440000,100.180000,20.650000 +5,2023-08-17 17:00:00,0.000000,27.800000,40.000000,7.000000,95.000000,89.130000,59.430000,820.020000,5.380000,100.630000,20.530000 +5,2023-08-17 18:00:00,0.000000,27.800000,40.000000,7.000000,95.000000,89.360000,59.730000,820.760000,5.560000,101.070000,21.070000 +5,2023-08-17 19:00:00,0.000000,27.800000,40.000000,7.000000,95.000000,89.540000,60.030000,821.500000,5.710000,101.520000,21.530000 +5,2023-08-17 20:00:00,0.000000,27.800000,40.000000,7.000000,95.000000,89.700000,60.340000,822.240000,5.840000,101.970000,21.920000 +5,2023-08-17 21:00:00,0.000000,27.800000,40.000000,7.000000,95.000000,89.830000,60.340000,822.240000,5.950000,101.970000,22.210000 +5,2023-08-17 22:00:00,0.000000,27.800000,40.000000,7.000000,95.000000,89.940000,60.340000,822.240000,6.040000,101.970000,22.460000 +5,2023-08-17 23:00:00,0.500000,18.800000,87.000000,8.000000,315.000000,88.540000,60.340000,822.240000,5.200000,101.970000,20.160000 +5,2023-08-18 00:00:00,0.000000,18.800000,87.000000,8.000000,315.000000,87.360000,60.340000,822.240000,4.390000,101.970000,17.830000 +5,2023-08-18 01:00:00,0.000000,18.800000,87.000000,8.000000,315.000000,86.380000,60.340000,822.240000,3.820000,101.970000,16.060000 +5,2023-08-18 02:00:00,0.000000,18.800000,87.000000,8.000000,315.000000,85.550000,60.340000,822.240000,3.400000,101.970000,14.700000 +5,2023-08-18 03:00:00,0.000000,18.800000,87.000000,8.000000,315.000000,84.860000,60.340000,822.240000,3.090000,101.970000,13.640000 +5,2023-08-18 04:00:00,0.000000,18.800000,87.000000,8.000000,315.000000,84.270000,60.340000,822.240000,2.850000,101.970000,12.810000 +5,2023-08-18 05:00:00,0.150000,16.600000,95.000000,12.000000,294.000000,83.130000,60.340000,822.240000,3.000000,101.970000,13.340000 +5,2023-08-18 06:00:00,0.000000,16.600000,95.000000,12.000000,294.000000,82.170000,60.360000,822.380000,2.660000,102.000000,12.130000 +5,2023-08-18 07:00:00,0.000000,16.600000,95.000000,12.000000,294.000000,81.370000,60.380000,822.520000,2.420000,102.030000,11.230000 +5,2023-08-18 08:00:00,0.000000,16.600000,95.000000,12.000000,294.000000,80.690000,60.400000,822.660000,2.240000,102.060000,10.550000 +5,2023-08-18 09:00:00,0.000000,16.600000,95.000000,12.000000,294.000000,80.120000,60.420000,822.810000,2.110000,102.090000,10.030000 +5,2023-08-18 10:00:00,0.000000,16.600000,95.000000,12.000000,294.000000,79.640000,60.440000,822.950000,2.010000,102.120000,9.620000 +5,2023-08-18 11:00:00,0.180000,18.000000,78.000000,9.000000,290.000000,79.820000,60.530000,823.630000,1.760000,102.270000,8.590000 +5,2023-08-18 12:00:00,0.000000,18.000000,78.000000,9.000000,290.000000,79.980000,60.630000,824.320000,1.780000,102.420000,8.720000 +5,2023-08-18 13:00:00,0.000000,18.000000,78.000000,9.000000,290.000000,80.130000,60.720000,825.000000,1.810000,102.570000,8.850000 +5,2023-08-18 14:00:00,0.000000,18.000000,78.000000,9.000000,290.000000,80.270000,60.820000,825.690000,1.840000,102.720000,8.970000 +5,2023-08-18 15:00:00,0.000000,18.000000,78.000000,9.000000,290.000000,80.400000,60.910000,826.370000,1.870000,102.870000,9.080000 +5,2023-08-18 16:00:00,0.000000,18.000000,78.000000,9.000000,290.000000,80.520000,61.010000,827.060000,1.890000,103.010000,9.190000 +5,2023-08-18 17:00:00,0.000000,20.600000,61.000000,13.000000,317.000000,81.150000,61.200000,828.480000,2.480000,103.320000,11.540000 +6,2023-08-03 00:00:00,0.000000,15.800000,70.000000,5.000000,90.000000,85.850000,118.400000,826.100000,3.050000,174.330000,16.630000 +6,2023-08-03 01:00:00,0.000000,15.800000,70.000000,5.000000,90.000000,85.720000,118.400000,826.100000,2.990000,174.330000,16.410000 +6,2023-08-03 02:00:00,0.000000,13.800000,75.000000,5.000000,99.000000,85.460000,118.400000,826.100000,2.890000,174.330000,15.970000 +6,2023-08-03 03:00:00,0.000000,13.800000,75.000000,5.000000,99.000000,85.230000,118.400000,826.100000,2.800000,174.330000,15.590000 +6,2023-08-03 04:00:00,0.000000,13.800000,75.000000,5.000000,99.000000,85.030000,118.400000,826.100000,2.720000,174.330000,15.260000 +6,2023-08-03 05:00:00,0.000000,13.600000,71.000000,4.000000,105.000000,84.940000,118.460000,826.250000,2.550000,174.410000,14.550000 +6,2023-08-03 06:00:00,0.000000,13.600000,71.000000,4.000000,105.000000,84.860000,118.520000,826.400000,2.530000,174.480000,14.430000 +6,2023-08-03 07:00:00,0.000000,13.600000,71.000000,4.000000,105.000000,84.790000,118.580000,826.550000,2.500000,174.550000,14.320000 +6,2023-08-03 08:00:00,0.000000,17.600000,53.000000,4.000000,106.000000,84.960000,118.700000,826.860000,2.560000,174.700000,14.580000 +6,2023-08-03 09:00:00,0.000000,17.600000,53.000000,4.000000,106.000000,85.110000,118.820000,827.180000,2.610000,174.850000,14.810000 +6,2023-08-03 10:00:00,0.000000,17.600000,53.000000,4.000000,106.000000,85.240000,118.950000,827.490000,2.660000,175.010000,15.020000 +6,2023-08-03 11:00:00,0.000000,22.700000,43.000000,8.000000,88.000000,85.780000,119.150000,828.010000,3.510000,175.260000,18.500000 +6,2023-08-03 12:00:00,0.000000,22.700000,43.000000,8.000000,88.000000,86.250000,119.360000,828.530000,3.750000,175.510000,19.420000 +6,2023-08-03 13:00:00,0.000000,22.700000,43.000000,8.000000,88.000000,86.650000,119.570000,829.050000,3.970000,175.760000,20.240000 +6,2023-08-03 14:00:00,0.640000,23.200000,43.000000,8.000000,61.000000,78.540000,119.780000,829.590000,1.480000,176.020000,9.360000 +6,2023-08-03 15:00:00,0.000000,23.200000,43.000000,8.000000,61.000000,80.020000,119.990000,830.120000,1.700000,176.280000,10.560000 +6,2023-08-03 16:00:00,0.000000,23.200000,43.000000,8.000000,61.000000,81.310000,120.200000,830.660000,1.960000,176.540000,11.860000 +6,2023-08-03 17:00:00,0.800000,23.200000,45.000000,8.000000,72.000000,72.630000,120.410000,831.180000,1.030000,176.790000,6.790000 +6,2023-08-03 18:00:00,0.000000,23.200000,45.000000,8.000000,72.000000,74.770000,120.610000,831.700000,1.130000,177.040000,7.430000 +6,2023-08-03 19:00:00,0.000000,23.200000,45.000000,8.000000,72.000000,76.660000,120.820000,832.220000,1.270000,177.290000,8.240000 +6,2023-08-03 20:00:00,0.000000,21.900000,44.000000,6.000000,91.000000,78.170000,121.010000,832.700000,1.290000,177.520000,8.360000 +6,2023-08-03 21:00:00,0.000000,21.900000,44.000000,6.000000,91.000000,79.510000,121.200000,833.190000,1.460000,177.760000,9.310000 +6,2023-08-03 22:00:00,0.000000,21.900000,44.000000,6.000000,91.000000,80.680000,121.200000,833.190000,1.650000,177.760000,10.320000 +6,2023-08-03 23:00:00,0.000000,16.300000,64.000000,6.000000,105.000000,81.010000,121.200000,833.190000,1.710000,177.760000,10.640000 +6,2023-08-04 00:00:00,0.000000,16.300000,64.000000,6.000000,105.000000,81.300000,121.200000,833.190000,1.770000,177.760000,10.940000 +6,2023-08-04 01:00:00,0.000000,16.300000,64.000000,6.000000,105.000000,81.570000,121.200000,833.190000,1.830000,177.760000,11.220000 +6,2023-08-04 02:00:00,0.000000,13.500000,78.000000,3.000000,234.000000,81.570000,121.200000,833.190000,1.570000,177.760000,9.900000 +6,2023-08-04 03:00:00,0.000000,13.500000,78.000000,3.000000,234.000000,81.570000,121.200000,833.190000,1.570000,177.760000,9.900000 +6,2023-08-04 04:00:00,0.000000,13.500000,78.000000,3.000000,234.000000,81.570000,121.200000,833.190000,1.570000,177.760000,9.900000 +6,2023-08-04 05:00:00,0.000000,11.900000,96.000000,5.000000,280.000000,80.890000,121.210000,833.210000,1.610000,177.770000,10.090000 +6,2023-08-04 06:00:00,0.000000,11.900000,96.000000,5.000000,280.000000,80.290000,121.220000,833.230000,1.510000,177.780000,9.540000 +6,2023-08-04 07:00:00,0.000000,11.900000,96.000000,5.000000,280.000000,79.760000,121.220000,833.250000,1.430000,177.780000,9.110000 +6,2023-08-04 08:00:00,0.010000,16.800000,78.000000,7.000000,284.000000,79.890000,121.280000,833.410000,1.600000,177.850000,10.040000 +6,2023-08-04 09:00:00,0.000000,16.800000,78.000000,7.000000,284.000000,80.020000,121.330000,833.570000,1.620000,177.920000,10.150000 +6,2023-08-04 10:00:00,0.000000,16.800000,78.000000,7.000000,284.000000,80.140000,121.390000,833.720000,1.640000,177.990000,10.260000 +6,2023-08-04 11:00:00,0.000000,22.800000,50.000000,9.000000,308.000000,81.180000,121.570000,834.240000,2.040000,178.210000,12.230000 +6,2023-08-04 12:00:00,0.000000,22.800000,50.000000,9.000000,308.000000,82.090000,121.750000,834.760000,2.270000,178.430000,13.320000 +6,2023-08-04 13:00:00,0.000000,22.800000,50.000000,9.000000,308.000000,82.880000,121.930000,835.280000,2.500000,178.660000,14.380000 +6,2023-08-04 14:00:00,0.000000,24.800000,39.000000,14.000000,321.000000,84.120000,122.170000,835.990000,3.780000,178.960000,19.620000 +6,2023-08-04 15:00:00,0.000000,24.800000,39.000000,14.000000,321.000000,85.160000,122.420000,836.710000,4.360000,179.270000,21.730000 +6,2023-08-04 16:00:00,0.000000,24.800000,39.000000,14.000000,321.000000,86.030000,122.670000,837.420000,4.920000,179.570000,23.670000 +6,2023-08-04 17:00:00,0.000000,24.300000,45.000000,16.000000,325.000000,86.530000,122.880000,838.040000,5.830000,179.840000,26.680000 +6,2023-08-04 18:00:00,0.000000,24.300000,45.000000,16.000000,325.000000,86.940000,123.100000,838.670000,6.190000,180.110000,27.790000 +6,2023-08-04 19:00:00,0.000000,24.300000,45.000000,16.000000,325.000000,87.290000,123.320000,839.290000,6.500000,180.380000,28.750000 +6,2023-08-04 20:00:00,0.000000,23.000000,52.000000,15.000000,324.000000,87.320000,123.490000,839.790000,6.210000,180.590000,27.870000 +6,2023-08-04 21:00:00,0.000000,23.000000,52.000000,15.000000,324.000000,87.350000,123.670000,840.300000,6.240000,180.810000,27.950000 +6,2023-08-04 22:00:00,0.000000,23.000000,52.000000,15.000000,324.000000,87.370000,123.670000,840.300000,6.260000,180.810000,28.020000 +6,2023-08-04 23:00:00,0.000000,18.600000,69.000000,6.000000,298.000000,87.110000,123.670000,840.300000,3.830000,180.810000,19.820000 +6,2023-08-05 00:00:00,0.000000,18.600000,69.000000,6.000000,298.000000,86.880000,123.670000,840.300000,3.700000,180.810000,19.360000 +6,2023-08-05 01:00:00,0.000000,18.600000,69.000000,6.000000,298.000000,86.680000,123.670000,840.300000,3.600000,180.810000,18.960000 +6,2023-08-05 02:00:00,0.000000,16.100000,81.000000,6.000000,267.000000,86.120000,123.670000,840.300000,3.330000,180.810000,17.890000 +6,2023-08-05 03:00:00,0.000000,16.100000,81.000000,6.000000,267.000000,85.630000,123.670000,840.300000,3.110000,180.810000,17.010000 +6,2023-08-05 04:00:00,0.000000,16.100000,81.000000,6.000000,267.000000,85.210000,123.670000,840.300000,2.930000,180.810000,16.280000 +6,2023-08-05 05:00:00,0.000000,14.500000,92.000000,6.000000,251.000000,84.310000,123.700000,840.400000,2.590000,180.850000,14.830000 +6,2023-08-05 06:00:00,0.000000,14.500000,92.000000,6.000000,251.000000,83.530000,123.730000,840.500000,2.340000,180.890000,13.680000 +6,2023-08-05 07:00:00,0.000000,14.500000,92.000000,6.000000,251.000000,82.850000,123.770000,840.600000,2.140000,180.930000,12.780000 +6,2023-08-05 08:00:00,0.000000,19.200000,70.000000,2.000000,242.000000,82.920000,123.930000,841.110000,1.770000,181.140000,10.940000 +6,2023-08-05 09:00:00,0.000000,19.200000,70.000000,2.000000,242.000000,82.980000,124.100000,841.620000,1.780000,181.350000,11.010000 +6,2023-08-05 10:00:00,0.000000,19.200000,70.000000,2.000000,242.000000,83.030000,124.260000,842.130000,1.790000,181.550000,11.080000 +6,2023-08-05 11:00:00,0.000000,22.700000,53.000000,6.000000,70.000000,83.560000,124.590000,843.120000,2.350000,181.950000,13.750000 +6,2023-08-05 12:00:00,0.000000,22.700000,53.000000,6.000000,70.000000,84.030000,124.910000,844.100000,2.500000,182.350000,14.420000 +6,2023-08-05 13:00:00,0.000000,22.700000,53.000000,6.000000,70.000000,84.440000,125.230000,845.090000,2.640000,182.760000,15.050000 +6,2023-08-05 14:00:00,2.140000,20.000000,86.000000,15.000000,27.000000,52.270000,94.340000,828.300000,0.450000,146.860000,2.590000 +6,2023-08-05 15:00:00,0.000000,20.000000,86.000000,15.000000,27.000000,53.970000,94.420000,828.550000,0.540000,146.970000,3.240000 +6,2023-08-05 16:00:00,0.000000,20.000000,86.000000,15.000000,27.000000,55.590000,94.500000,828.790000,0.630000,147.070000,3.850000 +6,2023-08-05 17:00:00,0.000000,19.800000,76.000000,13.000000,52.000000,57.800000,94.640000,829.220000,0.680000,147.260000,4.210000 +6,2023-08-05 18:00:00,0.000000,19.800000,76.000000,13.000000,52.000000,59.870000,94.770000,829.640000,0.780000,147.440000,4.890000 +6,2023-08-05 19:00:00,0.000000,19.800000,76.000000,13.000000,52.000000,61.790000,94.910000,830.060000,0.870000,147.620000,5.480000 +6,2023-08-05 20:00:00,1.320000,17.700000,91.000000,10.000000,77.000000,46.720000,82.870000,819.690000,0.180000,132.310000,0.580000 +6,2023-08-05 21:00:00,0.000000,17.700000,91.000000,10.000000,77.000000,47.790000,82.920000,819.830000,0.200000,132.370000,0.680000 +6,2023-08-05 22:00:00,0.000000,17.700000,91.000000,10.000000,77.000000,48.840000,82.920000,819.830000,0.230000,132.370000,0.780000 +6,2023-08-05 23:00:00,0.580000,16.600000,97.000000,3.000000,117.000000,43.290000,78.460000,815.210000,0.070000,126.480000,0.230000 +6,2023-08-06 00:00:00,0.000000,16.600000,97.000000,3.000000,117.000000,43.560000,78.460000,815.210000,0.080000,126.480000,0.250000 +6,2023-08-06 01:00:00,0.000000,16.600000,97.000000,3.000000,117.000000,43.830000,78.460000,815.210000,0.080000,126.480000,0.260000 +6,2023-08-06 02:00:00,0.000000,15.600000,97.000000,2.000000,209.000000,44.060000,78.460000,815.210000,0.080000,126.480000,0.250000 +6,2023-08-06 03:00:00,0.000000,15.600000,97.000000,2.000000,209.000000,44.290000,78.460000,815.210000,0.080000,126.480000,0.260000 +6,2023-08-06 04:00:00,0.000000,15.600000,97.000000,2.000000,209.000000,44.520000,78.460000,815.210000,0.080000,126.480000,0.270000 +6,2023-08-06 05:00:00,0.000000,13.300000,98.000000,2.000000,7.000000,44.660000,78.460000,815.220000,0.090000,126.490000,0.280000 +6,2023-08-06 06:00:00,0.000000,13.300000,98.000000,2.000000,7.000000,44.800000,78.460000,815.230000,0.090000,126.490000,0.280000 +6,2023-08-06 07:00:00,0.000000,13.300000,98.000000,2.000000,7.000000,44.940000,78.470000,815.240000,0.090000,126.500000,0.290000 +6,2023-08-06 08:00:00,0.000000,15.700000,93.000000,5.000000,39.000000,45.600000,78.480000,815.290000,0.120000,126.520000,0.370000 +6,2023-08-06 09:00:00,0.000000,15.700000,93.000000,5.000000,39.000000,46.260000,78.500000,815.340000,0.130000,126.540000,0.410000 +6,2023-08-06 10:00:00,0.000000,15.700000,93.000000,5.000000,39.000000,46.900000,78.510000,815.390000,0.140000,126.560000,0.450000 +6,2023-08-06 11:00:00,0.000000,20.600000,55.000000,10.000000,52.000000,50.760000,78.650000,815.840000,0.300000,126.750000,0.960000 +6,2023-08-06 12:00:00,0.000000,20.600000,55.000000,10.000000,52.000000,54.360000,78.780000,816.280000,0.430000,126.930000,2.210000 +6,2023-08-06 13:00:00,0.000000,20.600000,55.000000,10.000000,52.000000,57.700000,78.910000,816.720000,0.580000,127.120000,3.230000 +6,2023-08-06 14:00:00,0.000000,22.600000,40.000000,15.000000,53.000000,62.050000,79.110000,817.380000,0.980000,127.400000,5.710000 +6,2023-08-06 15:00:00,0.000000,22.600000,40.000000,15.000000,53.000000,65.940000,79.310000,818.050000,1.160000,127.670000,6.730000 +6,2023-08-06 16:00:00,0.000000,22.600000,40.000000,15.000000,53.000000,69.360000,79.510000,818.710000,1.300000,127.950000,7.480000 +6,2023-08-06 17:00:00,0.000000,22.300000,35.000000,15.000000,59.000000,72.530000,79.720000,819.420000,1.450000,128.250000,8.240000 +6,2023-08-06 18:00:00,0.000000,22.300000,35.000000,15.000000,59.000000,75.280000,79.930000,820.130000,1.660000,128.550000,9.240000 +6,2023-08-06 19:00:00,0.000000,22.300000,35.000000,15.000000,59.000000,77.650000,80.150000,820.840000,1.950000,128.840000,10.600000 +6,2023-08-06 20:00:00,0.000000,19.500000,41.000000,9.000000,76.000000,79.080000,80.310000,821.380000,1.630000,129.070000,9.140000 +6,2023-08-06 21:00:00,0.000000,19.500000,41.000000,9.000000,76.000000,80.340000,80.470000,821.920000,1.850000,129.300000,10.180000 +6,2023-08-06 22:00:00,0.000000,19.500000,41.000000,9.000000,76.000000,81.440000,80.470000,821.920000,2.100000,129.300000,11.270000 +6,2023-08-06 23:00:00,0.000000,13.600000,62.000000,4.000000,73.000000,81.660000,80.470000,821.920000,1.670000,129.300000,9.340000 +6,2023-08-07 00:00:00,0.000000,13.600000,62.000000,4.000000,73.000000,81.860000,80.470000,821.920000,1.710000,129.300000,9.530000 +6,2023-08-07 01:00:00,0.000000,13.600000,62.000000,4.000000,73.000000,82.050000,80.470000,821.920000,1.750000,129.300000,9.710000 +6,2023-08-07 02:00:00,0.000000,10.800000,76.000000,1.000000,108.000000,82.050000,80.470000,821.920000,1.510000,129.300000,8.530000 +6,2023-08-07 03:00:00,0.000000,10.800000,76.000000,1.000000,108.000000,82.050000,80.470000,821.920000,1.510000,129.300000,8.530000 +6,2023-08-07 04:00:00,0.000000,10.800000,76.000000,1.000000,108.000000,82.050000,80.470000,821.920000,1.510000,129.300000,8.530000 +6,2023-08-07 05:00:00,0.000000,9.700000,79.000000,2.000000,188.000000,82.040000,80.510000,822.000000,1.580000,129.340000,8.910000 +6,2023-08-07 06:00:00,0.000000,9.700000,79.000000,2.000000,188.000000,82.030000,80.540000,822.070000,1.580000,129.390000,8.900000 +6,2023-08-07 07:00:00,0.000000,9.700000,79.000000,2.000000,188.000000,82.020000,80.570000,822.150000,1.580000,129.430000,8.890000 +6,2023-08-07 08:00:00,0.000000,14.700000,57.000000,3.000000,107.000000,82.280000,80.670000,822.380000,1.710000,129.560000,9.550000 +6,2023-08-07 09:00:00,0.000000,14.700000,57.000000,3.000000,107.000000,82.530000,80.760000,822.600000,1.770000,129.690000,9.800000 +6,2023-08-07 10:00:00,0.000000,14.700000,57.000000,3.000000,107.000000,82.750000,80.860000,822.830000,1.820000,129.820000,10.040000 +6,2023-08-07 11:00:00,0.000000,20.500000,36.000000,11.000000,99.000000,83.800000,81.060000,823.310000,3.120000,130.100000,15.430000 +6,2023-08-07 12:00:00,0.000000,20.500000,36.000000,11.000000,99.000000,84.700000,81.270000,823.790000,3.510000,130.380000,16.910000 +6,2023-08-07 13:00:00,0.000000,20.500000,36.000000,11.000000,99.000000,85.470000,81.470000,824.270000,3.910000,130.660000,18.320000 +6,2023-08-07 14:00:00,0.000000,22.400000,30.000000,14.000000,71.000000,86.480000,81.730000,824.860000,5.240000,131.000000,22.650000 +6,2023-08-07 15:00:00,0.000000,22.400000,30.000000,14.000000,71.000000,87.320000,81.980000,825.450000,5.910000,131.340000,24.670000 +6,2023-08-07 16:00:00,0.000000,22.400000,30.000000,14.000000,71.000000,88.030000,82.230000,826.040000,6.530000,131.690000,26.490000 +6,2023-08-07 17:00:00,0.000000,21.900000,30.000000,16.000000,56.000000,88.610000,82.470000,826.610000,7.850000,132.020000,30.060000 +6,2023-08-07 18:00:00,0.000000,21.900000,30.000000,16.000000,56.000000,89.090000,82.720000,827.180000,8.420000,132.350000,31.530000 +6,2023-08-07 19:00:00,0.000000,21.900000,30.000000,16.000000,56.000000,89.490000,82.960000,827.760000,8.920000,132.680000,32.790000 +6,2023-08-07 20:00:00,0.000000,19.100000,38.000000,14.000000,49.000000,89.490000,83.140000,828.180000,8.060000,132.930000,30.670000 +6,2023-08-07 21:00:00,0.000000,19.100000,38.000000,14.000000,49.000000,89.490000,83.330000,828.610000,8.060000,133.170000,30.690000 +6,2023-08-07 22:00:00,0.000000,19.100000,38.000000,14.000000,49.000000,89.490000,83.330000,828.610000,8.060000,133.170000,30.690000 +6,2023-08-07 23:00:00,0.000000,14.100000,56.000000,6.000000,32.000000,89.220000,83.330000,828.610000,5.180000,133.170000,22.610000 +6,2023-08-08 00:00:00,0.000000,14.100000,56.000000,6.000000,32.000000,88.970000,83.330000,828.610000,5.000000,133.170000,22.060000 +6,2023-08-08 01:00:00,0.000000,14.100000,56.000000,6.000000,32.000000,88.760000,83.330000,828.610000,4.850000,133.170000,21.570000 +6,2023-08-08 02:00:00,0.000000,11.600000,63.000000,4.000000,108.000000,88.430000,83.330000,828.610000,4.180000,133.170000,19.390000 +6,2023-08-08 03:00:00,0.000000,11.600000,63.000000,4.000000,108.000000,88.130000,83.330000,828.610000,4.010000,133.170000,18.790000 +6,2023-08-08 04:00:00,0.000000,11.600000,63.000000,4.000000,108.000000,87.860000,83.330000,828.610000,3.860000,133.170000,18.270000 +6,2023-08-08 05:00:00,0.000000,10.700000,65.000000,3.000000,166.000000,87.590000,83.380000,828.740000,3.520000,133.240000,17.090000 +6,2023-08-08 06:00:00,0.000000,10.700000,65.000000,3.000000,166.000000,87.340000,83.430000,828.870000,3.400000,133.310000,16.650000 +6,2023-08-08 07:00:00,0.000000,10.700000,65.000000,3.000000,166.000000,87.110000,83.480000,829.000000,3.290000,133.380000,16.250000 +6,2023-08-08 08:00:00,0.000000,13.800000,53.000000,2.000000,144.000000,87.110000,83.570000,829.210000,3.130000,133.500000,15.650000 +6,2023-08-08 09:00:00,0.000000,13.800000,53.000000,2.000000,144.000000,87.110000,83.650000,829.420000,3.130000,133.620000,15.650000 +6,2023-08-08 10:00:00,0.000000,13.800000,53.000000,2.000000,144.000000,87.110000,83.740000,829.640000,3.130000,133.730000,15.660000 +6,2023-08-08 11:00:00,0.000000,19.100000,38.000000,7.000000,123.000000,87.400000,83.900000,830.030000,4.200000,133.950000,19.490000 +6,2023-08-08 12:00:00,0.000000,19.100000,38.000000,7.000000,123.000000,87.660000,84.050000,830.420000,4.360000,134.160000,20.020000 +6,2023-08-08 13:00:00,0.000000,19.100000,38.000000,7.000000,123.000000,87.880000,84.210000,830.820000,4.500000,134.370000,20.500000 +6,2023-08-08 14:00:00,0.000000,21.800000,30.000000,9.000000,102.000000,88.420000,84.420000,831.340000,5.370000,134.660000,23.300000 +6,2023-08-08 15:00:00,0.000000,21.800000,30.000000,9.000000,102.000000,88.880000,84.630000,831.870000,5.740000,134.940000,24.420000 +6,2023-08-08 16:00:00,0.000000,21.800000,30.000000,9.000000,102.000000,89.270000,84.840000,832.390000,6.070000,135.230000,25.410000 +6,2023-08-08 17:00:00,0.000000,22.900000,28.000000,12.000000,79.000000,89.730000,85.080000,832.970000,7.550000,135.540000,29.530000 +6,2023-08-08 18:00:00,0.000000,22.900000,28.000000,12.000000,79.000000,90.120000,85.310000,833.550000,7.980000,135.850000,30.680000 +6,2023-08-08 19:00:00,0.000000,22.900000,28.000000,12.000000,79.000000,90.440000,85.540000,834.120000,8.350000,136.170000,31.670000 +6,2023-08-08 20:00:00,0.000000,20.800000,34.000000,11.000000,56.000000,90.440000,85.720000,834.590000,7.940000,136.420000,30.630000 +6,2023-08-08 21:00:00,0.000000,20.800000,34.000000,11.000000,56.000000,90.440000,85.910000,835.050000,7.940000,136.670000,30.650000 +6,2023-08-08 22:00:00,0.000000,20.800000,34.000000,11.000000,56.000000,90.440000,85.910000,835.050000,7.940000,136.670000,30.650000 +6,2023-08-08 23:00:00,0.000000,15.600000,50.000000,7.000000,62.000000,90.190000,85.910000,835.050000,6.270000,136.670000,26.080000 +6,2023-08-09 00:00:00,0.000000,15.600000,50.000000,7.000000,62.000000,89.980000,85.910000,835.050000,6.070000,136.670000,25.520000 +6,2023-08-09 01:00:00,0.000000,15.600000,50.000000,7.000000,62.000000,89.780000,85.910000,835.050000,5.910000,136.670000,25.020000 +6,2023-08-09 02:00:00,0.000000,12.500000,52.000000,7.000000,134.000000,89.540000,85.910000,835.050000,5.700000,136.670000,24.420000 +6,2023-08-09 03:00:00,0.000000,12.500000,52.000000,7.000000,134.000000,89.320000,85.910000,835.050000,5.530000,136.670000,23.890000 +6,2023-08-09 04:00:00,0.000000,12.500000,52.000000,7.000000,134.000000,89.120000,85.910000,835.050000,5.370000,136.670000,23.420000 +6,2023-08-09 05:00:00,0.000000,9.700000,62.000000,3.000000,122.000000,88.780000,85.960000,835.170000,4.180000,136.740000,19.580000 +6,2023-08-09 06:00:00,0.000000,9.700000,62.000000,3.000000,122.000000,88.470000,86.020000,835.290000,4.000000,136.810000,18.960000 +6,2023-08-09 07:00:00,0.000000,9.700000,62.000000,3.000000,122.000000,88.190000,86.070000,835.410000,3.840000,136.880000,18.410000 +6,2023-08-09 08:00:00,0.000000,15.400000,48.000000,7.000000,110.000000,88.190000,86.170000,835.640000,4.700000,137.020000,21.320000 +6,2023-08-09 09:00:00,0.000000,15.400000,48.000000,7.000000,110.000000,88.190000,86.270000,835.880000,4.700000,137.160000,21.320000 +6,2023-08-09 10:00:00,0.000000,15.400000,48.000000,7.000000,110.000000,88.190000,86.380000,836.110000,4.700000,137.290000,21.330000 +6,2023-08-09 11:00:00,0.000000,22.000000,36.000000,8.000000,113.000000,88.490000,86.570000,836.550000,5.160000,137.550000,22.820000 +6,2023-08-09 12:00:00,0.000000,22.000000,36.000000,8.000000,113.000000,88.750000,86.760000,836.990000,5.360000,137.810000,23.440000 +6,2023-08-09 13:00:00,0.000000,22.000000,36.000000,8.000000,113.000000,88.970000,86.950000,837.430000,5.530000,138.070000,23.980000 +6,2023-08-09 14:00:00,0.000000,24.800000,28.000000,11.000000,104.000000,89.560000,87.210000,838.010000,7.010000,138.410000,28.270000 +6,2023-08-09 15:00:00,0.000000,24.800000,28.000000,11.000000,104.000000,90.060000,87.460000,838.590000,7.520000,138.750000,29.680000 +6,2023-08-09 16:00:00,0.000000,24.800000,28.000000,11.000000,104.000000,90.460000,87.720000,839.180000,7.970000,139.090000,30.890000 +6,2023-08-09 17:00:00,0.000000,25.400000,27.000000,14.000000,106.000000,90.880000,87.990000,839.790000,9.830000,139.450000,35.570000 +6,2023-08-09 18:00:00,0.000000,25.400000,27.000000,14.000000,106.000000,91.210000,88.260000,840.400000,10.320000,139.810000,36.740000 +6,2023-08-09 19:00:00,0.000000,25.400000,27.000000,14.000000,106.000000,91.490000,88.520000,841.010000,10.720000,140.160000,37.710000 +6,2023-08-09 20:00:00,0.000000,23.000000,31.000000,13.000000,112.000000,91.490000,88.740000,841.520000,10.200000,140.460000,36.510000 +6,2023-08-09 21:00:00,0.000000,23.000000,31.000000,13.000000,112.000000,91.490000,88.960000,842.020000,10.200000,140.750000,36.530000 +6,2023-08-09 22:00:00,0.000000,23.000000,31.000000,13.000000,112.000000,91.490000,88.960000,842.020000,10.200000,140.750000,36.530000 +6,2023-08-09 23:00:00,0.000000,18.600000,41.000000,10.000000,133.000000,91.340000,88.960000,842.020000,8.590000,140.750000,32.600000 +6,2023-08-10 00:00:00,0.000000,18.600000,41.000000,10.000000,133.000000,91.210000,88.960000,842.020000,8.430000,140.750000,32.210000 +6,2023-08-10 01:00:00,0.000000,18.600000,41.000000,10.000000,133.000000,91.100000,88.960000,842.020000,8.290000,140.750000,31.860000 +6,2023-08-10 02:00:00,0.000000,14.900000,54.000000,6.000000,148.000000,90.700000,88.960000,842.020000,6.400000,140.750000,26.730000 +6,2023-08-10 03:00:00,0.000000,14.900000,54.000000,6.000000,148.000000,90.340000,88.960000,842.020000,6.090000,140.750000,25.810000 +6,2023-08-10 04:00:00,0.000000,14.900000,54.000000,6.000000,148.000000,90.030000,88.960000,842.020000,5.820000,140.750000,25.010000 +6,2023-08-10 05:00:00,0.000000,11.500000,71.000000,5.000000,126.000000,89.380000,89.010000,842.130000,5.040000,140.820000,22.610000 +6,2023-08-10 06:00:00,0.000000,11.500000,71.000000,5.000000,126.000000,88.800000,89.060000,842.250000,4.640000,140.880000,21.320000 +6,2023-08-10 07:00:00,0.000000,11.500000,71.000000,5.000000,126.000000,88.290000,89.110000,842.360000,4.310000,140.950000,20.220000 +6,2023-08-10 08:00:00,0.000000,17.200000,51.000000,9.000000,111.000000,88.280000,89.230000,842.650000,5.270000,141.110000,23.350000 +6,2023-08-10 09:00:00,0.000000,17.200000,51.000000,9.000000,111.000000,88.280000,89.360000,842.930000,5.270000,141.270000,23.350000 +6,2023-08-10 10:00:00,0.000000,17.200000,51.000000,9.000000,111.000000,88.270000,89.480000,843.210000,5.260000,141.430000,23.350000 +6,2023-08-10 11:00:00,0.000000,22.800000,38.000000,16.000000,114.000000,88.570000,89.700000,843.720000,7.810000,141.720000,30.670000 +6,2023-08-10 12:00:00,0.000000,22.800000,38.000000,16.000000,114.000000,88.810000,89.910000,844.220000,8.090000,142.010000,31.410000 +6,2023-08-10 13:00:00,0.000000,22.800000,38.000000,16.000000,114.000000,89.010000,90.130000,844.730000,8.320000,142.300000,32.050000 +6,2023-08-10 14:00:00,0.000000,24.900000,32.000000,17.000000,125.000000,89.490000,90.400000,845.360000,9.370000,142.660000,34.710000 +6,2023-08-10 15:00:00,0.000000,24.900000,32.000000,17.000000,125.000000,89.870000,90.670000,845.990000,9.910000,143.020000,36.030000 +6,2023-08-10 16:00:00,0.000000,24.900000,32.000000,17.000000,125.000000,90.190000,90.940000,846.620000,10.360000,143.380000,37.130000 +6,2023-08-10 17:00:00,0.000000,24.600000,31.000000,15.000000,127.000000,90.460000,91.210000,847.240000,9.750000,143.740000,35.690000 +6,2023-08-10 18:00:00,0.000000,24.600000,31.000000,15.000000,127.000000,90.690000,91.480000,847.870000,10.060000,144.100000,36.480000 +6,2023-08-10 19:00:00,0.000000,24.600000,31.000000,15.000000,127.000000,90.870000,91.750000,848.500000,10.330000,144.450000,37.130000 +6,2023-08-10 20:00:00,0.000000,24.600000,31.000000,15.000000,127.000000,91.020000,92.020000,849.130000,10.550000,144.810000,37.680000 +6,2023-08-10 21:00:00,0.000000,24.600000,31.000000,15.000000,127.000000,91.140000,92.020000,849.130000,10.730000,144.810000,38.100000 +6,2023-08-10 22:00:00,0.000000,24.600000,31.000000,15.000000,127.000000,91.240000,92.020000,849.130000,10.880000,144.810000,38.450000 +6,2023-08-10 23:00:00,0.010000,18.400000,54.000000,7.000000,156.000000,90.830000,92.020000,849.130000,6.860000,144.810000,28.280000 +6,2023-08-11 00:00:00,0.000000,18.400000,54.000000,7.000000,156.000000,90.470000,92.020000,849.130000,6.520000,144.810000,27.320000 +6,2023-08-11 01:00:00,0.000000,18.400000,54.000000,7.000000,156.000000,90.160000,92.020000,849.130000,6.240000,144.810000,26.490000 +6,2023-08-11 02:00:00,0.000000,18.400000,54.000000,7.000000,156.000000,89.890000,92.020000,849.130000,6.000000,144.810000,25.790000 +6,2023-08-11 03:00:00,0.000000,18.400000,54.000000,7.000000,156.000000,89.650000,92.020000,849.130000,5.800000,144.810000,25.180000 +6,2023-08-11 04:00:00,0.000000,18.400000,54.000000,7.000000,156.000000,89.440000,92.020000,849.130000,5.630000,144.810000,24.660000 +6,2023-08-11 05:00:00,0.000000,11.800000,88.000000,2.000000,148.000000,88.400000,92.050000,849.200000,3.770000,144.850000,18.500000 +6,2023-08-11 06:00:00,0.000000,11.800000,88.000000,2.000000,148.000000,87.470000,92.080000,849.270000,3.300000,144.880000,16.760000 +6,2023-08-11 07:00:00,0.000000,11.800000,88.000000,2.000000,148.000000,86.650000,92.100000,849.340000,2.930000,144.920000,15.340000 +6,2023-08-11 08:00:00,0.000000,11.800000,88.000000,2.000000,148.000000,85.910000,92.130000,849.410000,2.640000,144.950000,14.170000 +6,2023-08-11 09:00:00,0.000000,11.800000,88.000000,2.000000,148.000000,85.260000,92.160000,849.480000,2.410000,144.990000,13.190000 +6,2023-08-11 10:00:00,0.000000,11.800000,88.000000,2.000000,148.000000,84.670000,92.180000,849.550000,2.230000,145.030000,12.380000 +6,2023-08-11 11:00:00,0.000000,22.200000,45.000000,2.000000,321.000000,85.120000,92.420000,850.180000,2.370000,145.340000,13.010000 +6,2023-08-11 12:00:00,0.000000,22.200000,45.000000,2.000000,321.000000,85.520000,92.660000,850.810000,2.500000,145.660000,13.590000 +6,2023-08-11 13:00:00,0.000000,22.200000,45.000000,2.000000,321.000000,85.870000,92.890000,851.430000,2.630000,145.970000,14.130000 +6,2023-08-11 14:00:00,0.000000,22.200000,45.000000,2.000000,321.000000,86.180000,93.130000,852.060000,2.740000,146.290000,14.630000 +6,2023-08-11 15:00:00,0.000000,22.200000,45.000000,2.000000,321.000000,86.460000,93.370000,852.690000,2.850000,146.610000,15.080000 +6,2023-08-11 16:00:00,0.000000,22.200000,45.000000,2.000000,321.000000,86.700000,93.610000,853.320000,2.950000,146.920000,15.500000 +6,2023-08-11 17:00:00,0.000000,22.900000,41.000000,5.000000,237.000000,87.080000,93.870000,854.020000,3.620000,147.270000,18.080000 +6,2023-08-11 18:00:00,0.000000,22.900000,41.000000,5.000000,237.000000,87.400000,94.140000,854.720000,3.790000,147.630000,18.720000 +6,2023-08-11 19:00:00,0.000000,22.900000,41.000000,5.000000,237.000000,87.680000,94.400000,855.420000,3.950000,147.980000,19.290000 +6,2023-08-11 20:00:00,0.000000,22.900000,41.000000,5.000000,237.000000,87.920000,94.670000,856.130000,4.090000,148.330000,19.790000 +6,2023-08-11 21:00:00,0.000000,22.900000,41.000000,5.000000,237.000000,88.130000,94.670000,856.130000,4.210000,148.330000,20.230000 +6,2023-08-11 22:00:00,0.000000,22.900000,41.000000,5.000000,237.000000,88.310000,94.670000,856.130000,4.320000,148.330000,20.610000 +6,2023-08-11 23:00:00,2.350000,16.600000,85.000000,6.000000,205.000000,54.030000,77.510000,856.130000,0.340000,126.410000,1.450000 +6,2023-08-12 00:00:00,0.000000,16.600000,85.000000,6.000000,205.000000,55.170000,77.510000,856.130000,0.380000,126.410000,1.790000 +6,2023-08-12 01:00:00,0.000000,16.600000,85.000000,6.000000,205.000000,56.270000,77.510000,856.130000,0.420000,126.410000,2.100000 +6,2023-08-12 02:00:00,0.000000,16.600000,85.000000,6.000000,205.000000,57.330000,77.510000,856.130000,0.460000,126.410000,2.380000 +6,2023-08-12 03:00:00,0.000000,16.600000,85.000000,6.000000,205.000000,58.340000,77.510000,856.130000,0.490000,126.410000,2.640000 +6,2023-08-12 04:00:00,0.000000,16.600000,85.000000,6.000000,205.000000,59.320000,77.510000,856.130000,0.530000,126.410000,2.890000 +6,2023-08-12 05:00:00,0.150000,16.000000,93.000000,5.000000,218.000000,57.640000,76.560000,854.700000,0.450000,125.100000,2.270000 +6,2023-08-12 06:00:00,0.000000,16.000000,93.000000,5.000000,218.000000,58.090000,76.590000,854.810000,0.460000,125.140000,2.390000 +6,2023-08-12 07:00:00,0.000000,16.000000,93.000000,5.000000,218.000000,58.520000,76.610000,854.920000,0.480000,125.180000,2.490000 +6,2023-08-12 08:00:00,0.000000,16.000000,93.000000,5.000000,218.000000,58.950000,76.640000,855.030000,0.490000,125.220000,2.600000 +6,2023-08-12 09:00:00,0.000000,16.000000,93.000000,5.000000,218.000000,59.370000,76.670000,855.140000,0.510000,125.270000,2.700000 +6,2023-08-12 10:00:00,0.000000,16.000000,93.000000,5.000000,218.000000,59.780000,76.700000,855.250000,0.520000,125.310000,2.800000 +6,2023-08-12 11:00:00,0.080000,22.000000,62.000000,3.000000,218.000000,60.860000,76.370000,855.300000,0.500000,124.870000,2.660000 +6,2023-08-12 12:00:00,0.000000,22.000000,62.000000,3.000000,218.000000,62.940000,76.600000,856.180000,0.560000,125.200000,3.080000 +6,2023-08-12 13:00:00,0.000000,22.000000,62.000000,3.000000,218.000000,64.880000,76.830000,857.060000,0.610000,125.530000,3.420000 +6,2023-08-12 14:00:00,0.000000,22.000000,62.000000,3.000000,218.000000,66.680000,77.060000,857.930000,0.650000,125.850000,3.700000 +6,2023-08-12 15:00:00,0.000000,22.000000,62.000000,3.000000,218.000000,68.350000,77.290000,858.810000,0.690000,126.180000,3.950000 +6,2023-08-12 16:00:00,0.000000,22.000000,62.000000,3.000000,218.000000,69.890000,77.510000,859.690000,0.720000,126.510000,4.170000 +6,2023-08-12 17:00:00,9.050000,19.700000,87.000000,5.000000,215.000000,18.650000,42.150000,766.970000,0.000000,74.120000,0.000000 +6,2023-08-12 18:00:00,0.000000,19.700000,87.000000,5.000000,215.000000,20.460000,42.220000,767.230000,0.000000,74.230000,0.000000 +6,2023-08-12 19:00:00,0.000000,19.700000,87.000000,5.000000,215.000000,22.250000,42.290000,767.490000,0.000000,74.330000,0.000000 +6,2023-08-12 20:00:00,0.000000,19.700000,87.000000,5.000000,215.000000,24.020000,42.350000,767.750000,0.000000,74.440000,0.000000 +6,2023-08-12 21:00:00,0.000000,19.700000,87.000000,5.000000,215.000000,25.780000,42.350000,767.750000,0.000000,74.440000,0.000000 +6,2023-08-12 22:00:00,0.000000,19.700000,87.000000,5.000000,215.000000,27.520000,42.350000,767.750000,0.000000,74.440000,0.000000 +6,2023-08-12 23:00:00,0.000000,15.900000,99.000000,5.000000,231.000000,27.650000,42.350000,767.750000,0.000000,74.440000,0.010000 +6,2023-08-13 00:00:00,0.000000,15.900000,99.000000,5.000000,231.000000,27.790000,42.350000,767.750000,0.000000,74.440000,0.010000 +6,2023-08-13 01:00:00,0.000000,15.900000,99.000000,5.000000,231.000000,27.920000,42.350000,767.750000,0.000000,74.440000,0.010000 +6,2023-08-13 02:00:00,0.000000,15.900000,99.000000,5.000000,231.000000,28.050000,42.350000,767.750000,0.000000,74.440000,0.010000 +6,2023-08-13 03:00:00,0.000000,15.900000,99.000000,5.000000,231.000000,28.190000,42.350000,767.750000,0.000000,74.440000,0.010000 +6,2023-08-13 04:00:00,0.000000,15.900000,99.000000,5.000000,231.000000,28.320000,42.350000,767.750000,0.000000,74.440000,0.010000 +6,2023-08-13 05:00:00,0.020000,13.300000,98.000000,6.000000,210.000000,28.570000,42.360000,767.770000,0.000000,74.450000,0.010000 +6,2023-08-13 06:00:00,0.000000,13.300000,98.000000,6.000000,210.000000,28.830000,42.360000,767.780000,0.000000,74.450000,0.010000 +6,2023-08-13 07:00:00,0.000000,13.300000,98.000000,6.000000,210.000000,29.080000,42.370000,767.800000,0.000000,74.460000,0.010000 +6,2023-08-13 08:00:00,0.000000,13.300000,98.000000,6.000000,210.000000,29.330000,42.370000,767.810000,0.000000,74.470000,0.010000 +6,2023-08-13 09:00:00,0.000000,13.300000,98.000000,6.000000,210.000000,29.580000,42.370000,767.830000,0.000000,74.470000,0.010000 +6,2023-08-13 10:00:00,0.000000,13.300000,98.000000,6.000000,210.000000,29.830000,42.380000,767.840000,0.000000,74.480000,0.010000 +6,2023-08-13 11:00:00,0.000000,22.700000,60.000000,8.000000,188.000000,34.380000,42.520000,768.360000,0.020000,74.710000,0.040000 +6,2023-08-13 12:00:00,0.000000,22.700000,60.000000,8.000000,188.000000,38.760000,42.670000,768.890000,0.040000,74.940000,0.090000 +6,2023-08-13 13:00:00,0.000000,22.700000,60.000000,8.000000,188.000000,42.930000,42.810000,769.410000,0.090000,75.170000,0.200000 +6,2023-08-13 14:00:00,0.000000,22.700000,60.000000,8.000000,188.000000,46.890000,42.960000,769.930000,0.160000,75.400000,0.370000 +6,2023-08-13 15:00:00,0.000000,22.700000,60.000000,8.000000,188.000000,50.610000,43.100000,770.450000,0.260000,75.630000,0.600000 +6,2023-08-13 16:00:00,0.000000,22.700000,60.000000,8.000000,188.000000,54.080000,43.250000,770.980000,0.380000,75.860000,0.870000 +6,2023-08-13 17:00:00,0.000000,26.500000,41.000000,7.000000,196.000000,58.770000,43.520000,771.940000,0.540000,76.280000,1.760000 +6,2023-08-13 18:00:00,0.000000,26.500000,41.000000,7.000000,196.000000,63.000000,43.780000,772.910000,0.690000,76.700000,2.590000 +6,2023-08-13 19:00:00,0.000000,26.500000,41.000000,7.000000,196.000000,66.770000,44.050000,773.880000,0.800000,77.130000,3.180000 +6,2023-08-13 20:00:00,0.000000,26.500000,41.000000,7.000000,196.000000,70.100000,44.320000,774.840000,0.890000,77.550000,3.630000 +6,2023-08-13 21:00:00,0.000000,26.500000,41.000000,7.000000,196.000000,73.020000,44.320000,774.840000,0.990000,77.550000,4.080000 +6,2023-08-13 22:00:00,0.000000,26.500000,41.000000,7.000000,196.000000,75.550000,44.320000,774.840000,1.120000,77.550000,4.660000 +6,2023-08-13 23:00:00,0.000000,19.700000,66.000000,11.000000,182.000000,76.510000,44.320000,774.840000,1.460000,77.550000,6.060000 +6,2023-08-14 00:00:00,0.000000,19.700000,66.000000,11.000000,182.000000,77.370000,44.320000,774.840000,1.560000,77.550000,6.430000 +6,2023-08-14 01:00:00,0.000000,19.700000,66.000000,11.000000,182.000000,78.140000,44.320000,774.840000,1.660000,77.550000,6.820000 +6,2023-08-14 02:00:00,0.000000,19.700000,66.000000,11.000000,182.000000,78.840000,44.320000,774.840000,1.760000,77.550000,7.220000 +6,2023-08-14 03:00:00,0.000000,19.700000,66.000000,11.000000,182.000000,79.460000,44.320000,774.840000,1.870000,77.550000,7.620000 +6,2023-08-14 04:00:00,0.000000,19.700000,66.000000,11.000000,182.000000,80.010000,44.320000,774.840000,1.980000,77.550000,8.010000 +6,2023-08-14 05:00:00,0.000000,17.000000,71.000000,12.000000,184.000000,80.320000,44.390000,775.010000,2.150000,77.660000,8.610000 +6,2023-08-14 06:00:00,0.000000,17.000000,71.000000,12.000000,184.000000,80.590000,44.460000,775.180000,2.220000,77.770000,8.850000 +6,2023-08-14 07:00:00,0.000000,17.000000,71.000000,12.000000,184.000000,80.840000,44.530000,775.340000,2.280000,77.880000,9.070000 +6,2023-08-14 08:00:00,0.000000,17.000000,71.000000,12.000000,184.000000,81.070000,44.600000,775.510000,2.340000,77.990000,9.280000 +6,2023-08-14 09:00:00,0.000000,17.000000,71.000000,12.000000,184.000000,81.270000,44.670000,775.670000,2.390000,78.100000,9.470000 +6,2023-08-14 10:00:00,0.000000,17.000000,71.000000,12.000000,184.000000,81.460000,44.750000,775.840000,2.440000,78.210000,9.650000 +6,2023-08-14 11:00:00,0.000000,25.800000,41.000000,15.000000,190.000000,82.950000,44.990000,776.420000,3.410000,78.600000,12.720000 +6,2023-08-14 12:00:00,0.000000,25.800000,41.000000,15.000000,190.000000,84.190000,45.240000,777.000000,4.020000,78.990000,14.490000 +6,2023-08-14 13:00:00,0.000000,25.800000,41.000000,15.000000,190.000000,85.220000,45.490000,777.580000,4.620000,79.370000,16.170000 +6,2023-08-14 14:00:00,0.000000,25.800000,41.000000,15.000000,190.000000,86.070000,45.740000,778.150000,5.200000,79.760000,17.710000 +6,2023-08-14 15:00:00,0.000000,25.800000,41.000000,15.000000,190.000000,86.770000,45.990000,778.730000,5.740000,80.140000,19.090000 +6,2023-08-14 16:00:00,0.000000,25.800000,41.000000,15.000000,190.000000,87.340000,46.230000,779.310000,6.230000,80.520000,20.310000 +6,2023-08-14 17:00:00,0.000000,28.800000,32.000000,16.000000,189.000000,88.360000,46.570000,780.110000,7.590000,81.050000,23.450000 +6,2023-08-14 18:00:00,0.000000,28.800000,32.000000,16.000000,189.000000,89.170000,46.910000,780.900000,8.520000,81.580000,25.520000 +6,2023-08-14 19:00:00,0.000000,28.800000,32.000000,16.000000,189.000000,89.810000,47.260000,781.700000,9.340000,82.100000,27.280000 +6,2023-08-14 20:00:00,0.000000,28.800000,32.000000,16.000000,189.000000,90.320000,47.600000,782.490000,10.040000,82.630000,28.760000 +6,2023-08-14 21:00:00,0.000000,28.800000,32.000000,16.000000,189.000000,90.720000,47.600000,782.490000,10.630000,82.630000,29.890000 +6,2023-08-14 22:00:00,0.000000,28.800000,32.000000,16.000000,189.000000,91.030000,47.600000,782.490000,11.120000,82.630000,30.810000 +6,2023-08-14 23:00:00,0.000000,21.900000,53.000000,9.000000,209.000000,90.700000,47.600000,782.490000,7.450000,82.630000,23.380000 +6,2023-08-15 00:00:00,0.000000,21.900000,53.000000,9.000000,209.000000,90.410000,47.600000,782.490000,7.150000,82.630000,22.710000 +6,2023-08-15 01:00:00,0.000000,21.900000,53.000000,9.000000,209.000000,90.160000,47.600000,782.490000,6.900000,82.630000,22.150000 +6,2023-08-15 02:00:00,0.000000,21.900000,53.000000,9.000000,209.000000,89.950000,47.600000,782.490000,6.700000,82.630000,21.680000 +6,2023-08-15 03:00:00,0.000000,21.900000,53.000000,9.000000,209.000000,89.770000,47.600000,782.490000,6.530000,82.630000,21.290000 +6,2023-08-15 04:00:00,0.000000,21.900000,53.000000,9.000000,209.000000,89.620000,47.600000,782.490000,6.380000,82.630000,20.950000 +6,2023-08-15 05:00:00,0.000000,15.400000,73.000000,7.000000,233.000000,88.920000,47.660000,782.610000,5.220000,82.720000,18.100000 +6,2023-08-15 06:00:00,0.000000,15.400000,73.000000,7.000000,233.000000,88.310000,47.720000,782.730000,4.780000,82.810000,16.970000 +6,2023-08-15 07:00:00,0.000000,15.400000,73.000000,7.000000,233.000000,87.780000,47.780000,782.850000,4.430000,82.910000,16.040000 +6,2023-08-15 08:00:00,0.000000,15.400000,73.000000,7.000000,233.000000,87.310000,47.840000,782.970000,4.150000,83.000000,15.260000 +6,2023-08-15 09:00:00,0.000000,15.400000,73.000000,7.000000,233.000000,86.910000,47.900000,783.090000,3.910000,83.090000,14.620000 +6,2023-08-15 10:00:00,0.000000,15.400000,73.000000,7.000000,233.000000,86.560000,47.960000,783.210000,3.720000,83.180000,14.070000 +6,2023-08-15 11:00:00,0.000000,27.700000,32.000000,5.000000,129.000000,87.470000,48.280000,783.850000,3.830000,83.680000,14.440000 +6,2023-08-15 12:00:00,0.000000,27.700000,32.000000,5.000000,129.000000,88.230000,48.610000,784.490000,4.270000,84.170000,15.750000 +6,2023-08-15 13:00:00,0.000000,27.700000,32.000000,5.000000,129.000000,88.870000,48.930000,785.130000,4.680000,84.670000,16.920000 +6,2023-08-15 14:00:00,0.000000,27.700000,32.000000,5.000000,129.000000,89.400000,49.250000,785.770000,5.050000,85.160000,17.970000 +6,2023-08-15 15:00:00,0.000000,27.700000,32.000000,5.000000,129.000000,89.840000,49.580000,786.410000,5.380000,85.650000,18.880000 +6,2023-08-15 16:00:00,0.000000,27.700000,32.000000,5.000000,129.000000,90.200000,49.900000,787.050000,5.680000,86.150000,19.680000 +6,2023-08-15 17:00:00,0.000000,30.900000,24.000000,9.000000,122.000000,91.060000,50.330000,787.900000,7.840000,86.810000,24.880000 +6,2023-08-15 18:00:00,0.000000,30.900000,24.000000,9.000000,122.000000,91.730000,50.770000,788.760000,8.630000,87.460000,26.690000 +6,2023-08-15 19:00:00,0.000000,30.900000,24.000000,9.000000,122.000000,92.260000,51.200000,789.620000,9.310000,88.120000,28.210000 +6,2023-08-15 20:00:00,0.000000,30.900000,24.000000,9.000000,122.000000,92.680000,51.640000,790.480000,9.870000,88.780000,29.470000 +6,2023-08-15 21:00:00,0.000000,30.900000,24.000000,9.000000,122.000000,93.010000,51.640000,790.480000,10.340000,88.780000,30.410000 +6,2023-08-15 22:00:00,0.000000,30.900000,24.000000,9.000000,122.000000,93.270000,51.640000,790.480000,10.720000,88.780000,31.160000 +6,2023-08-15 23:00:00,0.000000,21.100000,50.000000,5.000000,131.000000,92.750000,51.640000,790.480000,8.150000,88.780000,25.840000 +6,2023-08-16 00:00:00,0.000000,21.100000,50.000000,5.000000,131.000000,92.300000,51.640000,790.480000,7.640000,88.780000,24.710000 +6,2023-08-16 01:00:00,0.000000,21.100000,50.000000,5.000000,131.000000,91.900000,51.640000,790.480000,7.220000,88.780000,23.760000 +6,2023-08-16 02:00:00,0.000000,21.100000,50.000000,5.000000,131.000000,91.550000,51.640000,790.480000,6.880000,88.780000,22.950000 +6,2023-08-16 03:00:00,0.000000,21.100000,50.000000,5.000000,131.000000,91.250000,51.640000,790.480000,6.580000,88.780000,22.250000 +6,2023-08-16 04:00:00,0.000000,21.100000,50.000000,5.000000,131.000000,90.980000,51.640000,790.480000,6.340000,88.780000,21.660000 +6,2023-08-16 05:00:00,0.000000,17.100000,69.000000,9.000000,172.000000,90.170000,51.710000,790.620000,6.910000,88.890000,23.050000 +6,2023-08-16 06:00:00,0.000000,17.100000,69.000000,9.000000,172.000000,89.480000,51.780000,790.770000,6.260000,89.000000,21.490000 +6,2023-08-16 07:00:00,0.000000,17.100000,69.000000,9.000000,172.000000,88.890000,51.860000,790.910000,5.750000,89.110000,20.230000 +6,2023-08-16 08:00:00,0.000000,17.100000,69.000000,9.000000,172.000000,88.380000,51.930000,791.050000,5.340000,89.220000,19.190000 +6,2023-08-16 09:00:00,0.000000,17.100000,69.000000,9.000000,172.000000,87.940000,52.000000,791.190000,5.010000,89.330000,18.330000 +6,2023-08-16 10:00:00,0.000000,17.100000,69.000000,9.000000,172.000000,87.560000,52.080000,791.340000,4.750000,89.440000,17.620000 +6,2023-08-16 11:00:00,0.000000,29.900000,33.000000,15.000000,187.000000,88.550000,52.420000,792.000000,7.410000,89.950000,24.350000 +6,2023-08-16 12:00:00,0.000000,29.900000,33.000000,15.000000,187.000000,89.330000,52.760000,792.670000,8.290000,90.460000,26.400000 +6,2023-08-16 13:00:00,0.000000,29.900000,33.000000,15.000000,187.000000,89.950000,53.100000,793.340000,9.050000,90.970000,28.130000 +6,2023-08-16 14:00:00,0.000000,29.900000,33.000000,15.000000,187.000000,90.430000,53.440000,794.000000,9.700000,91.490000,29.570000 +6,2023-08-16 15:00:00,0.000000,29.900000,33.000000,15.000000,187.000000,90.810000,53.780000,794.670000,10.240000,92.000000,30.750000 +6,2023-08-16 16:00:00,0.000000,29.900000,33.000000,15.000000,187.000000,91.110000,54.120000,795.340000,10.680000,92.500000,31.720000 +6,2023-08-16 17:00:00,0.000000,33.600000,28.000000,11.000000,279.000000,91.750000,54.570000,796.220000,9.570000,93.180000,29.560000 +6,2023-08-16 18:00:00,0.000000,33.600000,28.000000,11.000000,279.000000,92.240000,55.020000,797.100000,10.260000,93.850000,31.090000 +6,2023-08-16 19:00:00,0.000000,33.600000,28.000000,11.000000,279.000000,92.620000,55.480000,797.990000,10.820000,94.520000,32.330000 +6,2023-08-16 20:00:00,0.000000,33.600000,28.000000,11.000000,279.000000,92.910000,55.930000,798.870000,11.270000,95.190000,33.320000 +6,2023-08-16 21:00:00,0.000000,33.600000,28.000000,11.000000,279.000000,93.120000,55.930000,798.870000,11.620000,95.190000,34.010000 +6,2023-08-16 22:00:00,0.000000,33.600000,28.000000,11.000000,279.000000,93.290000,55.930000,798.870000,11.890000,95.190000,34.540000 +6,2023-08-16 23:00:00,0.000000,23.900000,42.000000,6.000000,339.000000,92.990000,55.930000,798.870000,8.860000,95.190000,28.350000 +6,2023-08-17 00:00:00,0.000000,23.900000,42.000000,6.000000,339.000000,92.730000,55.930000,798.870000,8.540000,95.190000,27.650000 +6,2023-08-17 01:00:00,0.000000,23.900000,42.000000,6.000000,339.000000,92.500000,55.930000,798.870000,8.270000,95.190000,27.040000 +6,2023-08-17 02:00:00,0.000000,23.900000,42.000000,6.000000,339.000000,92.300000,55.930000,798.870000,8.040000,95.190000,26.530000 +6,2023-08-17 03:00:00,0.000000,23.900000,42.000000,6.000000,339.000000,92.130000,55.930000,798.870000,7.850000,95.190000,26.090000 +6,2023-08-17 04:00:00,0.000000,23.900000,42.000000,6.000000,339.000000,91.980000,55.930000,798.870000,7.690000,95.190000,25.700000 +6,2023-08-17 05:00:00,0.000000,19.500000,52.000000,5.000000,45.000000,91.560000,55.930000,798.870000,6.890000,95.190000,23.810000 +6,2023-08-17 06:00:00,0.000000,19.500000,52.000000,5.000000,45.000000,91.190000,56.060000,799.140000,6.530000,95.390000,22.970000 +6,2023-08-17 07:00:00,0.000000,19.500000,52.000000,5.000000,45.000000,90.870000,56.190000,799.420000,6.240000,95.580000,22.250000 +6,2023-08-17 08:00:00,0.000000,19.500000,52.000000,5.000000,45.000000,90.580000,56.320000,799.690000,5.990000,95.780000,21.640000 +6,2023-08-17 09:00:00,0.000000,19.500000,52.000000,5.000000,45.000000,90.330000,56.450000,799.960000,5.780000,95.970000,21.110000 +6,2023-08-17 10:00:00,0.000000,19.500000,52.000000,5.000000,45.000000,90.110000,56.580000,800.240000,5.600000,96.160000,20.660000 +6,2023-08-17 11:00:00,0.000000,28.000000,36.000000,6.000000,303.000000,90.310000,56.870000,800.840000,6.060000,96.590000,21.910000 +6,2023-08-17 12:00:00,0.000000,28.000000,36.000000,6.000000,303.000000,90.470000,57.160000,801.450000,6.200000,97.020000,22.320000 +6,2023-08-17 13:00:00,0.000000,28.000000,36.000000,6.000000,303.000000,90.610000,57.450000,802.060000,6.320000,97.450000,22.680000 +6,2023-08-17 14:00:00,0.000000,28.000000,36.000000,6.000000,303.000000,90.720000,57.740000,802.670000,6.420000,97.880000,22.990000 +6,2023-08-17 15:00:00,0.000000,28.000000,36.000000,6.000000,303.000000,90.810000,58.030000,803.280000,6.510000,98.310000,23.250000 +6,2023-08-17 16:00:00,0.000000,28.000000,36.000000,6.000000,303.000000,90.890000,58.320000,803.890000,6.580000,98.740000,23.480000 +6,2023-08-17 17:00:00,0.000000,31.000000,33.000000,14.000000,6.000000,91.210000,58.690000,804.640000,10.320000,99.270000,32.050000 +6,2023-08-17 18:00:00,0.000000,31.000000,33.000000,14.000000,6.000000,91.470000,59.050000,805.400000,10.700000,99.800000,32.920000 +6,2023-08-17 19:00:00,0.000000,31.000000,33.000000,14.000000,6.000000,91.670000,59.410000,806.160000,11.000000,100.330000,33.630000 +6,2023-08-17 20:00:00,0.000000,31.000000,33.000000,14.000000,6.000000,91.820000,59.770000,806.910000,11.240000,100.860000,34.200000 +6,2023-08-17 21:00:00,0.000000,31.000000,33.000000,14.000000,6.000000,91.940000,59.770000,806.910000,11.440000,100.860000,34.580000 +6,2023-08-17 22:00:00,0.000000,31.000000,33.000000,14.000000,6.000000,92.030000,59.770000,806.910000,11.590000,100.860000,34.880000 +6,2023-08-17 23:00:00,0.000000,24.000000,54.000000,11.000000,315.000000,91.520000,59.770000,806.910000,9.270000,100.860000,30.040000 +6,2023-08-18 00:00:00,0.000000,24.000000,54.000000,11.000000,315.000000,91.090000,59.770000,806.910000,8.720000,100.860000,28.830000 +6,2023-08-18 01:00:00,0.000000,24.000000,54.000000,11.000000,315.000000,90.740000,59.770000,806.910000,8.290000,100.860000,27.840000 +6,2023-08-18 02:00:00,0.000000,24.000000,54.000000,11.000000,315.000000,90.440000,59.770000,806.910000,7.940000,100.860000,27.040000 +6,2023-08-18 03:00:00,0.000000,24.000000,54.000000,11.000000,315.000000,90.190000,59.770000,806.910000,7.660000,100.860000,26.380000 +6,2023-08-18 04:00:00,0.000000,24.000000,54.000000,11.000000,315.000000,89.980000,59.770000,806.910000,7.430000,100.860000,25.830000 +6,2023-08-18 05:00:00,0.000000,21.100000,79.000000,13.000000,309.000000,88.870000,59.770000,806.910000,7.010000,100.860000,24.820000 +6,2023-08-18 06:00:00,0.000000,21.100000,79.000000,13.000000,309.000000,87.970000,59.830000,807.380000,6.160000,100.960000,22.660000 +6,2023-08-18 07:00:00,0.000000,21.100000,79.000000,13.000000,309.000000,87.220000,59.890000,807.850000,5.540000,101.050000,21.010000 +6,2023-08-18 08:00:00,0.000000,21.100000,79.000000,13.000000,309.000000,86.610000,59.950000,808.320000,5.080000,101.150000,19.740000 +6,2023-08-18 09:00:00,0.000000,21.100000,79.000000,13.000000,309.000000,86.100000,60.010000,808.790000,4.730000,101.240000,18.750000 +6,2023-08-18 10:00:00,0.000000,21.100000,79.000000,13.000000,309.000000,85.690000,60.070000,809.270000,4.460000,101.340000,17.970000 +6,2023-08-18 11:00:00,0.400000,20.900000,81.000000,11.000000,291.000000,85.260000,60.130000,809.690000,3.800000,101.420000,15.950000 +6,2023-08-18 12:00:00,0.000000,20.900000,81.000000,11.000000,291.000000,84.910000,60.180000,810.110000,3.620000,101.510000,15.380000 +6,2023-08-18 13:00:00,0.000000,20.900000,81.000000,11.000000,291.000000,84.620000,60.230000,810.530000,3.480000,101.590000,14.920000 +6,2023-08-18 14:00:00,0.000000,20.900000,81.000000,11.000000,291.000000,84.370000,60.290000,810.950000,3.360000,101.680000,14.550000 +6,2023-08-18 15:00:00,0.000000,20.900000,81.000000,11.000000,291.000000,84.170000,60.340000,811.370000,3.270000,101.760000,14.250000 +6,2023-08-18 16:00:00,0.000000,20.900000,81.000000,11.000000,291.000000,84.000000,60.390000,811.790000,3.200000,101.850000,14.010000 +6,2023-08-18 17:00:00,0.000000,26.200000,38.000000,10.000000,295.000000,85.120000,60.630000,813.680000,3.540000,102.230000,15.180000 +7,2023-08-03 00:00:00,0.000000,15.500000,66.000000,4.000000,38.000000,85.940000,118.400000,826.100000,2.930000,174.330000,16.160000 +7,2023-08-03 01:00:00,0.000000,15.500000,66.000000,4.000000,38.000000,85.880000,118.400000,826.100000,2.910000,174.330000,16.060000 +7,2023-08-03 02:00:00,0.000000,12.600000,75.000000,1.000000,98.000000,85.640000,118.400000,826.100000,2.420000,174.330000,13.940000 +7,2023-08-03 03:00:00,0.000000,12.600000,75.000000,1.000000,98.000000,85.420000,118.400000,826.100000,2.340000,174.330000,13.610000 +7,2023-08-03 04:00:00,0.000000,12.600000,75.000000,1.000000,98.000000,85.220000,118.400000,826.100000,2.280000,174.330000,13.320000 +7,2023-08-03 05:00:00,0.000000,11.900000,76.000000,2.000000,94.000000,85.000000,118.440000,826.210000,2.330000,174.390000,13.530000 +7,2023-08-03 06:00:00,0.000000,11.900000,76.000000,2.000000,94.000000,84.800000,118.490000,826.310000,2.260000,174.440000,13.240000 +7,2023-08-03 07:00:00,0.000000,11.900000,76.000000,2.000000,94.000000,84.620000,118.530000,826.420000,2.210000,174.490000,12.990000 +7,2023-08-03 08:00:00,0.000000,17.000000,57.000000,4.000000,123.000000,84.720000,118.640000,826.690000,2.480000,174.630000,14.210000 +7,2023-08-03 09:00:00,0.000000,17.000000,57.000000,4.000000,123.000000,84.810000,118.750000,826.960000,2.510000,174.760000,14.350000 +7,2023-08-03 10:00:00,0.000000,17.000000,57.000000,4.000000,123.000000,84.890000,118.860000,827.220000,2.540000,174.890000,14.470000 +7,2023-08-03 11:00:00,0.000000,22.200000,41.000000,7.000000,102.000000,85.500000,119.060000,827.730000,3.210000,175.140000,17.310000 +7,2023-08-03 12:00:00,0.000000,22.200000,41.000000,7.000000,102.000000,86.040000,119.270000,828.240000,3.460000,175.390000,18.300000 +7,2023-08-03 13:00:00,0.000000,22.200000,41.000000,7.000000,102.000000,86.500000,119.470000,828.740000,3.690000,175.640000,19.200000 +7,2023-08-03 14:00:00,0.000000,24.200000,37.000000,11.000000,62.000000,87.150000,119.720000,829.350000,4.950000,175.940000,23.700000 +7,2023-08-03 15:00:00,0.000000,24.200000,37.000000,11.000000,62.000000,87.690000,119.970000,829.960000,5.350000,176.250000,25.030000 +7,2023-08-03 16:00:00,0.000000,24.200000,37.000000,11.000000,62.000000,88.140000,120.210000,830.570000,5.710000,176.550000,26.200000 +7,2023-08-03 17:00:00,0.000000,22.900000,42.000000,10.000000,65.000000,88.310000,120.420000,831.090000,5.570000,176.800000,25.740000 +7,2023-08-03 18:00:00,0.000000,22.900000,42.000000,10.000000,65.000000,88.460000,120.640000,831.610000,5.680000,177.060000,26.120000 +7,2023-08-03 19:00:00,0.000000,22.900000,42.000000,10.000000,65.000000,88.580000,120.850000,832.130000,5.780000,177.320000,26.450000 +7,2023-08-03 20:00:00,0.000000,21.700000,42.000000,5.000000,77.000000,88.640000,121.040000,832.620000,4.540000,177.550000,22.310000 +7,2023-08-03 21:00:00,0.000000,21.700000,42.000000,5.000000,77.000000,88.700000,121.240000,833.100000,4.570000,177.790000,22.440000 +7,2023-08-03 22:00:00,0.000000,21.700000,42.000000,5.000000,77.000000,88.740000,121.240000,833.100000,4.600000,177.790000,22.550000 +7,2023-08-03 23:00:00,0.000000,17.200000,56.000000,0.000000,202.000000,88.640000,121.240000,833.100000,3.520000,177.790000,18.600000 +7,2023-08-04 00:00:00,0.000000,17.200000,56.000000,0.000000,202.000000,88.540000,121.240000,833.100000,3.480000,177.790000,18.420000 +7,2023-08-04 01:00:00,0.000000,17.200000,56.000000,0.000000,202.000000,88.460000,121.240000,833.100000,3.430000,177.790000,18.250000 +7,2023-08-04 02:00:00,0.000000,14.600000,71.000000,4.000000,249.000000,88.000000,121.240000,833.100000,3.930000,177.790000,20.150000 +7,2023-08-04 03:00:00,0.000000,14.600000,71.000000,4.000000,249.000000,87.590000,121.240000,833.100000,3.710000,177.790000,19.310000 +7,2023-08-04 04:00:00,0.000000,14.600000,71.000000,4.000000,249.000000,87.230000,121.240000,833.100000,3.520000,177.790000,18.600000 +7,2023-08-04 05:00:00,0.000000,13.300000,90.000000,6.000000,238.000000,86.200000,121.260000,833.150000,3.370000,177.820000,17.980000 +7,2023-08-04 06:00:00,0.000000,13.300000,90.000000,6.000000,238.000000,85.300000,121.280000,833.210000,2.970000,177.840000,16.380000 +7,2023-08-04 07:00:00,0.000000,13.300000,90.000000,6.000000,238.000000,84.520000,121.300000,833.260000,2.670000,177.860000,15.110000 +7,2023-08-04 08:00:00,0.000000,18.300000,75.000000,6.000000,250.000000,84.470000,121.360000,833.440000,2.650000,177.940000,15.030000 +7,2023-08-04 09:00:00,0.000000,18.300000,75.000000,6.000000,250.000000,84.430000,121.430000,833.630000,2.630000,178.020000,14.960000 +7,2023-08-04 10:00:00,0.000000,18.300000,75.000000,6.000000,250.000000,84.390000,121.490000,833.810000,2.620000,178.110000,14.900000 +7,2023-08-04 11:00:00,0.000000,23.300000,49.000000,8.000000,283.000000,84.900000,121.670000,834.320000,3.110000,178.330000,16.960000 +7,2023-08-04 12:00:00,0.000000,23.300000,49.000000,8.000000,283.000000,85.350000,121.850000,834.830000,3.310000,178.550000,17.760000 +7,2023-08-04 13:00:00,0.000000,23.300000,49.000000,8.000000,283.000000,85.730000,122.040000,835.340000,3.490000,178.780000,18.470000 +7,2023-08-04 14:00:00,0.000000,24.300000,42.000000,11.000000,296.000000,86.340000,122.260000,835.950000,4.420000,179.050000,21.930000 +7,2023-08-04 15:00:00,0.000000,24.300000,42.000000,11.000000,296.000000,86.850000,122.470000,836.560000,4.750000,179.320000,23.090000 +7,2023-08-04 16:00:00,0.000000,24.300000,42.000000,11.000000,296.000000,87.280000,122.690000,837.180000,5.050000,179.590000,24.110000 +7,2023-08-04 17:00:00,0.000000,25.000000,39.000000,11.000000,314.000000,87.760000,122.930000,837.850000,5.410000,179.880000,25.320000 +7,2023-08-04 18:00:00,0.000000,25.000000,39.000000,11.000000,314.000000,88.170000,123.170000,838.530000,5.740000,180.180000,26.380000 +7,2023-08-04 19:00:00,0.000000,25.000000,39.000000,11.000000,314.000000,88.510000,123.420000,839.200000,6.020000,180.480000,27.280000 +7,2023-08-04 20:00:00,0.010000,23.300000,45.000000,10.000000,337.000000,88.550000,123.610000,839.750000,5.760000,180.720000,26.460000 +7,2023-08-04 21:00:00,0.000000,23.300000,45.000000,10.000000,337.000000,88.590000,123.810000,840.300000,5.790000,180.960000,26.560000 +7,2023-08-04 22:00:00,0.000000,23.300000,45.000000,10.000000,337.000000,88.610000,123.810000,840.300000,5.810000,180.960000,26.640000 +7,2023-08-04 23:00:00,0.000000,18.900000,64.000000,8.000000,317.000000,88.300000,123.810000,840.300000,5.020000,180.960000,24.070000 +7,2023-08-05 00:00:00,0.000000,18.900000,64.000000,8.000000,317.000000,88.030000,123.810000,840.300000,4.830000,180.960000,23.420000 +7,2023-08-05 01:00:00,0.000000,18.900000,64.000000,8.000000,317.000000,87.800000,123.810000,840.300000,4.670000,180.960000,22.870000 +7,2023-08-05 02:00:00,0.000000,17.100000,80.000000,8.000000,307.000000,87.090000,123.810000,840.300000,4.230000,180.960000,21.290000 +7,2023-08-05 03:00:00,0.000000,17.100000,80.000000,8.000000,307.000000,86.490000,123.810000,840.300000,3.880000,180.960000,20.020000 +7,2023-08-05 04:00:00,0.000000,17.100000,80.000000,8.000000,307.000000,85.970000,123.810000,840.300000,3.610000,180.960000,18.990000 +7,2023-08-05 05:00:00,0.000000,16.300000,76.000000,8.000000,311.000000,85.660000,123.860000,840.440000,3.450000,181.030000,18.390000 +7,2023-08-05 06:00:00,0.000000,16.300000,76.000000,8.000000,311.000000,85.390000,123.920000,840.570000,3.320000,181.100000,17.880000 +7,2023-08-05 07:00:00,0.000000,16.300000,76.000000,8.000000,311.000000,85.150000,123.980000,840.710000,3.220000,181.170000,17.460000 +7,2023-08-05 08:00:00,0.000000,17.700000,48.000000,9.000000,320.000000,85.410000,124.120000,841.040000,3.510000,181.330000,18.610000 +7,2023-08-05 09:00:00,0.000000,17.700000,48.000000,9.000000,320.000000,85.640000,124.250000,841.360000,3.620000,181.500000,19.060000 +7,2023-08-05 10:00:00,0.000000,17.700000,48.000000,9.000000,320.000000,85.850000,124.390000,841.690000,3.730000,181.660000,19.460000 +7,2023-08-05 11:00:00,0.000000,20.200000,37.000000,9.000000,323.000000,86.390000,124.580000,842.150000,4.020000,181.890000,20.570000 +7,2023-08-05 12:00:00,0.000000,20.200000,37.000000,9.000000,323.000000,86.860000,124.770000,842.610000,4.300000,182.120000,21.580000 +7,2023-08-05 13:00:00,0.000000,20.200000,37.000000,9.000000,323.000000,87.260000,124.970000,843.070000,4.550000,182.360000,22.490000 +7,2023-08-05 14:00:00,0.000000,21.900000,35.000000,8.000000,337.000000,87.730000,125.190000,843.600000,4.630000,182.620000,22.750000 +7,2023-08-05 15:00:00,0.000000,21.900000,35.000000,8.000000,337.000000,88.120000,125.410000,844.130000,4.900000,182.890000,23.690000 +7,2023-08-05 16:00:00,0.000000,21.900000,35.000000,8.000000,337.000000,88.460000,125.630000,844.660000,5.140000,183.150000,24.520000 +7,2023-08-05 17:00:00,0.000000,21.700000,38.000000,8.000000,18.000000,88.660000,125.840000,845.160000,5.290000,183.400000,25.010000 +7,2023-08-05 18:00:00,0.000000,21.700000,38.000000,8.000000,18.000000,88.820000,126.040000,845.660000,5.410000,183.650000,25.430000 +7,2023-08-05 19:00:00,0.000000,21.700000,38.000000,8.000000,18.000000,88.960000,126.250000,846.160000,5.530000,183.900000,25.800000 +7,2023-08-05 20:00:00,0.000000,19.700000,45.000000,5.000000,42.000000,88.960000,126.410000,846.550000,4.750000,184.100000,23.210000 +7,2023-08-05 21:00:00,0.000000,19.700000,45.000000,5.000000,42.000000,88.960000,126.580000,846.940000,4.750000,184.300000,23.220000 +7,2023-08-05 22:00:00,0.000000,19.700000,45.000000,5.000000,42.000000,88.960000,126.580000,846.940000,4.750000,184.300000,23.220000 +7,2023-08-05 23:00:00,0.000000,14.200000,66.000000,1.000000,250.000000,88.620000,126.580000,846.940000,3.690000,184.300000,19.390000 +7,2023-08-06 00:00:00,0.000000,14.200000,66.000000,1.000000,250.000000,88.300000,126.580000,846.940000,3.530000,184.300000,18.750000 +7,2023-08-06 01:00:00,0.000000,14.200000,66.000000,1.000000,250.000000,88.010000,126.580000,846.940000,3.390000,184.300000,18.200000 +7,2023-08-06 02:00:00,0.000000,11.400000,79.000000,5.000000,247.000000,87.380000,126.580000,846.940000,3.780000,184.300000,19.730000 +7,2023-08-06 03:00:00,0.000000,11.400000,79.000000,5.000000,247.000000,86.810000,126.580000,846.940000,3.490000,184.300000,18.610000 +7,2023-08-06 04:00:00,0.000000,11.400000,79.000000,5.000000,247.000000,86.310000,126.580000,846.940000,3.250000,184.300000,17.660000 +7,2023-08-06 05:00:00,0.000000,10.400000,84.000000,6.000000,244.000000,85.700000,126.610000,847.020000,3.140000,184.330000,17.190000 +7,2023-08-06 06:00:00,0.000000,10.400000,84.000000,6.000000,244.000000,85.150000,126.640000,847.100000,2.910000,184.370000,16.240000 +7,2023-08-06 07:00:00,0.000000,10.400000,84.000000,6.000000,244.000000,84.670000,126.670000,847.180000,2.720000,184.410000,15.440000 +7,2023-08-06 08:00:00,0.000000,16.700000,57.000000,4.000000,243.000000,84.750000,126.790000,847.500000,2.490000,184.560000,14.430000 +7,2023-08-06 09:00:00,0.000000,16.700000,57.000000,4.000000,243.000000,84.830000,126.910000,847.830000,2.520000,184.710000,14.550000 +7,2023-08-06 10:00:00,0.000000,16.700000,57.000000,4.000000,243.000000,84.910000,127.040000,848.150000,2.540000,184.850000,14.670000 +7,2023-08-06 11:00:00,0.000000,21.400000,44.000000,6.000000,21.000000,85.390000,127.250000,848.710000,3.010000,185.120000,16.660000 +7,2023-08-06 12:00:00,0.000000,21.400000,44.000000,6.000000,21.000000,85.810000,127.470000,849.280000,3.190000,185.380000,17.420000 +7,2023-08-06 13:00:00,0.000000,21.400000,44.000000,6.000000,21.000000,86.180000,127.680000,849.850000,3.360000,185.640000,18.100000 +7,2023-08-06 14:00:00,0.000000,22.500000,47.000000,11.000000,42.000000,86.490000,127.900000,850.420000,4.520000,185.900000,22.430000 +7,2023-08-06 15:00:00,0.000000,22.500000,47.000000,11.000000,42.000000,86.760000,128.110000,850.990000,4.690000,186.160000,23.050000 +7,2023-08-06 16:00:00,0.000000,22.500000,47.000000,11.000000,42.000000,86.990000,128.330000,851.560000,4.840000,186.430000,23.580000 +7,2023-08-06 17:00:00,0.000000,22.100000,53.000000,12.000000,51.000000,87.010000,128.520000,852.060000,5.110000,186.650000,24.500000 +7,2023-08-06 18:00:00,0.000000,22.100000,53.000000,12.000000,51.000000,87.040000,128.710000,852.550000,5.130000,186.880000,24.560000 +7,2023-08-06 19:00:00,0.000000,22.100000,53.000000,12.000000,51.000000,87.060000,128.900000,853.050000,5.140000,187.110000,24.620000 +7,2023-08-06 20:00:00,0.000000,19.700000,59.000000,9.000000,63.000000,87.060000,129.040000,853.420000,4.420000,187.280000,22.130000 +7,2023-08-06 21:00:00,0.000000,19.700000,59.000000,9.000000,63.000000,87.060000,129.180000,853.790000,4.420000,187.450000,22.140000 +7,2023-08-06 22:00:00,0.000000,19.700000,59.000000,9.000000,63.000000,87.060000,129.180000,853.790000,4.420000,187.450000,22.140000 +7,2023-08-06 23:00:00,0.000000,15.700000,79.000000,5.000000,73.000000,86.530000,129.180000,853.790000,3.350000,187.450000,18.120000 +7,2023-08-07 00:00:00,0.000000,15.700000,79.000000,5.000000,73.000000,86.070000,129.180000,853.790000,3.140000,187.450000,17.270000 +7,2023-08-07 01:00:00,0.000000,15.700000,79.000000,5.000000,73.000000,85.670000,129.180000,853.790000,2.970000,187.450000,16.560000 +7,2023-08-07 02:00:00,0.000000,12.900000,97.000000,4.000000,85.000000,84.400000,129.180000,853.790000,2.370000,187.450000,13.950000 +7,2023-08-07 03:00:00,0.000000,12.900000,97.000000,4.000000,85.000000,83.300000,129.180000,853.790000,2.050000,187.450000,12.430000 +7,2023-08-07 04:00:00,0.000000,12.900000,97.000000,4.000000,85.000000,82.330000,129.180000,853.790000,1.810000,187.450000,11.260000 +7,2023-08-07 05:00:00,0.000000,12.300000,98.000000,3.000000,74.000000,81.430000,129.180000,853.800000,1.550000,187.460000,9.880000 +7,2023-08-07 06:00:00,0.000000,12.300000,98.000000,3.000000,74.000000,80.640000,129.190000,853.810000,1.410000,187.460000,9.150000 +7,2023-08-07 07:00:00,0.000000,12.300000,98.000000,3.000000,74.000000,79.940000,129.190000,853.820000,1.310000,187.470000,8.580000 +7,2023-08-07 08:00:00,0.000000,15.900000,77.000000,4.000000,101.000000,80.050000,129.240000,853.970000,1.400000,187.530000,9.060000 +7,2023-08-07 09:00:00,0.000000,15.900000,77.000000,4.000000,101.000000,80.160000,129.290000,854.110000,1.410000,187.590000,9.150000 +7,2023-08-07 10:00:00,0.000000,15.900000,77.000000,4.000000,101.000000,80.260000,129.340000,854.260000,1.430000,187.650000,9.230000 +7,2023-08-07 11:00:00,0.000000,21.300000,50.000000,7.000000,109.000000,81.160000,129.480000,854.700000,1.840000,187.830000,11.380000 +7,2023-08-07 12:00:00,0.000000,21.300000,50.000000,7.000000,109.000000,81.960000,129.630000,855.140000,2.020000,188.010000,12.270000 +7,2023-08-07 13:00:00,0.000000,21.300000,50.000000,7.000000,109.000000,82.660000,129.780000,855.580000,2.200000,188.200000,13.140000 +7,2023-08-07 14:00:00,0.000000,24.000000,39.000000,7.000000,117.000000,83.740000,130.000000,856.210000,2.530000,188.460000,14.650000 +7,2023-08-07 15:00:00,0.000000,24.000000,39.000000,7.000000,117.000000,84.670000,130.210000,856.840000,2.860000,188.720000,16.120000 +7,2023-08-07 16:00:00,0.000000,24.000000,39.000000,7.000000,117.000000,85.460000,130.420000,857.470000,3.190000,188.980000,17.500000 +7,2023-08-07 17:00:00,0.000000,24.600000,37.000000,9.000000,108.000000,86.270000,130.650000,858.150000,3.960000,189.270000,20.470000 +7,2023-08-07 18:00:00,0.000000,24.600000,37.000000,9.000000,108.000000,86.950000,130.880000,858.830000,4.360000,189.550000,21.940000 +7,2023-08-07 19:00:00,0.000000,24.600000,37.000000,9.000000,108.000000,87.520000,131.110000,859.510000,4.730000,189.830000,23.250000 +7,2023-08-07 20:00:00,0.000000,22.900000,42.000000,10.000000,112.000000,87.790000,131.300000,860.070000,5.160000,190.060000,24.740000 +7,2023-08-07 21:00:00,0.000000,22.900000,42.000000,10.000000,112.000000,88.010000,131.490000,860.630000,5.330000,190.300000,25.310000 +7,2023-08-07 22:00:00,0.000000,22.900000,42.000000,10.000000,112.000000,88.200000,131.490000,860.630000,5.480000,190.300000,25.790000 +7,2023-08-07 23:00:00,0.000000,19.400000,53.000000,12.000000,138.000000,88.200000,131.490000,860.630000,6.060000,190.300000,27.650000 +7,2023-08-08 00:00:00,0.000000,19.400000,53.000000,12.000000,138.000000,88.200000,131.490000,860.630000,6.060000,190.300000,27.650000 +7,2023-08-08 01:00:00,0.000000,19.400000,53.000000,12.000000,138.000000,88.200000,131.490000,860.630000,6.060000,190.300000,27.650000 +7,2023-08-08 02:00:00,0.000000,17.700000,56.000000,11.000000,147.000000,88.110000,131.490000,860.630000,5.690000,190.300000,26.460000 +7,2023-08-08 03:00:00,0.000000,17.700000,56.000000,11.000000,147.000000,88.030000,131.490000,860.630000,5.620000,190.300000,26.250000 +7,2023-08-08 04:00:00,0.000000,17.700000,56.000000,11.000000,147.000000,87.960000,131.490000,860.630000,5.560000,190.300000,26.060000 +7,2023-08-08 05:00:00,0.000000,16.000000,56.000000,10.000000,128.000000,87.870000,131.580000,860.840000,5.220000,190.400000,24.940000 +7,2023-08-08 06:00:00,0.000000,16.000000,56.000000,10.000000,128.000000,87.790000,131.660000,861.040000,5.160000,190.500000,24.750000 +7,2023-08-08 07:00:00,0.000000,16.000000,56.000000,10.000000,128.000000,87.720000,131.740000,861.250000,5.110000,190.600000,24.580000 +7,2023-08-08 08:00:00,0.000000,18.400000,47.000000,11.000000,123.000000,87.720000,131.860000,861.540000,5.370000,190.740000,25.460000 +7,2023-08-08 09:00:00,0.000000,18.400000,47.000000,11.000000,123.000000,87.720000,131.980000,861.820000,5.370000,190.880000,25.460000 +7,2023-08-08 10:00:00,0.000000,18.400000,47.000000,11.000000,123.000000,87.720000,132.100000,862.110000,5.370000,191.020000,25.460000 +7,2023-08-08 11:00:00,0.000000,22.200000,40.000000,14.000000,118.000000,88.010000,132.270000,862.520000,6.520000,191.230000,29.070000 +7,2023-08-08 12:00:00,0.000000,22.200000,40.000000,14.000000,118.000000,88.250000,132.440000,862.940000,6.750000,191.430000,29.770000 +7,2023-08-08 13:00:00,0.000000,22.200000,40.000000,14.000000,118.000000,88.450000,132.610000,863.350000,6.950000,191.630000,30.370000 +7,2023-08-08 14:00:00,0.000000,25.200000,35.000000,14.000000,111.000000,88.910000,132.830000,863.880000,7.420000,191.900000,31.750000 +7,2023-08-08 15:00:00,0.000000,25.200000,35.000000,14.000000,111.000000,89.290000,133.050000,864.420000,7.830000,192.160000,32.920000 +7,2023-08-08 16:00:00,0.000000,25.200000,35.000000,14.000000,111.000000,89.600000,133.270000,864.950000,8.180000,192.420000,33.910000 +7,2023-08-08 17:00:00,0.000000,26.600000,34.000000,14.000000,106.000000,89.940000,133.520000,865.540000,8.600000,192.710000,35.060000 +7,2023-08-08 18:00:00,0.000000,26.600000,34.000000,14.000000,106.000000,90.220000,133.760000,866.130000,8.960000,193.000000,36.010000 +7,2023-08-08 19:00:00,0.000000,26.600000,34.000000,14.000000,106.000000,90.450000,134.000000,866.720000,9.250000,193.290000,36.790000 +7,2023-08-08 20:00:00,0.000000,24.700000,43.000000,5.000000,89.000000,90.450000,134.190000,867.180000,5.880000,193.520000,27.150000 +7,2023-08-08 21:00:00,0.000000,24.700000,43.000000,5.000000,89.000000,90.450000,134.380000,867.630000,5.880000,193.740000,27.150000 +7,2023-08-08 22:00:00,0.000000,24.700000,43.000000,5.000000,89.000000,90.450000,134.380000,867.630000,5.880000,193.740000,27.150000 +7,2023-08-08 23:00:00,0.000000,19.800000,62.000000,4.000000,182.000000,89.990000,134.380000,867.630000,5.230000,193.740000,25.060000 +7,2023-08-09 00:00:00,0.000000,19.800000,62.000000,4.000000,182.000000,89.590000,134.380000,867.630000,4.940000,193.740000,24.070000 +7,2023-08-09 01:00:00,0.000000,19.800000,62.000000,4.000000,182.000000,89.240000,134.380000,867.630000,4.700000,193.740000,23.230000 +7,2023-08-09 02:00:00,0.000000,17.600000,80.000000,6.000000,221.000000,88.360000,134.380000,867.630000,4.580000,193.740000,22.810000 +7,2023-08-09 03:00:00,0.000000,17.600000,80.000000,6.000000,221.000000,87.600000,134.380000,867.630000,4.110000,193.740000,21.120000 +7,2023-08-09 04:00:00,0.000000,17.600000,80.000000,6.000000,221.000000,86.950000,134.380000,867.630000,3.750000,193.740000,19.750000 +7,2023-08-09 05:00:00,0.000000,16.300000,93.000000,5.000000,255.000000,85.730000,134.400000,867.680000,3.000000,193.760000,16.760000 +7,2023-08-09 06:00:00,0.000000,16.300000,93.000000,5.000000,255.000000,84.690000,134.420000,867.740000,2.590000,193.790000,15.020000 +7,2023-08-09 07:00:00,0.000000,16.300000,93.000000,5.000000,255.000000,83.790000,134.440000,867.790000,2.300000,193.810000,13.690000 +7,2023-08-09 08:00:00,0.010000,19.500000,78.000000,6.000000,277.000000,83.580000,134.110000,867.910000,2.350000,193.480000,13.920000 +7,2023-08-09 09:00:00,0.000000,19.500000,78.000000,6.000000,277.000000,83.580000,134.190000,868.110000,2.350000,193.570000,13.930000 +7,2023-08-09 10:00:00,0.000000,19.500000,78.000000,6.000000,277.000000,83.580000,134.260000,868.310000,2.350000,193.660000,13.930000 +7,2023-08-09 11:00:00,0.000000,25.800000,48.000000,5.000000,311.000000,84.290000,134.530000,869.020000,2.460000,193.980000,14.420000 +7,2023-08-09 12:00:00,0.000000,25.800000,48.000000,5.000000,311.000000,84.910000,134.790000,869.720000,2.670000,194.300000,15.380000 +7,2023-08-09 13:00:00,0.000000,25.800000,48.000000,5.000000,311.000000,85.440000,135.060000,870.420000,2.880000,194.620000,16.260000 +7,2023-08-09 14:00:00,0.140000,28.200000,36.000000,7.000000,336.000000,83.980000,131.810000,870.220000,2.610000,191.210000,15.050000 +7,2023-08-09 15:00:00,0.000000,28.200000,36.000000,7.000000,336.000000,85.240000,132.180000,871.210000,3.100000,191.670000,17.140000 +7,2023-08-09 16:00:00,0.000000,28.200000,36.000000,7.000000,336.000000,86.300000,132.560000,872.210000,3.590000,192.120000,19.120000 +7,2023-08-09 17:00:00,3.940000,24.700000,72.000000,9.000000,48.000000,40.650000,81.820000,838.830000,0.060000,131.550000,0.200000 +7,2023-08-09 18:00:00,0.000000,24.700000,72.000000,9.000000,48.000000,44.290000,81.950000,839.180000,0.120000,131.740000,0.380000 +7,2023-08-09 19:00:00,0.000000,24.700000,72.000000,9.000000,48.000000,47.740000,82.080000,839.540000,0.190000,131.920000,0.640000 +7,2023-08-09 20:00:00,0.000000,23.400000,69.000000,4.000000,93.000000,50.500000,82.220000,839.900000,0.210000,132.110000,0.700000 +7,2023-08-09 21:00:00,0.000000,23.400000,69.000000,4.000000,93.000000,53.120000,82.360000,840.260000,0.280000,132.300000,0.940000 +7,2023-08-09 22:00:00,0.000000,23.400000,69.000000,4.000000,93.000000,55.590000,82.360000,840.260000,0.360000,132.300000,1.670000 +7,2023-08-09 23:00:00,0.000000,18.300000,91.000000,3.000000,196.000000,56.190000,82.360000,840.260000,0.360000,132.300000,1.670000 +7,2023-08-10 00:00:00,0.000000,18.300000,91.000000,3.000000,196.000000,56.770000,82.360000,840.260000,0.380000,132.300000,1.830000 +7,2023-08-10 01:00:00,0.000000,18.300000,91.000000,3.000000,196.000000,57.350000,82.360000,840.260000,0.400000,132.300000,1.970000 +7,2023-08-10 02:00:00,0.010000,16.700000,98.000000,4.000000,240.000000,57.470000,82.360000,840.260000,0.420000,132.300000,2.160000 +7,2023-08-10 03:00:00,0.000000,16.700000,98.000000,4.000000,240.000000,57.590000,82.360000,840.260000,0.420000,132.300000,2.190000 +7,2023-08-10 04:00:00,0.000000,16.700000,98.000000,4.000000,240.000000,57.700000,82.360000,840.260000,0.430000,132.300000,2.220000 +7,2023-08-10 05:00:00,0.080000,16.000000,98.000000,3.000000,223.000000,57.810000,82.360000,840.270000,0.410000,132.300000,2.080000 +7,2023-08-10 06:00:00,0.000000,16.000000,98.000000,3.000000,223.000000,57.910000,82.370000,840.290000,0.410000,132.310000,2.110000 +7,2023-08-10 07:00:00,0.000000,16.000000,98.000000,3.000000,223.000000,58.010000,82.370000,840.300000,0.420000,132.320000,2.130000 +7,2023-08-10 08:00:00,0.030000,19.200000,83.000000,3.000000,190.000000,59.060000,82.420000,840.440000,0.450000,132.380000,2.380000 +7,2023-08-10 09:00:00,0.000000,19.200000,83.000000,3.000000,190.000000,60.060000,82.470000,840.590000,0.480000,132.450000,2.610000 +7,2023-08-10 10:00:00,0.000000,19.200000,83.000000,3.000000,190.000000,61.030000,82.510000,840.730000,0.510000,132.510000,2.820000 +7,2023-08-10 11:00:00,0.000000,25.400000,54.000000,5.000000,176.000000,64.030000,82.700000,841.290000,0.650000,132.770000,3.820000 +7,2023-08-10 12:00:00,0.000000,25.400000,54.000000,5.000000,176.000000,66.750000,82.880000,841.850000,0.720000,133.030000,4.290000 +7,2023-08-10 13:00:00,0.000000,25.400000,54.000000,5.000000,176.000000,69.200000,83.070000,842.400000,0.780000,133.280000,4.680000 +7,2023-08-10 14:00:00,0.000000,27.000000,45.000000,6.000000,151.000000,72.040000,83.310000,843.140000,0.910000,133.620000,5.420000 +7,2023-08-10 15:00:00,0.000000,27.000000,45.000000,6.000000,151.000000,74.520000,83.560000,843.870000,1.010000,133.960000,6.030000 +7,2023-08-10 16:00:00,0.000000,27.000000,45.000000,6.000000,151.000000,76.680000,83.800000,844.610000,1.150000,134.290000,6.830000 +7,2023-08-10 17:00:00,0.000000,27.400000,41.000000,6.000000,152.000000,78.750000,84.070000,845.420000,1.360000,134.660000,7.950000 +7,2023-08-10 18:00:00,0.000000,27.400000,41.000000,6.000000,152.000000,80.530000,84.340000,846.220000,1.630000,135.030000,9.300000 +7,2023-08-10 19:00:00,0.000000,27.400000,41.000000,6.000000,152.000000,82.050000,84.610000,847.030000,1.940000,135.400000,10.780000 +7,2023-08-10 20:00:00,0.000000,27.400000,41.000000,6.000000,152.000000,83.340000,84.870000,847.840000,2.280000,135.770000,12.300000 +7,2023-08-10 21:00:00,0.000000,27.400000,41.000000,6.000000,152.000000,84.430000,84.870000,847.840000,2.640000,135.770000,13.800000 +7,2023-08-10 22:00:00,0.000000,27.400000,41.000000,6.000000,152.000000,85.360000,84.870000,847.840000,2.990000,135.770000,15.210000 +7,2023-08-10 23:00:00,0.000000,20.400000,81.000000,6.000000,168.000000,85.010000,84.870000,847.840000,2.850000,135.770000,14.670000 +7,2023-08-11 00:00:00,0.000000,20.400000,81.000000,6.000000,168.000000,84.720000,84.870000,847.840000,2.740000,135.770000,14.230000 +7,2023-08-11 01:00:00,0.000000,20.400000,81.000000,6.000000,168.000000,84.480000,84.870000,847.840000,2.650000,135.770000,13.860000 +7,2023-08-11 02:00:00,0.000000,20.400000,81.000000,6.000000,168.000000,84.270000,84.870000,847.840000,2.580000,135.770000,13.560000 +7,2023-08-11 03:00:00,0.000000,20.400000,81.000000,6.000000,168.000000,84.090000,84.870000,847.840000,2.520000,135.770000,13.310000 +7,2023-08-11 04:00:00,0.000000,20.400000,81.000000,6.000000,168.000000,83.930000,84.870000,847.840000,2.470000,135.770000,13.100000 +7,2023-08-11 05:00:00,0.000000,17.300000,98.000000,7.000000,186.000000,82.610000,84.880000,847.850000,2.190000,135.780000,11.900000 +7,2023-08-11 06:00:00,0.000000,17.300000,98.000000,7.000000,186.000000,81.500000,84.890000,847.860000,1.910000,135.790000,10.650000 +7,2023-08-11 07:00:00,0.000000,17.300000,98.000000,7.000000,186.000000,80.550000,84.890000,847.880000,1.710000,135.790000,9.740000 +7,2023-08-11 08:00:00,0.000000,17.300000,98.000000,7.000000,186.000000,79.750000,84.900000,847.890000,1.580000,135.800000,9.070000 +7,2023-08-11 09:00:00,0.000000,17.300000,98.000000,7.000000,186.000000,79.070000,84.900000,847.900000,1.470000,135.810000,8.560000 +7,2023-08-11 10:00:00,0.000000,17.300000,98.000000,7.000000,186.000000,78.490000,84.910000,847.920000,1.400000,135.820000,8.170000 +7,2023-08-11 11:00:00,0.000000,27.500000,45.000000,16.000000,186.000000,80.490000,85.190000,848.610000,2.680000,136.200000,13.990000 +7,2023-08-11 12:00:00,0.000000,27.500000,45.000000,16.000000,186.000000,82.140000,85.470000,849.290000,3.250000,136.580000,16.220000 +7,2023-08-11 13:00:00,0.000000,27.500000,45.000000,16.000000,186.000000,83.510000,85.750000,849.980000,3.860000,136.960000,18.470000 +7,2023-08-11 14:00:00,0.000000,27.500000,45.000000,16.000000,186.000000,84.630000,86.030000,850.670000,4.480000,137.340000,20.610000 +7,2023-08-11 15:00:00,0.000000,27.500000,45.000000,16.000000,186.000000,85.540000,86.310000,851.360000,5.080000,137.720000,22.570000 +7,2023-08-11 16:00:00,0.000000,27.500000,45.000000,16.000000,186.000000,86.290000,86.590000,852.040000,5.640000,138.100000,24.320000 +7,2023-08-11 17:00:00,0.000000,29.700000,34.000000,18.000000,185.000000,87.530000,86.970000,852.980000,7.440000,138.610000,29.470000 +7,2023-08-11 18:00:00,0.000000,29.700000,34.000000,18.000000,185.000000,88.500000,87.360000,853.920000,8.560000,139.130000,32.410000 +7,2023-08-11 19:00:00,0.000000,29.700000,34.000000,18.000000,185.000000,89.260000,87.740000,854.850000,9.540000,139.650000,34.890000 +7,2023-08-11 20:00:00,0.000000,29.700000,34.000000,18.000000,185.000000,89.860000,88.120000,855.790000,10.400000,140.160000,36.950000 +7,2023-08-11 21:00:00,0.000000,29.700000,34.000000,18.000000,185.000000,90.320000,88.120000,855.790000,11.110000,140.160000,38.580000 +7,2023-08-11 22:00:00,0.000000,29.700000,34.000000,18.000000,185.000000,90.680000,88.120000,855.790000,11.700000,140.160000,39.900000 +7,2023-08-11 23:00:00,0.000000,24.500000,52.000000,12.000000,187.000000,90.460000,88.120000,855.790000,8.370000,140.160000,32.010000 +7,2023-08-12 00:00:00,0.000000,24.500000,52.000000,12.000000,187.000000,90.270000,88.120000,855.790000,8.150000,140.160000,31.440000 +7,2023-08-12 01:00:00,0.000000,24.500000,52.000000,12.000000,187.000000,90.110000,88.120000,855.790000,7.970000,140.160000,30.970000 +7,2023-08-12 02:00:00,0.000000,24.500000,52.000000,12.000000,187.000000,89.980000,88.120000,855.790000,7.820000,140.160000,30.580000 +7,2023-08-12 03:00:00,0.000000,24.500000,52.000000,12.000000,187.000000,89.870000,88.120000,855.790000,7.690000,140.160000,30.250000 +7,2023-08-12 04:00:00,0.000000,24.500000,52.000000,12.000000,187.000000,89.770000,88.120000,855.790000,7.590000,140.160000,29.980000 +7,2023-08-12 05:00:00,0.000000,20.900000,56.000000,13.000000,231.000000,89.510000,88.260000,856.060000,7.690000,140.340000,30.240000 +7,2023-08-12 06:00:00,0.000000,20.900000,56.000000,13.000000,231.000000,89.280000,88.390000,856.330000,7.440000,140.520000,29.600000 +7,2023-08-12 07:00:00,0.000000,20.900000,56.000000,13.000000,231.000000,89.090000,88.530000,856.600000,7.240000,140.700000,29.060000 +7,2023-08-12 08:00:00,0.000000,20.900000,56.000000,13.000000,231.000000,88.930000,88.660000,856.870000,7.070000,140.880000,28.620000 +7,2023-08-12 09:00:00,0.000000,20.900000,56.000000,13.000000,231.000000,88.790000,88.800000,857.140000,6.930000,141.060000,28.240000 +7,2023-08-12 10:00:00,0.000000,20.900000,56.000000,13.000000,231.000000,88.670000,88.940000,857.410000,6.820000,141.240000,27.930000 +7,2023-08-12 11:00:00,0.000000,23.800000,29.000000,25.000000,249.000000,89.330000,89.200000,857.940000,13.710000,141.590000,44.330000 +7,2023-08-12 12:00:00,0.000000,23.800000,29.000000,25.000000,249.000000,89.860000,89.460000,858.460000,14.790000,141.940000,46.540000 +7,2023-08-12 13:00:00,0.000000,23.800000,29.000000,25.000000,249.000000,90.280000,89.720000,858.980000,15.710000,142.280000,48.380000 +7,2023-08-12 14:00:00,0.000000,23.800000,29.000000,25.000000,249.000000,90.610000,89.980000,859.500000,16.490000,142.630000,49.900000 +7,2023-08-12 15:00:00,0.000000,23.800000,29.000000,25.000000,249.000000,90.880000,90.240000,860.020000,17.130000,142.970000,51.150000 +7,2023-08-12 16:00:00,0.000000,23.800000,29.000000,25.000000,249.000000,91.100000,90.500000,860.540000,17.670000,143.320000,52.170000 +7,2023-08-12 17:00:00,0.000000,26.200000,25.000000,20.000000,261.000000,91.540000,90.820000,861.170000,14.630000,143.740000,46.390000 +7,2023-08-12 18:00:00,0.000000,26.200000,25.000000,20.000000,261.000000,91.900000,91.140000,861.810000,15.380000,144.160000,47.910000 +7,2023-08-12 19:00:00,0.000000,26.200000,25.000000,20.000000,261.000000,92.170000,91.450000,862.440000,16.000000,144.580000,49.150000 +7,2023-08-12 20:00:00,0.000000,26.200000,25.000000,20.000000,261.000000,92.390000,91.770000,863.080000,16.500000,145.000000,50.150000 +7,2023-08-12 21:00:00,0.000000,26.200000,25.000000,20.000000,261.000000,92.570000,91.770000,863.080000,16.900000,145.000000,50.920000 +7,2023-08-12 22:00:00,0.000000,26.200000,25.000000,20.000000,261.000000,92.700000,91.770000,863.080000,17.230000,145.000000,51.530000 +7,2023-08-12 23:00:00,0.000000,18.900000,41.000000,7.000000,231.000000,92.430000,91.770000,863.080000,8.620000,145.000000,32.990000 +7,2023-08-13 00:00:00,0.000000,18.900000,41.000000,7.000000,231.000000,92.200000,91.770000,863.080000,8.340000,145.000000,32.260000 +7,2023-08-13 01:00:00,0.000000,18.900000,41.000000,7.000000,231.000000,91.990000,91.770000,863.080000,8.090000,145.000000,31.620000 +7,2023-08-13 02:00:00,0.000000,18.900000,41.000000,7.000000,231.000000,91.800000,91.770000,863.080000,7.880000,145.000000,31.060000 +7,2023-08-13 03:00:00,0.000000,18.900000,41.000000,7.000000,231.000000,91.630000,91.770000,863.080000,7.690000,145.000000,30.570000 +7,2023-08-13 04:00:00,0.000000,18.900000,41.000000,7.000000,231.000000,91.480000,91.770000,863.080000,7.530000,145.000000,30.140000 +7,2023-08-13 05:00:00,0.000000,14.700000,54.000000,8.000000,221.000000,91.020000,91.870000,863.260000,7.420000,145.130000,29.830000 +7,2023-08-13 06:00:00,0.000000,14.700000,54.000000,8.000000,221.000000,90.610000,91.960000,863.430000,6.990000,145.250000,28.670000 +7,2023-08-13 07:00:00,0.000000,14.700000,54.000000,8.000000,221.000000,90.240000,92.060000,863.610000,6.640000,145.380000,27.680000 +7,2023-08-13 08:00:00,0.000000,14.700000,54.000000,8.000000,221.000000,89.920000,92.160000,863.790000,6.340000,145.500000,26.820000 +7,2023-08-13 09:00:00,0.000000,14.700000,54.000000,8.000000,221.000000,89.630000,92.250000,863.970000,6.080000,145.630000,26.080000 +7,2023-08-13 10:00:00,0.000000,14.700000,54.000000,8.000000,221.000000,89.380000,92.350000,864.150000,5.860000,145.760000,25.430000 +7,2023-08-13 11:00:00,0.000000,27.400000,27.000000,13.000000,234.000000,90.100000,92.680000,864.760000,8.360000,146.190000,32.410000 +7,2023-08-13 12:00:00,0.000000,27.400000,27.000000,13.000000,234.000000,90.670000,93.020000,865.380000,9.080000,146.630000,34.270000 +7,2023-08-13 13:00:00,0.000000,27.400000,27.000000,13.000000,234.000000,91.140000,93.350000,866.000000,9.700000,147.070000,35.830000 +7,2023-08-13 14:00:00,0.000000,27.400000,27.000000,13.000000,234.000000,91.510000,93.680000,866.610000,10.230000,147.500000,37.120000 +7,2023-08-13 15:00:00,0.000000,27.400000,27.000000,13.000000,234.000000,91.800000,94.020000,867.230000,10.670000,147.940000,38.180000 +7,2023-08-13 16:00:00,0.000000,27.400000,27.000000,13.000000,234.000000,92.040000,94.350000,867.840000,11.030000,148.370000,39.050000 +7,2023-08-13 17:00:00,0.000000,31.300000,25.000000,14.000000,271.000000,92.510000,94.780000,868.640000,12.400000,148.930000,42.160000 +7,2023-08-13 18:00:00,0.000000,31.300000,25.000000,14.000000,271.000000,92.870000,95.210000,869.430000,13.050000,149.490000,43.600000 +7,2023-08-13 19:00:00,0.000000,31.300000,25.000000,14.000000,271.000000,93.150000,95.640000,870.220000,13.570000,150.050000,44.750000 +7,2023-08-13 20:00:00,0.000000,31.300000,25.000000,14.000000,271.000000,93.370000,96.070000,871.020000,13.980000,150.610000,45.650000 +7,2023-08-13 21:00:00,0.000000,31.300000,25.000000,14.000000,271.000000,93.530000,96.070000,871.020000,14.300000,150.610000,46.310000 +7,2023-08-13 22:00:00,0.000000,31.300000,25.000000,14.000000,271.000000,93.660000,96.070000,871.020000,14.550000,150.610000,46.820000 +7,2023-08-13 23:00:00,0.000000,22.500000,43.000000,7.000000,291.000000,93.260000,96.070000,871.020000,9.670000,150.610000,35.990000 +7,2023-08-14 00:00:00,0.000000,22.500000,43.000000,7.000000,291.000000,92.910000,96.070000,871.020000,9.210000,150.610000,34.850000 +7,2023-08-14 01:00:00,0.000000,22.500000,43.000000,7.000000,291.000000,92.610000,96.070000,871.020000,8.830000,150.610000,33.890000 +7,2023-08-14 02:00:00,0.000000,22.500000,43.000000,7.000000,291.000000,92.340000,96.070000,871.020000,8.510000,150.610000,33.060000 +7,2023-08-14 03:00:00,0.000000,22.500000,43.000000,7.000000,291.000000,92.110000,96.070000,871.020000,8.240000,150.610000,32.350000 +7,2023-08-14 04:00:00,0.000000,22.500000,43.000000,7.000000,291.000000,91.910000,96.070000,871.020000,8.010000,150.610000,31.740000 +7,2023-08-14 05:00:00,0.000000,16.200000,64.000000,6.000000,229.000000,91.180000,96.150000,871.180000,6.860000,150.720000,28.600000 +7,2023-08-14 06:00:00,0.000000,16.200000,64.000000,6.000000,229.000000,90.530000,96.230000,871.340000,6.260000,150.820000,26.870000 +7,2023-08-14 07:00:00,0.000000,16.200000,64.000000,6.000000,229.000000,89.970000,96.320000,871.500000,5.770000,150.930000,25.420000 +7,2023-08-14 08:00:00,0.000000,16.200000,64.000000,6.000000,229.000000,89.480000,96.400000,871.660000,5.380000,151.040000,24.200000 +7,2023-08-14 09:00:00,0.000000,16.200000,64.000000,6.000000,229.000000,89.050000,96.490000,871.820000,5.060000,151.150000,23.170000 +7,2023-08-14 10:00:00,0.000000,16.200000,64.000000,6.000000,229.000000,88.670000,96.570000,871.980000,4.790000,151.260000,22.300000 +7,2023-08-14 11:00:00,0.000000,28.500000,31.000000,7.000000,116.000000,89.340000,96.910000,872.640000,5.550000,151.700000,24.750000 +7,2023-08-14 12:00:00,0.000000,28.500000,31.000000,7.000000,116.000000,89.890000,97.250000,873.290000,6.000000,152.140000,26.170000 +7,2023-08-14 13:00:00,0.000000,28.500000,31.000000,7.000000,116.000000,90.340000,97.590000,873.950000,6.400000,152.580000,27.380000 +7,2023-08-14 14:00:00,0.000000,28.500000,31.000000,7.000000,116.000000,90.710000,97.920000,874.600000,6.750000,153.020000,28.400000 +7,2023-08-14 15:00:00,0.000000,28.500000,31.000000,7.000000,116.000000,91.010000,98.260000,875.250000,7.040000,153.460000,29.260000 +7,2023-08-14 16:00:00,0.000000,28.500000,31.000000,7.000000,116.000000,91.250000,98.600000,875.910000,7.290000,153.890000,29.990000 +7,2023-08-14 17:00:00,0.000000,31.500000,28.000000,17.000000,87.000000,91.780000,99.020000,876.720000,13.010000,154.440000,43.900000 +7,2023-08-14 18:00:00,0.000000,31.500000,28.000000,17.000000,87.000000,92.190000,99.440000,877.530000,13.780000,154.980000,45.560000 +7,2023-08-14 19:00:00,0.000000,31.500000,28.000000,17.000000,87.000000,92.490000,99.860000,878.340000,14.390000,155.520000,46.870000 +7,2023-08-14 20:00:00,0.000000,31.500000,28.000000,17.000000,87.000000,92.730000,100.280000,879.150000,14.870000,156.060000,47.890000 +7,2023-08-14 21:00:00,0.000000,31.500000,28.000000,17.000000,87.000000,92.900000,100.280000,879.150000,15.240000,156.060000,48.640000 +7,2023-08-14 22:00:00,0.000000,31.500000,28.000000,17.000000,87.000000,93.040000,100.280000,879.150000,15.530000,156.060000,49.220000 +7,2023-08-14 23:00:00,0.600000,25.000000,53.000000,8.000000,173.000000,90.140000,100.280000,879.150000,6.540000,156.060000,27.970000 +7,2023-08-15 00:00:00,0.000000,25.000000,53.000000,8.000000,173.000000,90.000000,100.280000,879.150000,6.410000,156.060000,27.570000 +7,2023-08-15 01:00:00,0.000000,25.000000,53.000000,8.000000,173.000000,89.880000,100.280000,879.150000,6.300000,156.060000,27.250000 +7,2023-08-15 02:00:00,0.000000,25.000000,53.000000,8.000000,173.000000,89.780000,100.280000,879.150000,6.210000,156.060000,26.970000 +7,2023-08-15 03:00:00,0.000000,25.000000,53.000000,8.000000,173.000000,89.690000,100.280000,879.150000,6.130000,156.060000,26.740000 +7,2023-08-15 04:00:00,0.000000,25.000000,53.000000,8.000000,173.000000,89.610000,100.280000,879.150000,6.070000,156.060000,26.550000 +7,2023-08-15 05:00:00,3.900000,18.700000,96.000000,4.000000,182.000000,37.040000,73.920000,837.020000,0.020000,121.100000,0.070000 +7,2023-08-15 06:00:00,0.000000,18.700000,96.000000,4.000000,182.000000,37.520000,73.930000,837.080000,0.030000,121.120000,0.080000 +7,2023-08-15 07:00:00,0.000000,18.700000,96.000000,4.000000,182.000000,37.990000,73.940000,837.130000,0.030000,121.140000,0.090000 +7,2023-08-15 08:00:00,0.000000,18.700000,96.000000,4.000000,182.000000,38.470000,73.960000,837.180000,0.030000,121.160000,0.100000 +7,2023-08-15 09:00:00,0.000000,18.700000,96.000000,4.000000,182.000000,38.930000,73.970000,837.230000,0.030000,121.180000,0.110000 +7,2023-08-15 10:00:00,0.000000,18.700000,96.000000,4.000000,182.000000,39.400000,73.980000,837.280000,0.040000,121.190000,0.120000 +7,2023-08-15 11:00:00,0.000000,24.500000,65.000000,12.000000,308.000000,43.910000,74.150000,837.930000,0.130000,121.430000,0.400000 +7,2023-08-15 12:00:00,0.000000,24.500000,65.000000,12.000000,308.000000,48.150000,74.310000,838.580000,0.240000,121.660000,0.750000 +7,2023-08-15 13:00:00,0.000000,24.500000,65.000000,12.000000,308.000000,52.090000,74.470000,839.230000,0.380000,121.900000,1.720000 +7,2023-08-15 14:00:00,0.000000,24.500000,65.000000,12.000000,308.000000,55.740000,74.630000,839.870000,0.540000,122.130000,2.920000 +7,2023-08-15 15:00:00,0.000000,24.500000,65.000000,12.000000,308.000000,59.080000,74.790000,840.520000,0.700000,122.360000,3.960000 +7,2023-08-15 16:00:00,0.000000,24.500000,65.000000,12.000000,308.000000,62.120000,74.950000,841.170000,0.850000,122.600000,4.820000 +7,2023-08-15 17:00:00,1.150000,24.300000,56.000000,7.000000,359.000000,50.770000,69.500000,829.540000,0.260000,114.930000,0.780000 +7,2023-08-15 18:00:00,0.000000,24.300000,56.000000,7.000000,359.000000,54.570000,69.700000,830.340000,0.380000,115.220000,1.600000 +7,2023-08-15 19:00:00,0.000000,24.300000,56.000000,7.000000,359.000000,58.090000,69.900000,831.140000,0.510000,115.520000,2.570000 +7,2023-08-15 20:00:00,0.000000,24.300000,56.000000,7.000000,359.000000,61.300000,70.100000,831.950000,0.630000,115.810000,3.350000 +7,2023-08-15 21:00:00,0.000000,24.300000,56.000000,7.000000,359.000000,64.230000,70.100000,831.950000,0.730000,115.810000,3.950000 +7,2023-08-15 22:00:00,0.000000,24.300000,56.000000,7.000000,359.000000,66.880000,70.100000,831.950000,0.800000,115.810000,4.410000 +7,2023-08-15 23:00:00,4.280000,17.600000,94.000000,10.000000,312.000000,27.510000,53.730000,785.660000,0.000000,91.760000,0.010000 +7,2023-08-16 00:00:00,0.000000,17.600000,94.000000,10.000000,312.000000,28.510000,53.730000,785.660000,0.000000,91.760000,0.010000 +7,2023-08-16 01:00:00,0.000000,17.600000,94.000000,10.000000,312.000000,29.510000,53.730000,785.660000,0.000000,91.760000,0.010000 +7,2023-08-16 02:00:00,0.000000,17.600000,94.000000,10.000000,312.000000,30.490000,53.730000,785.660000,0.010000,91.760000,0.020000 +7,2023-08-16 03:00:00,0.000000,17.600000,94.000000,10.000000,312.000000,31.460000,53.730000,785.660000,0.010000,91.760000,0.020000 +7,2023-08-16 04:00:00,0.000000,17.600000,94.000000,10.000000,312.000000,32.430000,53.730000,785.660000,0.010000,91.760000,0.030000 +7,2023-08-16 05:00:00,8.170000,12.500000,96.000000,14.000000,332.000000,7.880000,45.590000,728.280000,0.000000,78.840000,0.000000 +7,2023-08-16 06:00:00,0.000000,12.500000,96.000000,14.000000,332.000000,8.590000,45.590000,728.620000,0.000000,78.850000,0.000000 +7,2023-08-16 07:00:00,0.000000,12.500000,96.000000,14.000000,332.000000,9.300000,45.600000,728.960000,0.000000,78.860000,0.000000 +7,2023-08-16 08:00:00,0.000000,12.500000,96.000000,14.000000,332.000000,10.000000,45.600000,729.300000,0.000000,78.880000,0.000000 +7,2023-08-16 09:00:00,0.000000,12.500000,96.000000,14.000000,332.000000,10.710000,45.610000,729.650000,0.000000,78.890000,0.000000 +7,2023-08-16 10:00:00,0.000000,12.500000,96.000000,14.000000,332.000000,11.410000,45.610000,729.990000,0.000000,78.900000,0.000000 +7,2023-08-16 11:00:00,25.100000,11.700000,97.000000,22.000000,306.000000,0.620000,27.340000,552.880000,0.000000,48.660000,0.000000 +7,2023-08-16 12:00:00,0.000000,11.700000,97.000000,22.000000,306.000000,1.230000,27.340000,553.120000,0.000000,48.670000,0.000000 +7,2023-08-16 13:00:00,0.000000,11.700000,97.000000,22.000000,306.000000,1.850000,27.350000,553.370000,0.000000,48.680000,0.000000 +7,2023-08-16 14:00:00,0.000000,11.700000,97.000000,22.000000,306.000000,2.470000,27.350000,553.610000,0.000000,48.690000,0.000000 +7,2023-08-16 15:00:00,0.000000,11.700000,97.000000,22.000000,306.000000,3.090000,27.350000,553.850000,0.000000,48.700000,0.000000 +7,2023-08-16 16:00:00,0.000000,11.700000,97.000000,22.000000,306.000000,3.710000,27.360000,554.100000,0.000000,48.700000,0.000000 +7,2023-08-16 17:00:00,10.630000,11.300000,95.000000,29.000000,309.000000,1.080000,21.450000,479.380000,0.000000,38.580000,0.000000 +7,2023-08-16 18:00:00,0.000000,11.300000,95.000000,29.000000,309.000000,2.150000,21.450000,479.780000,0.000000,38.590000,0.000000 +7,2023-08-16 19:00:00,0.000000,11.300000,95.000000,29.000000,309.000000,3.240000,21.460000,480.180000,0.000000,38.610000,0.000000 +7,2023-08-16 20:00:00,0.000000,11.300000,95.000000,29.000000,309.000000,4.320000,21.470000,480.570000,0.000000,38.620000,0.000000 +7,2023-08-16 21:00:00,0.000000,11.300000,95.000000,29.000000,309.000000,5.400000,21.470000,480.570000,0.000000,38.620000,0.000000 +7,2023-08-16 22:00:00,0.000000,11.300000,95.000000,29.000000,309.000000,6.490000,21.470000,480.570000,0.000000,38.620000,0.000000 +7,2023-08-16 23:00:00,5.550000,12.100000,95.000000,19.000000,305.000000,2.840000,18.660000,441.360000,0.000000,33.750000,0.000000 +7,2023-08-17 00:00:00,0.000000,12.100000,95.000000,19.000000,305.000000,3.790000,18.660000,441.360000,0.000000,33.750000,0.000000 +7,2023-08-17 01:00:00,0.000000,12.100000,95.000000,19.000000,305.000000,4.740000,18.660000,441.360000,0.000000,33.750000,0.000000 +7,2023-08-17 02:00:00,0.000000,12.100000,95.000000,19.000000,305.000000,5.690000,18.660000,441.360000,0.000000,33.750000,0.000000 +7,2023-08-17 03:00:00,0.000000,12.100000,95.000000,19.000000,305.000000,6.640000,18.660000,441.360000,0.000000,33.750000,0.000000 +7,2023-08-17 04:00:00,0.000000,12.100000,95.000000,19.000000,305.000000,7.600000,18.660000,441.360000,0.000000,33.750000,0.000000 +7,2023-08-17 05:00:00,1.550000,10.900000,94.000000,20.000000,288.000000,6.380000,16.980000,435.240000,0.000000,30.940000,0.000000 +7,2023-08-17 06:00:00,0.000000,10.900000,94.000000,20.000000,288.000000,7.470000,16.990000,435.430000,0.000000,30.950000,0.000000 +7,2023-08-17 07:00:00,0.000000,10.900000,94.000000,20.000000,288.000000,8.570000,16.990000,435.610000,0.000000,30.960000,0.000000 +7,2023-08-17 08:00:00,0.000000,10.900000,94.000000,20.000000,288.000000,9.660000,17.000000,435.790000,0.000000,30.980000,0.000000 +7,2023-08-17 09:00:00,0.000000,10.900000,94.000000,20.000000,288.000000,10.750000,17.000000,435.970000,0.000000,30.990000,0.000000 +7,2023-08-17 10:00:00,0.000000,10.900000,94.000000,20.000000,288.000000,11.830000,17.010000,436.160000,0.000000,31.000000,0.000000 +7,2023-08-17 11:00:00,5.770000,10.900000,93.000000,23.000000,283.000000,5.200000,11.320000,413.620000,0.000000,21.190000,0.000000 +7,2023-08-17 12:00:00,0.000000,10.900000,93.000000,23.000000,283.000000,6.510000,11.330000,413.830000,0.000000,21.200000,0.000000 +7,2023-08-17 13:00:00,0.000000,10.900000,93.000000,23.000000,283.000000,7.820000,11.330000,414.050000,0.000000,21.220000,0.000000 +7,2023-08-17 14:00:00,0.000000,10.900000,93.000000,23.000000,283.000000,9.130000,11.340000,414.260000,0.000000,21.230000,0.000000 +7,2023-08-17 15:00:00,0.000000,10.900000,93.000000,23.000000,283.000000,10.440000,11.350000,414.470000,0.000000,21.250000,0.000000 +7,2023-08-17 16:00:00,0.000000,10.900000,93.000000,23.000000,283.000000,11.750000,11.360000,414.690000,0.000000,21.260000,0.000000 +7,2023-08-17 17:00:00,2.180000,12.900000,80.000000,18.000000,296.000000,10.270000,9.400000,406.790000,0.000000,17.780000,0.000000 +7,2023-08-17 18:00:00,0.000000,12.900000,80.000000,18.000000,296.000000,13.100000,9.430000,407.480000,0.000000,17.820000,0.000000 +7,2023-08-17 19:00:00,0.000000,12.900000,80.000000,18.000000,296.000000,15.920000,9.450000,408.170000,0.000000,17.870000,0.000000 +7,2023-08-17 20:00:00,0.000000,12.900000,80.000000,18.000000,296.000000,18.730000,9.470000,408.870000,0.000000,17.910000,0.000000 +7,2023-08-17 21:00:00,0.000000,12.900000,80.000000,18.000000,296.000000,21.510000,9.470000,408.870000,0.000000,17.910000,0.000000 +7,2023-08-17 22:00:00,0.000000,12.900000,80.000000,18.000000,296.000000,24.250000,9.470000,408.870000,0.000000,17.910000,0.000000 +7,2023-08-17 23:00:00,0.020000,11.200000,77.000000,13.000000,297.000000,26.660000,9.450000,408.790000,0.000000,17.860000,0.000000 +7,2023-08-18 00:00:00,0.000000,11.200000,77.000000,13.000000,297.000000,29.120000,9.450000,408.790000,0.010000,17.860000,0.000000 +7,2023-08-18 01:00:00,0.000000,11.200000,77.000000,13.000000,297.000000,31.540000,9.450000,408.790000,0.010000,17.860000,0.010000 +7,2023-08-18 02:00:00,0.000000,11.200000,77.000000,13.000000,297.000000,33.900000,9.450000,408.790000,0.020000,17.860000,0.020000 +7,2023-08-18 03:00:00,0.000000,11.200000,77.000000,13.000000,297.000000,36.210000,9.450000,408.790000,0.030000,17.860000,0.030000 +7,2023-08-18 04:00:00,0.000000,11.200000,77.000000,13.000000,297.000000,38.450000,9.450000,408.790000,0.050000,17.860000,0.040000 +7,2023-08-18 05:00:00,0.000000,8.600000,90.000000,10.000000,292.000000,39.420000,9.450000,408.790000,0.050000,17.860000,0.040000 +7,2023-08-18 06:00:00,0.000000,8.600000,90.000000,10.000000,292.000000,40.380000,9.470000,408.890000,0.060000,17.910000,0.050000 +7,2023-08-18 07:00:00,0.000000,8.600000,90.000000,10.000000,292.000000,41.310000,9.500000,409.000000,0.070000,17.950000,0.060000 +7,2023-08-18 08:00:00,0.000000,8.600000,90.000000,10.000000,292.000000,42.230000,9.520000,409.100000,0.090000,18.000000,0.070000 +7,2023-08-18 09:00:00,0.000000,8.600000,90.000000,10.000000,292.000000,43.140000,9.550000,409.210000,0.100000,18.050000,0.090000 +7,2023-08-18 10:00:00,0.000000,8.600000,90.000000,10.000000,292.000000,44.030000,9.580000,409.310000,0.120000,18.100000,0.100000 +7,2023-08-18 11:00:00,0.000000,14.900000,57.000000,9.000000,300.000000,47.120000,9.750000,409.990000,0.180000,18.400000,0.150000 +7,2023-08-18 12:00:00,0.000000,14.900000,57.000000,9.000000,300.000000,50.060000,9.920000,410.670000,0.260000,18.700000,0.230000 +7,2023-08-18 13:00:00,0.000000,14.900000,57.000000,9.000000,300.000000,52.840000,10.090000,411.350000,0.360000,19.010000,0.310000 +7,2023-08-18 14:00:00,0.000000,14.900000,57.000000,9.000000,300.000000,55.460000,10.260000,412.030000,0.460000,19.310000,0.410000 +7,2023-08-18 15:00:00,0.000000,14.900000,57.000000,9.000000,300.000000,57.930000,10.430000,412.710000,0.560000,19.620000,0.500000 +7,2023-08-18 16:00:00,0.000000,14.900000,57.000000,9.000000,300.000000,60.230000,10.600000,413.390000,0.650000,19.920000,0.590000 +7,2023-08-18 17:00:00,0.000000,18.000000,44.000000,7.000000,330.000000,63.030000,10.870000,414.470000,0.690000,20.400000,0.630000 +8,2023-08-03 00:00:00,0.000000,14.400000,98.000000,0.000000,21.000000,84.890000,118.400000,826.100000,2.070000,174.330000,12.350000 +8,2023-08-03 01:00:00,0.000000,14.400000,98.000000,0.000000,21.000000,83.890000,118.400000,826.100000,1.810000,174.330000,11.080000 +8,2023-08-03 02:00:00,0.000000,12.400000,98.000000,1.000000,272.000000,82.900000,118.400000,826.100000,1.680000,174.330000,10.380000 +8,2023-08-03 03:00:00,0.000000,12.400000,98.000000,1.000000,272.000000,82.020000,118.400000,826.100000,1.500000,174.330000,9.470000 +8,2023-08-03 04:00:00,0.000000,12.400000,98.000000,1.000000,272.000000,81.230000,118.400000,826.100000,1.370000,174.330000,8.750000 +8,2023-08-03 05:00:00,0.000000,11.000000,98.000000,4.000000,299.000000,80.450000,118.400000,826.110000,1.460000,174.340000,9.240000 +8,2023-08-03 06:00:00,0.000000,11.000000,98.000000,4.000000,299.000000,79.760000,118.410000,826.120000,1.360000,174.340000,8.680000 +8,2023-08-03 07:00:00,0.000000,11.000000,98.000000,4.000000,299.000000,79.150000,118.410000,826.130000,1.280000,174.350000,8.240000 +8,2023-08-03 08:00:00,0.000000,15.600000,86.000000,3.000000,344.000000,79.150000,118.450000,826.240000,1.210000,174.390000,7.880000 +8,2023-08-03 09:00:00,0.000000,15.600000,86.000000,3.000000,344.000000,79.160000,118.480000,826.340000,1.210000,174.440000,7.890000 +8,2023-08-03 10:00:00,0.000000,15.600000,86.000000,3.000000,344.000000,79.160000,118.520000,826.440000,1.220000,174.480000,7.890000 +8,2023-08-03 11:00:00,0.000000,22.100000,49.000000,8.000000,50.000000,80.290000,118.720000,827.010000,1.750000,174.730000,10.790000 +8,2023-08-03 12:00:00,0.000000,22.100000,49.000000,8.000000,50.000000,81.290000,118.920000,827.570000,1.960000,174.970000,11.810000 +8,2023-08-03 13:00:00,0.000000,22.100000,49.000000,8.000000,50.000000,82.150000,119.110000,828.140000,2.170000,175.220000,12.830000 +8,2023-08-03 14:00:00,0.000000,23.700000,41.000000,8.000000,24.000000,83.250000,119.360000,828.860000,2.490000,175.530000,14.290000 +8,2023-08-03 15:00:00,0.000000,23.700000,41.000000,8.000000,24.000000,84.180000,119.620000,829.580000,2.820000,175.840000,15.710000 +8,2023-08-03 16:00:00,0.000000,23.700000,41.000000,8.000000,24.000000,84.990000,119.870000,830.300000,3.140000,176.160000,17.060000 +8,2023-08-03 17:00:00,0.900000,23.500000,39.000000,9.000000,43.000000,73.770000,114.210000,831.030000,1.130000,170.000000,7.350000 +8,2023-08-03 18:00:00,0.000000,23.500000,39.000000,9.000000,43.000000,76.080000,114.460000,831.770000,1.290000,170.330000,8.230000 +8,2023-08-03 19:00:00,0.000000,23.500000,39.000000,9.000000,43.000000,78.090000,114.720000,832.500000,1.490000,170.650000,9.380000 +8,2023-08-03 20:00:00,0.740000,19.900000,70.000000,4.000000,44.000000,68.920000,110.390000,832.790000,0.740000,165.830000,4.840000 +8,2023-08-03 21:00:00,0.000000,19.900000,70.000000,4.000000,44.000000,70.070000,110.500000,833.080000,0.770000,165.960000,5.030000 +8,2023-08-03 22:00:00,0.000000,19.900000,70.000000,4.000000,44.000000,71.140000,110.500000,833.080000,0.790000,165.960000,5.210000 +8,2023-08-03 23:00:00,0.000000,14.900000,80.000000,4.000000,302.000000,71.650000,110.500000,833.080000,0.810000,165.960000,5.300000 +8,2023-08-04 00:00:00,0.000000,14.900000,80.000000,4.000000,302.000000,72.130000,110.500000,833.080000,0.820000,165.960000,5.400000 +8,2023-08-04 01:00:00,0.000000,14.900000,80.000000,4.000000,302.000000,72.590000,110.500000,833.080000,0.840000,165.960000,5.490000 +8,2023-08-04 02:00:00,0.000000,12.800000,89.000000,7.000000,284.000000,72.790000,110.500000,833.080000,0.980000,165.960000,6.400000 +8,2023-08-04 03:00:00,0.000000,12.800000,89.000000,7.000000,284.000000,72.970000,110.500000,833.080000,0.990000,165.960000,6.440000 +8,2023-08-04 04:00:00,0.000000,12.800000,89.000000,7.000000,284.000000,73.150000,110.500000,833.080000,1.000000,165.960000,6.490000 +8,2023-08-04 05:00:00,0.000000,12.300000,96.000000,7.000000,277.000000,73.160000,110.510000,833.110000,1.000000,165.970000,6.490000 +8,2023-08-04 06:00:00,0.000000,12.300000,96.000000,7.000000,277.000000,73.180000,110.510000,833.140000,1.000000,165.990000,6.500000 +8,2023-08-04 07:00:00,0.000000,12.300000,96.000000,7.000000,277.000000,73.190000,110.520000,833.170000,1.000000,166.000000,6.500000 +8,2023-08-04 08:00:00,0.000000,18.200000,79.000000,7.000000,288.000000,73.780000,110.600000,833.400000,1.020000,166.090000,6.660000 +8,2023-08-04 09:00:00,0.000000,18.200000,79.000000,7.000000,288.000000,74.330000,110.670000,833.620000,1.050000,166.180000,6.830000 +8,2023-08-04 10:00:00,0.000000,18.200000,79.000000,7.000000,288.000000,74.850000,110.740000,833.850000,1.080000,166.270000,7.000000 +8,2023-08-04 11:00:00,0.000000,23.100000,55.000000,6.000000,304.000000,76.280000,110.940000,834.510000,1.120000,166.540000,7.230000 +8,2023-08-04 12:00:00,0.000000,23.100000,55.000000,6.000000,304.000000,77.550000,111.150000,835.170000,1.230000,166.800000,7.860000 +8,2023-08-04 13:00:00,0.000000,23.100000,55.000000,6.000000,304.000000,78.690000,111.360000,835.820000,1.350000,167.070000,8.560000 +8,2023-08-04 14:00:00,0.000000,24.700000,41.000000,5.000000,306.000000,80.210000,111.650000,836.770000,1.490000,167.450000,9.340000 +8,2023-08-04 15:00:00,0.000000,24.700000,41.000000,5.000000,306.000000,81.540000,111.950000,837.720000,1.730000,167.830000,10.580000 +8,2023-08-04 16:00:00,0.000000,24.700000,41.000000,5.000000,306.000000,82.690000,112.250000,838.670000,2.000000,168.210000,11.870000 +8,2023-08-04 17:00:00,1.780000,22.500000,73.000000,5.000000,279.000000,58.180000,93.850000,839.050000,0.460000,146.690000,2.690000 +8,2023-08-04 18:00:00,0.000000,22.500000,73.000000,5.000000,279.000000,60.140000,93.970000,839.430000,0.530000,146.850000,3.180000 +8,2023-08-04 19:00:00,0.000000,22.500000,73.000000,5.000000,279.000000,61.970000,94.090000,839.810000,0.590000,147.010000,3.600000 +8,2023-08-04 20:00:00,0.530000,20.000000,82.000000,3.000000,236.000000,56.820000,89.780000,840.030000,0.380000,141.700000,1.940000 +8,2023-08-04 21:00:00,0.000000,20.000000,82.000000,3.000000,236.000000,58.000000,89.850000,840.240000,0.410000,141.790000,2.240000 +8,2023-08-04 22:00:00,0.000000,20.000000,82.000000,3.000000,236.000000,59.140000,89.850000,840.240000,0.450000,141.790000,2.510000 +8,2023-08-04 23:00:00,0.000000,16.200000,88.000000,7.000000,279.000000,59.930000,89.850000,840.240000,0.580000,141.790000,3.460000 +8,2023-08-05 00:00:00,0.000000,16.200000,88.000000,7.000000,279.000000,60.700000,89.850000,840.240000,0.610000,141.790000,3.660000 +8,2023-08-05 01:00:00,0.000000,16.200000,88.000000,7.000000,279.000000,61.440000,89.850000,840.240000,0.630000,141.790000,3.840000 +8,2023-08-05 02:00:00,0.000000,15.500000,88.000000,10.000000,296.000000,62.200000,89.850000,840.240000,0.770000,141.790000,4.720000 +8,2023-08-05 03:00:00,0.000000,15.500000,88.000000,10.000000,296.000000,62.940000,89.850000,840.240000,0.800000,141.790000,4.900000 +8,2023-08-05 04:00:00,0.000000,15.500000,88.000000,10.000000,296.000000,63.650000,89.850000,840.240000,0.820000,141.790000,5.070000 +8,2023-08-05 05:00:00,0.000000,14.700000,92.000000,9.000000,289.000000,64.070000,89.860000,840.290000,0.800000,141.810000,4.910000 +8,2023-08-05 06:00:00,0.000000,14.700000,92.000000,9.000000,289.000000,64.470000,89.880000,840.340000,0.810000,141.830000,5.000000 +8,2023-08-05 07:00:00,0.000000,14.700000,92.000000,9.000000,289.000000,64.860000,89.890000,840.390000,0.820000,141.850000,5.080000 +8,2023-08-05 08:00:00,0.000000,17.500000,75.000000,10.000000,307.000000,66.220000,89.940000,840.580000,0.910000,141.920000,5.630000 +8,2023-08-05 09:00:00,0.000000,17.500000,75.000000,10.000000,307.000000,67.490000,90.000000,840.770000,0.950000,141.990000,5.870000 +8,2023-08-05 10:00:00,0.000000,17.500000,75.000000,10.000000,307.000000,68.670000,90.050000,840.960000,0.990000,142.070000,6.100000 +8,2023-08-05 11:00:00,0.000000,21.100000,59.000000,7.000000,324.000000,70.480000,90.150000,841.340000,0.900000,142.210000,5.570000 +8,2023-08-05 12:00:00,0.000000,21.100000,59.000000,7.000000,324.000000,72.120000,90.260000,841.730000,0.960000,142.360000,5.890000 +8,2023-08-05 13:00:00,0.000000,21.100000,59.000000,7.000000,324.000000,73.600000,90.370000,842.120000,1.020000,142.500000,6.240000 +8,2023-08-05 14:00:00,0.000000,23.800000,44.000000,7.000000,351.000000,75.680000,90.540000,842.740000,1.130000,142.740000,6.920000 +8,2023-08-05 15:00:00,0.000000,23.800000,44.000000,7.000000,351.000000,77.500000,90.710000,843.360000,1.290000,142.980000,7.760000 +8,2023-08-05 16:00:00,0.000000,23.800000,44.000000,7.000000,351.000000,79.080000,90.880000,843.980000,1.480000,143.210000,8.770000 +8,2023-08-05 17:00:00,0.000000,24.300000,41.000000,7.000000,12.000000,80.610000,91.070000,844.650000,1.730000,143.470000,10.020000 +8,2023-08-05 18:00:00,0.000000,24.300000,41.000000,7.000000,12.000000,81.930000,91.250000,845.330000,2.010000,143.720000,11.360000 +8,2023-08-05 19:00:00,0.000000,24.300000,41.000000,7.000000,12.000000,83.060000,91.440000,846.000000,2.310000,143.980000,12.730000 +8,2023-08-05 20:00:00,0.000000,22.200000,48.000000,7.000000,55.000000,83.720000,91.590000,846.520000,2.520000,144.170000,13.620000 +8,2023-08-05 21:00:00,0.000000,22.200000,48.000000,7.000000,55.000000,84.290000,91.730000,847.050000,2.720000,144.370000,14.460000 +8,2023-08-05 22:00:00,0.000000,22.200000,48.000000,7.000000,55.000000,84.790000,91.730000,847.050000,2.910000,144.370000,15.240000 +8,2023-08-05 23:00:00,0.000000,16.800000,65.000000,5.000000,90.000000,84.790000,91.730000,847.050000,2.630000,144.370000,14.100000 +8,2023-08-06 00:00:00,0.000000,16.800000,65.000000,5.000000,90.000000,84.790000,91.730000,847.050000,2.630000,144.370000,14.100000 +8,2023-08-06 01:00:00,0.000000,16.800000,65.000000,5.000000,90.000000,84.790000,91.730000,847.050000,2.630000,144.370000,14.100000 +8,2023-08-06 02:00:00,0.000000,14.400000,71.000000,3.000000,127.000000,84.740000,91.730000,847.050000,2.360000,144.370000,12.960000 +8,2023-08-06 03:00:00,0.000000,14.400000,71.000000,3.000000,127.000000,84.700000,91.730000,847.050000,2.350000,144.370000,12.900000 +8,2023-08-06 04:00:00,0.000000,14.400000,71.000000,3.000000,127.000000,84.660000,91.730000,847.050000,2.340000,144.370000,12.850000 +8,2023-08-06 05:00:00,0.000000,14.300000,69.000000,2.000000,83.000000,84.660000,91.790000,847.190000,2.220000,144.450000,12.350000 +8,2023-08-06 06:00:00,0.000000,14.300000,69.000000,2.000000,83.000000,84.660000,91.850000,847.340000,2.220000,144.540000,12.350000 +8,2023-08-06 07:00:00,0.000000,14.300000,69.000000,2.000000,83.000000,84.660000,91.920000,847.490000,2.220000,144.620000,12.350000 +8,2023-08-06 08:00:00,0.000000,17.400000,54.000000,3.000000,81.000000,84.810000,92.030000,847.760000,2.390000,144.770000,13.070000 +8,2023-08-06 09:00:00,0.000000,17.400000,54.000000,3.000000,81.000000,84.940000,92.140000,848.030000,2.430000,144.920000,13.260000 +8,2023-08-06 10:00:00,0.000000,17.400000,54.000000,3.000000,81.000000,85.070000,92.250000,848.290000,2.470000,145.060000,13.440000 +8,2023-08-06 11:00:00,0.000000,21.100000,38.000000,6.000000,90.000000,85.680000,92.440000,848.750000,3.130000,145.320000,16.140000 +8,2023-08-06 12:00:00,0.000000,21.100000,38.000000,6.000000,90.000000,86.220000,92.630000,849.200000,3.380000,145.570000,17.090000 +8,2023-08-06 13:00:00,0.000000,21.100000,38.000000,6.000000,90.000000,86.690000,92.820000,849.660000,3.610000,145.820000,17.960000 +8,2023-08-06 14:00:00,0.000000,23.200000,35.000000,7.000000,78.000000,87.280000,93.050000,850.200000,4.130000,146.120000,19.830000 +8,2023-08-06 15:00:00,0.000000,23.200000,35.000000,7.000000,78.000000,87.780000,93.270000,850.740000,4.440000,146.420000,20.900000 +8,2023-08-06 16:00:00,0.000000,23.200000,35.000000,7.000000,78.000000,88.210000,93.500000,851.280000,4.720000,146.710000,21.860000 +8,2023-08-06 17:00:00,0.000000,24.000000,36.000000,9.000000,63.000000,88.590000,93.730000,851.840000,5.510000,147.020000,24.410000 +8,2023-08-06 18:00:00,0.000000,24.000000,36.000000,9.000000,63.000000,88.910000,93.970000,852.400000,5.770000,147.330000,25.220000 +8,2023-08-06 19:00:00,0.000000,24.000000,36.000000,9.000000,63.000000,89.180000,94.200000,852.960000,5.990000,147.640000,25.920000 +8,2023-08-06 20:00:00,0.000000,22.000000,43.000000,8.000000,65.000000,89.180000,94.390000,853.410000,5.700000,147.880000,25.040000 +8,2023-08-06 21:00:00,0.000000,22.000000,43.000000,8.000000,65.000000,89.180000,94.570000,853.850000,5.700000,148.130000,25.050000 +8,2023-08-06 22:00:00,0.000000,22.000000,43.000000,8.000000,65.000000,89.180000,94.570000,853.850000,5.700000,148.130000,25.050000 +8,2023-08-06 23:00:00,0.000000,16.500000,62.000000,6.000000,61.000000,88.830000,94.570000,853.850000,4.900000,148.130000,22.540000 +8,2023-08-07 00:00:00,0.000000,16.500000,62.000000,6.000000,61.000000,88.530000,94.570000,853.850000,4.690000,148.130000,21.850000 +8,2023-08-07 01:00:00,0.000000,16.500000,62.000000,6.000000,61.000000,88.260000,94.570000,853.850000,4.520000,148.130000,21.250000 +8,2023-08-07 02:00:00,0.000000,13.900000,74.000000,2.000000,124.000000,87.790000,94.570000,853.850000,3.450000,148.130000,17.460000 +8,2023-08-07 03:00:00,0.000000,13.900000,74.000000,2.000000,124.000000,87.360000,94.570000,853.850000,3.240000,148.130000,16.680000 +8,2023-08-07 04:00:00,0.000000,13.900000,74.000000,2.000000,124.000000,86.980000,94.570000,853.850000,3.070000,148.130000,16.010000 +8,2023-08-07 05:00:00,0.000000,12.900000,82.000000,4.000000,159.000000,86.380000,94.610000,853.930000,3.120000,148.170000,16.210000 +8,2023-08-07 06:00:00,0.000000,12.900000,82.000000,4.000000,159.000000,85.850000,94.640000,854.020000,2.900000,148.220000,15.320000 +8,2023-08-07 07:00:00,0.000000,12.900000,82.000000,4.000000,159.000000,85.380000,94.680000,854.110000,2.710000,148.270000,14.570000 +8,2023-08-07 08:00:00,0.000000,19.200000,58.000000,6.000000,152.000000,85.430000,94.800000,854.410000,3.020000,148.430000,15.820000 +8,2023-08-07 09:00:00,0.000000,19.200000,58.000000,6.000000,152.000000,85.480000,94.920000,854.710000,3.040000,148.590000,15.910000 +8,2023-08-07 10:00:00,0.000000,19.200000,58.000000,6.000000,152.000000,85.520000,95.040000,855.010000,3.060000,148.750000,15.980000 +8,2023-08-07 11:00:00,0.000000,24.500000,43.000000,8.000000,154.000000,86.100000,95.270000,855.580000,3.670000,149.050000,18.320000 +8,2023-08-07 12:00:00,0.000000,24.500000,43.000000,8.000000,154.000000,86.590000,95.500000,856.140000,3.940000,149.350000,19.290000 +8,2023-08-07 13:00:00,0.000000,24.500000,43.000000,8.000000,154.000000,87.010000,95.730000,856.710000,4.180000,149.660000,20.160000 +8,2023-08-07 14:00:00,0.000000,28.000000,35.000000,9.000000,164.000000,87.820000,96.060000,857.500000,4.930000,150.080000,22.730000 +8,2023-08-07 15:00:00,0.000000,28.000000,35.000000,9.000000,164.000000,88.490000,96.380000,858.290000,5.430000,150.500000,24.330000 +8,2023-08-07 16:00:00,0.000000,28.000000,35.000000,9.000000,164.000000,89.030000,96.700000,859.090000,5.870000,150.930000,25.710000 +8,2023-08-07 17:00:00,0.660000,27.200000,39.000000,5.000000,168.000000,78.600000,90.970000,859.790000,1.280000,143.880000,7.730000 +8,2023-08-07 18:00:00,0.000000,27.200000,39.000000,5.000000,168.000000,80.410000,91.260000,860.500000,1.530000,144.270000,9.050000 +8,2023-08-07 19:00:00,0.000000,27.200000,39.000000,5.000000,168.000000,81.970000,91.550000,861.210000,1.820000,144.650000,10.530000 +8,2023-08-07 20:00:00,1.770000,20.800000,97.000000,3.000000,78.000000,55.700000,78.510000,861.240000,0.350000,127.880000,1.480000 +8,2023-08-07 21:00:00,0.000000,20.800000,97.000000,3.000000,78.000000,55.920000,78.520000,861.260000,0.350000,127.890000,1.540000 +8,2023-08-07 22:00:00,0.000000,20.800000,97.000000,3.000000,78.000000,56.130000,78.520000,861.260000,0.360000,127.890000,1.600000 +8,2023-08-07 23:00:00,0.000000,17.200000,100.000000,1.000000,291.000000,56.130000,78.520000,861.260000,0.320000,127.890000,1.260000 +8,2023-08-08 00:00:00,0.000000,17.200000,100.000000,1.000000,291.000000,56.130000,78.520000,861.260000,0.320000,127.890000,1.260000 +8,2023-08-08 01:00:00,0.000000,17.200000,100.000000,1.000000,291.000000,56.130000,78.520000,861.260000,0.320000,127.890000,1.260000 +8,2023-08-08 02:00:00,0.000000,15.900000,100.000000,4.000000,283.000000,56.130000,78.520000,861.260000,0.380000,127.890000,1.760000 +8,2023-08-08 03:00:00,0.000000,15.900000,100.000000,4.000000,283.000000,56.130000,78.520000,861.260000,0.380000,127.890000,1.760000 +8,2023-08-08 04:00:00,0.000000,15.900000,100.000000,4.000000,283.000000,56.130000,78.520000,861.260000,0.380000,127.890000,1.760000 +8,2023-08-08 05:00:00,0.000000,15.200000,100.000000,6.000000,272.000000,56.130000,78.520000,861.260000,0.420000,127.890000,2.080000 +8,2023-08-08 06:00:00,0.000000,15.200000,100.000000,6.000000,272.000000,56.130000,78.520000,861.260000,0.420000,127.890000,2.080000 +8,2023-08-08 07:00:00,0.000000,15.200000,100.000000,6.000000,272.000000,56.130000,78.520000,861.260000,0.420000,127.890000,2.080000 +8,2023-08-08 08:00:00,0.000000,17.800000,91.000000,8.000000,284.000000,56.890000,78.540000,861.380000,0.490000,127.920000,2.630000 +8,2023-08-08 09:00:00,0.000000,17.800000,91.000000,8.000000,284.000000,57.630000,78.570000,861.490000,0.520000,127.960000,2.840000 +8,2023-08-08 10:00:00,0.000000,17.800000,91.000000,8.000000,284.000000,58.340000,78.590000,861.600000,0.550000,127.990000,3.040000 +8,2023-08-08 11:00:00,0.000000,21.800000,70.000000,10.000000,330.000000,60.740000,78.690000,862.090000,0.710000,128.140000,4.100000 +8,2023-08-08 12:00:00,0.000000,21.800000,70.000000,10.000000,330.000000,62.970000,78.790000,862.580000,0.800000,128.280000,4.660000 +8,2023-08-08 13:00:00,0.000000,21.800000,70.000000,10.000000,330.000000,65.010000,78.890000,863.070000,0.870000,128.430000,5.110000 +8,2023-08-08 14:00:00,0.000000,24.200000,60.000000,9.000000,19.000000,67.520000,79.040000,863.820000,0.910000,128.660000,5.330000 +8,2023-08-08 15:00:00,0.000000,24.200000,60.000000,9.000000,19.000000,69.780000,79.200000,864.580000,0.980000,128.880000,5.730000 +8,2023-08-08 16:00:00,0.000000,24.200000,60.000000,9.000000,19.000000,71.790000,79.350000,865.330000,1.050000,129.110000,6.120000 +8,2023-08-08 17:00:00,0.000000,24.500000,57.000000,4.000000,30.000000,73.460000,79.520000,866.150000,0.870000,129.350000,5.100000 +8,2023-08-08 18:00:00,0.000000,24.500000,57.000000,4.000000,30.000000,74.960000,79.690000,866.980000,0.930000,129.600000,5.500000 +8,2023-08-08 19:00:00,0.000000,24.500000,57.000000,4.000000,30.000000,76.310000,79.860000,867.800000,1.010000,129.840000,5.960000 +8,2023-08-08 20:00:00,2.020000,20.500000,87.000000,3.000000,17.000000,51.540000,70.410000,867.990000,0.230000,117.070000,0.710000 +8,2023-08-08 21:00:00,0.000000,20.500000,87.000000,3.000000,17.000000,52.600000,70.450000,868.190000,0.260000,117.130000,0.790000 +8,2023-08-08 22:00:00,0.000000,20.500000,87.000000,3.000000,17.000000,53.630000,70.450000,868.190000,0.280000,117.130000,0.880000 +8,2023-08-08 23:00:00,0.000000,17.100000,97.000000,1.000000,14.000000,53.790000,70.450000,868.190000,0.260000,117.130000,0.810000 +8,2023-08-09 00:00:00,0.000000,17.100000,97.000000,1.000000,14.000000,53.940000,70.450000,868.190000,0.270000,117.130000,0.820000 +8,2023-08-09 01:00:00,0.000000,17.100000,97.000000,1.000000,14.000000,54.090000,70.450000,868.190000,0.270000,117.130000,0.830000 +8,2023-08-09 02:00:00,0.030000,16.000000,98.000000,1.000000,311.000000,53.830000,70.170000,867.940000,0.260000,116.740000,0.810000 +8,2023-08-09 03:00:00,0.000000,16.000000,98.000000,1.000000,311.000000,53.930000,70.170000,867.940000,0.260000,116.740000,0.820000 +8,2023-08-09 04:00:00,0.000000,16.000000,98.000000,1.000000,311.000000,54.020000,70.170000,867.940000,0.270000,116.740000,0.820000 +8,2023-08-09 05:00:00,0.080000,15.900000,98.000000,3.000000,147.000000,53.200000,69.570000,867.290000,0.270000,115.890000,0.840000 +8,2023-08-09 06:00:00,0.000000,15.900000,98.000000,3.000000,147.000000,53.330000,69.570000,867.320000,0.280000,115.900000,0.850000 +8,2023-08-09 07:00:00,0.000000,15.900000,98.000000,3.000000,147.000000,53.460000,69.570000,867.340000,0.280000,115.900000,0.860000 +8,2023-08-09 08:00:00,0.880000,17.300000,96.000000,7.000000,160.000000,44.410000,64.100000,859.970000,0.110000,108.060000,0.310000 +8,2023-08-09 09:00:00,0.000000,17.300000,96.000000,7.000000,160.000000,44.870000,64.100000,860.030000,0.110000,108.070000,0.340000 +8,2023-08-09 10:00:00,0.000000,17.300000,96.000000,7.000000,160.000000,45.330000,64.100000,860.090000,0.120000,108.070000,0.360000 +8,2023-08-09 11:00:00,1.140000,18.400000,95.000000,12.000000,161.000000,36.200000,57.920000,850.540000,0.030000,98.990000,0.080000 +8,2023-08-09 12:00:00,0.000000,18.400000,95.000000,12.000000,161.000000,37.040000,57.930000,850.620000,0.030000,99.000000,0.100000 +8,2023-08-09 13:00:00,0.000000,18.400000,95.000000,12.000000,161.000000,37.870000,57.930000,850.700000,0.040000,99.000000,0.110000 +8,2023-08-09 14:00:00,0.000000,24.600000,56.000000,11.000000,178.000000,43.000000,57.960000,851.740000,0.100000,99.070000,0.290000 +8,2023-08-09 15:00:00,0.000000,24.600000,56.000000,11.000000,178.000000,47.820000,57.990000,852.780000,0.220000,99.130000,0.600000 +8,2023-08-09 16:00:00,0.000000,24.600000,56.000000,11.000000,178.000000,52.280000,58.030000,853.810000,0.370000,99.200000,1.160000 +8,2023-08-09 17:00:00,0.680000,23.800000,61.000000,7.000000,236.000000,48.800000,54.710000,848.950000,0.200000,94.240000,0.540000 +8,2023-08-09 18:00:00,0.000000,23.800000,61.000000,7.000000,236.000000,52.390000,54.740000,849.820000,0.310000,94.300000,0.820000 +8,2023-08-09 19:00:00,0.000000,23.800000,61.000000,7.000000,236.000000,55.730000,54.770000,850.700000,0.420000,94.350000,1.510000 +8,2023-08-09 20:00:00,1.170000,19.800000,98.000000,2.000000,307.000000,43.010000,49.590000,840.850000,0.070000,86.440000,0.160000 +8,2023-08-09 21:00:00,0.000000,19.800000,98.000000,2.000000,307.000000,43.200000,49.590000,840.890000,0.070000,86.440000,0.170000 +8,2023-08-09 22:00:00,0.000000,19.800000,98.000000,2.000000,307.000000,43.380000,49.590000,840.890000,0.070000,86.440000,0.180000 +8,2023-08-09 23:00:00,0.000000,17.500000,98.000000,6.000000,257.000000,43.620000,49.590000,840.890000,0.090000,86.440000,0.220000 +8,2023-08-10 00:00:00,0.000000,17.500000,98.000000,6.000000,257.000000,43.850000,49.590000,840.890000,0.090000,86.440000,0.230000 +8,2023-08-10 01:00:00,0.000000,17.500000,98.000000,6.000000,257.000000,44.070000,49.590000,840.890000,0.100000,86.440000,0.240000 +8,2023-08-10 02:00:00,0.030000,15.500000,91.000000,12.000000,267.000000,45.180000,49.590000,840.890000,0.150000,86.440000,0.390000 +8,2023-08-10 03:00:00,0.000000,15.500000,91.000000,12.000000,267.000000,46.260000,49.590000,840.890000,0.180000,86.440000,0.460000 +8,2023-08-10 04:00:00,0.000000,15.500000,91.000000,12.000000,267.000000,47.320000,49.590000,840.890000,0.210000,86.440000,0.530000 +8,2023-08-10 05:00:00,0.050000,13.900000,89.000000,11.000000,259.000000,48.440000,49.610000,840.970000,0.230000,86.470000,0.590000 +8,2023-08-10 06:00:00,0.000000,13.900000,89.000000,11.000000,259.000000,49.530000,49.630000,841.050000,0.270000,86.510000,0.670000 +8,2023-08-10 07:00:00,0.000000,13.900000,89.000000,11.000000,259.000000,50.590000,49.660000,841.130000,0.310000,86.540000,0.770000 +8,2023-08-10 08:00:00,0.050000,14.600000,80.000000,11.000000,271.000000,52.310000,49.700000,841.290000,0.370000,86.600000,0.930000 +8,2023-08-10 09:00:00,0.000000,14.600000,80.000000,11.000000,271.000000,53.950000,49.740000,841.450000,0.440000,86.670000,1.430000 +8,2023-08-10 10:00:00,0.000000,14.600000,80.000000,11.000000,271.000000,55.520000,49.780000,841.600000,0.510000,86.730000,1.890000 +8,2023-08-10 11:00:00,0.000000,18.800000,60.000000,7.000000,253.000000,58.120000,49.880000,842.010000,0.510000,86.890000,1.920000 +8,2023-08-10 12:00:00,0.000000,18.800000,60.000000,7.000000,253.000000,60.530000,49.990000,842.420000,0.600000,87.060000,2.460000 +8,2023-08-10 13:00:00,0.000000,18.800000,60.000000,7.000000,253.000000,62.780000,50.090000,842.830000,0.680000,87.230000,2.900000 +8,2023-08-10 14:00:00,0.000000,22.100000,50.000000,10.000000,277.000000,65.790000,50.250000,843.460000,0.900000,87.480000,4.040000 +8,2023-08-10 15:00:00,0.000000,22.100000,50.000000,10.000000,277.000000,68.490000,50.420000,844.090000,0.990000,87.730000,4.470000 +8,2023-08-10 16:00:00,0.000000,22.100000,50.000000,10.000000,277.000000,70.900000,50.580000,844.720000,1.070000,87.980000,4.860000 +8,2023-08-10 17:00:00,0.000000,22.400000,50.000000,15.000000,289.000000,73.270000,50.740000,845.360000,1.500000,88.240000,6.780000 +8,2023-08-10 18:00:00,0.000000,22.400000,50.000000,15.000000,289.000000,75.340000,50.910000,845.990000,1.660000,88.500000,7.470000 +8,2023-08-10 19:00:00,0.000000,22.400000,50.000000,15.000000,289.000000,77.130000,51.070000,846.630000,1.870000,88.760000,8.310000 +8,2023-08-10 20:00:00,0.000000,22.400000,50.000000,15.000000,289.000000,78.680000,51.240000,847.270000,2.130000,89.010000,9.310000 +8,2023-08-10 21:00:00,0.000000,22.400000,50.000000,15.000000,289.000000,80.020000,51.240000,847.270000,2.420000,89.010000,10.390000 +8,2023-08-10 22:00:00,0.000000,22.400000,50.000000,15.000000,289.000000,81.170000,51.240000,847.270000,2.750000,89.010000,11.520000 +8,2023-08-10 23:00:00,0.000000,15.900000,74.000000,5.000000,265.000000,81.260000,51.240000,847.270000,1.680000,89.010000,7.570000 +8,2023-08-11 00:00:00,0.000000,15.900000,74.000000,5.000000,265.000000,81.350000,51.240000,847.270000,1.700000,89.010000,7.630000 +8,2023-08-11 01:00:00,0.000000,15.900000,74.000000,5.000000,265.000000,81.420000,51.240000,847.270000,1.710000,89.010000,7.700000 +8,2023-08-11 02:00:00,0.000000,15.900000,74.000000,5.000000,265.000000,81.500000,51.240000,847.270000,1.720000,89.010000,7.750000 +8,2023-08-11 03:00:00,0.000000,15.900000,74.000000,5.000000,265.000000,81.560000,51.240000,847.270000,1.740000,89.010000,7.810000 +8,2023-08-11 04:00:00,0.000000,15.900000,74.000000,5.000000,265.000000,81.620000,51.240000,847.270000,1.750000,89.010000,7.860000 +8,2023-08-11 05:00:00,0.000000,13.900000,59.000000,12.000000,227.000000,81.950000,51.320000,847.470000,2.590000,89.150000,10.980000 +8,2023-08-11 06:00:00,0.000000,13.900000,59.000000,12.000000,227.000000,82.240000,51.410000,847.680000,2.680000,89.280000,11.310000 +8,2023-08-11 07:00:00,0.000000,13.900000,59.000000,12.000000,227.000000,82.500000,51.490000,847.880000,2.770000,89.410000,11.620000 +8,2023-08-11 08:00:00,0.000000,13.900000,59.000000,12.000000,227.000000,82.740000,51.580000,848.080000,2.860000,89.550000,11.910000 +8,2023-08-11 09:00:00,0.000000,13.900000,59.000000,12.000000,227.000000,82.950000,51.670000,848.280000,2.930000,89.680000,12.180000 +8,2023-08-11 10:00:00,0.000000,13.900000,59.000000,12.000000,227.000000,83.140000,51.750000,848.480000,3.010000,89.810000,12.440000 +8,2023-08-11 11:00:00,0.000000,21.600000,37.000000,20.000000,259.000000,84.290000,51.970000,848.980000,5.240000,90.140000,19.020000 +8,2023-08-11 12:00:00,0.000000,21.600000,37.000000,20.000000,259.000000,85.250000,52.180000,849.490000,5.970000,90.470000,20.960000 +8,2023-08-11 13:00:00,0.000000,21.600000,37.000000,20.000000,259.000000,86.060000,52.400000,849.990000,6.680000,90.800000,22.750000 +8,2023-08-11 14:00:00,0.000000,21.600000,37.000000,20.000000,259.000000,86.730000,52.610000,850.490000,7.340000,91.130000,24.360000 +8,2023-08-11 15:00:00,0.000000,21.600000,37.000000,20.000000,259.000000,87.280000,52.830000,850.990000,7.950000,91.460000,25.790000 +8,2023-08-11 16:00:00,0.000000,21.600000,37.000000,20.000000,259.000000,87.750000,53.040000,851.490000,8.500000,91.790000,27.050000 +8,2023-08-11 17:00:00,0.000000,24.100000,28.000000,18.000000,274.000000,88.590000,53.330000,852.160000,8.670000,92.230000,27.490000 +8,2023-08-11 18:00:00,0.000000,24.100000,28.000000,18.000000,274.000000,89.280000,53.620000,852.830000,9.560000,92.670000,29.470000 +8,2023-08-11 19:00:00,0.000000,24.100000,28.000000,18.000000,274.000000,89.830000,53.900000,853.500000,10.360000,93.100000,31.180000 +8,2023-08-11 20:00:00,0.000000,24.100000,28.000000,18.000000,274.000000,90.290000,54.190000,854.170000,11.060000,93.540000,32.630000 +8,2023-08-11 21:00:00,0.000000,24.100000,28.000000,18.000000,274.000000,90.650000,54.190000,854.170000,11.650000,93.540000,33.790000 +8,2023-08-11 22:00:00,0.000000,24.100000,28.000000,18.000000,274.000000,90.950000,54.190000,854.170000,12.160000,93.540000,34.760000 +8,2023-08-11 23:00:00,0.000000,14.800000,53.000000,4.000000,246.000000,90.610000,54.190000,854.170000,5.720000,93.540000,20.680000 +8,2023-08-12 00:00:00,0.000000,14.800000,53.000000,4.000000,246.000000,90.310000,54.190000,854.170000,5.480000,93.540000,20.040000 +8,2023-08-12 01:00:00,0.000000,14.800000,53.000000,4.000000,246.000000,90.030000,54.190000,854.170000,5.260000,93.540000,19.470000 +8,2023-08-12 02:00:00,0.000000,14.800000,53.000000,4.000000,246.000000,89.780000,54.190000,854.170000,5.080000,93.540000,18.970000 +8,2023-08-12 03:00:00,0.000000,14.800000,53.000000,4.000000,246.000000,89.560000,54.190000,854.170000,4.920000,93.540000,18.540000 +8,2023-08-12 04:00:00,0.000000,14.800000,53.000000,4.000000,246.000000,89.360000,54.190000,854.170000,4.780000,93.540000,18.150000 +8,2023-08-12 05:00:00,0.000000,10.100000,69.000000,5.000000,200.000000,88.830000,54.260000,854.310000,4.660000,93.650000,17.820000 +8,2023-08-12 06:00:00,0.000000,10.100000,69.000000,5.000000,200.000000,88.360000,54.330000,854.450000,4.360000,93.750000,16.950000 +8,2023-08-12 07:00:00,0.000000,10.100000,69.000000,5.000000,200.000000,87.940000,54.400000,854.590000,4.100000,93.860000,16.200000 +8,2023-08-12 08:00:00,0.000000,10.100000,69.000000,5.000000,200.000000,87.550000,54.460000,854.730000,3.880000,93.960000,15.560000 +8,2023-08-12 09:00:00,0.000000,10.100000,69.000000,5.000000,200.000000,87.210000,54.530000,854.870000,3.690000,94.070000,14.990000 +8,2023-08-12 10:00:00,0.000000,10.100000,69.000000,5.000000,200.000000,86.900000,54.600000,855.010000,3.530000,94.170000,14.500000 +8,2023-08-12 11:00:00,0.000000,23.800000,30.000000,11.000000,115.000000,87.720000,54.980000,855.760000,5.370000,94.740000,19.890000 +8,2023-08-12 12:00:00,0.000000,23.800000,30.000000,11.000000,115.000000,88.400000,55.350000,856.510000,5.920000,95.300000,21.410000 +8,2023-08-12 13:00:00,0.000000,23.800000,30.000000,11.000000,115.000000,88.960000,55.720000,857.270000,6.430000,95.860000,22.760000 +8,2023-08-12 14:00:00,0.000000,23.800000,30.000000,11.000000,115.000000,89.440000,56.090000,858.020000,6.880000,96.430000,23.950000 +8,2023-08-12 15:00:00,0.000000,23.800000,30.000000,11.000000,115.000000,89.830000,56.470000,858.780000,7.280000,96.990000,24.980000 +8,2023-08-12 16:00:00,0.000000,23.800000,30.000000,11.000000,115.000000,90.160000,56.840000,859.530000,7.630000,97.550000,25.880000 +8,2023-08-12 17:00:00,0.830000,21.900000,50.000000,5.000000,130.000000,74.440000,53.110000,852.680000,0.960000,91.900000,4.490000 +8,2023-08-12 18:00:00,0.000000,21.900000,50.000000,5.000000,130.000000,75.960000,53.340000,853.160000,1.040000,92.270000,4.920000 +8,2023-08-12 19:00:00,0.000000,21.900000,50.000000,5.000000,130.000000,77.310000,53.580000,853.640000,1.150000,92.630000,5.430000 +8,2023-08-12 20:00:00,0.000000,21.900000,50.000000,5.000000,130.000000,78.520000,53.820000,854.120000,1.270000,92.990000,6.000000 +8,2023-08-12 21:00:00,0.000000,21.900000,50.000000,5.000000,130.000000,79.590000,53.820000,854.120000,1.400000,92.990000,6.610000 +8,2023-08-12 22:00:00,0.000000,21.900000,50.000000,5.000000,130.000000,80.550000,53.820000,854.120000,1.550000,92.990000,7.250000 +8,2023-08-12 23:00:00,3.860000,16.600000,98.000000,9.000000,220.000000,35.030000,38.890000,820.000000,0.020000,69.540000,0.040000 +8,2023-08-13 00:00:00,0.000000,16.600000,98.000000,9.000000,220.000000,35.330000,38.890000,820.000000,0.020000,69.540000,0.040000 +8,2023-08-13 01:00:00,0.000000,16.600000,98.000000,9.000000,220.000000,35.620000,38.890000,820.000000,0.020000,69.540000,0.050000 +8,2023-08-13 02:00:00,0.000000,16.600000,98.000000,9.000000,220.000000,35.920000,38.890000,820.000000,0.020000,69.540000,0.050000 +8,2023-08-13 03:00:00,0.000000,16.600000,98.000000,9.000000,220.000000,36.220000,38.890000,820.000000,0.030000,69.540000,0.050000 +8,2023-08-13 04:00:00,0.000000,16.600000,98.000000,9.000000,220.000000,36.510000,38.890000,820.000000,0.030000,69.540000,0.060000 +8,2023-08-13 05:00:00,0.600000,13.900000,96.000000,20.000000,222.000000,33.730000,38.100000,820.060000,0.020000,68.270000,0.050000 +8,2023-08-13 06:00:00,0.000000,13.900000,96.000000,20.000000,222.000000,34.440000,38.100000,820.120000,0.030000,68.280000,0.060000 +8,2023-08-13 07:00:00,0.000000,13.900000,96.000000,20.000000,222.000000,35.150000,38.110000,820.180000,0.030000,68.290000,0.070000 +8,2023-08-13 08:00:00,0.000000,13.900000,96.000000,20.000000,222.000000,35.850000,38.120000,820.250000,0.040000,68.300000,0.080000 +8,2023-08-13 09:00:00,0.000000,13.900000,96.000000,20.000000,222.000000,36.540000,38.120000,820.310000,0.050000,68.310000,0.100000 +8,2023-08-13 10:00:00,0.000000,13.900000,96.000000,20.000000,222.000000,37.220000,38.130000,820.370000,0.050000,68.320000,0.110000 +8,2023-08-13 11:00:00,0.600000,16.900000,82.000000,21.000000,277.000000,36.490000,37.380000,820.710000,0.050000,67.120000,0.100000 +8,2023-08-13 12:00:00,0.000000,16.900000,82.000000,21.000000,277.000000,39.240000,37.420000,821.040000,0.090000,67.180000,0.180000 +8,2023-08-13 13:00:00,0.000000,16.900000,82.000000,21.000000,277.000000,41.890000,37.460000,821.380000,0.140000,67.250000,0.290000 +8,2023-08-13 14:00:00,0.000000,16.900000,82.000000,21.000000,277.000000,44.430000,37.490000,821.720000,0.220000,67.310000,0.450000 +8,2023-08-13 15:00:00,0.000000,16.900000,82.000000,21.000000,277.000000,46.860000,37.530000,822.060000,0.310000,67.370000,0.650000 +8,2023-08-13 16:00:00,0.000000,16.900000,82.000000,21.000000,277.000000,49.180000,37.570000,822.390000,0.430000,67.440000,0.890000 +8,2023-08-13 17:00:00,0.380000,21.300000,63.000000,15.000000,304.000000,49.960000,37.160000,823.310000,0.350000,66.790000,0.720000 +8,2023-08-13 18:00:00,0.000000,21.300000,63.000000,15.000000,304.000000,53.640000,37.260000,824.220000,0.520000,66.960000,1.360000 +8,2023-08-13 19:00:00,0.000000,21.300000,63.000000,15.000000,304.000000,57.030000,37.360000,825.130000,0.710000,67.130000,2.350000 +8,2023-08-13 20:00:00,0.000000,21.300000,63.000000,15.000000,304.000000,60.150000,37.460000,826.040000,0.880000,67.300000,3.150000 +8,2023-08-13 21:00:00,0.000000,21.300000,63.000000,15.000000,304.000000,62.990000,37.460000,826.040000,1.030000,67.300000,3.780000 +8,2023-08-13 22:00:00,0.000000,21.300000,63.000000,15.000000,304.000000,65.560000,37.460000,826.040000,1.150000,67.300000,4.270000 +8,2023-08-13 23:00:00,0.120000,15.000000,95.000000,4.000000,262.000000,64.280000,37.280000,826.040000,0.630000,66.990000,1.950000 +8,2023-08-14 00:00:00,0.000000,15.000000,95.000000,4.000000,262.000000,64.470000,37.280000,826.040000,0.630000,66.990000,1.980000 +8,2023-08-14 01:00:00,0.000000,15.000000,95.000000,4.000000,262.000000,64.650000,37.280000,826.040000,0.640000,66.990000,2.000000 +8,2023-08-14 02:00:00,0.000000,15.000000,95.000000,4.000000,262.000000,64.830000,37.280000,826.040000,0.640000,66.990000,2.020000 +8,2023-08-14 03:00:00,0.000000,15.000000,95.000000,4.000000,262.000000,65.000000,37.280000,826.040000,0.640000,66.990000,2.050000 +8,2023-08-14 04:00:00,0.000000,15.000000,95.000000,4.000000,262.000000,65.180000,37.280000,826.040000,0.650000,66.990000,2.070000 +8,2023-08-14 05:00:00,0.030000,13.100000,99.000000,1.000000,240.000000,65.200000,37.280000,826.050000,0.560000,67.000000,1.590000 +8,2023-08-14 06:00:00,0.000000,13.100000,99.000000,1.000000,240.000000,65.210000,37.280000,826.060000,0.560000,67.000000,1.590000 +8,2023-08-14 07:00:00,0.000000,13.100000,99.000000,1.000000,240.000000,65.230000,37.280000,826.070000,0.560000,67.000000,1.590000 +8,2023-08-14 08:00:00,0.000000,13.100000,99.000000,1.000000,240.000000,65.250000,37.280000,826.080000,0.560000,67.010000,1.600000 +8,2023-08-14 09:00:00,0.000000,13.100000,99.000000,1.000000,240.000000,65.260000,37.290000,826.090000,0.560000,67.010000,1.600000 +8,2023-08-14 10:00:00,0.000000,13.100000,99.000000,1.000000,240.000000,65.280000,37.290000,826.090000,0.560000,67.010000,1.600000 +8,2023-08-14 11:00:00,0.020000,19.900000,64.000000,7.000000,97.000000,67.090000,37.400000,826.570000,0.810000,67.200000,2.840000 +8,2023-08-14 12:00:00,0.000000,19.900000,64.000000,7.000000,97.000000,68.760000,37.510000,827.040000,0.860000,67.380000,3.050000 +8,2023-08-14 13:00:00,0.000000,19.900000,64.000000,7.000000,97.000000,70.290000,37.620000,827.510000,0.900000,67.570000,3.240000 +8,2023-08-14 14:00:00,0.000000,19.900000,64.000000,7.000000,97.000000,71.700000,37.730000,827.980000,0.940000,67.750000,3.440000 +8,2023-08-14 15:00:00,0.000000,19.900000,64.000000,7.000000,97.000000,72.970000,37.850000,828.460000,0.990000,67.930000,3.650000 +8,2023-08-14 16:00:00,0.000000,19.900000,64.000000,7.000000,97.000000,74.140000,37.960000,828.930000,1.040000,68.120000,3.880000 +8,2023-08-14 17:00:00,0.000000,23.400000,43.000000,14.000000,78.000000,76.430000,38.180000,829.850000,1.690000,68.480000,6.380000 +8,2023-08-14 18:00:00,0.000000,23.400000,43.000000,14.000000,78.000000,78.400000,38.400000,830.780000,1.970000,68.840000,7.380000 +8,2023-08-14 19:00:00,0.000000,23.400000,43.000000,14.000000,78.000000,80.080000,38.620000,831.700000,2.320000,69.200000,8.550000 +8,2023-08-14 20:00:00,0.000000,23.400000,43.000000,14.000000,78.000000,81.520000,38.840000,832.630000,2.720000,69.560000,9.830000 +8,2023-08-14 21:00:00,0.000000,23.400000,43.000000,14.000000,78.000000,82.730000,38.840000,832.630000,3.160000,69.560000,11.120000 +8,2023-08-14 22:00:00,0.000000,23.400000,43.000000,14.000000,78.000000,83.770000,38.840000,832.630000,3.610000,69.560000,12.380000 +8,2023-08-14 23:00:00,0.000000,16.200000,66.000000,8.000000,85.000000,83.790000,38.840000,832.630000,2.670000,69.560000,9.690000 +8,2023-08-15 00:00:00,0.000000,16.200000,66.000000,8.000000,85.000000,83.810000,38.840000,832.630000,2.680000,69.560000,9.710000 +8,2023-08-15 01:00:00,0.000000,16.200000,66.000000,8.000000,85.000000,83.830000,38.840000,832.630000,2.690000,69.560000,9.730000 +8,2023-08-15 02:00:00,0.000000,16.200000,66.000000,8.000000,85.000000,83.840000,38.840000,832.630000,2.690000,69.560000,9.740000 +8,2023-08-15 03:00:00,0.000000,16.200000,66.000000,8.000000,85.000000,83.860000,38.840000,832.630000,2.700000,69.560000,9.760000 +8,2023-08-15 04:00:00,0.000000,16.200000,66.000000,8.000000,85.000000,83.870000,38.840000,832.630000,2.700000,69.560000,9.770000 +8,2023-08-15 05:00:00,0.000000,13.400000,74.000000,6.000000,119.000000,83.840000,38.890000,832.760000,2.430000,69.650000,8.950000 +8,2023-08-15 06:00:00,0.000000,13.400000,74.000000,6.000000,119.000000,83.810000,38.940000,832.890000,2.420000,69.740000,8.920000 +8,2023-08-15 07:00:00,0.000000,13.400000,74.000000,6.000000,119.000000,83.780000,39.000000,833.020000,2.420000,69.820000,8.910000 +8,2023-08-15 08:00:00,0.000000,13.400000,74.000000,6.000000,119.000000,83.760000,39.050000,833.150000,2.410000,69.910000,8.890000 +8,2023-08-15 09:00:00,0.000000,13.400000,74.000000,6.000000,119.000000,83.740000,39.100000,833.280000,2.400000,70.000000,8.880000 +8,2023-08-15 10:00:00,0.000000,13.400000,74.000000,6.000000,119.000000,83.720000,39.160000,833.410000,2.400000,70.080000,8.870000 +8,2023-08-15 11:00:00,0.000000,24.700000,42.000000,14.000000,129.000000,84.710000,39.400000,833.990000,4.100000,70.480000,13.790000 +8,2023-08-15 12:00:00,0.000000,24.700000,42.000000,14.000000,129.000000,85.540000,39.640000,834.580000,4.590000,70.870000,15.100000 +8,2023-08-15 13:00:00,0.000000,24.700000,42.000000,14.000000,129.000000,86.230000,39.890000,835.160000,5.060000,71.260000,16.300000 +8,2023-08-15 14:00:00,0.000000,24.700000,42.000000,14.000000,129.000000,86.800000,40.130000,835.750000,5.480000,71.660000,17.370000 +8,2023-08-15 15:00:00,0.000000,24.700000,42.000000,14.000000,129.000000,87.270000,40.370000,836.330000,5.870000,72.050000,18.310000 +8,2023-08-15 16:00:00,0.000000,24.700000,42.000000,14.000000,129.000000,87.670000,40.610000,836.920000,6.210000,72.440000,19.140000 +8,2023-08-15 17:00:00,0.000000,28.400000,37.000000,17.000000,144.000000,88.380000,40.940000,837.710000,8.000000,72.970000,23.060000 +8,2023-08-15 18:00:00,0.000000,28.400000,37.000000,17.000000,144.000000,88.950000,41.270000,838.500000,8.680000,73.500000,24.520000 +8,2023-08-15 19:00:00,0.000000,28.400000,37.000000,17.000000,144.000000,89.410000,41.600000,839.290000,9.270000,74.020000,25.740000 +8,2023-08-15 20:00:00,0.000000,28.400000,37.000000,17.000000,144.000000,89.770000,41.930000,840.080000,9.760000,74.550000,26.770000 +8,2023-08-15 21:00:00,0.000000,28.400000,37.000000,17.000000,144.000000,90.050000,41.930000,840.080000,10.160000,74.550000,27.530000 +8,2023-08-15 22:00:00,0.000000,28.400000,37.000000,17.000000,144.000000,90.270000,41.930000,840.080000,10.490000,74.550000,28.150000 +8,2023-08-15 23:00:00,0.000000,23.800000,45.000000,12.000000,166.000000,90.270000,41.930000,840.080000,8.160000,74.550000,23.640000 +8,2023-08-16 00:00:00,0.000000,23.800000,45.000000,12.000000,166.000000,90.270000,41.930000,840.080000,8.160000,74.550000,23.640000 +8,2023-08-16 01:00:00,0.000000,23.800000,45.000000,12.000000,166.000000,90.270000,41.930000,840.080000,8.160000,74.550000,23.640000 +8,2023-08-16 02:00:00,0.000000,23.800000,45.000000,12.000000,166.000000,90.270000,41.930000,840.080000,8.160000,74.550000,23.640000 +8,2023-08-16 03:00:00,0.000000,23.800000,45.000000,12.000000,166.000000,90.270000,41.930000,840.080000,8.160000,74.550000,23.640000 +8,2023-08-16 04:00:00,0.000000,23.800000,45.000000,12.000000,166.000000,90.270000,41.930000,840.080000,8.160000,74.550000,23.640000 +8,2023-08-16 05:00:00,0.000000,20.200000,61.000000,3.000000,215.000000,89.880000,42.090000,840.530000,4.900000,74.810000,16.340000 +8,2023-08-16 06:00:00,0.000000,20.200000,61.000000,3.000000,215.000000,89.530000,42.250000,840.990000,4.660000,75.070000,15.770000 +8,2023-08-16 07:00:00,0.000000,20.200000,61.000000,3.000000,215.000000,89.230000,42.410000,841.440000,4.460000,75.330000,15.290000 +8,2023-08-16 08:00:00,0.000000,20.200000,61.000000,3.000000,215.000000,88.970000,42.580000,841.890000,4.300000,75.600000,14.880000 +8,2023-08-16 09:00:00,0.000000,20.200000,61.000000,3.000000,215.000000,88.730000,42.740000,842.350000,4.160000,75.860000,14.530000 +8,2023-08-16 10:00:00,0.000000,20.200000,61.000000,3.000000,215.000000,88.530000,42.900000,842.800000,4.030000,76.120000,14.230000 +8,2023-08-16 11:00:00,0.000000,25.000000,50.000000,9.000000,350.000000,88.530000,43.180000,843.580000,5.460000,76.560000,17.950000 +8,2023-08-16 12:00:00,0.000000,25.000000,50.000000,9.000000,350.000000,88.530000,43.460000,844.360000,5.460000,77.010000,18.010000 +8,2023-08-16 13:00:00,0.000000,25.000000,50.000000,9.000000,350.000000,88.530000,43.740000,845.130000,5.460000,77.460000,18.060000 +8,2023-08-16 14:00:00,0.000000,25.000000,50.000000,9.000000,350.000000,88.530000,44.020000,845.910000,5.460000,77.900000,18.120000 +8,2023-08-16 15:00:00,0.000000,25.000000,50.000000,9.000000,350.000000,88.530000,44.300000,846.690000,5.460000,78.350000,18.180000 +8,2023-08-16 16:00:00,0.000000,25.000000,50.000000,9.000000,350.000000,88.530000,44.580000,847.470000,5.460000,78.790000,18.230000 +8,2023-08-16 17:00:00,8.100000,17.500000,97.000000,9.000000,289.000000,22.890000,32.770000,770.920000,0.000000,59.240000,0.000000 +8,2023-08-16 18:00:00,0.000000,17.500000,97.000000,9.000000,289.000000,23.420000,32.780000,770.950000,0.000000,59.260000,0.000000 +8,2023-08-16 19:00:00,0.000000,17.500000,97.000000,9.000000,289.000000,23.950000,32.790000,770.980000,0.000000,59.280000,0.000000 +8,2023-08-16 20:00:00,0.000000,17.500000,97.000000,9.000000,289.000000,24.470000,32.800000,771.010000,0.000000,59.290000,0.000000 +8,2023-08-16 21:00:00,0.000000,17.500000,97.000000,9.000000,289.000000,24.990000,32.800000,771.010000,0.000000,59.290000,0.000000 +8,2023-08-16 22:00:00,0.000000,17.500000,97.000000,9.000000,289.000000,25.510000,32.800000,771.010000,0.000000,59.290000,0.000000 +8,2023-08-16 23:00:00,14.050000,15.200000,97.000000,20.000000,281.000000,3.600000,17.780000,638.180000,0.000000,33.250000,0.000000 +8,2023-08-17 00:00:00,0.000000,15.200000,97.000000,20.000000,281.000000,4.280000,17.780000,638.180000,0.000000,33.250000,0.000000 +8,2023-08-17 01:00:00,0.000000,15.200000,97.000000,20.000000,281.000000,4.960000,17.780000,638.180000,0.000000,33.250000,0.000000 +8,2023-08-17 02:00:00,0.000000,15.200000,97.000000,20.000000,281.000000,5.650000,17.780000,638.180000,0.000000,33.250000,0.000000 +8,2023-08-17 03:00:00,0.000000,15.200000,97.000000,20.000000,281.000000,6.330000,17.780000,638.180000,0.000000,33.250000,0.000000 +8,2023-08-17 04:00:00,0.000000,15.200000,97.000000,20.000000,281.000000,7.010000,17.780000,638.180000,0.000000,33.250000,0.000000 +8,2023-08-17 05:00:00,0.550000,12.700000,70.000000,20.000000,251.000000,10.410000,17.780000,638.180000,0.000000,33.250000,0.000000 +8,2023-08-17 06:00:00,0.000000,12.700000,70.000000,20.000000,251.000000,14.070000,17.850000,638.370000,0.000000,33.360000,0.000000 +8,2023-08-17 07:00:00,0.000000,12.700000,70.000000,20.000000,251.000000,17.710000,17.910000,638.550000,0.000000,33.470000,0.000000 +8,2023-08-17 08:00:00,0.000000,12.700000,70.000000,20.000000,251.000000,21.320000,17.970000,638.730000,0.000000,33.580000,0.000000 +8,2023-08-17 09:00:00,0.000000,12.700000,70.000000,20.000000,251.000000,24.880000,18.030000,638.920000,0.000000,33.680000,0.000000 +8,2023-08-17 10:00:00,0.000000,12.700000,70.000000,20.000000,251.000000,28.380000,18.090000,639.100000,0.010000,33.790000,0.010000 +8,2023-08-17 11:00:00,0.000000,18.000000,47.000000,24.000000,250.000000,34.140000,18.240000,639.560000,0.030000,34.060000,0.040000 +8,2023-08-17 12:00:00,0.000000,18.000000,47.000000,24.000000,250.000000,39.650000,18.400000,640.010000,0.110000,34.330000,0.140000 +8,2023-08-17 13:00:00,0.000000,18.000000,47.000000,24.000000,250.000000,44.850000,18.550000,640.470000,0.270000,34.590000,0.350000 +8,2023-08-17 14:00:00,0.000000,18.000000,47.000000,24.000000,250.000000,49.700000,18.700000,640.930000,0.530000,34.860000,0.690000 +8,2023-08-17 15:00:00,0.000000,18.000000,47.000000,24.000000,250.000000,54.180000,18.860000,641.380000,0.860000,35.130000,1.520000 +8,2023-08-17 16:00:00,0.000000,18.000000,47.000000,24.000000,250.000000,58.270000,19.010000,641.840000,1.220000,35.400000,2.670000 +8,2023-08-17 17:00:00,0.000000,21.100000,38.000000,18.000000,245.000000,62.570000,19.220000,642.490000,1.170000,35.770000,2.550000 +8,2023-08-17 18:00:00,0.000000,21.100000,38.000000,18.000000,245.000000,66.410000,19.440000,643.130000,1.380000,36.150000,3.170000 +8,2023-08-17 19:00:00,0.000000,21.100000,38.000000,18.000000,245.000000,69.790000,19.660000,643.780000,1.540000,36.530000,3.650000 +8,2023-08-17 20:00:00,0.000000,21.100000,38.000000,18.000000,245.000000,72.740000,19.870000,644.430000,1.710000,36.900000,4.130000 +8,2023-08-17 21:00:00,0.000000,21.100000,38.000000,18.000000,245.000000,75.310000,19.870000,644.430000,1.930000,36.900000,4.700000 +8,2023-08-17 22:00:00,0.000000,21.100000,38.000000,18.000000,245.000000,77.520000,19.870000,644.430000,2.240000,36.900000,5.480000 +8,2023-08-17 23:00:00,0.000000,14.500000,58.000000,11.000000,242.000000,78.270000,19.870000,644.430000,1.680000,36.900000,4.050000 +8,2023-08-18 00:00:00,0.000000,14.500000,58.000000,11.000000,242.000000,78.950000,19.870000,644.430000,1.780000,36.900000,4.330000 +8,2023-08-18 01:00:00,0.000000,14.500000,58.000000,11.000000,242.000000,79.560000,19.870000,644.430000,1.890000,36.900000,4.610000 +8,2023-08-18 02:00:00,0.000000,14.500000,58.000000,11.000000,242.000000,80.120000,19.870000,644.430000,2.000000,36.900000,4.880000 +8,2023-08-18 03:00:00,0.000000,14.500000,58.000000,11.000000,242.000000,80.620000,19.870000,644.430000,2.110000,36.900000,5.160000 +8,2023-08-18 04:00:00,0.000000,14.500000,58.000000,11.000000,242.000000,81.070000,19.870000,644.430000,2.220000,36.900000,5.430000 +8,2023-08-18 05:00:00,0.000000,12.000000,62.000000,16.000000,232.000000,81.360000,19.870000,644.430000,2.950000,36.900000,7.110000 +8,2023-08-18 06:00:00,0.000000,12.000000,62.000000,16.000000,232.000000,81.620000,19.990000,644.730000,3.050000,37.110000,7.340000 +8,2023-08-18 07:00:00,0.000000,12.000000,62.000000,16.000000,232.000000,81.860000,20.110000,645.030000,3.130000,37.310000,7.550000 +8,2023-08-18 08:00:00,0.000000,12.000000,62.000000,16.000000,232.000000,82.070000,20.230000,645.330000,3.220000,37.510000,7.760000 +8,2023-08-18 09:00:00,0.000000,12.000000,62.000000,16.000000,232.000000,82.260000,20.340000,645.630000,3.290000,37.720000,7.950000 +8,2023-08-18 10:00:00,0.000000,12.000000,62.000000,16.000000,232.000000,82.440000,20.460000,645.930000,3.360000,37.920000,8.130000 +8,2023-08-18 11:00:00,0.000000,19.300000,40.000000,19.000000,247.000000,83.440000,20.760000,646.690000,4.450000,38.430000,10.390000 +8,2023-08-18 12:00:00,0.000000,19.300000,40.000000,19.000000,247.000000,84.290000,21.050000,647.440000,4.980000,38.940000,11.490000 +8,2023-08-18 13:00:00,0.000000,19.300000,40.000000,19.000000,247.000000,85.020000,21.350000,648.200000,5.500000,39.450000,12.530000 +8,2023-08-18 14:00:00,0.000000,19.300000,40.000000,19.000000,247.000000,85.630000,21.640000,648.960000,5.990000,39.950000,13.500000 +8,2023-08-18 15:00:00,0.000000,19.300000,40.000000,19.000000,247.000000,86.160000,21.940000,649.720000,6.440000,40.460000,14.390000 +8,2023-08-18 16:00:00,0.000000,19.300000,40.000000,19.000000,247.000000,86.600000,22.230000,650.470000,6.860000,40.970000,15.200000 +8,2023-08-18 17:00:00,0.900000,16.800000,60.000000,23.000000,300.000000,78.190000,22.400000,650.900000,3.050000,41.250000,7.840000 +9,2023-08-03 00:00:00,0.000000,15.900000,65.000000,3.000000,92.000000,85.960000,118.400000,826.100000,2.800000,174.330000,15.600000 +9,2023-08-03 01:00:00,0.000000,15.900000,65.000000,3.000000,92.000000,85.930000,118.400000,826.100000,2.790000,174.330000,15.550000 +9,2023-08-03 02:00:00,0.000000,13.500000,75.000000,1.000000,205.000000,85.690000,118.400000,826.100000,2.440000,174.330000,14.020000 +9,2023-08-03 03:00:00,0.000000,13.500000,75.000000,1.000000,205.000000,85.470000,118.400000,826.100000,2.360000,174.330000,13.690000 +9,2023-08-03 04:00:00,0.000000,13.500000,75.000000,1.000000,205.000000,85.270000,118.400000,826.100000,2.300000,174.330000,13.400000 +9,2023-08-03 05:00:00,0.000000,11.800000,82.000000,2.000000,243.000000,84.890000,118.440000,826.190000,2.290000,174.380000,13.380000 +9,2023-08-03 06:00:00,0.000000,11.800000,82.000000,2.000000,243.000000,84.550000,118.480000,826.280000,2.190000,174.430000,12.900000 +9,2023-08-03 07:00:00,0.000000,11.800000,82.000000,2.000000,243.000000,84.250000,118.520000,826.370000,2.100000,174.480000,12.490000 +9,2023-08-03 08:00:00,0.000000,17.500000,58.000000,1.000000,138.000000,84.350000,118.650000,826.680000,2.030000,174.630000,12.130000 +9,2023-08-03 09:00:00,0.000000,17.500000,58.000000,1.000000,138.000000,84.450000,118.780000,826.980000,2.050000,174.790000,12.260000 +9,2023-08-03 10:00:00,0.000000,17.500000,58.000000,1.000000,138.000000,84.540000,118.910000,827.290000,2.080000,174.950000,12.380000 +9,2023-08-03 11:00:00,0.000000,22.700000,38.000000,4.000000,103.000000,85.260000,119.180000,827.910000,2.670000,175.280000,15.050000 +9,2023-08-03 12:00:00,0.000000,22.700000,38.000000,4.000000,103.000000,85.880000,119.440000,828.530000,2.910000,175.600000,16.090000 +9,2023-08-03 13:00:00,0.000000,22.700000,38.000000,4.000000,103.000000,86.430000,119.710000,829.150000,3.140000,175.920000,17.050000 +9,2023-08-03 14:00:00,0.000000,24.100000,36.000000,4.000000,351.000000,87.010000,120.010000,829.850000,3.420000,176.290000,18.150000 +9,2023-08-03 15:00:00,0.000000,24.100000,36.000000,4.000000,351.000000,87.520000,120.310000,830.550000,3.670000,176.650000,19.150000 +9,2023-08-03 16:00:00,0.000000,24.100000,36.000000,4.000000,351.000000,87.960000,120.610000,831.240000,3.910000,177.010000,20.050000 +9,2023-08-03 17:00:00,1.980000,22.100000,49.000000,5.000000,351.000000,57.470000,93.640000,816.120000,0.440000,145.540000,2.490000 +9,2023-08-03 18:00:00,0.000000,22.100000,49.000000,5.000000,351.000000,60.600000,93.860000,816.610000,0.550000,145.810000,3.280000 +9,2023-08-03 19:00:00,0.000000,22.100000,49.000000,5.000000,351.000000,63.480000,94.070000,817.110000,0.640000,146.090000,3.910000 +9,2023-08-03 20:00:00,2.250000,19.700000,72.000000,1.000000,241.000000,40.020000,75.500000,799.590000,0.040000,122.170000,0.120000 +9,2023-08-03 21:00:00,0.000000,19.700000,72.000000,1.000000,241.000000,42.030000,75.600000,799.830000,0.050000,122.300000,0.170000 +9,2023-08-03 22:00:00,0.000000,19.700000,72.000000,1.000000,241.000000,43.980000,75.600000,799.830000,0.070000,122.300000,0.230000 +9,2023-08-03 23:00:00,0.000000,16.200000,80.000000,4.000000,249.000000,45.590000,75.600000,799.830000,0.110000,122.300000,0.350000 +9,2023-08-04 00:00:00,0.000000,16.200000,80.000000,4.000000,249.000000,47.160000,75.600000,799.830000,0.140000,122.300000,0.440000 +9,2023-08-04 01:00:00,0.000000,16.200000,80.000000,4.000000,249.000000,48.690000,75.600000,799.830000,0.170000,122.300000,0.540000 +9,2023-08-04 02:00:00,0.000000,14.000000,85.000000,6.000000,260.000000,49.870000,75.600000,799.830000,0.220000,122.300000,0.690000 +9,2023-08-04 03:00:00,0.000000,14.000000,85.000000,6.000000,260.000000,51.020000,75.600000,799.830000,0.250000,122.300000,0.790000 +9,2023-08-04 04:00:00,0.000000,14.000000,85.000000,6.000000,260.000000,52.130000,75.600000,799.830000,0.280000,122.300000,0.900000 +9,2023-08-04 05:00:00,0.000000,12.300000,93.000000,6.000000,258.000000,52.640000,75.610000,799.860000,0.300000,122.320000,0.950000 +9,2023-08-04 06:00:00,0.000000,12.300000,93.000000,6.000000,258.000000,53.130000,75.630000,799.890000,0.310000,122.340000,1.000000 +9,2023-08-04 07:00:00,0.000000,12.300000,93.000000,6.000000,258.000000,53.610000,75.640000,799.920000,0.330000,122.350000,1.250000 +9,2023-08-04 08:00:00,0.000000,17.900000,75.000000,5.000000,259.000000,55.360000,75.700000,800.090000,0.370000,122.440000,1.630000 +9,2023-08-04 09:00:00,0.000000,17.900000,75.000000,5.000000,259.000000,57.030000,75.760000,800.250000,0.430000,122.520000,2.080000 +9,2023-08-04 10:00:00,0.000000,17.900000,75.000000,5.000000,259.000000,58.620000,75.820000,800.420000,0.480000,122.610000,2.480000 +9,2023-08-04 11:00:00,0.000000,23.600000,47.000000,4.000000,306.000000,61.830000,76.010000,800.910000,0.560000,122.860000,3.010000 +9,2023-08-04 12:00:00,0.000000,23.600000,47.000000,4.000000,306.000000,64.760000,76.190000,801.400000,0.640000,123.120000,3.560000 +9,2023-08-04 13:00:00,0.000000,23.600000,47.000000,4.000000,306.000000,67.420000,76.370000,801.890000,0.700000,123.370000,3.980000 +9,2023-08-04 14:00:00,0.000000,25.300000,40.000000,8.000000,318.000000,70.630000,76.600000,802.510000,0.960000,123.690000,5.480000 +9,2023-08-04 15:00:00,0.000000,25.300000,40.000000,8.000000,318.000000,73.450000,76.830000,803.130000,1.060000,124.010000,6.080000 +9,2023-08-04 16:00:00,0.000000,25.300000,40.000000,8.000000,318.000000,75.900000,77.060000,803.750000,1.210000,124.330000,6.870000 +9,2023-08-04 17:00:00,0.030000,26.200000,32.000000,8.000000,310.000000,78.440000,77.340000,804.490000,1.460000,124.710000,8.180000 +9,2023-08-04 18:00:00,0.000000,26.200000,32.000000,8.000000,310.000000,80.610000,77.610000,805.230000,1.820000,125.090000,9.860000 +9,2023-08-04 19:00:00,0.000000,26.200000,32.000000,8.000000,310.000000,82.450000,77.890000,805.960000,2.250000,125.470000,11.790000 +9,2023-08-04 20:00:00,0.000000,23.600000,40.000000,6.000000,327.000000,83.480000,78.100000,806.520000,2.320000,125.750000,12.090000 +9,2023-08-04 21:00:00,0.000000,23.600000,40.000000,6.000000,327.000000,84.370000,78.310000,807.080000,2.610000,126.040000,13.290000 +9,2023-08-04 22:00:00,0.000000,23.600000,40.000000,6.000000,327.000000,85.140000,78.310000,807.080000,2.900000,126.040000,14.420000 +9,2023-08-04 23:00:00,0.000000,18.600000,59.000000,6.000000,305.000000,85.180000,78.310000,807.080000,2.920000,126.040000,14.490000 +9,2023-08-05 00:00:00,0.000000,18.600000,59.000000,6.000000,305.000000,85.220000,78.310000,807.080000,2.940000,126.040000,14.560000 +9,2023-08-05 01:00:00,0.000000,18.600000,59.000000,6.000000,305.000000,85.260000,78.310000,807.080000,2.950000,126.040000,14.610000 +9,2023-08-05 02:00:00,0.000000,16.200000,78.000000,8.000000,280.000000,84.980000,78.310000,807.080000,3.140000,126.040000,15.320000 +9,2023-08-05 03:00:00,0.000000,16.200000,78.000000,8.000000,280.000000,84.740000,78.310000,807.080000,3.040000,126.040000,14.940000 +9,2023-08-05 04:00:00,0.000000,16.200000,78.000000,8.000000,280.000000,84.530000,78.310000,807.080000,2.950000,126.040000,14.610000 +9,2023-08-05 05:00:00,0.000000,15.400000,91.000000,9.000000,280.000000,83.730000,78.330000,807.130000,2.790000,126.070000,13.990000 +9,2023-08-05 06:00:00,0.000000,15.400000,91.000000,9.000000,280.000000,83.050000,78.350000,807.180000,2.550000,126.090000,13.060000 +9,2023-08-05 07:00:00,0.000000,15.400000,91.000000,9.000000,280.000000,82.470000,78.370000,807.230000,2.370000,126.120000,12.320000 +9,2023-08-05 08:00:00,0.000000,19.600000,69.000000,11.000000,298.000000,82.630000,78.450000,807.450000,2.680000,126.240000,13.560000 +9,2023-08-05 09:00:00,0.000000,19.600000,69.000000,11.000000,298.000000,82.770000,78.540000,807.670000,2.730000,126.370000,13.760000 +9,2023-08-05 10:00:00,0.000000,19.600000,69.000000,11.000000,298.000000,82.900000,78.630000,807.890000,2.770000,126.490000,13.940000 +9,2023-08-05 11:00:00,0.000000,23.600000,42.000000,12.000000,320.000000,83.920000,78.850000,808.410000,3.330000,126.780000,16.060000 +9,2023-08-05 12:00:00,0.000000,23.600000,42.000000,12.000000,320.000000,84.790000,79.060000,808.930000,3.740000,127.070000,17.540000 +9,2023-08-05 13:00:00,0.000000,23.600000,42.000000,12.000000,320.000000,85.520000,79.280000,809.460000,4.140000,127.370000,18.920000 +9,2023-08-05 14:00:00,0.000000,24.900000,33.000000,13.000000,329.000000,86.540000,79.540000,810.110000,5.030000,127.730000,21.790000 +9,2023-08-05 15:00:00,0.000000,24.900000,33.000000,13.000000,329.000000,87.390000,79.810000,810.770000,5.670000,128.100000,23.760000 +9,2023-08-05 16:00:00,0.000000,24.900000,33.000000,13.000000,329.000000,88.090000,80.080000,811.420000,6.270000,128.460000,25.510000 +9,2023-08-05 17:00:00,0.000000,24.100000,33.000000,12.000000,341.000000,88.620000,80.330000,812.050000,6.440000,128.810000,26.000000 +9,2023-08-05 18:00:00,0.000000,24.100000,33.000000,12.000000,341.000000,89.060000,80.590000,812.670000,6.860000,129.150000,27.190000 +9,2023-08-05 19:00:00,0.000000,24.100000,33.000000,12.000000,341.000000,89.430000,80.840000,813.300000,7.230000,129.500000,28.210000 +9,2023-08-05 20:00:00,0.000000,22.300000,38.000000,8.000000,2.000000,89.500000,81.050000,813.810000,5.970000,129.790000,24.740000 +9,2023-08-05 21:00:00,0.000000,22.300000,38.000000,8.000000,2.000000,89.560000,81.260000,814.330000,6.020000,130.080000,24.910000 +9,2023-08-05 22:00:00,0.000000,22.300000,38.000000,8.000000,2.000000,89.610000,81.260000,814.330000,6.060000,130.080000,25.030000 +9,2023-08-05 23:00:00,0.000000,17.300000,54.000000,5.000000,320.000000,89.400000,81.260000,814.330000,5.060000,130.080000,22.040000 +9,2023-08-06 00:00:00,0.000000,17.300000,54.000000,5.000000,320.000000,89.220000,81.260000,814.330000,4.930000,130.080000,21.630000 +9,2023-08-06 01:00:00,0.000000,17.300000,54.000000,5.000000,320.000000,89.060000,81.260000,814.330000,4.810000,130.080000,21.270000 +9,2023-08-06 02:00:00,0.000000,14.900000,64.000000,7.000000,297.000000,88.660000,81.260000,814.330000,5.030000,130.080000,21.950000 +9,2023-08-06 03:00:00,0.000000,14.900000,64.000000,7.000000,297.000000,88.310000,81.260000,814.330000,4.780000,130.080000,21.170000 +9,2023-08-06 04:00:00,0.000000,14.900000,64.000000,7.000000,297.000000,88.000000,81.260000,814.330000,4.580000,130.080000,20.510000 +9,2023-08-06 05:00:00,0.000000,14.100000,72.000000,8.000000,315.000000,87.520000,81.320000,814.470000,4.490000,130.150000,20.250000 +9,2023-08-06 06:00:00,0.000000,14.100000,72.000000,8.000000,315.000000,87.100000,81.380000,814.610000,4.230000,130.230000,19.390000 +9,2023-08-06 07:00:00,0.000000,14.100000,72.000000,8.000000,315.000000,86.740000,81.430000,814.750000,4.020000,130.310000,18.670000 +9,2023-08-06 08:00:00,0.040000,17.700000,62.000000,5.000000,329.000000,86.700000,81.530000,814.980000,3.440000,130.440000,16.640000 +9,2023-08-06 09:00:00,0.000000,17.700000,62.000000,5.000000,329.000000,86.680000,81.630000,815.220000,3.420000,130.570000,16.600000 +9,2023-08-06 10:00:00,0.000000,17.700000,62.000000,5.000000,329.000000,86.650000,81.730000,815.450000,3.410000,130.710000,16.560000 +9,2023-08-06 11:00:00,0.000000,22.400000,40.000000,10.000000,1.000000,87.090000,81.930000,815.950000,4.670000,130.980000,20.870000 +9,2023-08-06 12:00:00,0.000000,22.400000,40.000000,10.000000,1.000000,87.460000,82.140000,816.450000,4.930000,131.260000,21.700000 +9,2023-08-06 13:00:00,0.000000,22.400000,40.000000,10.000000,1.000000,87.780000,82.350000,816.950000,5.150000,131.540000,22.430000 +9,2023-08-06 14:00:00,0.000000,23.500000,32.000000,13.000000,22.000000,88.380000,82.590000,817.550000,6.540000,131.880000,26.510000 +9,2023-08-06 15:00:00,0.000000,23.500000,32.000000,13.000000,22.000000,88.880000,82.840000,818.150000,7.020000,132.220000,27.870000 +9,2023-08-06 16:00:00,0.000000,23.500000,32.000000,13.000000,22.000000,89.290000,83.090000,818.760000,7.450000,132.560000,29.050000 +9,2023-08-06 17:00:00,0.000000,22.800000,32.000000,13.000000,42.000000,89.610000,83.330000,819.330000,7.800000,132.880000,29.980000 +9,2023-08-06 18:00:00,0.000000,22.800000,32.000000,13.000000,42.000000,89.870000,83.570000,819.910000,8.100000,133.200000,30.780000 +9,2023-08-06 19:00:00,0.000000,22.800000,32.000000,13.000000,42.000000,90.090000,83.810000,820.490000,8.350000,133.520000,31.460000 +9,2023-08-06 20:00:00,0.000000,19.800000,38.000000,11.000000,56.000000,90.090000,83.990000,820.930000,7.550000,133.770000,29.410000 +9,2023-08-06 21:00:00,0.000000,19.800000,38.000000,11.000000,56.000000,90.090000,84.170000,821.370000,7.550000,134.010000,29.430000 +9,2023-08-06 22:00:00,0.000000,19.800000,38.000000,11.000000,56.000000,90.090000,84.170000,821.370000,7.550000,134.010000,29.430000 +9,2023-08-06 23:00:00,0.000000,14.000000,63.000000,6.000000,54.000000,89.600000,84.170000,821.370000,5.470000,134.010000,23.560000 +9,2023-08-07 00:00:00,0.000000,14.000000,63.000000,6.000000,54.000000,89.170000,84.170000,821.370000,5.150000,134.010000,22.550000 +9,2023-08-07 01:00:00,0.000000,14.000000,63.000000,6.000000,54.000000,88.790000,84.170000,821.370000,4.870000,134.010000,21.690000 +9,2023-08-07 02:00:00,0.000000,11.300000,80.000000,4.000000,62.000000,88.050000,84.170000,821.370000,3.960000,134.010000,18.690000 +9,2023-08-07 03:00:00,0.000000,11.300000,80.000000,4.000000,62.000000,87.400000,84.170000,821.370000,3.610000,134.010000,17.440000 +9,2023-08-07 04:00:00,0.000000,11.300000,80.000000,4.000000,62.000000,86.820000,84.170000,821.370000,3.320000,134.010000,16.400000 +9,2023-08-07 05:00:00,0.000000,10.800000,79.000000,4.000000,84.000000,86.340000,84.210000,821.450000,3.100000,134.060000,15.570000 +9,2023-08-07 06:00:00,0.000000,10.800000,79.000000,4.000000,84.000000,85.900000,84.240000,821.540000,2.920000,134.100000,14.860000 +9,2023-08-07 07:00:00,0.000000,10.800000,79.000000,4.000000,84.000000,85.510000,84.270000,821.620000,2.760000,134.150000,14.250000 +9,2023-08-07 08:00:00,0.000000,15.400000,57.000000,7.000000,100.000000,85.510000,84.370000,821.850000,3.210000,134.270000,16.000000 +9,2023-08-07 09:00:00,0.000000,15.400000,57.000000,7.000000,100.000000,85.510000,84.460000,822.090000,3.210000,134.400000,16.000000 +9,2023-08-07 10:00:00,0.000000,15.400000,57.000000,7.000000,100.000000,85.510000,84.550000,822.320000,3.210000,134.520000,16.010000 +9,2023-08-07 11:00:00,0.000000,20.700000,41.000000,11.000000,106.000000,86.020000,84.730000,822.770000,4.220000,134.760000,19.620000 +9,2023-08-07 12:00:00,0.000000,20.700000,41.000000,11.000000,106.000000,86.460000,84.900000,823.210000,4.500000,135.000000,20.530000 +9,2023-08-07 13:00:00,0.000000,20.700000,41.000000,11.000000,106.000000,86.840000,85.080000,823.660000,4.740000,135.230000,21.350000 +9,2023-08-07 14:00:00,0.000000,23.000000,34.000000,12.000000,87.000000,87.490000,85.300000,824.230000,5.470000,135.540000,23.650000 +9,2023-08-07 15:00:00,0.000000,23.000000,34.000000,12.000000,87.000000,88.040000,85.530000,824.810000,5.920000,135.840000,25.000000 +9,2023-08-07 16:00:00,0.000000,23.000000,34.000000,12.000000,87.000000,88.490000,85.760000,825.380000,6.320000,136.150000,26.180000 +9,2023-08-07 17:00:00,0.000000,23.100000,33.000000,14.000000,77.000000,88.920000,85.990000,825.970000,7.430000,136.460000,29.290000 +9,2023-08-07 18:00:00,0.000000,23.100000,33.000000,14.000000,77.000000,89.280000,86.220000,826.550000,7.830000,136.770000,30.360000 +9,2023-08-07 19:00:00,0.000000,23.100000,33.000000,14.000000,77.000000,89.580000,86.450000,827.140000,8.170000,137.080000,31.270000 +9,2023-08-07 20:00:00,0.000000,21.100000,38.000000,11.000000,70.000000,89.600000,86.640000,827.620000,7.040000,137.340000,28.290000 +9,2023-08-07 21:00:00,0.000000,21.100000,38.000000,11.000000,70.000000,89.610000,86.830000,828.100000,7.050000,137.590000,28.350000 +9,2023-08-07 22:00:00,0.000000,21.100000,38.000000,11.000000,70.000000,89.630000,86.830000,828.100000,7.070000,137.590000,28.380000 +9,2023-08-07 23:00:00,0.000000,16.200000,51.000000,8.000000,98.000000,89.450000,86.830000,828.100000,5.930000,137.590000,25.140000 +9,2023-08-08 00:00:00,0.000000,16.200000,51.000000,8.000000,98.000000,89.300000,86.830000,828.100000,5.800000,137.590000,24.750000 +9,2023-08-08 01:00:00,0.000000,16.200000,51.000000,8.000000,98.000000,89.160000,86.830000,828.100000,5.680000,137.590000,24.420000 +9,2023-08-08 02:00:00,0.000000,15.700000,51.000000,11.000000,154.000000,89.020000,86.830000,828.100000,6.480000,137.590000,26.750000 +9,2023-08-08 03:00:00,0.000000,15.700000,51.000000,11.000000,154.000000,88.900000,86.830000,828.100000,6.370000,137.590000,26.430000 +9,2023-08-08 04:00:00,0.000000,15.700000,51.000000,11.000000,154.000000,88.800000,86.830000,828.100000,6.270000,137.590000,26.160000 +9,2023-08-08 05:00:00,0.100000,16.100000,56.000000,9.000000,149.000000,88.060000,86.930000,828.340000,5.100000,137.730000,22.630000 +9,2023-08-08 06:00:00,0.000000,16.100000,56.000000,9.000000,149.000000,87.960000,87.030000,828.580000,5.030000,137.860000,22.420000 +9,2023-08-08 07:00:00,0.000000,16.100000,56.000000,9.000000,149.000000,87.870000,87.140000,828.810000,4.970000,138.000000,22.220000 +9,2023-08-08 08:00:00,0.010000,17.800000,47.000000,11.000000,135.000000,87.810000,87.270000,829.140000,5.440000,138.180000,23.730000 +9,2023-08-08 09:00:00,0.000000,17.800000,47.000000,11.000000,135.000000,87.810000,87.410000,829.460000,5.440000,138.360000,23.740000 +9,2023-08-08 10:00:00,0.000000,17.800000,47.000000,11.000000,135.000000,87.810000,87.550000,829.780000,5.440000,138.550000,23.750000 +9,2023-08-08 11:00:00,0.000000,21.400000,37.000000,12.000000,142.000000,88.140000,87.750000,830.250000,6.000000,138.820000,25.440000 +9,2023-08-08 12:00:00,0.000000,21.400000,37.000000,12.000000,142.000000,88.420000,87.950000,830.730000,6.250000,139.090000,26.180000 +9,2023-08-08 13:00:00,0.000000,21.400000,37.000000,12.000000,142.000000,88.650000,88.160000,831.200000,6.460000,139.360000,26.810000 +9,2023-08-08 14:00:00,0.070000,23.300000,35.000000,13.000000,171.000000,88.630000,88.390000,831.760000,6.770000,139.670000,27.700000 +9,2023-08-08 15:00:00,0.000000,23.300000,35.000000,13.000000,171.000000,88.970000,88.630000,832.310000,7.110000,139.990000,28.670000 +9,2023-08-08 16:00:00,0.000000,23.300000,35.000000,13.000000,171.000000,89.250000,88.860000,832.860000,7.410000,140.300000,29.500000 +9,2023-08-08 17:00:00,0.000000,22.100000,41.000000,21.000000,176.000000,89.260000,89.060000,833.320000,11.100000,140.560000,38.600000 +9,2023-08-08 18:00:00,0.000000,22.100000,41.000000,21.000000,176.000000,89.270000,89.260000,833.790000,11.110000,140.830000,38.650000 +9,2023-08-08 19:00:00,0.000000,22.100000,41.000000,21.000000,176.000000,89.270000,89.460000,834.250000,11.120000,141.090000,38.690000 +9,2023-08-08 20:00:00,0.000000,18.900000,46.000000,22.000000,166.000000,89.270000,89.610000,834.600000,11.700000,141.290000,40.000000 +9,2023-08-08 21:00:00,0.000000,18.900000,46.000000,22.000000,166.000000,89.270000,89.760000,834.950000,11.700000,141.490000,40.010000 +9,2023-08-08 22:00:00,0.000000,18.900000,46.000000,22.000000,166.000000,89.270000,89.760000,834.950000,11.700000,141.490000,40.010000 +9,2023-08-08 23:00:00,0.480000,16.300000,63.000000,20.000000,136.000000,86.250000,89.760000,834.950000,6.870000,141.490000,28.090000 +9,2023-08-09 00:00:00,0.000000,16.300000,63.000000,20.000000,136.000000,86.230000,89.760000,834.950000,6.840000,141.490000,28.020000 +9,2023-08-09 01:00:00,0.000000,16.300000,63.000000,20.000000,136.000000,86.210000,89.760000,834.950000,6.820000,141.490000,27.960000 +9,2023-08-09 02:00:00,0.080000,15.400000,65.000000,18.000000,126.000000,86.120000,89.760000,834.950000,6.090000,141.490000,25.860000 +9,2023-08-09 03:00:00,0.000000,15.400000,65.000000,18.000000,126.000000,86.040000,89.760000,834.950000,6.030000,141.490000,25.670000 +9,2023-08-09 04:00:00,0.000000,15.400000,65.000000,18.000000,126.000000,85.980000,89.760000,834.950000,5.970000,141.490000,25.510000 +9,2023-08-09 05:00:00,0.000000,15.200000,65.000000,14.000000,126.000000,85.920000,89.820000,835.130000,4.840000,141.570000,22.020000 +9,2023-08-09 06:00:00,0.000000,15.200000,65.000000,14.000000,126.000000,85.870000,89.880000,835.310000,4.810000,141.650000,21.920000 +9,2023-08-09 07:00:00,0.000000,15.200000,65.000000,14.000000,126.000000,85.830000,89.940000,835.490000,4.780000,141.730000,21.830000 +9,2023-08-09 08:00:00,0.010000,17.100000,58.000000,13.000000,132.000000,85.830000,90.020000,835.730000,4.550000,141.840000,21.060000 +9,2023-08-09 09:00:00,0.000000,17.100000,58.000000,13.000000,132.000000,85.830000,90.100000,835.970000,4.550000,141.950000,21.070000 +9,2023-08-09 10:00:00,0.000000,17.100000,58.000000,13.000000,132.000000,85.830000,90.180000,836.210000,4.550000,142.070000,21.070000 +9,2023-08-09 11:00:00,0.000000,20.700000,49.000000,17.000000,129.000000,86.100000,90.310000,836.580000,5.780000,142.230000,24.980000 +9,2023-08-09 12:00:00,0.000000,20.700000,49.000000,17.000000,129.000000,86.330000,90.430000,836.940000,5.970000,142.400000,25.560000 +9,2023-08-09 13:00:00,0.000000,20.700000,49.000000,17.000000,129.000000,86.530000,90.560000,837.310000,6.140000,142.570000,26.070000 +9,2023-08-09 14:00:00,0.000000,25.000000,41.000000,18.000000,143.000000,87.130000,90.750000,837.860000,7.030000,142.820000,28.630000 +9,2023-08-09 15:00:00,0.000000,25.000000,41.000000,18.000000,143.000000,87.620000,90.930000,838.410000,7.540000,143.070000,30.040000 +9,2023-08-09 16:00:00,0.000000,25.000000,41.000000,18.000000,143.000000,88.020000,91.120000,838.960000,7.990000,143.330000,31.250000 +9,2023-08-09 17:00:00,0.000000,25.600000,40.000000,18.000000,153.000000,88.410000,91.320000,839.540000,8.450000,143.590000,32.460000 +9,2023-08-09 18:00:00,0.000000,25.600000,40.000000,18.000000,153.000000,88.730000,91.520000,840.120000,8.840000,143.860000,33.480000 +9,2023-08-09 19:00:00,0.000000,25.600000,40.000000,18.000000,153.000000,88.990000,91.720000,840.700000,9.180000,144.120000,34.330000 +9,2023-08-09 20:00:00,0.000000,24.000000,44.000000,15.000000,151.000000,89.000000,91.880000,841.190000,7.900000,144.350000,31.090000 +9,2023-08-09 21:00:00,0.000000,24.000000,44.000000,15.000000,151.000000,89.010000,92.050000,841.680000,7.920000,144.570000,31.140000 +9,2023-08-09 22:00:00,0.000000,24.000000,44.000000,15.000000,151.000000,89.020000,92.050000,841.680000,7.930000,144.570000,31.170000 +9,2023-08-09 23:00:00,0.000000,21.100000,53.000000,13.000000,143.000000,88.950000,92.050000,841.680000,7.100000,144.570000,28.920000 +9,2023-08-10 00:00:00,0.000000,21.100000,53.000000,13.000000,143.000000,88.900000,92.050000,841.680000,7.040000,144.570000,28.760000 +9,2023-08-10 01:00:00,0.000000,21.100000,53.000000,13.000000,143.000000,88.850000,92.050000,841.680000,6.990000,144.570000,28.620000 +9,2023-08-10 02:00:00,1.500000,17.400000,86.000000,10.000000,146.000000,60.540000,81.290000,826.800000,0.700000,130.500000,4.090000 +9,2023-08-10 03:00:00,0.000000,17.400000,86.000000,10.000000,146.000000,61.550000,81.290000,826.800000,0.740000,130.500000,4.360000 +9,2023-08-10 04:00:00,0.000000,17.400000,86.000000,10.000000,146.000000,62.510000,81.290000,826.800000,0.780000,130.500000,4.590000 +9,2023-08-10 05:00:00,0.030000,16.200000,93.000000,10.000000,136.000000,62.480000,81.040000,826.590000,0.780000,130.170000,4.580000 +9,2023-08-10 06:00:00,0.000000,16.200000,93.000000,10.000000,136.000000,62.910000,81.070000,826.670000,0.800000,130.210000,4.690000 +9,2023-08-10 07:00:00,0.000000,16.200000,93.000000,10.000000,136.000000,63.330000,81.090000,826.750000,0.810000,130.250000,4.780000 +9,2023-08-10 08:00:00,0.000000,18.000000,82.000000,11.000000,153.000000,64.500000,81.170000,826.990000,0.900000,130.360000,5.310000 +9,2023-08-10 09:00:00,0.000000,18.000000,82.000000,11.000000,153.000000,65.600000,81.250000,827.230000,0.940000,130.470000,5.550000 +9,2023-08-10 10:00:00,0.000000,18.000000,82.000000,11.000000,153.000000,66.630000,81.330000,827.470000,0.980000,130.580000,5.760000 +9,2023-08-10 11:00:00,0.000000,23.400000,53.000000,12.000000,184.000000,69.360000,81.620000,828.350000,1.120000,130.980000,6.590000 +9,2023-08-10 12:00:00,0.000000,23.400000,53.000000,12.000000,184.000000,71.780000,81.910000,829.230000,1.220000,131.380000,7.100000 +9,2023-08-10 13:00:00,0.000000,23.400000,53.000000,12.000000,184.000000,73.900000,82.200000,830.100000,1.330000,131.770000,7.690000 +9,2023-08-10 14:00:00,2.160000,25.000000,54.000000,11.000000,204.000000,48.060000,70.380000,809.610000,0.220000,115.630000,0.680000 +9,2023-08-10 15:00:00,0.000000,25.000000,54.000000,11.000000,204.000000,52.700000,70.690000,810.560000,0.390000,116.070000,1.670000 +9,2023-08-10 16:00:00,0.000000,25.000000,54.000000,11.000000,204.000000,56.940000,71.000000,811.500000,0.570000,116.520000,3.000000 +9,2023-08-10 17:00:00,5.290000,21.200000,88.000000,7.000000,193.000000,21.660000,50.450000,759.200000,0.000000,86.530000,0.000000 +9,2023-08-10 18:00:00,0.000000,21.200000,88.000000,7.000000,193.000000,23.610000,50.520000,759.400000,0.000000,86.620000,0.000000 +9,2023-08-10 19:00:00,0.000000,21.200000,88.000000,7.000000,193.000000,25.530000,50.580000,759.590000,0.000000,86.720000,0.000000 +9,2023-08-10 20:00:00,0.000000,21.200000,88.000000,7.000000,193.000000,27.420000,50.640000,759.790000,0.000000,86.820000,0.010000 +9,2023-08-10 21:00:00,0.000000,21.200000,88.000000,7.000000,193.000000,29.290000,50.640000,759.790000,0.000000,86.820000,0.010000 +9,2023-08-10 22:00:00,0.000000,21.200000,88.000000,7.000000,193.000000,31.130000,50.640000,759.790000,0.010000,86.820000,0.020000 +9,2023-08-10 23:00:00,0.000000,17.200000,85.000000,9.000000,225.000000,33.120000,50.640000,759.790000,0.010000,86.820000,0.030000 +9,2023-08-11 00:00:00,0.000000,17.200000,85.000000,9.000000,225.000000,35.070000,50.640000,759.790000,0.020000,86.820000,0.050000 +9,2023-08-11 01:00:00,0.000000,17.200000,85.000000,9.000000,225.000000,36.970000,50.640000,759.790000,0.030000,86.820000,0.070000 +9,2023-08-11 02:00:00,0.000000,17.200000,85.000000,9.000000,225.000000,38.830000,50.640000,759.790000,0.040000,86.820000,0.110000 +9,2023-08-11 03:00:00,0.000000,17.200000,85.000000,9.000000,225.000000,40.640000,50.640000,759.790000,0.060000,86.820000,0.150000 +9,2023-08-11 04:00:00,0.000000,17.200000,85.000000,9.000000,225.000000,42.400000,50.640000,759.790000,0.080000,86.820000,0.210000 +9,2023-08-11 05:00:00,0.000000,16.000000,77.000000,8.000000,224.000000,44.560000,50.700000,759.930000,0.110000,86.900000,0.290000 +9,2023-08-11 06:00:00,0.000000,16.000000,77.000000,8.000000,224.000000,46.650000,50.750000,760.080000,0.160000,86.980000,0.400000 +9,2023-08-11 07:00:00,0.000000,16.000000,77.000000,8.000000,224.000000,48.650000,50.810000,760.220000,0.210000,87.060000,0.520000 +9,2023-08-11 08:00:00,0.000000,16.000000,77.000000,8.000000,224.000000,50.580000,50.860000,760.370000,0.260000,87.150000,0.660000 +9,2023-08-11 09:00:00,0.000000,16.000000,77.000000,8.000000,224.000000,52.420000,50.910000,760.520000,0.320000,87.230000,0.820000 +9,2023-08-11 10:00:00,0.000000,16.000000,77.000000,8.000000,224.000000,54.190000,50.970000,760.660000,0.390000,87.310000,0.980000 +9,2023-08-11 11:00:00,0.000000,24.100000,48.000000,12.000000,199.000000,58.550000,51.170000,761.200000,0.680000,87.610000,2.910000 +9,2023-08-11 12:00:00,0.000000,24.100000,48.000000,12.000000,199.000000,62.480000,51.370000,761.750000,0.860000,87.910000,3.870000 +9,2023-08-11 13:00:00,0.000000,24.100000,48.000000,12.000000,199.000000,65.990000,51.570000,762.290000,1.000000,88.210000,4.570000 +9,2023-08-11 14:00:00,0.000000,24.100000,48.000000,12.000000,199.000000,69.100000,51.770000,762.830000,1.110000,88.520000,5.100000 +9,2023-08-11 15:00:00,0.000000,24.100000,48.000000,12.000000,199.000000,71.840000,51.970000,763.380000,1.220000,88.820000,5.590000 +9,2023-08-11 16:00:00,0.000000,24.100000,48.000000,12.000000,199.000000,74.230000,52.170000,763.920000,1.350000,89.120000,6.180000 +9,2023-08-11 17:00:00,0.000000,25.900000,31.000000,11.000000,219.000000,77.180000,52.460000,764.720000,1.530000,89.560000,7.000000 +9,2023-08-11 18:00:00,0.000000,25.900000,31.000000,11.000000,219.000000,79.680000,52.760000,765.530000,1.910000,90.010000,8.560000 +9,2023-08-11 19:00:00,0.000000,25.900000,31.000000,11.000000,219.000000,81.790000,53.050000,766.330000,2.420000,90.450000,10.460000 +9,2023-08-11 20:00:00,0.000000,25.900000,31.000000,11.000000,219.000000,83.550000,53.350000,767.130000,3.020000,90.900000,12.550000 +9,2023-08-11 21:00:00,0.000000,25.900000,31.000000,11.000000,219.000000,85.020000,53.350000,767.130000,3.680000,90.900000,14.660000 +9,2023-08-11 22:00:00,0.000000,25.900000,31.000000,11.000000,219.000000,86.250000,53.350000,767.130000,4.360000,90.900000,16.680000 +9,2023-08-11 23:00:00,0.000000,19.200000,49.000000,8.000000,201.000000,86.390000,53.350000,767.130000,3.820000,90.900000,15.100000 +9,2023-08-12 00:00:00,0.000000,19.200000,49.000000,8.000000,201.000000,86.510000,53.350000,767.130000,3.890000,90.900000,15.310000 +9,2023-08-12 01:00:00,0.000000,19.200000,49.000000,8.000000,201.000000,86.620000,53.350000,767.130000,3.950000,90.900000,15.490000 +9,2023-08-12 02:00:00,0.000000,19.200000,49.000000,8.000000,201.000000,86.720000,53.350000,767.130000,4.010000,90.900000,15.650000 +9,2023-08-12 03:00:00,0.000000,19.200000,49.000000,8.000000,201.000000,86.800000,53.350000,767.130000,4.050000,90.900000,15.790000 +9,2023-08-12 04:00:00,0.000000,19.200000,49.000000,8.000000,201.000000,86.870000,53.350000,767.130000,4.100000,90.900000,15.920000 +9,2023-08-12 05:00:00,0.770000,15.900000,89.000000,5.000000,289.000000,79.660000,53.370000,767.220000,1.410000,90.930000,6.550000 +9,2023-08-12 06:00:00,0.000000,15.900000,89.000000,5.000000,289.000000,79.660000,53.400000,767.310000,1.410000,90.970000,6.550000 +9,2023-08-12 07:00:00,0.000000,15.900000,89.000000,5.000000,289.000000,79.660000,53.420000,767.400000,1.410000,91.010000,6.550000 +9,2023-08-12 08:00:00,0.000000,15.900000,89.000000,5.000000,289.000000,79.660000,53.450000,767.480000,1.410000,91.050000,6.560000 +9,2023-08-12 09:00:00,0.000000,15.900000,89.000000,5.000000,289.000000,79.660000,53.480000,767.570000,1.410000,91.090000,6.560000 +9,2023-08-12 10:00:00,0.000000,15.900000,89.000000,5.000000,289.000000,79.660000,53.500000,767.660000,1.410000,91.120000,6.560000 +9,2023-08-12 11:00:00,0.050000,21.300000,58.000000,13.000000,270.000000,80.130000,53.630000,768.130000,2.220000,91.330000,9.790000 +9,2023-08-12 12:00:00,0.000000,21.300000,58.000000,13.000000,270.000000,80.920000,53.770000,768.610000,2.420000,91.530000,10.540000 +9,2023-08-12 13:00:00,0.000000,21.300000,58.000000,13.000000,270.000000,81.620000,53.900000,769.080000,2.620000,91.730000,11.270000 +9,2023-08-12 14:00:00,0.000000,21.300000,58.000000,13.000000,270.000000,82.220000,54.040000,769.550000,2.820000,91.940000,11.960000 +9,2023-08-12 15:00:00,0.000000,21.300000,58.000000,13.000000,270.000000,82.750000,54.170000,770.030000,3.010000,92.140000,12.620000 +9,2023-08-12 16:00:00,0.000000,21.300000,58.000000,13.000000,270.000000,83.210000,54.310000,770.500000,3.190000,92.340000,13.240000 +9,2023-08-12 17:00:00,0.000000,24.600000,37.000000,16.000000,298.000000,84.490000,54.550000,771.370000,4.400000,92.710000,16.980000 +9,2023-08-12 18:00:00,0.000000,24.600000,37.000000,16.000000,298.000000,85.560000,54.800000,772.230000,5.090000,93.080000,18.960000 +9,2023-08-12 19:00:00,0.000000,24.600000,37.000000,16.000000,298.000000,86.440000,55.050000,773.100000,5.770000,93.460000,20.790000 +9,2023-08-12 20:00:00,0.000000,24.600000,37.000000,16.000000,298.000000,87.170000,55.290000,773.970000,6.390000,93.830000,22.430000 +9,2023-08-12 21:00:00,0.000000,24.600000,37.000000,16.000000,298.000000,87.770000,55.290000,773.970000,6.970000,93.830000,23.830000 +9,2023-08-12 22:00:00,0.000000,24.600000,37.000000,16.000000,298.000000,88.260000,55.290000,773.970000,7.470000,93.830000,25.030000 +9,2023-08-12 23:00:00,0.000000,18.400000,66.000000,10.000000,256.000000,87.930000,55.290000,773.970000,5.260000,93.830000,19.500000 +9,2023-08-13 00:00:00,0.000000,18.400000,66.000000,10.000000,256.000000,87.640000,55.290000,773.970000,5.050000,93.830000,18.930000 +9,2023-08-13 01:00:00,0.000000,18.400000,66.000000,10.000000,256.000000,87.390000,55.290000,773.970000,4.880000,93.830000,18.440000 +9,2023-08-13 02:00:00,0.000000,18.400000,66.000000,10.000000,256.000000,87.180000,55.290000,773.970000,4.730000,93.830000,18.040000 +9,2023-08-13 03:00:00,0.000000,18.400000,66.000000,10.000000,256.000000,87.000000,55.290000,773.970000,4.610000,93.830000,17.690000 +9,2023-08-13 04:00:00,0.000000,18.400000,66.000000,10.000000,256.000000,86.840000,55.290000,773.970000,4.510000,93.830000,17.400000 +9,2023-08-13 05:00:00,0.000000,16.500000,62.000000,11.000000,264.000000,86.770000,55.380000,774.170000,4.690000,93.960000,17.940000 +9,2023-08-13 06:00:00,0.000000,16.500000,62.000000,11.000000,264.000000,86.700000,55.470000,774.370000,4.650000,94.100000,17.830000 +9,2023-08-13 07:00:00,0.000000,16.500000,62.000000,11.000000,264.000000,86.650000,55.570000,774.570000,4.610000,94.230000,17.740000 +9,2023-08-13 08:00:00,0.000000,16.500000,62.000000,11.000000,264.000000,86.600000,55.660000,774.760000,4.580000,94.370000,17.670000 +9,2023-08-13 09:00:00,0.000000,16.500000,62.000000,11.000000,264.000000,86.560000,55.750000,774.960000,4.560000,94.500000,17.600000 +9,2023-08-13 10:00:00,0.000000,16.500000,62.000000,11.000000,264.000000,86.520000,55.840000,775.160000,4.530000,94.640000,17.550000 +9,2023-08-13 11:00:00,0.000000,23.800000,35.000000,10.000000,262.000000,87.200000,56.080000,775.700000,4.750000,95.000000,18.200000 +9,2023-08-13 12:00:00,0.000000,23.800000,35.000000,10.000000,262.000000,87.780000,56.330000,776.230000,5.150000,95.360000,19.370000 +9,2023-08-13 13:00:00,0.000000,23.800000,35.000000,10.000000,262.000000,88.260000,56.570000,776.770000,5.520000,95.720000,20.410000 +9,2023-08-13 14:00:00,0.000000,23.800000,35.000000,10.000000,262.000000,88.670000,56.820000,777.300000,5.850000,96.080000,21.320000 +9,2023-08-13 15:00:00,0.000000,23.800000,35.000000,10.000000,262.000000,89.000000,57.060000,777.830000,6.150000,96.440000,22.110000 +9,2023-08-13 16:00:00,0.000000,23.800000,35.000000,10.000000,262.000000,89.290000,57.310000,778.370000,6.400000,96.800000,22.810000 +9,2023-08-13 17:00:00,0.000000,26.900000,27.000000,5.000000,279.000000,89.900000,57.640000,779.090000,5.430000,97.290000,20.330000 +9,2023-08-13 18:00:00,0.000000,26.900000,27.000000,5.000000,279.000000,90.410000,57.970000,779.810000,5.840000,97.770000,21.480000 +9,2023-08-13 19:00:00,0.000000,26.900000,27.000000,5.000000,279.000000,90.830000,58.300000,780.530000,6.210000,98.260000,22.480000 +9,2023-08-13 20:00:00,0.000000,26.900000,27.000000,5.000000,279.000000,91.180000,58.630000,781.260000,6.530000,98.740000,23.350000 +9,2023-08-13 21:00:00,0.000000,26.900000,27.000000,5.000000,279.000000,91.470000,58.630000,781.260000,6.800000,98.740000,24.040000 +9,2023-08-13 22:00:00,0.000000,26.900000,27.000000,5.000000,279.000000,91.720000,58.630000,781.260000,7.040000,98.740000,24.620000 +9,2023-08-13 23:00:00,0.000000,18.100000,49.000000,3.000000,141.000000,91.410000,58.630000,781.260000,6.100000,98.740000,22.250000 +9,2023-08-14 00:00:00,0.000000,18.100000,49.000000,3.000000,141.000000,91.140000,58.630000,781.260000,5.870000,98.740000,21.650000 +9,2023-08-14 01:00:00,0.000000,18.100000,49.000000,3.000000,141.000000,90.900000,58.630000,781.260000,5.670000,98.740000,21.110000 +9,2023-08-14 02:00:00,0.000000,18.100000,49.000000,3.000000,141.000000,90.680000,58.630000,781.260000,5.490000,98.740000,20.650000 +9,2023-08-14 03:00:00,0.000000,18.100000,49.000000,3.000000,141.000000,90.480000,58.630000,781.260000,5.340000,98.740000,20.230000 +9,2023-08-14 04:00:00,0.000000,18.100000,49.000000,3.000000,141.000000,90.310000,58.630000,781.260000,5.210000,98.740000,19.870000 +9,2023-08-14 05:00:00,0.000000,13.800000,57.000000,8.000000,183.000000,89.910000,58.720000,781.430000,6.320000,98.870000,22.850000 +9,2023-08-14 06:00:00,0.000000,13.800000,57.000000,8.000000,183.000000,89.550000,58.810000,781.600000,6.010000,98.990000,22.050000 +9,2023-08-14 07:00:00,0.000000,13.800000,57.000000,8.000000,183.000000,89.230000,58.900000,781.780000,5.740000,99.120000,21.360000 +9,2023-08-14 08:00:00,0.000000,13.800000,57.000000,8.000000,183.000000,88.950000,58.980000,781.950000,5.520000,99.250000,20.770000 +9,2023-08-14 09:00:00,0.000000,13.800000,57.000000,8.000000,183.000000,88.700000,59.070000,782.120000,5.320000,99.380000,20.250000 +9,2023-08-14 10:00:00,0.000000,13.800000,57.000000,8.000000,183.000000,88.480000,59.160000,782.300000,5.160000,99.500000,19.800000 +9,2023-08-14 11:00:00,0.000000,26.300000,31.000000,13.000000,188.000000,89.140000,59.460000,782.900000,7.290000,99.950000,25.380000 +9,2023-08-14 12:00:00,0.000000,26.300000,31.000000,13.000000,188.000000,89.680000,59.760000,783.500000,7.870000,100.390000,26.820000 +9,2023-08-14 13:00:00,0.000000,26.300000,31.000000,13.000000,188.000000,90.110000,60.070000,784.100000,8.380000,100.830000,28.050000 +9,2023-08-14 14:00:00,0.000000,26.300000,31.000000,13.000000,188.000000,90.460000,60.370000,784.710000,8.810000,101.270000,29.090000 +9,2023-08-14 15:00:00,0.000000,26.300000,31.000000,13.000000,188.000000,90.750000,60.680000,785.310000,9.180000,101.710000,29.970000 +9,2023-08-14 16:00:00,0.000000,26.300000,31.000000,13.000000,188.000000,90.980000,60.980000,785.910000,9.490000,102.150000,30.700000 +9,2023-08-14 17:00:00,0.000000,29.100000,25.000000,14.000000,181.000000,91.570000,61.370000,786.680000,10.850000,102.710000,33.670000 +9,2023-08-14 18:00:00,0.000000,29.100000,25.000000,14.000000,181.000000,92.030000,61.760000,787.450000,11.580000,103.270000,35.240000 +9,2023-08-14 19:00:00,0.000000,29.100000,25.000000,14.000000,181.000000,92.390000,62.150000,788.220000,12.190000,103.830000,36.540000 +9,2023-08-14 20:00:00,0.000000,29.100000,25.000000,14.000000,181.000000,92.670000,62.540000,788.990000,12.680000,104.390000,37.590000 +9,2023-08-14 21:00:00,0.000000,29.100000,25.000000,14.000000,181.000000,92.900000,62.540000,788.990000,13.090000,104.390000,38.370000 +9,2023-08-14 22:00:00,0.000000,29.100000,25.000000,14.000000,181.000000,93.070000,62.540000,788.990000,13.410000,104.390000,38.980000 +9,2023-08-14 23:00:00,0.000000,21.700000,42.000000,11.000000,185.000000,92.730000,62.540000,788.990000,11.000000,104.390000,34.230000 +9,2023-08-15 00:00:00,0.000000,21.700000,42.000000,11.000000,185.000000,92.440000,62.540000,788.990000,10.560000,104.390000,33.310000 +9,2023-08-15 01:00:00,0.000000,21.700000,42.000000,11.000000,185.000000,92.190000,62.540000,788.990000,10.190000,104.390000,32.540000 +9,2023-08-15 02:00:00,0.000000,21.700000,42.000000,11.000000,185.000000,91.980000,62.540000,788.990000,9.880000,104.390000,31.880000 +9,2023-08-15 03:00:00,0.000000,21.700000,42.000000,11.000000,185.000000,91.790000,62.540000,788.990000,9.620000,104.390000,31.310000 +9,2023-08-15 04:00:00,0.000000,21.700000,42.000000,11.000000,185.000000,91.630000,62.540000,788.990000,9.400000,104.390000,30.830000 +9,2023-08-15 05:00:00,0.000000,18.600000,51.000000,12.000000,181.000000,91.200000,62.650000,789.220000,9.310000,104.560000,30.660000 +9,2023-08-15 06:00:00,0.000000,18.600000,51.000000,12.000000,181.000000,90.840000,62.770000,789.450000,8.840000,104.720000,29.620000 +9,2023-08-15 07:00:00,0.000000,18.600000,51.000000,12.000000,181.000000,90.520000,62.890000,789.680000,8.450000,104.890000,28.750000 +9,2023-08-15 08:00:00,0.000000,18.600000,51.000000,12.000000,181.000000,90.250000,63.000000,789.910000,8.130000,105.060000,28.020000 +9,2023-08-15 09:00:00,0.000000,18.600000,51.000000,12.000000,181.000000,90.020000,63.120000,790.130000,7.860000,105.230000,27.400000 +9,2023-08-15 10:00:00,0.000000,18.600000,51.000000,12.000000,181.000000,89.810000,63.240000,790.360000,7.640000,105.390000,26.870000 +9,2023-08-15 11:00:00,0.000000,28.900000,32.000000,9.000000,200.000000,90.270000,63.540000,790.950000,7.010000,105.820000,25.380000 +9,2023-08-15 12:00:00,0.000000,28.900000,32.000000,9.000000,200.000000,90.650000,63.840000,791.540000,7.400000,106.260000,26.390000 +9,2023-08-15 13:00:00,0.000000,28.900000,32.000000,9.000000,200.000000,90.950000,64.140000,792.120000,7.720000,106.690000,27.230000 +9,2023-08-15 14:00:00,0.000000,28.900000,32.000000,9.000000,200.000000,91.190000,64.440000,792.710000,7.990000,107.120000,27.930000 +9,2023-08-15 15:00:00,0.000000,28.900000,32.000000,9.000000,200.000000,91.390000,64.740000,793.300000,8.220000,107.550000,28.520000 +9,2023-08-15 16:00:00,0.000000,28.900000,32.000000,9.000000,200.000000,91.540000,65.050000,793.880000,8.400000,107.970000,29.010000 +9,2023-08-15 17:00:00,0.000000,33.000000,24.000000,1.000000,304.000000,92.090000,65.470000,794.710000,6.070000,108.580000,23.210000 +9,2023-08-15 18:00:00,0.000000,33.000000,24.000000,1.000000,304.000000,92.540000,65.900000,795.540000,6.460000,109.180000,24.330000 +9,2023-08-15 19:00:00,0.000000,33.000000,24.000000,1.000000,304.000000,92.910000,66.320000,796.370000,6.810000,109.790000,25.290000 +9,2023-08-15 20:00:00,0.000000,33.000000,24.000000,1.000000,304.000000,93.210000,66.750000,797.200000,7.100000,110.390000,26.110000 +9,2023-08-15 21:00:00,0.000000,33.000000,24.000000,1.000000,304.000000,93.460000,66.750000,797.200000,7.350000,110.390000,26.740000 +9,2023-08-15 22:00:00,0.000000,33.000000,24.000000,1.000000,304.000000,93.660000,66.750000,797.200000,7.560000,110.390000,27.260000 +9,2023-08-15 23:00:00,0.000000,23.100000,45.000000,8.000000,195.000000,93.200000,66.750000,797.200000,10.090000,110.390000,33.120000 +9,2023-08-16 00:00:00,0.000000,23.100000,45.000000,8.000000,195.000000,92.800000,66.750000,797.200000,9.540000,110.390000,31.910000 +9,2023-08-16 01:00:00,0.000000,23.100000,45.000000,8.000000,195.000000,92.450000,66.750000,797.200000,9.090000,110.390000,30.900000 +9,2023-08-16 02:00:00,0.000000,23.100000,45.000000,8.000000,195.000000,92.160000,66.750000,797.200000,8.720000,110.390000,30.040000 +9,2023-08-16 03:00:00,0.000000,23.100000,45.000000,8.000000,195.000000,91.900000,66.750000,797.200000,8.410000,110.390000,29.310000 +9,2023-08-16 04:00:00,0.000000,23.100000,45.000000,8.000000,195.000000,91.680000,66.750000,797.200000,8.150000,110.390000,28.700000 +9,2023-08-16 05:00:00,0.000000,19.700000,51.000000,12.000000,178.000000,91.260000,66.870000,797.440000,9.390000,110.560000,31.610000 +9,2023-08-16 06:00:00,0.000000,19.700000,51.000000,12.000000,178.000000,90.900000,66.990000,797.670000,8.920000,110.740000,30.550000 +9,2023-08-16 07:00:00,0.000000,19.700000,51.000000,12.000000,178.000000,90.590000,67.120000,797.910000,8.540000,110.910000,29.680000 +9,2023-08-16 08:00:00,0.000000,19.700000,51.000000,12.000000,178.000000,90.330000,67.240000,798.150000,8.220000,111.090000,28.940000 +9,2023-08-16 09:00:00,0.000000,19.700000,51.000000,12.000000,178.000000,90.100000,67.370000,798.380000,7.950000,111.260000,28.320000 +9,2023-08-16 10:00:00,0.000000,19.700000,51.000000,12.000000,178.000000,89.900000,67.490000,798.620000,7.730000,111.440000,27.790000 +9,2023-08-16 11:00:00,0.000000,29.200000,31.000000,16.000000,173.000000,90.450000,67.800000,799.210000,10.240000,111.870000,33.640000 +9,2023-08-16 12:00:00,0.000000,29.200000,31.000000,16.000000,173.000000,90.890000,68.100000,799.800000,10.890000,112.300000,35.110000 +9,2023-08-16 13:00:00,0.000000,29.200000,31.000000,16.000000,173.000000,91.230000,68.410000,800.380000,11.430000,112.730000,36.310000 +9,2023-08-16 14:00:00,0.000000,29.200000,31.000000,16.000000,173.000000,91.500000,68.720000,800.970000,11.880000,113.160000,37.280000 +9,2023-08-16 15:00:00,0.000000,29.200000,31.000000,16.000000,173.000000,91.700000,69.030000,801.560000,12.230000,113.600000,38.070000 +9,2023-08-16 16:00:00,0.000000,29.200000,31.000000,16.000000,173.000000,91.870000,69.330000,802.150000,12.520000,114.030000,38.700000 +9,2023-08-16 17:00:00,0.000000,33.300000,23.000000,14.000000,179.000000,92.610000,69.770000,802.980000,12.560000,114.630000,38.880000 +9,2023-08-16 18:00:00,0.000000,33.300000,23.000000,14.000000,179.000000,93.160000,70.200000,803.800000,13.590000,115.240000,40.990000 +9,2023-08-16 19:00:00,0.000000,33.300000,23.000000,14.000000,179.000000,93.580000,70.630000,804.630000,14.410000,115.840000,42.650000 +9,2023-08-16 20:00:00,0.000000,33.300000,23.000000,14.000000,179.000000,93.900000,71.060000,805.460000,15.050000,116.440000,43.940000 +9,2023-08-16 21:00:00,0.000000,33.300000,23.000000,14.000000,179.000000,94.130000,71.060000,805.460000,15.550000,116.440000,44.870000 +9,2023-08-16 22:00:00,0.000000,33.300000,23.000000,14.000000,179.000000,94.310000,71.060000,805.460000,15.930000,116.440000,45.570000 +9,2023-08-16 23:00:00,0.000000,24.100000,42.000000,10.000000,181.000000,93.830000,71.060000,805.460000,12.190000,116.440000,38.370000 +9,2023-08-17 00:00:00,0.000000,24.100000,42.000000,10.000000,181.000000,93.420000,71.060000,805.460000,11.520000,116.440000,36.970000 +9,2023-08-17 01:00:00,0.000000,24.100000,42.000000,10.000000,181.000000,93.070000,71.060000,805.460000,10.970000,116.440000,35.810000 +9,2023-08-17 02:00:00,0.000000,24.100000,42.000000,10.000000,181.000000,92.780000,71.060000,805.460000,10.520000,116.440000,34.830000 +9,2023-08-17 03:00:00,0.000000,24.100000,42.000000,10.000000,181.000000,92.520000,71.060000,805.460000,10.150000,116.440000,34.010000 +9,2023-08-17 04:00:00,0.000000,24.100000,42.000000,10.000000,181.000000,92.300000,71.060000,805.460000,9.840000,116.440000,33.320000 +9,2023-08-17 05:00:00,0.000000,20.200000,58.000000,10.000000,171.000000,91.610000,71.060000,805.460000,8.930000,116.440000,31.220000 +9,2023-08-17 06:00:00,0.000000,20.200000,58.000000,10.000000,171.000000,91.030000,71.180000,805.680000,8.210000,116.600000,29.530000 +9,2023-08-17 07:00:00,0.000000,20.200000,58.000000,10.000000,171.000000,90.530000,71.290000,805.890000,7.650000,116.750000,28.150000 +9,2023-08-17 08:00:00,0.000000,20.200000,58.000000,10.000000,171.000000,90.100000,71.400000,806.110000,7.200000,116.910000,27.010000 +9,2023-08-17 09:00:00,0.000000,20.200000,58.000000,10.000000,171.000000,89.740000,71.510000,806.330000,6.830000,117.060000,26.070000 +9,2023-08-17 10:00:00,0.000000,20.200000,58.000000,10.000000,171.000000,89.430000,71.620000,806.550000,6.530000,117.220000,25.290000 +9,2023-08-17 11:00:00,0.000000,30.100000,33.000000,11.000000,132.000000,90.000000,71.940000,807.170000,7.460000,117.660000,27.760000 +9,2023-08-17 12:00:00,0.000000,30.100000,33.000000,11.000000,132.000000,90.460000,72.260000,807.790000,7.960000,118.110000,29.070000 +9,2023-08-17 13:00:00,0.000000,30.100000,33.000000,11.000000,132.000000,90.820000,72.580000,808.420000,8.380000,118.550000,30.150000 +9,2023-08-17 14:00:00,0.000000,30.100000,33.000000,11.000000,132.000000,91.110000,72.900000,809.040000,8.730000,118.990000,31.040000 +9,2023-08-17 15:00:00,0.000000,30.100000,33.000000,11.000000,132.000000,91.330000,73.220000,809.670000,9.020000,119.440000,31.770000 +9,2023-08-17 16:00:00,0.000000,30.100000,33.000000,11.000000,132.000000,91.510000,73.540000,810.290000,9.260000,119.880000,32.370000 +9,2023-08-17 17:00:00,0.000000,34.300000,24.000000,16.000000,109.000000,92.370000,74.000000,811.190000,13.440000,120.510000,41.430000 +9,2023-08-17 18:00:00,0.000000,34.300000,24.000000,16.000000,109.000000,93.010000,74.460000,812.090000,14.700000,121.150000,43.960000 +9,2023-08-17 19:00:00,0.000000,34.300000,24.000000,16.000000,109.000000,93.480000,74.920000,812.980000,15.700000,121.780000,45.920000 +9,2023-08-17 20:00:00,0.000000,34.300000,24.000000,16.000000,109.000000,93.820000,75.380000,813.880000,16.480000,122.410000,47.430000 +9,2023-08-17 21:00:00,0.000000,34.300000,24.000000,16.000000,109.000000,94.080000,75.380000,813.880000,17.070000,122.410000,48.500000 +9,2023-08-17 22:00:00,0.000000,34.300000,24.000000,16.000000,109.000000,94.270000,75.380000,813.880000,17.520000,122.410000,49.300000 +9,2023-08-17 23:00:00,0.000000,26.700000,35.000000,10.000000,138.000000,94.050000,75.380000,813.880000,12.560000,122.410000,39.880000 +9,2023-08-18 00:00:00,0.000000,26.700000,35.000000,10.000000,138.000000,93.860000,75.380000,813.880000,12.230000,122.410000,39.200000 +9,2023-08-18 01:00:00,0.000000,26.700000,35.000000,10.000000,138.000000,93.690000,75.380000,813.880000,11.960000,122.410000,38.630000 +9,2023-08-18 02:00:00,0.000000,26.700000,35.000000,10.000000,138.000000,93.550000,75.380000,813.880000,11.730000,122.410000,38.150000 +9,2023-08-18 03:00:00,0.000000,26.700000,35.000000,10.000000,138.000000,93.440000,75.380000,813.880000,11.540000,122.410000,37.740000 +9,2023-08-18 04:00:00,0.000000,26.700000,35.000000,10.000000,138.000000,93.330000,75.380000,813.880000,11.370000,122.410000,37.390000 +9,2023-08-18 05:00:00,0.000000,22.600000,53.000000,8.000000,161.000000,92.680000,75.380000,813.880000,9.380000,122.410000,32.920000 +9,2023-08-18 06:00:00,0.000000,22.600000,53.000000,8.000000,161.000000,92.120000,75.590000,814.270000,8.670000,122.700000,31.260000 +9,2023-08-18 07:00:00,0.000000,22.600000,53.000000,8.000000,161.000000,91.640000,75.800000,814.650000,8.100000,122.990000,29.890000 +9,2023-08-18 08:00:00,0.000000,22.600000,53.000000,8.000000,161.000000,91.230000,76.000000,815.040000,7.640000,123.270000,28.760000 +9,2023-08-18 09:00:00,0.000000,22.600000,53.000000,8.000000,161.000000,90.880000,76.210000,815.420000,7.270000,123.550000,27.830000 +9,2023-08-18 10:00:00,0.000000,22.600000,53.000000,8.000000,161.000000,90.590000,76.420000,815.810000,6.970000,123.840000,27.060000 +9,2023-08-18 11:00:00,0.000000,31.000000,30.000000,9.000000,187.000000,91.080000,76.930000,816.750000,7.870000,124.530000,29.460000 +9,2023-08-18 12:00:00,0.000000,31.000000,30.000000,9.000000,187.000000,91.480000,77.440000,817.690000,8.320000,125.230000,30.660000 +9,2023-08-18 13:00:00,0.000000,31.000000,30.000000,9.000000,187.000000,91.790000,77.940000,818.630000,8.700000,125.920000,31.660000 +9,2023-08-18 14:00:00,0.000000,31.000000,30.000000,9.000000,187.000000,92.040000,78.450000,819.570000,9.010000,126.610000,32.470000 +9,2023-08-18 15:00:00,0.000000,31.000000,30.000000,9.000000,187.000000,92.230000,78.960000,820.510000,9.260000,127.300000,33.140000 +9,2023-08-18 16:00:00,0.000000,31.000000,30.000000,9.000000,187.000000,92.380000,79.470000,821.450000,9.470000,127.980000,33.690000 +9,2023-08-18 17:00:00,0.000000,32.400000,30.000000,7.000000,219.000000,92.560000,80.020000,822.470000,8.770000,128.730000,32.080000 +10,2023-08-03 00:00:00,0.000000,16.000000,64.000000,4.000000,96.000000,85.980000,118.400000,826.100000,2.950000,174.330000,16.240000 +10,2023-08-03 01:00:00,0.000000,16.000000,64.000000,4.000000,96.000000,85.970000,118.400000,826.100000,2.950000,174.330000,16.210000 +10,2023-08-03 02:00:00,0.000000,13.200000,74.000000,2.000000,166.000000,85.730000,118.400000,826.100000,2.580000,174.330000,14.640000 +10,2023-08-03 03:00:00,0.000000,13.200000,74.000000,2.000000,166.000000,85.510000,118.400000,826.100000,2.500000,174.330000,14.300000 +10,2023-08-03 04:00:00,0.000000,13.200000,74.000000,2.000000,166.000000,85.320000,118.400000,826.100000,2.430000,174.330000,14.000000 +10,2023-08-03 05:00:00,0.000000,11.900000,79.000000,2.000000,205.000000,85.020000,118.440000,826.190000,2.330000,174.380000,13.560000 +10,2023-08-03 06:00:00,0.000000,11.900000,79.000000,2.000000,205.000000,84.750000,118.470000,826.270000,2.250000,174.420000,13.170000 +10,2023-08-03 07:00:00,0.000000,11.900000,79.000000,2.000000,205.000000,84.500000,118.510000,826.360000,2.180000,174.460000,12.830000 +10,2023-08-03 08:00:00,0.000000,16.900000,58.000000,4.000000,184.000000,84.590000,118.610000,826.600000,2.440000,174.580000,14.020000 +10,2023-08-03 09:00:00,0.000000,16.900000,58.000000,4.000000,184.000000,84.670000,118.700000,826.830000,2.460000,174.700000,14.150000 +10,2023-08-03 10:00:00,0.000000,16.900000,58.000000,4.000000,184.000000,84.750000,118.800000,827.070000,2.490000,174.820000,14.260000 +10,2023-08-03 11:00:00,0.000000,22.500000,40.000000,2.000000,170.000000,85.320000,119.000000,827.550000,2.430000,175.070000,14.030000 +10,2023-08-03 12:00:00,0.000000,22.500000,40.000000,2.000000,170.000000,85.830000,119.200000,828.030000,2.610000,175.310000,14.820000 +10,2023-08-03 13:00:00,0.000000,22.500000,40.000000,2.000000,170.000000,86.280000,119.400000,828.520000,2.780000,175.550000,15.550000 +10,2023-08-03 14:00:00,0.000000,24.800000,37.000000,3.000000,337.000000,86.870000,119.640000,829.100000,3.180000,175.850000,17.200000 +10,2023-08-03 15:00:00,0.000000,24.800000,37.000000,3.000000,337.000000,87.370000,119.880000,829.680000,3.420000,176.140000,18.160000 +10,2023-08-03 16:00:00,0.000000,24.800000,37.000000,3.000000,337.000000,87.810000,120.120000,830.260000,3.640000,176.430000,19.020000 +10,2023-08-03 17:00:00,0.000000,25.200000,34.000000,8.000000,343.000000,88.370000,120.380000,830.880000,5.070000,176.740000,24.120000 +10,2023-08-03 18:00:00,0.000000,25.200000,34.000000,8.000000,343.000000,88.830000,120.640000,831.500000,5.420000,177.060000,25.280000 +10,2023-08-03 19:00:00,0.000000,25.200000,34.000000,8.000000,343.000000,89.220000,120.900000,832.120000,5.730000,177.370000,26.280000 +10,2023-08-03 20:00:00,0.000000,23.100000,38.000000,4.000000,322.000000,89.330000,121.110000,832.640000,4.760000,177.630000,23.100000 +10,2023-08-03 21:00:00,0.000000,23.100000,38.000000,4.000000,322.000000,89.430000,121.320000,833.150000,4.830000,177.890000,23.330000 +10,2023-08-03 22:00:00,0.000000,23.100000,38.000000,4.000000,322.000000,89.510000,121.320000,833.150000,4.890000,177.890000,23.530000 +10,2023-08-03 23:00:00,0.000000,17.300000,54.000000,5.000000,263.000000,89.320000,121.320000,833.150000,5.000000,177.890000,23.900000 +10,2023-08-04 00:00:00,0.000000,17.300000,54.000000,5.000000,263.000000,89.140000,121.320000,833.150000,4.870000,177.890000,23.490000 +10,2023-08-04 01:00:00,0.000000,17.300000,54.000000,5.000000,263.000000,88.990000,121.320000,833.150000,4.770000,177.890000,23.120000 +10,2023-08-04 02:00:00,0.000000,15.000000,61.000000,6.000000,262.000000,88.680000,121.320000,833.150000,4.790000,177.890000,23.210000 +10,2023-08-04 03:00:00,0.000000,15.000000,61.000000,6.000000,262.000000,88.400000,121.320000,833.150000,4.610000,177.890000,22.570000 +10,2023-08-04 04:00:00,0.000000,15.000000,61.000000,6.000000,262.000000,88.150000,121.320000,833.150000,4.450000,177.890000,22.010000 +10,2023-08-04 05:00:00,0.000000,13.900000,66.000000,7.000000,259.000000,87.810000,121.390000,833.290000,4.450000,177.960000,22.030000 +10,2023-08-04 06:00:00,0.000000,13.900000,66.000000,7.000000,259.000000,87.510000,121.450000,833.430000,4.260000,178.040000,21.360000 +10,2023-08-04 07:00:00,0.000000,13.900000,66.000000,7.000000,259.000000,87.240000,121.510000,833.570000,4.100000,178.110000,20.780000 +10,2023-08-04 08:00:00,0.000000,20.100000,47.000000,6.000000,273.000000,87.320000,121.660000,833.880000,3.950000,178.290000,20.210000 +10,2023-08-04 09:00:00,0.000000,20.100000,47.000000,6.000000,273.000000,87.390000,121.800000,834.200000,3.990000,178.460000,20.360000 +10,2023-08-04 10:00:00,0.000000,20.100000,47.000000,6.000000,273.000000,87.450000,121.950000,834.520000,4.020000,178.640000,20.500000 +10,2023-08-04 11:00:00,0.000000,25.000000,36.000000,11.000000,327.000000,88.020000,122.190000,835.030000,5.610000,178.920000,25.940000 +10,2023-08-04 12:00:00,0.000000,25.000000,36.000000,11.000000,327.000000,88.490000,122.420000,835.550000,6.000000,179.210000,27.180000 +10,2023-08-04 13:00:00,0.000000,25.000000,36.000000,11.000000,327.000000,88.870000,122.660000,836.060000,6.340000,179.490000,28.250000 +10,2023-08-04 14:00:00,0.000000,26.200000,31.000000,10.000000,333.000000,89.430000,122.940000,836.660000,6.530000,179.820000,28.820000 +10,2023-08-04 15:00:00,0.000000,26.200000,31.000000,10.000000,333.000000,89.880000,123.210000,837.260000,6.970000,180.140000,30.130000 +10,2023-08-04 16:00:00,0.000000,26.200000,31.000000,10.000000,333.000000,90.260000,123.480000,837.860000,7.350000,180.470000,31.250000 +10,2023-08-04 17:00:00,0.000000,26.500000,31.000000,9.000000,330.000000,90.570000,123.760000,838.460000,7.310000,180.810000,31.140000 +10,2023-08-04 18:00:00,0.000000,26.500000,31.000000,9.000000,330.000000,90.820000,124.040000,839.070000,7.590000,181.140000,31.930000 +10,2023-08-04 19:00:00,0.000000,26.500000,31.000000,9.000000,330.000000,91.030000,124.320000,839.680000,7.820000,181.470000,32.580000 +10,2023-08-04 20:00:00,0.000000,24.400000,37.000000,4.000000,342.000000,91.030000,124.550000,840.170000,6.080000,181.740000,27.490000 +10,2023-08-04 21:00:00,0.000000,24.400000,37.000000,4.000000,342.000000,91.030000,124.770000,840.660000,6.080000,182.010000,27.490000 +10,2023-08-04 22:00:00,0.000000,24.400000,37.000000,4.000000,342.000000,91.030000,124.770000,840.660000,6.080000,182.010000,27.490000 +10,2023-08-04 23:00:00,0.000000,18.800000,54.000000,4.000000,264.000000,90.690000,124.770000,840.660000,5.780000,182.010000,26.580000 +10,2023-08-05 00:00:00,0.000000,18.800000,54.000000,4.000000,264.000000,90.380000,124.770000,840.660000,5.540000,182.010000,25.780000 +10,2023-08-05 01:00:00,0.000000,18.800000,54.000000,4.000000,264.000000,90.110000,124.770000,840.660000,5.330000,182.010000,25.100000 +10,2023-08-05 02:00:00,0.000000,16.400000,64.000000,5.000000,263.000000,89.620000,124.770000,840.660000,5.220000,182.010000,24.740000 +10,2023-08-05 03:00:00,0.000000,16.400000,64.000000,5.000000,263.000000,89.180000,124.770000,840.660000,4.900000,182.010000,23.680000 +10,2023-08-05 04:00:00,0.000000,16.400000,64.000000,5.000000,263.000000,88.800000,124.770000,840.660000,4.640000,182.010000,22.780000 +10,2023-08-05 05:00:00,0.000000,15.300000,71.000000,4.000000,278.000000,88.300000,124.820000,840.850000,4.110000,182.070000,20.880000 +10,2023-08-05 06:00:00,0.000000,15.300000,71.000000,4.000000,278.000000,87.860000,124.870000,841.040000,3.850000,182.140000,19.950000 +10,2023-08-05 07:00:00,0.000000,15.300000,71.000000,4.000000,278.000000,87.470000,124.920000,841.230000,3.650000,182.200000,19.160000 +10,2023-08-05 08:00:00,0.000000,19.300000,60.000000,2.000000,5.000000,87.430000,125.010000,841.560000,3.280000,182.320000,17.710000 +10,2023-08-05 09:00:00,0.000000,19.300000,60.000000,2.000000,5.000000,87.390000,125.110000,841.900000,3.260000,182.440000,17.640000 +10,2023-08-05 10:00:00,0.000000,19.300000,60.000000,2.000000,5.000000,87.350000,125.200000,842.230000,3.240000,182.550000,17.580000 +10,2023-08-05 11:00:00,0.030000,21.000000,60.000000,11.000000,5.000000,87.350000,125.300000,842.610000,5.100000,182.680000,24.370000 +10,2023-08-05 12:00:00,0.000000,21.000000,60.000000,11.000000,5.000000,87.350000,125.400000,842.980000,5.100000,182.810000,24.380000 +10,2023-08-05 13:00:00,0.000000,21.000000,60.000000,11.000000,5.000000,87.350000,125.500000,843.350000,5.100000,182.940000,24.380000 +10,2023-08-05 14:00:00,0.000000,22.100000,62.000000,6.000000,8.000000,87.330000,125.600000,843.730000,3.950000,183.070000,20.330000 +10,2023-08-05 15:00:00,0.000000,22.100000,62.000000,6.000000,8.000000,87.310000,125.700000,844.110000,3.940000,183.200000,20.300000 +10,2023-08-05 16:00:00,0.000000,22.100000,62.000000,6.000000,8.000000,87.290000,125.800000,844.490000,3.930000,183.330000,20.260000 +10,2023-08-05 17:00:00,0.000000,25.100000,48.000000,12.000000,4.000000,87.500000,125.970000,845.120000,5.480000,183.540000,25.630000 +10,2023-08-05 18:00:00,0.000000,25.100000,48.000000,12.000000,4.000000,87.670000,126.140000,845.740000,5.610000,183.760000,26.070000 +10,2023-08-05 19:00:00,0.000000,25.100000,48.000000,12.000000,4.000000,87.810000,126.310000,846.360000,5.730000,183.970000,26.450000 +10,2023-08-05 20:00:00,0.000000,23.100000,49.000000,8.000000,11.000000,87.840000,126.450000,846.900000,4.700000,184.160000,23.060000 +10,2023-08-05 21:00:00,0.000000,23.100000,49.000000,8.000000,11.000000,87.870000,126.600000,847.440000,4.720000,184.350000,23.120000 +10,2023-08-05 22:00:00,0.000000,23.100000,49.000000,8.000000,11.000000,87.890000,126.600000,847.440000,4.740000,184.350000,23.180000 +10,2023-08-05 23:00:00,0.000000,17.200000,72.000000,2.000000,289.000000,87.520000,126.600000,847.440000,3.320000,184.350000,17.920000 +10,2023-08-06 00:00:00,0.000000,17.200000,72.000000,2.000000,289.000000,87.180000,126.600000,847.440000,3.160000,184.350000,17.300000 +10,2023-08-06 01:00:00,0.000000,17.200000,72.000000,2.000000,289.000000,86.890000,126.600000,847.440000,3.030000,184.350000,16.760000 +10,2023-08-06 02:00:00,0.000000,14.400000,83.000000,6.000000,271.000000,86.230000,126.600000,847.440000,3.380000,184.350000,18.160000 +10,2023-08-06 03:00:00,0.000000,14.400000,83.000000,6.000000,271.000000,85.650000,126.600000,847.440000,3.120000,184.350000,17.100000 +10,2023-08-06 04:00:00,0.000000,14.400000,83.000000,6.000000,271.000000,85.150000,126.600000,847.440000,2.910000,184.350000,16.230000 +10,2023-08-06 05:00:00,0.000000,14.600000,76.000000,8.000000,288.000000,84.920000,126.650000,847.560000,3.120000,184.410000,17.100000 +10,2023-08-06 06:00:00,0.000000,14.600000,76.000000,8.000000,288.000000,84.720000,126.700000,847.680000,3.030000,184.470000,16.770000 +10,2023-08-06 07:00:00,0.000000,14.600000,76.000000,8.000000,288.000000,84.550000,126.750000,847.800000,2.960000,184.530000,16.480000 +10,2023-08-06 08:00:00,0.000000,18.800000,58.000000,8.000000,316.000000,84.690000,126.860000,848.080000,3.020000,184.670000,16.710000 +10,2023-08-06 09:00:00,0.000000,18.800000,58.000000,8.000000,316.000000,84.810000,126.980000,848.360000,3.070000,184.800000,16.920000 +10,2023-08-06 10:00:00,0.000000,18.800000,58.000000,8.000000,316.000000,84.920000,127.090000,848.630000,3.120000,184.940000,17.120000 +10,2023-08-06 11:00:00,0.000000,23.800000,41.000000,11.000000,356.000000,85.660000,127.310000,849.160000,4.020000,185.200000,20.620000 +10,2023-08-06 12:00:00,0.000000,23.800000,41.000000,11.000000,356.000000,86.290000,127.530000,849.680000,4.390000,185.470000,21.970000 +10,2023-08-06 13:00:00,0.000000,23.800000,41.000000,11.000000,356.000000,86.820000,127.750000,850.210000,4.730000,185.730000,23.170000 +10,2023-08-06 14:00:00,0.000000,25.000000,37.000000,13.000000,2.000000,87.470000,128.000000,850.810000,5.740000,186.030000,26.540000 +10,2023-08-06 15:00:00,0.000000,25.000000,37.000000,13.000000,2.000000,88.020000,128.250000,851.420000,6.200000,186.330000,28.000000 +10,2023-08-06 16:00:00,0.000000,25.000000,37.000000,13.000000,2.000000,88.460000,128.500000,852.020000,6.610000,186.630000,29.260000 +10,2023-08-06 17:00:00,0.000000,24.600000,36.000000,12.000000,8.000000,88.850000,128.750000,852.620000,6.640000,186.930000,29.360000 +10,2023-08-06 18:00:00,0.000000,24.600000,36.000000,12.000000,8.000000,89.160000,129.000000,853.220000,6.950000,187.230000,30.280000 +10,2023-08-06 19:00:00,0.000000,24.600000,36.000000,12.000000,8.000000,89.420000,129.250000,853.820000,7.220000,187.530000,31.070000 +10,2023-08-06 20:00:00,0.000000,21.200000,40.000000,12.000000,44.000000,89.420000,129.440000,854.270000,7.220000,187.760000,31.070000 +10,2023-08-06 21:00:00,0.000000,21.200000,40.000000,12.000000,44.000000,89.420000,129.630000,854.730000,7.220000,187.980000,31.080000 +10,2023-08-06 22:00:00,0.000000,21.200000,40.000000,12.000000,44.000000,89.420000,129.630000,854.730000,7.220000,187.980000,31.080000 +10,2023-08-06 23:00:00,0.000000,15.300000,56.000000,4.000000,26.000000,89.190000,129.630000,854.730000,4.660000,187.980000,22.990000 +10,2023-08-07 00:00:00,0.000000,15.300000,56.000000,4.000000,26.000000,88.970000,129.630000,854.730000,4.520000,187.980000,22.500000 +10,2023-08-07 01:00:00,0.000000,15.300000,56.000000,4.000000,26.000000,88.780000,129.630000,854.730000,4.400000,187.980000,22.060000 +10,2023-08-07 02:00:00,0.000000,11.500000,74.000000,4.000000,354.000000,88.210000,129.630000,854.730000,4.050000,187.980000,20.810000 +10,2023-08-07 03:00:00,0.000000,11.500000,74.000000,4.000000,354.000000,87.700000,129.630000,854.730000,3.770000,187.980000,19.740000 +10,2023-08-07 04:00:00,0.000000,11.500000,74.000000,4.000000,354.000000,87.250000,129.630000,854.730000,3.530000,187.980000,18.830000 +10,2023-08-07 05:00:00,0.000000,9.900000,87.000000,2.000000,43.000000,86.510000,129.650000,854.780000,2.880000,188.010000,16.160000 +10,2023-08-07 06:00:00,0.000000,9.900000,87.000000,2.000000,43.000000,85.850000,129.670000,854.830000,2.620000,188.030000,15.050000 +10,2023-08-07 07:00:00,0.000000,9.900000,87.000000,2.000000,43.000000,85.250000,129.690000,854.880000,2.410000,188.060000,14.120000 +10,2023-08-07 08:00:00,0.000000,16.200000,61.000000,8.000000,102.000000,85.250000,129.790000,855.100000,3.260000,188.180000,17.750000 +10,2023-08-07 09:00:00,0.000000,16.200000,61.000000,8.000000,102.000000,85.250000,129.890000,855.320000,3.260000,188.290000,17.760000 +10,2023-08-07 10:00:00,0.000000,16.200000,61.000000,8.000000,102.000000,85.250000,129.980000,855.540000,3.260000,188.400000,17.760000 +10,2023-08-07 11:00:00,0.000000,21.600000,36.000000,14.000000,98.000000,86.030000,130.200000,856.050000,4.920000,188.670000,23.890000 +10,2023-08-07 12:00:00,0.000000,21.600000,36.000000,14.000000,98.000000,86.690000,130.430000,856.560000,5.400000,188.930000,25.510000 +10,2023-08-07 13:00:00,0.000000,21.600000,36.000000,14.000000,98.000000,87.250000,130.650000,857.070000,5.850000,189.200000,26.950000 +10,2023-08-07 14:00:00,0.000000,23.500000,30.000000,15.000000,84.000000,88.030000,130.920000,857.690000,6.880000,189.520000,30.120000 +10,2023-08-07 15:00:00,0.000000,23.500000,30.000000,15.000000,84.000000,88.680000,131.190000,858.320000,7.550000,189.840000,32.080000 +10,2023-08-07 16:00:00,0.000000,23.500000,30.000000,15.000000,84.000000,89.220000,131.460000,858.940000,8.160000,190.160000,33.780000 +10,2023-08-07 17:00:00,0.000000,23.300000,31.000000,18.000000,63.000000,89.630000,131.730000,859.550000,10.060000,190.480000,38.780000 +10,2023-08-07 18:00:00,0.000000,23.300000,31.000000,18.000000,63.000000,89.960000,131.990000,860.160000,10.560000,190.790000,40.010000 +10,2023-08-07 19:00:00,0.000000,23.300000,31.000000,18.000000,63.000000,90.240000,132.260000,860.770000,10.980000,191.110000,41.050000 +10,2023-08-07 20:00:00,0.000000,20.000000,41.000000,15.000000,56.000000,90.240000,132.440000,861.200000,9.440000,191.330000,37.220000 +10,2023-08-07 21:00:00,0.000000,20.000000,41.000000,15.000000,56.000000,90.240000,132.630000,861.620000,9.440000,191.550000,37.220000 +10,2023-08-07 22:00:00,0.000000,20.000000,41.000000,15.000000,56.000000,90.240000,132.630000,861.620000,9.440000,191.550000,37.220000 +10,2023-08-07 23:00:00,0.000000,14.700000,57.000000,7.000000,56.000000,89.860000,132.630000,861.620000,5.970000,191.550000,27.400000 +10,2023-08-08 00:00:00,0.000000,14.700000,57.000000,7.000000,56.000000,89.520000,132.630000,861.620000,5.690000,191.550000,26.510000 +10,2023-08-08 01:00:00,0.000000,14.700000,57.000000,7.000000,56.000000,89.220000,132.630000,861.620000,5.450000,191.550000,25.730000 +10,2023-08-08 02:00:00,0.000000,11.700000,67.000000,4.000000,111.000000,88.770000,132.630000,861.620000,4.390000,191.550000,22.100000 +10,2023-08-08 03:00:00,0.000000,11.700000,67.000000,4.000000,111.000000,88.360000,132.630000,861.620000,4.140000,191.550000,21.190000 +10,2023-08-08 04:00:00,0.000000,11.700000,67.000000,4.000000,111.000000,87.990000,132.630000,861.620000,3.930000,191.550000,20.400000 +10,2023-08-08 05:00:00,0.000000,9.700000,71.000000,3.000000,157.000000,87.590000,132.670000,861.710000,3.520000,191.600000,18.860000 +10,2023-08-08 06:00:00,0.000000,9.700000,71.000000,3.000000,157.000000,87.220000,132.720000,861.800000,3.340000,191.650000,18.150000 +10,2023-08-08 07:00:00,0.000000,9.700000,71.000000,3.000000,157.000000,86.890000,132.760000,861.900000,3.190000,191.700000,17.530000 +10,2023-08-08 08:00:00,0.000000,15.700000,48.000000,4.000000,146.000000,86.900000,132.880000,862.140000,3.360000,191.840000,18.220000 +10,2023-08-08 09:00:00,0.000000,15.700000,48.000000,4.000000,146.000000,86.910000,132.990000,862.380000,3.370000,191.970000,18.240000 +10,2023-08-08 10:00:00,0.000000,15.700000,48.000000,4.000000,146.000000,86.920000,133.110000,862.620000,3.370000,192.110000,18.250000 +10,2023-08-08 11:00:00,0.000000,22.800000,31.000000,8.000000,138.000000,87.600000,133.350000,863.130000,4.550000,192.390000,22.670000 +10,2023-08-08 12:00:00,0.000000,22.800000,31.000000,8.000000,138.000000,88.190000,133.590000,863.630000,4.940000,192.670000,24.040000 +10,2023-08-08 13:00:00,0.000000,22.800000,31.000000,8.000000,138.000000,88.680000,133.830000,864.130000,5.300000,192.950000,25.270000 +10,2023-08-08 14:00:00,0.000000,24.700000,27.000000,10.000000,118.000000,89.350000,134.110000,864.720000,6.460000,193.280000,28.940000 +10,2023-08-08 15:00:00,0.000000,24.700000,27.000000,10.000000,118.000000,89.900000,134.400000,865.320000,6.990000,193.620000,30.550000 +10,2023-08-08 16:00:00,0.000000,24.700000,27.000000,10.000000,118.000000,90.360000,134.680000,865.910000,7.470000,193.950000,31.940000 +10,2023-08-08 17:00:00,0.000000,25.100000,27.000000,11.000000,111.000000,90.770000,134.980000,866.520000,8.320000,194.290000,34.330000 +10,2023-08-08 18:00:00,0.000000,25.100000,27.000000,11.000000,111.000000,91.100000,135.270000,867.130000,8.720000,194.630000,35.420000 +10,2023-08-08 19:00:00,0.000000,25.100000,27.000000,11.000000,111.000000,91.370000,135.560000,867.740000,9.060000,194.970000,36.340000 +10,2023-08-08 20:00:00,0.000000,23.100000,33.000000,9.000000,104.000000,91.370000,135.800000,868.230000,8.200000,195.250000,34.010000 +10,2023-08-08 21:00:00,0.000000,23.100000,33.000000,9.000000,104.000000,91.370000,136.030000,868.730000,8.200000,195.520000,34.020000 +10,2023-08-08 22:00:00,0.000000,23.100000,33.000000,9.000000,104.000000,91.370000,136.030000,868.730000,8.200000,195.520000,34.020000 +10,2023-08-08 23:00:00,0.000000,17.900000,48.000000,9.000000,128.000000,91.070000,136.030000,868.730000,7.850000,195.520000,33.070000 +10,2023-08-09 00:00:00,0.000000,17.900000,48.000000,9.000000,128.000000,90.810000,136.030000,868.730000,7.570000,195.520000,32.260000 +10,2023-08-09 01:00:00,0.000000,17.900000,48.000000,9.000000,128.000000,90.580000,136.030000,868.730000,7.320000,195.520000,31.550000 +10,2023-08-09 02:00:00,0.000000,17.100000,51.000000,12.000000,180.000000,90.280000,136.030000,868.730000,8.160000,195.520000,33.920000 +10,2023-08-09 03:00:00,0.000000,17.100000,51.000000,12.000000,180.000000,90.020000,136.030000,868.730000,7.860000,195.520000,33.100000 +10,2023-08-09 04:00:00,0.000000,17.100000,51.000000,12.000000,180.000000,89.790000,136.030000,868.730000,7.610000,195.520000,32.390000 +10,2023-08-09 05:00:00,0.000000,15.300000,60.000000,9.000000,193.000000,89.380000,136.110000,868.890000,6.170000,195.610000,28.110000 +10,2023-08-09 06:00:00,0.000000,15.300000,60.000000,9.000000,193.000000,89.030000,136.180000,869.050000,5.860000,195.690000,27.140000 +10,2023-08-09 07:00:00,0.000000,15.300000,60.000000,9.000000,193.000000,88.710000,136.250000,869.210000,5.600000,195.780000,26.310000 +10,2023-08-09 08:00:00,0.000000,19.200000,51.000000,10.000000,181.000000,88.700000,136.360000,869.450000,5.880000,195.910000,27.200000 +10,2023-08-09 09:00:00,0.000000,19.200000,51.000000,10.000000,181.000000,88.680000,136.470000,869.700000,5.870000,196.040000,27.160000 +10,2023-08-09 10:00:00,0.000000,19.200000,51.000000,10.000000,181.000000,88.670000,136.590000,869.950000,5.860000,196.170000,27.130000 +10,2023-08-09 11:00:00,0.000000,24.000000,36.000000,13.000000,169.000000,89.000000,136.780000,870.390000,7.140000,196.400000,31.050000 +10,2023-08-09 12:00:00,0.000000,24.000000,36.000000,13.000000,169.000000,89.270000,136.980000,870.820000,7.430000,196.630000,31.880000 +10,2023-08-09 13:00:00,0.000000,24.000000,36.000000,13.000000,169.000000,89.490000,137.180000,871.260000,7.670000,196.860000,32.580000 +10,2023-08-09 14:00:00,0.000000,27.000000,26.000000,11.000000,175.000000,90.190000,137.450000,871.860000,7.660000,197.180000,32.570000 +10,2023-08-09 15:00:00,0.000000,27.000000,26.000000,11.000000,175.000000,90.760000,137.720000,872.460000,8.310000,197.500000,34.380000 +10,2023-08-09 16:00:00,0.000000,27.000000,26.000000,11.000000,175.000000,91.210000,137.990000,873.060000,8.870000,197.820000,35.900000 +10,2023-08-09 17:00:00,0.000000,27.900000,24.000000,9.000000,179.000000,91.700000,138.290000,873.710000,8.590000,198.160000,35.160000 +10,2023-08-09 18:00:00,0.000000,27.900000,24.000000,9.000000,179.000000,92.090000,138.580000,874.360000,9.080000,198.510000,36.470000 +10,2023-08-09 19:00:00,0.000000,27.900000,24.000000,9.000000,179.000000,92.410000,138.880000,875.010000,9.500000,198.850000,37.560000 +10,2023-08-09 20:00:00,0.000000,25.300000,29.000000,6.000000,179.000000,92.410000,139.110000,875.530000,8.160000,199.130000,34.010000 +10,2023-08-09 21:00:00,0.000000,25.300000,29.000000,6.000000,179.000000,92.410000,139.350000,876.050000,8.160000,199.400000,34.020000 +10,2023-08-09 22:00:00,0.000000,25.300000,29.000000,6.000000,179.000000,92.410000,139.350000,876.050000,8.160000,199.400000,34.020000 +10,2023-08-09 23:00:00,0.000000,20.800000,38.000000,9.000000,215.000000,92.260000,139.350000,876.050000,9.300000,199.400000,37.060000 +10,2023-08-10 00:00:00,0.000000,20.800000,38.000000,9.000000,215.000000,92.130000,139.350000,876.050000,9.130000,199.400000,36.610000 +10,2023-08-10 01:00:00,0.000000,20.800000,38.000000,9.000000,215.000000,92.010000,139.350000,876.050000,8.980000,199.400000,36.220000 +10,2023-08-10 02:00:00,0.000000,19.100000,44.000000,9.000000,216.000000,91.740000,139.350000,876.050000,8.640000,199.400000,35.320000 +10,2023-08-10 03:00:00,0.000000,19.100000,44.000000,9.000000,216.000000,91.500000,139.350000,876.050000,8.360000,199.400000,34.550000 +10,2023-08-10 04:00:00,0.000000,19.100000,44.000000,9.000000,216.000000,91.300000,139.350000,876.050000,8.120000,199.400000,33.880000 +10,2023-08-10 05:00:00,0.000000,16.000000,59.000000,8.000000,193.000000,90.740000,139.450000,876.280000,7.130000,199.520000,31.070000 +10,2023-08-10 06:00:00,0.000000,16.000000,59.000000,8.000000,193.000000,90.250000,139.550000,876.510000,6.640000,199.640000,29.640000 +10,2023-08-10 07:00:00,0.000000,16.000000,59.000000,8.000000,193.000000,89.820000,139.660000,876.730000,6.250000,199.760000,28.430000 +10,2023-08-10 08:00:00,0.000000,20.300000,48.000000,10.000000,186.000000,89.750000,139.820000,877.110000,6.840000,199.960000,30.240000 +10,2023-08-10 09:00:00,0.000000,20.300000,48.000000,10.000000,186.000000,89.690000,139.990000,877.480000,6.780000,200.150000,30.060000 +10,2023-08-10 10:00:00,0.000000,20.300000,48.000000,10.000000,186.000000,89.630000,140.160000,877.860000,6.730000,200.350000,29.910000 +10,2023-08-10 11:00:00,0.000000,24.700000,37.000000,11.000000,207.000000,89.780000,140.430000,878.450000,7.230000,200.660000,31.390000 +10,2023-08-10 12:00:00,0.000000,24.700000,37.000000,11.000000,207.000000,89.900000,140.700000,879.050000,7.360000,200.980000,31.770000 +10,2023-08-10 13:00:00,0.000000,24.700000,37.000000,11.000000,207.000000,90.000000,140.970000,879.640000,7.460000,201.290000,32.080000 +10,2023-08-10 14:00:00,0.000000,25.300000,39.000000,14.000000,232.000000,90.040000,141.230000,880.240000,8.730000,201.600000,35.600000 +10,2023-08-10 15:00:00,0.000000,25.300000,39.000000,14.000000,232.000000,90.070000,141.500000,880.830000,8.770000,201.910000,35.710000 +10,2023-08-10 16:00:00,0.000000,25.300000,39.000000,14.000000,232.000000,90.100000,141.770000,881.430000,8.800000,202.230000,35.810000 +10,2023-08-10 17:00:00,0.050000,24.400000,44.000000,10.000000,251.000000,90.100000,142.000000,881.950000,7.190000,202.500000,31.320000 +10,2023-08-10 18:00:00,0.000000,24.400000,44.000000,10.000000,251.000000,90.100000,142.240000,882.470000,7.190000,202.770000,31.330000 +10,2023-08-10 19:00:00,0.000000,24.400000,44.000000,10.000000,251.000000,90.100000,142.470000,882.990000,7.190000,203.040000,31.330000 +10,2023-08-10 20:00:00,0.000000,24.400000,44.000000,10.000000,251.000000,90.100000,142.710000,883.500000,7.190000,203.310000,31.340000 +10,2023-08-10 21:00:00,0.000000,24.400000,44.000000,10.000000,251.000000,90.100000,142.710000,883.500000,7.190000,203.310000,31.340000 +10,2023-08-10 22:00:00,0.000000,24.400000,44.000000,10.000000,251.000000,90.100000,142.710000,883.500000,7.190000,203.310000,31.340000 +10,2023-08-10 23:00:00,0.410000,19.300000,66.000000,5.000000,194.000000,89.560000,142.710000,883.500000,5.180000,203.310000,25.030000 +10,2023-08-11 00:00:00,0.000000,19.300000,66.000000,5.000000,194.000000,89.100000,142.710000,883.500000,4.840000,203.310000,23.890000 +10,2023-08-11 01:00:00,0.000000,19.300000,66.000000,5.000000,194.000000,88.700000,142.710000,883.500000,4.570000,203.310000,22.930000 +10,2023-08-11 02:00:00,0.000000,19.300000,66.000000,5.000000,194.000000,88.350000,142.710000,883.500000,4.350000,203.310000,22.130000 +10,2023-08-11 03:00:00,0.000000,19.300000,66.000000,5.000000,194.000000,88.040000,142.710000,883.500000,4.160000,203.310000,21.460000 +10,2023-08-11 04:00:00,0.000000,19.300000,66.000000,5.000000,194.000000,87.780000,142.710000,883.500000,4.010000,203.310000,20.890000 +10,2023-08-11 05:00:00,0.000000,15.800000,76.000000,5.000000,242.000000,87.260000,142.760000,883.650000,3.720000,203.380000,19.790000 +10,2023-08-11 06:00:00,0.000000,15.800000,76.000000,5.000000,242.000000,86.800000,142.820000,883.790000,3.480000,203.450000,18.870000 +10,2023-08-11 07:00:00,0.000000,15.800000,76.000000,5.000000,242.000000,86.400000,142.880000,883.940000,3.290000,203.510000,18.100000 +10,2023-08-11 08:00:00,0.000000,15.800000,76.000000,5.000000,242.000000,86.050000,142.930000,884.080000,3.130000,203.580000,17.450000 +10,2023-08-11 09:00:00,0.000000,15.800000,76.000000,5.000000,242.000000,85.740000,142.990000,884.220000,3.000000,203.650000,16.900000 +10,2023-08-11 10:00:00,0.000000,15.800000,76.000000,5.000000,242.000000,85.470000,143.050000,884.370000,2.890000,203.720000,16.430000 +10,2023-08-11 11:00:00,0.000000,25.100000,45.000000,2.000000,319.000000,85.920000,143.280000,884.950000,2.650000,203.990000,15.370000 +10,2023-08-11 12:00:00,0.000000,25.100000,45.000000,2.000000,319.000000,86.320000,143.510000,885.540000,2.800000,204.260000,16.040000 +10,2023-08-11 13:00:00,0.000000,25.100000,45.000000,2.000000,319.000000,86.670000,143.740000,886.120000,2.940000,204.540000,16.650000 +10,2023-08-11 14:00:00,0.000000,25.100000,45.000000,2.000000,319.000000,86.980000,143.970000,886.710000,3.070000,204.810000,17.200000 +10,2023-08-11 15:00:00,0.000000,25.100000,45.000000,2.000000,319.000000,87.240000,144.200000,887.290000,3.190000,205.080000,17.700000 +10,2023-08-11 16:00:00,0.000000,25.100000,45.000000,2.000000,319.000000,87.480000,144.430000,887.880000,3.300000,205.350000,18.150000 +10,2023-08-11 17:00:00,0.000000,27.300000,35.000000,8.000000,54.000000,88.150000,144.750000,888.660000,4.920000,205.720000,24.180000 +10,2023-08-11 18:00:00,0.000000,27.300000,35.000000,8.000000,54.000000,88.710000,145.060000,889.450000,5.330000,206.090000,25.580000 +10,2023-08-11 19:00:00,0.000000,27.300000,35.000000,8.000000,54.000000,89.170000,145.370000,890.240000,5.700000,206.460000,26.790000 +10,2023-08-11 20:00:00,0.000000,27.300000,35.000000,8.000000,54.000000,89.560000,145.680000,891.030000,6.020000,206.820000,27.820000 +10,2023-08-11 21:00:00,0.000000,27.300000,35.000000,8.000000,54.000000,89.870000,145.680000,891.030000,6.290000,206.820000,28.690000 +10,2023-08-11 22:00:00,0.000000,27.300000,35.000000,8.000000,54.000000,90.130000,145.680000,891.030000,6.530000,206.820000,29.420000 +10,2023-08-11 23:00:00,0.000000,20.400000,65.000000,6.000000,93.000000,89.610000,145.680000,891.030000,5.480000,206.820000,26.090000 +10,2023-08-12 00:00:00,0.000000,20.400000,65.000000,6.000000,93.000000,89.160000,145.680000,891.030000,5.140000,206.820000,24.950000 +10,2023-08-12 01:00:00,0.000000,20.400000,65.000000,6.000000,93.000000,88.770000,145.680000,891.030000,4.860000,206.820000,24.000000 +10,2023-08-12 02:00:00,0.000000,20.400000,65.000000,6.000000,93.000000,88.440000,145.680000,891.030000,4.640000,206.820000,23.210000 +10,2023-08-12 03:00:00,0.000000,20.400000,65.000000,6.000000,93.000000,88.160000,145.680000,891.030000,4.450000,206.820000,22.550000 +10,2023-08-12 04:00:00,0.000000,20.400000,65.000000,6.000000,93.000000,87.910000,145.680000,891.030000,4.300000,206.820000,22.000000 +10,2023-08-12 05:00:00,0.000000,16.600000,76.000000,6.000000,191.000000,87.360000,145.760000,891.200000,3.970000,206.920000,20.790000 +10,2023-08-12 06:00:00,0.000000,16.600000,76.000000,6.000000,191.000000,86.880000,145.840000,891.370000,3.710000,207.010000,19.780000 +10,2023-08-12 07:00:00,0.000000,16.600000,76.000000,6.000000,191.000000,86.460000,145.920000,891.540000,3.490000,207.100000,18.950000 +10,2023-08-12 08:00:00,0.000000,16.600000,76.000000,6.000000,191.000000,86.100000,146.000000,891.710000,3.320000,207.190000,18.250000 +10,2023-08-12 09:00:00,0.000000,16.600000,76.000000,6.000000,191.000000,85.790000,146.080000,891.880000,3.180000,207.290000,17.670000 +10,2023-08-12 10:00:00,0.000000,16.600000,76.000000,6.000000,191.000000,85.510000,146.160000,892.050000,3.060000,207.380000,17.180000 +10,2023-08-12 11:00:00,0.000000,28.500000,37.000000,4.000000,174.000000,86.420000,146.600000,892.970000,3.140000,207.880000,17.530000 +10,2023-08-12 12:00:00,0.000000,28.500000,37.000000,4.000000,174.000000,87.190000,147.040000,893.890000,3.500000,208.380000,19.000000 +10,2023-08-12 13:00:00,0.000000,28.500000,37.000000,4.000000,174.000000,87.840000,147.470000,894.820000,3.840000,208.880000,20.320000 +10,2023-08-12 14:00:00,0.000000,28.500000,37.000000,4.000000,174.000000,88.380000,147.910000,895.740000,4.150000,209.380000,21.500000 +10,2023-08-12 15:00:00,0.000000,28.500000,37.000000,4.000000,174.000000,88.830000,148.350000,896.660000,4.430000,209.880000,22.520000 +10,2023-08-12 16:00:00,0.000000,28.500000,37.000000,4.000000,174.000000,89.210000,148.780000,897.580000,4.680000,210.380000,23.420000 +10,2023-08-12 17:00:00,4.290000,26.100000,69.000000,4.000000,176.000000,39.460000,84.170000,858.190000,0.040000,135.200000,0.130000 +10,2023-08-12 18:00:00,0.000000,26.100000,69.000000,4.000000,176.000000,42.940000,84.360000,858.580000,0.070000,135.450000,0.240000 +10,2023-08-12 19:00:00,0.000000,26.100000,69.000000,4.000000,176.000000,46.260000,84.550000,858.980000,0.120000,135.700000,0.410000 +10,2023-08-12 20:00:00,0.000000,26.100000,69.000000,4.000000,176.000000,49.400000,84.730000,859.370000,0.190000,135.960000,0.630000 +10,2023-08-12 21:00:00,0.000000,26.100000,69.000000,4.000000,176.000000,52.380000,84.730000,859.370000,0.260000,135.960000,0.880000 +10,2023-08-12 22:00:00,0.000000,26.100000,69.000000,4.000000,176.000000,55.170000,84.730000,859.370000,0.350000,135.960000,1.590000 +10,2023-08-12 23:00:00,0.000000,20.400000,87.000000,2.000000,181.000000,56.030000,84.730000,859.370000,0.340000,135.960000,1.510000 +10,2023-08-13 00:00:00,0.000000,20.400000,87.000000,2.000000,181.000000,56.880000,84.730000,859.370000,0.360000,135.960000,1.740000 +10,2023-08-13 01:00:00,0.000000,20.400000,87.000000,2.000000,181.000000,57.690000,84.730000,859.370000,0.390000,135.960000,1.940000 +10,2023-08-13 02:00:00,0.000000,20.400000,87.000000,2.000000,181.000000,58.480000,84.730000,859.370000,0.410000,135.960000,2.120000 +10,2023-08-13 03:00:00,0.000000,20.400000,87.000000,2.000000,181.000000,59.250000,84.730000,859.370000,0.430000,135.960000,2.300000 +10,2023-08-13 04:00:00,0.000000,20.400000,87.000000,2.000000,181.000000,60.000000,84.730000,859.370000,0.450000,135.960000,2.460000 +10,2023-08-13 05:00:00,3.420000,17.100000,99.000000,6.000000,354.000000,27.640000,66.500000,823.860000,0.000000,110.670000,0.010000 +10,2023-08-13 06:00:00,0.000000,17.100000,99.000000,6.000000,354.000000,27.790000,66.510000,823.880000,0.000000,110.680000,0.010000 +10,2023-08-13 07:00:00,0.000000,17.100000,99.000000,6.000000,354.000000,27.930000,66.510000,823.900000,0.000000,110.680000,0.010000 +10,2023-08-13 08:00:00,0.000000,17.100000,99.000000,6.000000,354.000000,28.080000,66.510000,823.920000,0.000000,110.690000,0.010000 +10,2023-08-13 09:00:00,0.000000,17.100000,99.000000,6.000000,354.000000,28.230000,66.520000,823.940000,0.000000,110.690000,0.010000 +10,2023-08-13 10:00:00,0.000000,17.100000,99.000000,6.000000,354.000000,28.380000,66.520000,823.960000,0.000000,110.700000,0.010000 +10,2023-08-13 11:00:00,2.150000,22.400000,76.000000,4.000000,2.000000,20.320000,58.130000,802.330000,0.000000,98.430000,0.000000 +10,2023-08-13 12:00:00,0.000000,22.400000,76.000000,4.000000,2.000000,23.290000,58.250000,803.040000,0.000000,98.610000,0.000000 +10,2023-08-13 13:00:00,0.000000,22.400000,76.000000,4.000000,2.000000,26.210000,58.360000,803.750000,0.000000,98.790000,0.000000 +10,2023-08-13 14:00:00,0.000000,22.400000,76.000000,4.000000,2.000000,29.090000,58.480000,804.460000,0.000000,98.980000,0.010000 +10,2023-08-13 15:00:00,0.000000,22.400000,76.000000,4.000000,2.000000,31.910000,58.600000,805.170000,0.010000,99.160000,0.020000 +10,2023-08-13 16:00:00,0.000000,22.400000,76.000000,4.000000,2.000000,34.660000,58.720000,805.880000,0.010000,99.340000,0.040000 +10,2023-08-13 17:00:00,4.500000,22.000000,77.000000,8.000000,301.000000,16.660000,44.930000,759.780000,0.000000,78.290000,0.000000 +10,2023-08-13 18:00:00,0.000000,22.000000,77.000000,8.000000,301.000000,20.060000,45.040000,760.450000,0.000000,78.460000,0.000000 +10,2023-08-13 19:00:00,0.000000,22.000000,77.000000,8.000000,301.000000,23.420000,45.150000,761.110000,0.000000,78.640000,0.000000 +10,2023-08-13 20:00:00,0.000000,22.000000,77.000000,8.000000,301.000000,26.720000,45.260000,761.770000,0.000000,78.820000,0.000000 +10,2023-08-13 21:00:00,0.000000,22.000000,77.000000,8.000000,301.000000,29.960000,45.260000,761.770000,0.010000,78.820000,0.010000 +10,2023-08-13 22:00:00,0.000000,22.000000,77.000000,8.000000,301.000000,33.120000,45.260000,761.770000,0.010000,78.820000,0.030000 +10,2023-08-13 23:00:00,0.000000,18.600000,92.000000,9.000000,291.000000,34.350000,45.260000,761.770000,0.020000,78.820000,0.040000 +10,2023-08-14 00:00:00,0.000000,18.600000,92.000000,9.000000,291.000000,35.560000,45.260000,761.770000,0.020000,78.820000,0.050000 +10,2023-08-14 01:00:00,0.000000,18.600000,92.000000,9.000000,291.000000,36.740000,45.260000,761.770000,0.030000,78.820000,0.070000 +10,2023-08-14 02:00:00,0.000000,18.600000,92.000000,9.000000,291.000000,37.910000,45.260000,761.770000,0.040000,78.820000,0.080000 +10,2023-08-14 03:00:00,0.000000,18.600000,92.000000,9.000000,291.000000,39.060000,45.260000,761.770000,0.050000,78.820000,0.110000 +10,2023-08-14 04:00:00,0.000000,18.600000,92.000000,9.000000,291.000000,40.180000,45.260000,761.770000,0.060000,78.820000,0.130000 +10,2023-08-14 05:00:00,0.000000,15.900000,97.000000,7.000000,299.000000,40.550000,45.270000,761.800000,0.050000,78.830000,0.130000 +10,2023-08-14 06:00:00,0.000000,15.900000,97.000000,7.000000,299.000000,40.910000,45.270000,761.820000,0.060000,78.840000,0.140000 +10,2023-08-14 07:00:00,0.000000,15.900000,97.000000,7.000000,299.000000,41.270000,45.280000,761.840000,0.060000,78.850000,0.150000 +10,2023-08-14 08:00:00,0.000000,15.900000,97.000000,7.000000,299.000000,41.620000,45.290000,761.870000,0.070000,78.860000,0.160000 +10,2023-08-14 09:00:00,0.000000,15.900000,97.000000,7.000000,299.000000,41.980000,45.300000,761.890000,0.070000,78.870000,0.170000 +10,2023-08-14 10:00:00,0.000000,15.900000,97.000000,7.000000,299.000000,42.330000,45.300000,761.910000,0.080000,78.880000,0.180000 +10,2023-08-14 11:00:00,0.000000,24.700000,59.000000,7.000000,352.000000,46.580000,45.460000,762.460000,0.150000,79.130000,0.350000 +10,2023-08-14 12:00:00,0.000000,24.700000,59.000000,7.000000,352.000000,50.570000,45.630000,763.020000,0.250000,79.380000,0.590000 +10,2023-08-14 13:00:00,0.000000,24.700000,59.000000,7.000000,352.000000,54.270000,45.790000,763.570000,0.370000,79.640000,0.870000 +10,2023-08-14 14:00:00,0.000000,24.700000,59.000000,7.000000,352.000000,57.700000,45.950000,764.120000,0.500000,79.890000,1.630000 +10,2023-08-14 15:00:00,0.000000,24.700000,59.000000,7.000000,352.000000,60.850000,46.110000,764.670000,0.610000,80.140000,2.310000 +10,2023-08-14 16:00:00,0.000000,24.700000,59.000000,7.000000,352.000000,63.720000,46.270000,765.220000,0.710000,80.390000,2.840000 +10,2023-08-14 17:00:00,0.000000,28.100000,39.000000,8.000000,18.000000,67.840000,46.560000,766.220000,0.870000,80.850000,3.660000 +10,2023-08-14 18:00:00,0.000000,28.100000,39.000000,8.000000,18.000000,71.430000,46.860000,767.220000,0.980000,81.300000,4.190000 +10,2023-08-14 19:00:00,0.000000,28.100000,39.000000,8.000000,18.000000,74.530000,47.150000,768.220000,1.120000,81.760000,4.820000 +10,2023-08-14 20:00:00,0.000000,28.100000,39.000000,8.000000,18.000000,77.180000,47.440000,769.220000,1.320000,82.210000,5.720000 +10,2023-08-14 21:00:00,0.000000,28.100000,39.000000,8.000000,18.000000,79.430000,47.440000,769.220000,1.610000,82.210000,6.890000 +10,2023-08-14 22:00:00,0.000000,28.100000,39.000000,8.000000,18.000000,81.340000,47.440000,769.220000,1.970000,82.210000,8.270000 +10,2023-08-14 23:00:00,0.000000,18.900000,69.000000,2.000000,130.000000,81.520000,47.440000,769.220000,1.490000,82.210000,6.420000 +10,2023-08-15 00:00:00,0.000000,18.900000,69.000000,2.000000,130.000000,81.690000,47.440000,769.220000,1.520000,82.210000,6.540000 +10,2023-08-15 01:00:00,0.000000,18.900000,69.000000,2.000000,130.000000,81.860000,47.440000,769.220000,1.550000,82.210000,6.660000 +10,2023-08-15 02:00:00,0.000000,18.900000,69.000000,2.000000,130.000000,82.000000,47.440000,769.220000,1.580000,82.210000,6.770000 +10,2023-08-15 03:00:00,0.000000,18.900000,69.000000,2.000000,130.000000,82.140000,47.440000,769.220000,1.600000,82.210000,6.870000 +10,2023-08-15 04:00:00,0.000000,18.900000,69.000000,2.000000,130.000000,82.270000,47.440000,769.220000,1.630000,82.210000,6.970000 +10,2023-08-15 05:00:00,0.000000,15.400000,82.000000,5.000000,199.000000,82.240000,47.490000,769.320000,1.890000,82.280000,7.970000 +10,2023-08-15 06:00:00,0.000000,15.400000,82.000000,5.000000,199.000000,82.210000,47.530000,769.410000,1.880000,82.340000,7.950000 +10,2023-08-15 07:00:00,0.000000,15.400000,82.000000,5.000000,199.000000,82.190000,47.570000,769.510000,1.880000,82.400000,7.940000 +10,2023-08-15 08:00:00,0.000000,15.400000,82.000000,5.000000,199.000000,82.170000,47.610000,769.600000,1.870000,82.460000,7.920000 +10,2023-08-15 09:00:00,0.000000,15.400000,82.000000,5.000000,199.000000,82.150000,47.650000,769.700000,1.870000,82.530000,7.910000 +10,2023-08-15 10:00:00,0.000000,15.400000,82.000000,5.000000,199.000000,82.140000,47.690000,769.790000,1.860000,82.590000,7.900000 +10,2023-08-15 11:00:00,0.000000,27.300000,42.000000,8.000000,172.000000,83.430000,47.960000,770.430000,2.550000,83.000000,10.380000 +10,2023-08-15 12:00:00,0.000000,27.300000,42.000000,8.000000,172.000000,84.520000,48.230000,771.060000,2.950000,83.420000,11.720000 +10,2023-08-15 13:00:00,0.000000,27.300000,42.000000,8.000000,172.000000,85.430000,48.510000,771.690000,3.340000,83.840000,12.990000 +10,2023-08-15 14:00:00,0.000000,27.300000,42.000000,8.000000,172.000000,86.200000,48.780000,772.330000,3.720000,84.250000,14.170000 +10,2023-08-15 15:00:00,0.000000,27.300000,42.000000,8.000000,172.000000,86.840000,49.050000,772.960000,4.070000,84.670000,15.230000 +10,2023-08-15 16:00:00,0.000000,27.300000,42.000000,8.000000,172.000000,87.370000,49.320000,773.600000,4.400000,85.080000,16.180000 +10,2023-08-15 17:00:00,0.000000,30.100000,31.000000,12.000000,204.000000,88.470000,49.700000,774.480000,6.290000,85.660000,21.140000 +10,2023-08-15 18:00:00,0.000000,30.100000,31.000000,12.000000,204.000000,89.340000,50.080000,775.370000,7.130000,86.240000,23.190000 +10,2023-08-15 19:00:00,0.000000,30.100000,31.000000,12.000000,204.000000,90.030000,50.460000,776.260000,7.870000,86.820000,24.950000 +10,2023-08-15 20:00:00,0.000000,30.100000,31.000000,12.000000,204.000000,90.570000,50.850000,777.140000,8.510000,87.400000,26.430000 +10,2023-08-15 21:00:00,0.000000,30.100000,31.000000,12.000000,204.000000,91.010000,50.850000,777.140000,9.050000,87.400000,27.570000 +10,2023-08-15 22:00:00,0.000000,30.100000,31.000000,12.000000,204.000000,91.350000,50.850000,777.140000,9.500000,87.400000,28.500000 +10,2023-08-15 23:00:00,0.000000,23.800000,45.000000,10.000000,185.000000,91.210000,50.850000,777.140000,8.430000,87.400000,26.240000 +10,2023-08-16 00:00:00,0.000000,23.800000,45.000000,10.000000,185.000000,91.090000,50.850000,777.140000,8.290000,87.400000,25.940000 +10,2023-08-16 01:00:00,0.000000,23.800000,45.000000,10.000000,185.000000,90.990000,50.850000,777.140000,8.170000,87.400000,25.680000 +10,2023-08-16 02:00:00,0.000000,23.800000,45.000000,10.000000,185.000000,90.910000,50.850000,777.140000,8.070000,87.400000,25.470000 +10,2023-08-16 03:00:00,0.000000,23.800000,45.000000,10.000000,185.000000,90.830000,50.850000,777.140000,7.990000,87.400000,25.280000 +10,2023-08-16 04:00:00,0.000000,23.800000,45.000000,10.000000,185.000000,90.770000,50.850000,777.140000,7.920000,87.400000,25.120000 +10,2023-08-16 05:00:00,0.000000,21.300000,50.000000,12.000000,180.000000,90.530000,50.990000,777.420000,8.460000,87.610000,26.340000 +10,2023-08-16 06:00:00,0.000000,21.300000,50.000000,12.000000,180.000000,90.320000,51.130000,777.700000,8.210000,87.820000,25.840000 +10,2023-08-16 07:00:00,0.000000,21.300000,50.000000,12.000000,180.000000,90.150000,51.270000,777.980000,8.010000,88.030000,25.430000 +10,2023-08-16 08:00:00,0.000000,21.300000,50.000000,12.000000,180.000000,90.000000,51.410000,778.250000,7.840000,88.240000,25.080000 +10,2023-08-16 09:00:00,0.000000,21.300000,50.000000,12.000000,180.000000,89.870000,51.550000,778.530000,7.700000,88.450000,24.790000 +10,2023-08-16 10:00:00,0.000000,21.300000,50.000000,12.000000,180.000000,89.760000,51.690000,778.810000,7.580000,88.660000,24.550000 +10,2023-08-16 11:00:00,0.000000,28.500000,33.000000,18.000000,197.000000,90.230000,51.970000,779.380000,10.960000,89.090000,31.680000 +10,2023-08-16 12:00:00,0.000000,28.500000,33.000000,18.000000,197.000000,90.590000,52.260000,779.950000,11.550000,89.530000,32.890000 +10,2023-08-16 13:00:00,0.000000,28.500000,33.000000,18.000000,197.000000,90.880000,52.550000,780.530000,12.040000,89.960000,33.890000 +10,2023-08-16 14:00:00,0.000000,28.500000,33.000000,18.000000,197.000000,91.110000,52.840000,781.100000,12.430000,90.390000,34.700000 +10,2023-08-16 15:00:00,0.000000,28.500000,33.000000,18.000000,197.000000,91.290000,53.130000,781.670000,12.750000,90.820000,35.360000 +10,2023-08-16 16:00:00,0.000000,28.500000,33.000000,18.000000,197.000000,91.420000,53.410000,782.240000,13.000000,91.250000,35.900000 +10,2023-08-16 17:00:00,0.000000,31.200000,24.000000,14.000000,203.000000,92.080000,53.800000,783.000000,11.670000,91.820000,33.530000 +10,2023-08-16 18:00:00,0.000000,31.200000,24.000000,14.000000,203.000000,92.590000,54.180000,783.760000,12.540000,92.390000,35.270000 +10,2023-08-16 19:00:00,0.000000,31.200000,24.000000,14.000000,203.000000,92.980000,54.560000,784.520000,13.250000,92.960000,36.670000 +10,2023-08-16 20:00:00,0.000000,31.200000,24.000000,14.000000,203.000000,93.280000,54.940000,785.280000,13.810000,93.520000,37.800000 +10,2023-08-16 21:00:00,0.000000,31.200000,24.000000,14.000000,203.000000,93.510000,54.940000,785.280000,14.270000,93.520000,38.590000 +10,2023-08-16 22:00:00,0.000000,31.200000,24.000000,14.000000,203.000000,93.690000,54.940000,785.280000,14.620000,93.520000,39.210000 +10,2023-08-16 23:00:00,0.000000,25.000000,34.000000,12.000000,200.000000,93.540000,54.940000,785.280000,12.950000,93.520000,36.220000 +10,2023-08-17 00:00:00,0.000000,25.000000,34.000000,12.000000,200.000000,93.410000,54.940000,785.280000,12.720000,93.520000,35.800000 +10,2023-08-17 01:00:00,0.000000,25.000000,34.000000,12.000000,200.000000,93.300000,54.940000,785.280000,12.520000,93.520000,35.440000 +10,2023-08-17 02:00:00,0.000000,25.000000,34.000000,12.000000,200.000000,93.210000,54.940000,785.280000,12.360000,93.520000,35.130000 +10,2023-08-17 03:00:00,0.000000,25.000000,34.000000,12.000000,200.000000,93.120000,54.940000,785.280000,12.220000,93.520000,34.870000 +10,2023-08-17 04:00:00,0.000000,25.000000,34.000000,12.000000,200.000000,93.050000,54.940000,785.280000,12.100000,93.520000,34.640000 +10,2023-08-17 05:00:00,0.000000,20.000000,46.000000,11.000000,190.000000,92.590000,54.940000,785.280000,10.780000,93.520000,32.090000 +10,2023-08-17 06:00:00,0.000000,20.000000,46.000000,11.000000,190.000000,92.190000,55.080000,785.530000,10.190000,93.740000,30.930000 +10,2023-08-17 07:00:00,0.000000,20.000000,46.000000,11.000000,190.000000,91.850000,55.230000,785.790000,9.700000,93.950000,29.960000 +10,2023-08-17 08:00:00,0.000000,20.000000,46.000000,11.000000,190.000000,91.550000,55.370000,786.040000,9.300000,94.160000,29.140000 +10,2023-08-17 09:00:00,0.000000,20.000000,46.000000,11.000000,190.000000,91.290000,55.520000,786.300000,8.970000,94.370000,28.450000 +10,2023-08-17 10:00:00,0.000000,20.000000,46.000000,11.000000,190.000000,91.060000,55.660000,786.560000,8.680000,94.590000,27.870000 +10,2023-08-17 11:00:00,0.000000,29.500000,26.000000,18.000000,201.000000,91.630000,56.010000,787.180000,13.390000,95.100000,37.330000 +10,2023-08-17 12:00:00,0.000000,29.500000,26.000000,18.000000,201.000000,92.070000,56.360000,787.800000,14.250000,95.610000,38.980000 +10,2023-08-17 13:00:00,0.000000,29.500000,26.000000,18.000000,201.000000,92.410000,56.710000,788.420000,14.950000,96.130000,40.300000 +10,2023-08-17 14:00:00,0.000000,29.500000,26.000000,18.000000,201.000000,92.670000,57.050000,789.040000,15.510000,96.640000,41.370000 +10,2023-08-17 15:00:00,0.000000,29.500000,26.000000,18.000000,201.000000,92.870000,57.400000,789.650000,15.960000,97.150000,42.230000 +10,2023-08-17 16:00:00,0.000000,29.500000,26.000000,18.000000,201.000000,93.030000,57.750000,790.270000,16.310000,97.660000,42.920000 +10,2023-08-17 17:00:00,0.000000,32.600000,17.000000,14.000000,199.000000,93.780000,58.220000,791.100000,14.810000,98.340000,40.470000 +10,2023-08-17 18:00:00,0.000000,32.600000,17.000000,14.000000,199.000000,94.350000,58.680000,791.930000,16.020000,99.020000,42.710000 +10,2023-08-17 19:00:00,0.000000,32.600000,17.000000,14.000000,199.000000,94.780000,59.150000,792.760000,17.000000,99.700000,44.480000 +10,2023-08-17 20:00:00,0.000000,32.600000,17.000000,14.000000,199.000000,95.100000,59.610000,793.590000,17.760000,100.380000,45.880000 +10,2023-08-17 21:00:00,0.000000,32.600000,17.000000,14.000000,199.000000,95.340000,59.610000,793.590000,18.360000,100.380000,46.850000 +10,2023-08-17 22:00:00,0.000000,32.600000,17.000000,14.000000,199.000000,95.520000,59.610000,793.590000,18.820000,100.380000,47.590000 +10,2023-08-17 23:00:00,0.000000,23.600000,32.000000,9.000000,208.000000,95.190000,59.610000,793.590000,13.970000,100.380000,39.340000 +10,2023-08-18 00:00:00,0.000000,23.600000,32.000000,9.000000,208.000000,94.890000,59.610000,793.590000,13.420000,100.380000,38.320000 +10,2023-08-18 01:00:00,0.000000,23.600000,32.000000,9.000000,208.000000,94.630000,59.610000,793.590000,12.950000,100.380000,37.450000 +10,2023-08-18 02:00:00,0.000000,23.600000,32.000000,9.000000,208.000000,94.410000,59.610000,793.590000,12.550000,100.380000,36.690000 +10,2023-08-18 03:00:00,0.000000,23.600000,32.000000,9.000000,208.000000,94.210000,59.610000,793.590000,12.210000,100.380000,36.040000 +10,2023-08-18 04:00:00,0.000000,23.600000,32.000000,9.000000,208.000000,94.030000,59.610000,793.590000,11.920000,100.380000,35.470000 +10,2023-08-18 05:00:00,0.000000,18.200000,50.000000,7.000000,183.000000,93.380000,59.610000,793.590000,9.840000,100.380000,31.220000 +10,2023-08-18 06:00:00,0.000000,18.200000,50.000000,7.000000,183.000000,92.810000,59.790000,793.920000,9.090000,100.640000,29.610000 +10,2023-08-18 07:00:00,0.000000,18.200000,50.000000,7.000000,183.000000,92.310000,59.970000,794.260000,8.460000,100.900000,28.260000 +10,2023-08-18 08:00:00,0.000000,18.200000,50.000000,7.000000,183.000000,91.870000,60.150000,794.590000,7.950000,101.160000,27.110000 +10,2023-08-18 09:00:00,0.000000,18.200000,50.000000,7.000000,183.000000,91.480000,60.330000,794.920000,7.530000,101.420000,26.130000 +10,2023-08-18 10:00:00,0.000000,18.200000,50.000000,7.000000,183.000000,91.140000,60.510000,795.260000,7.170000,101.680000,25.300000 +10,2023-08-18 11:00:00,0.000000,29.100000,29.000000,14.000000,181.000000,91.500000,61.000000,796.170000,10.750000,102.390000,33.410000 +10,2023-08-18 12:00:00,0.000000,29.100000,29.000000,14.000000,181.000000,91.790000,61.490000,797.080000,11.190000,103.100000,34.440000 +10,2023-08-18 13:00:00,0.000000,29.100000,29.000000,14.000000,181.000000,92.010000,61.980000,797.990000,11.560000,103.800000,35.280000 +10,2023-08-18 14:00:00,0.000000,29.100000,29.000000,14.000000,181.000000,92.190000,62.470000,798.900000,11.850000,104.510000,35.980000 +10,2023-08-18 15:00:00,0.000000,29.100000,29.000000,14.000000,181.000000,92.330000,62.960000,799.820000,12.090000,105.210000,36.560000 +10,2023-08-18 16:00:00,0.000000,29.100000,29.000000,14.000000,181.000000,92.440000,63.450000,800.730000,12.280000,105.920000,37.040000 +10,2023-08-18 17:00:00,0.000000,31.700000,26.000000,17.000000,188.000000,92.800000,64.040000,801.830000,15.020000,106.760000,42.360000 +11,2023-08-03 00:00:00,0.000000,15.300000,67.000000,5.000000,60.000000,85.910000,118.400000,826.100000,3.070000,174.330000,16.740000 +11,2023-08-03 01:00:00,0.000000,15.300000,67.000000,5.000000,60.000000,85.830000,118.400000,826.100000,3.040000,174.330000,16.600000 +11,2023-08-03 02:00:00,0.000000,12.600000,71.000000,3.000000,58.000000,85.650000,118.400000,826.100000,2.680000,174.330000,15.090000 +11,2023-08-03 03:00:00,0.000000,12.600000,71.000000,3.000000,58.000000,85.490000,118.400000,826.100000,2.620000,174.330000,14.840000 +11,2023-08-03 04:00:00,0.000000,12.600000,71.000000,3.000000,58.000000,85.350000,118.400000,826.100000,2.570000,174.330000,14.610000 +11,2023-08-03 05:00:00,0.000000,12.100000,71.000000,2.000000,50.000000,85.220000,118.450000,826.230000,2.400000,174.400000,13.860000 +11,2023-08-03 06:00:00,0.000000,12.100000,71.000000,2.000000,50.000000,85.100000,118.510000,826.360000,2.360000,174.460000,13.690000 +11,2023-08-03 07:00:00,0.000000,12.100000,71.000000,2.000000,50.000000,85.000000,118.560000,826.490000,2.330000,174.530000,13.530000 +11,2023-08-03 08:00:00,0.000000,16.300000,56.000000,4.000000,77.000000,85.060000,118.670000,826.740000,2.600000,174.660000,14.740000 +11,2023-08-03 09:00:00,0.000000,16.300000,56.000000,4.000000,77.000000,85.130000,118.770000,827.000000,2.620000,174.790000,14.840000 +11,2023-08-03 10:00:00,0.000000,16.300000,56.000000,4.000000,77.000000,85.180000,118.880000,827.250000,2.640000,174.920000,14.930000 +11,2023-08-03 11:00:00,0.000000,20.900000,38.000000,7.000000,63.000000,85.790000,119.080000,827.730000,3.340000,175.160000,17.840000 +11,2023-08-03 12:00:00,0.000000,20.900000,38.000000,7.000000,63.000000,86.320000,119.280000,828.220000,3.600000,175.410000,18.840000 +11,2023-08-03 13:00:00,0.000000,20.900000,38.000000,7.000000,63.000000,86.780000,119.480000,828.700000,3.840000,175.650000,19.760000 +11,2023-08-03 14:00:00,0.000000,22.600000,36.000000,10.000000,48.000000,87.330000,119.710000,829.250000,4.830000,175.930000,23.300000 +11,2023-08-03 15:00:00,0.000000,22.600000,36.000000,10.000000,48.000000,87.800000,119.940000,829.800000,5.170000,176.210000,24.430000 +11,2023-08-03 16:00:00,0.000000,22.600000,36.000000,10.000000,48.000000,88.200000,120.170000,830.350000,5.470000,176.480000,25.430000 +11,2023-08-03 17:00:00,0.000000,22.600000,37.000000,10.000000,40.000000,88.500000,120.390000,830.890000,5.720000,176.760000,26.220000 +11,2023-08-03 18:00:00,0.000000,22.600000,37.000000,10.000000,40.000000,88.760000,120.620000,831.430000,5.930000,177.030000,26.900000 +11,2023-08-03 19:00:00,0.000000,22.600000,37.000000,10.000000,40.000000,88.970000,120.850000,831.980000,6.120000,177.310000,27.490000 +11,2023-08-03 20:00:00,0.000000,20.700000,42.000000,6.000000,47.000000,88.970000,121.030000,832.420000,5.000000,177.530000,23.910000 +11,2023-08-03 21:00:00,0.000000,20.700000,42.000000,6.000000,47.000000,88.970000,121.220000,832.870000,5.000000,177.760000,23.910000 +11,2023-08-03 22:00:00,0.000000,20.700000,42.000000,6.000000,47.000000,88.970000,121.220000,832.870000,5.000000,177.760000,23.910000 +11,2023-08-03 23:00:00,0.000000,15.400000,59.000000,2.000000,130.000000,88.740000,121.220000,832.870000,3.960000,177.760000,20.240000 +11,2023-08-04 00:00:00,0.000000,15.400000,59.000000,2.000000,130.000000,88.540000,121.220000,832.870000,3.840000,177.760000,19.810000 +11,2023-08-04 01:00:00,0.000000,15.400000,59.000000,2.000000,130.000000,88.350000,121.220000,832.870000,3.740000,177.760000,19.420000 +11,2023-08-04 02:00:00,0.000000,13.200000,67.000000,5.000000,243.000000,87.980000,121.220000,832.870000,4.120000,177.760000,20.850000 +11,2023-08-04 03:00:00,0.000000,13.200000,67.000000,5.000000,243.000000,87.640000,121.220000,832.870000,3.930000,177.760000,20.140000 +11,2023-08-04 04:00:00,0.000000,13.200000,67.000000,5.000000,243.000000,87.350000,121.220000,832.870000,3.770000,177.760000,19.530000 +11,2023-08-04 05:00:00,0.000000,12.900000,70.000000,6.000000,251.000000,87.010000,121.270000,832.990000,3.780000,177.820000,19.560000 +11,2023-08-04 06:00:00,0.000000,12.900000,70.000000,6.000000,251.000000,86.710000,121.320000,833.110000,3.620000,177.880000,18.960000 +11,2023-08-04 07:00:00,0.000000,12.900000,70.000000,6.000000,251.000000,86.440000,121.370000,833.230000,3.480000,177.950000,18.450000 +11,2023-08-04 08:00:00,0.000000,17.400000,58.000000,3.000000,266.000000,86.440000,121.470000,833.460000,2.990000,178.070000,16.490000 +11,2023-08-04 09:00:00,0.000000,17.400000,58.000000,3.000000,266.000000,86.440000,121.570000,833.690000,2.990000,178.180000,16.490000 +11,2023-08-04 10:00:00,0.000000,17.400000,58.000000,3.000000,266.000000,86.440000,121.670000,833.920000,2.990000,178.300000,16.490000 +11,2023-08-04 11:00:00,0.000000,23.700000,39.000000,1.000000,227.000000,86.860000,121.880000,834.410000,2.870000,178.560000,15.980000 +11,2023-08-04 12:00:00,0.000000,23.700000,39.000000,1.000000,227.000000,87.220000,122.090000,834.900000,3.030000,178.810000,16.630000 +11,2023-08-04 13:00:00,0.000000,23.700000,39.000000,1.000000,227.000000,87.550000,122.300000,835.400000,3.170000,179.070000,17.220000 +11,2023-08-04 14:00:00,0.000000,25.800000,31.000000,5.000000,7.000000,88.240000,122.570000,836.030000,4.280000,179.390000,21.450000 +11,2023-08-04 15:00:00,0.000000,25.800000,31.000000,5.000000,7.000000,88.820000,122.840000,836.660000,4.650000,179.720000,22.770000 +11,2023-08-04 16:00:00,0.000000,25.800000,31.000000,5.000000,7.000000,89.310000,123.110000,837.290000,4.990000,180.040000,23.930000 +11,2023-08-04 17:00:00,0.000000,25.700000,32.000000,8.000000,6.000000,89.710000,123.380000,837.900000,6.150000,180.360000,27.670000 +11,2023-08-04 18:00:00,0.000000,25.700000,32.000000,8.000000,6.000000,90.040000,123.640000,838.520000,6.450000,180.680000,28.590000 +11,2023-08-04 19:00:00,0.000000,25.700000,32.000000,8.000000,6.000000,90.320000,123.910000,839.140000,6.710000,181.000000,29.380000 +11,2023-08-04 20:00:00,0.000000,23.700000,38.000000,5.000000,3.000000,90.320000,124.120000,839.640000,5.770000,181.260000,26.500000 +11,2023-08-04 21:00:00,0.000000,23.700000,38.000000,5.000000,3.000000,90.320000,124.340000,840.140000,5.770000,181.520000,26.510000 +11,2023-08-04 22:00:00,0.000000,23.700000,38.000000,5.000000,3.000000,90.320000,124.340000,840.140000,5.770000,181.520000,26.510000 +11,2023-08-04 23:00:00,0.000000,19.300000,52.000000,5.000000,338.000000,90.090000,124.340000,840.140000,5.590000,181.520000,25.930000 +11,2023-08-05 00:00:00,0.000000,19.300000,52.000000,5.000000,338.000000,89.900000,124.340000,840.140000,5.430000,181.520000,25.440000 +11,2023-08-05 01:00:00,0.000000,19.300000,52.000000,5.000000,338.000000,89.730000,124.340000,840.140000,5.300000,181.520000,25.000000 +11,2023-08-05 02:00:00,0.000000,15.900000,67.000000,5.000000,303.000000,89.200000,124.340000,840.140000,4.920000,181.520000,23.720000 +11,2023-08-05 03:00:00,0.000000,15.900000,67.000000,5.000000,303.000000,88.740000,124.340000,840.140000,4.600000,181.520000,22.640000 +11,2023-08-05 04:00:00,0.000000,15.900000,67.000000,5.000000,303.000000,88.340000,124.340000,840.140000,4.340000,181.520000,21.720000 +11,2023-08-05 05:00:00,0.000000,13.900000,80.000000,5.000000,271.000000,87.620000,124.400000,840.310000,3.920000,181.590000,20.180000 +11,2023-08-05 06:00:00,0.000000,13.900000,80.000000,5.000000,271.000000,86.990000,124.460000,840.480000,3.580000,181.670000,18.900000 +11,2023-08-05 07:00:00,0.000000,13.900000,80.000000,5.000000,271.000000,86.440000,124.520000,840.650000,3.310000,181.740000,17.840000 +11,2023-08-05 08:00:00,0.000000,19.100000,63.000000,4.000000,344.000000,86.440000,124.680000,841.090000,3.150000,181.930000,17.190000 +11,2023-08-05 09:00:00,0.000000,19.100000,63.000000,4.000000,344.000000,86.440000,124.830000,841.540000,3.150000,182.130000,17.190000 +11,2023-08-05 10:00:00,0.000000,19.100000,63.000000,4.000000,344.000000,86.440000,124.990000,841.980000,3.150000,182.320000,17.200000 +11,2023-08-05 11:00:00,0.000000,22.700000,49.000000,7.000000,14.000000,86.650000,125.260000,842.740000,3.770000,182.650000,19.650000 +11,2023-08-05 12:00:00,0.000000,22.700000,49.000000,7.000000,14.000000,86.820000,125.530000,843.500000,3.870000,182.980000,20.020000 +11,2023-08-05 13:00:00,0.000000,22.700000,49.000000,7.000000,14.000000,86.980000,125.800000,844.270000,3.950000,183.310000,20.350000 +11,2023-08-05 14:00:00,0.160000,19.600000,65.000000,14.000000,22.000000,86.870000,125.950000,844.700000,5.540000,183.500000,25.830000 +11,2023-08-05 15:00:00,0.000000,19.600000,65.000000,14.000000,22.000000,86.770000,126.100000,845.130000,5.460000,183.690000,25.590000 +11,2023-08-05 16:00:00,0.000000,19.600000,65.000000,14.000000,22.000000,86.690000,126.260000,845.560000,5.400000,183.880000,25.400000 +11,2023-08-05 17:00:00,0.190000,17.600000,71.000000,8.000000,42.000000,86.440000,126.370000,845.880000,3.850000,184.010000,19.990000 +11,2023-08-05 18:00:00,0.000000,17.600000,71.000000,8.000000,42.000000,86.220000,126.480000,846.200000,3.740000,184.150000,19.550000 +11,2023-08-05 19:00:00,0.000000,17.600000,71.000000,8.000000,42.000000,86.040000,126.590000,846.510000,3.640000,184.290000,19.180000 +11,2023-08-05 20:00:00,0.000000,17.500000,67.000000,6.000000,36.000000,85.980000,126.720000,846.870000,3.260000,184.440000,17.700000 +11,2023-08-05 21:00:00,0.000000,17.500000,67.000000,6.000000,36.000000,85.930000,126.840000,847.230000,3.240000,184.600000,17.610000 +11,2023-08-05 22:00:00,0.000000,17.500000,67.000000,6.000000,36.000000,85.880000,126.840000,847.230000,3.220000,184.600000,17.520000 +11,2023-08-05 23:00:00,0.000000,14.900000,79.000000,3.000000,13.000000,85.520000,126.840000,847.230000,2.630000,184.600000,15.060000 +11,2023-08-06 00:00:00,0.000000,14.900000,79.000000,3.000000,13.000000,85.200000,126.840000,847.230000,2.520000,184.600000,14.560000 +11,2023-08-06 01:00:00,0.000000,14.900000,79.000000,3.000000,13.000000,84.920000,126.840000,847.230000,2.420000,184.600000,14.130000 +11,2023-08-06 02:00:00,0.000000,12.800000,90.000000,3.000000,319.000000,84.250000,126.840000,847.230000,2.210000,184.600000,13.160000 +11,2023-08-06 03:00:00,0.000000,12.800000,90.000000,3.000000,319.000000,83.660000,126.840000,847.230000,2.040000,184.600000,12.360000 +11,2023-08-06 04:00:00,0.000000,12.800000,90.000000,3.000000,319.000000,83.140000,126.840000,847.230000,1.910000,184.600000,11.700000 +11,2023-08-06 05:00:00,0.000000,10.800000,99.000000,5.000000,306.000000,82.020000,126.850000,847.230000,1.840000,184.600000,11.340000 +11,2023-08-06 06:00:00,0.000000,10.800000,99.000000,5.000000,306.000000,81.030000,126.850000,847.230000,1.640000,184.600000,10.310000 +11,2023-08-06 07:00:00,0.000000,10.800000,99.000000,5.000000,306.000000,80.170000,126.850000,847.240000,1.490000,184.600000,9.520000 +11,2023-08-06 08:00:00,0.000000,15.600000,71.000000,5.000000,354.000000,80.370000,126.930000,847.420000,1.520000,184.690000,9.700000 +11,2023-08-06 09:00:00,0.000000,15.600000,71.000000,5.000000,354.000000,80.570000,127.000000,847.590000,1.550000,184.780000,9.880000 +11,2023-08-06 10:00:00,0.000000,15.600000,71.000000,5.000000,354.000000,80.750000,127.080000,847.770000,1.580000,184.870000,10.040000 +11,2023-08-06 11:00:00,0.000000,20.400000,36.000000,11.000000,32.000000,82.060000,127.300000,848.300000,2.500000,185.140000,14.470000 +11,2023-08-06 12:00:00,0.000000,20.400000,36.000000,11.000000,32.000000,83.190000,127.520000,848.820000,2.880000,185.410000,16.130000 +11,2023-08-06 13:00:00,0.000000,20.400000,36.000000,11.000000,32.000000,84.170000,127.750000,849.350000,3.270000,185.680000,17.760000 +11,2023-08-06 14:00:00,0.000000,21.600000,31.000000,13.000000,28.000000,85.280000,128.010000,849.960000,4.210000,185.990000,21.350000 +11,2023-08-06 15:00:00,0.000000,21.600000,31.000000,13.000000,28.000000,86.220000,128.270000,850.570000,4.800000,186.300000,23.440000 +11,2023-08-06 16:00:00,0.000000,21.600000,31.000000,13.000000,28.000000,87.010000,128.530000,851.180000,5.370000,186.610000,25.370000 +11,2023-08-06 17:00:00,0.000000,21.400000,31.000000,13.000000,35.000000,87.670000,128.790000,851.790000,5.910000,186.920000,27.090000 +11,2023-08-06 18:00:00,0.000000,21.400000,31.000000,13.000000,35.000000,88.230000,129.040000,852.390000,6.400000,187.220000,28.610000 +11,2023-08-06 19:00:00,0.000000,21.400000,31.000000,13.000000,35.000000,88.700000,129.300000,852.990000,6.840000,187.530000,29.950000 +11,2023-08-06 20:00:00,0.000000,18.800000,39.000000,9.000000,50.000000,88.750000,129.490000,853.450000,5.640000,187.760000,26.250000 +11,2023-08-06 21:00:00,0.000000,18.800000,39.000000,9.000000,50.000000,88.800000,129.690000,853.900000,5.680000,187.990000,26.390000 +11,2023-08-06 22:00:00,0.000000,18.800000,39.000000,9.000000,50.000000,88.850000,129.690000,853.900000,5.710000,187.990000,26.500000 +11,2023-08-06 23:00:00,0.000000,13.100000,61.000000,4.000000,51.000000,88.550000,129.690000,853.900000,4.260000,187.990000,21.560000 +11,2023-08-07 00:00:00,0.000000,13.100000,61.000000,4.000000,51.000000,88.290000,129.690000,853.900000,4.100000,187.990000,20.980000 +11,2023-08-07 01:00:00,0.000000,13.100000,61.000000,4.000000,51.000000,88.050000,129.690000,853.900000,3.960000,187.990000,20.470000 +11,2023-08-07 02:00:00,0.000000,9.900000,80.000000,3.000000,21.000000,87.430000,129.690000,853.900000,3.450000,187.990000,18.500000 +11,2023-08-07 03:00:00,0.000000,9.900000,80.000000,3.000000,21.000000,86.870000,129.690000,853.900000,3.180000,187.990000,17.440000 +11,2023-08-07 04:00:00,0.000000,9.900000,80.000000,3.000000,21.000000,86.370000,129.690000,853.900000,2.970000,187.990000,16.540000 +11,2023-08-07 05:00:00,0.000000,8.600000,87.000000,3.000000,27.000000,85.710000,129.700000,853.950000,2.700000,188.020000,15.410000 +11,2023-08-07 06:00:00,0.000000,8.600000,87.000000,3.000000,27.000000,85.110000,129.720000,854.000000,2.480000,188.040000,14.460000 +11,2023-08-07 07:00:00,0.000000,8.600000,87.000000,3.000000,27.000000,84.570000,129.740000,854.040000,2.310000,188.060000,13.650000 +11,2023-08-07 08:00:00,0.000000,14.100000,56.000000,6.000000,75.000000,84.640000,129.830000,854.270000,2.710000,188.170000,15.460000 +11,2023-08-07 09:00:00,0.000000,14.100000,56.000000,6.000000,75.000000,84.710000,129.930000,854.500000,2.740000,188.280000,15.570000 +11,2023-08-07 10:00:00,0.000000,14.100000,56.000000,6.000000,75.000000,84.770000,130.020000,854.730000,2.760000,188.390000,15.670000 +11,2023-08-07 11:00:00,0.000000,20.000000,39.000000,12.000000,82.000000,85.430000,130.200000,855.190000,4.090000,188.610000,20.950000 +11,2023-08-07 12:00:00,0.000000,20.000000,39.000000,12.000000,82.000000,85.990000,130.390000,855.650000,4.420000,188.840000,22.160000 +11,2023-08-07 13:00:00,0.000000,20.000000,39.000000,12.000000,82.000000,86.470000,130.570000,856.100000,4.730000,189.060000,23.260000 +11,2023-08-07 14:00:00,0.000000,22.200000,33.000000,13.000000,73.000000,87.190000,130.800000,856.680000,5.510000,189.340000,25.880000 +11,2023-08-07 15:00:00,0.000000,22.200000,33.000000,13.000000,73.000000,87.790000,131.040000,857.260000,6.000000,189.610000,27.460000 +11,2023-08-07 16:00:00,0.000000,22.200000,33.000000,13.000000,73.000000,88.290000,131.270000,857.840000,6.450000,189.890000,28.850000 +11,2023-08-07 17:00:00,0.000000,22.200000,32.000000,15.000000,63.000000,88.760000,131.500000,858.420000,7.640000,190.180000,32.320000 +11,2023-08-07 18:00:00,0.000000,22.200000,32.000000,15.000000,63.000000,89.150000,131.740000,859.010000,8.080000,190.460000,33.560000 +11,2023-08-07 19:00:00,0.000000,22.200000,32.000000,15.000000,63.000000,89.480000,131.980000,859.600000,8.460000,190.740000,34.620000 +11,2023-08-07 20:00:00,0.000000,19.600000,38.000000,12.000000,59.000000,89.480000,132.160000,860.050000,7.270000,190.960000,31.310000 +11,2023-08-07 21:00:00,0.000000,19.600000,38.000000,12.000000,59.000000,89.480000,132.340000,860.510000,7.270000,191.180000,31.320000 +11,2023-08-07 22:00:00,0.000000,19.600000,38.000000,12.000000,59.000000,89.480000,132.340000,860.510000,7.270000,191.180000,31.320000 +11,2023-08-07 23:00:00,0.000000,14.000000,51.000000,7.000000,83.000000,89.300000,132.340000,860.510000,5.510000,191.180000,25.910000 +11,2023-08-08 00:00:00,0.000000,14.000000,51.000000,7.000000,83.000000,89.140000,132.340000,860.510000,5.380000,191.180000,25.500000 +11,2023-08-08 01:00:00,0.000000,14.000000,51.000000,7.000000,83.000000,88.990000,132.340000,860.510000,5.270000,191.180000,25.140000 +11,2023-08-08 02:00:00,0.000000,12.000000,51.000000,8.000000,124.000000,88.830000,132.340000,860.510000,5.420000,191.180000,25.630000 +11,2023-08-08 03:00:00,0.000000,12.000000,51.000000,8.000000,124.000000,88.690000,132.340000,860.510000,5.310000,191.180000,25.270000 +11,2023-08-08 04:00:00,0.000000,12.000000,51.000000,8.000000,124.000000,88.570000,132.340000,860.510000,5.220000,191.180000,24.950000 +11,2023-08-08 05:00:00,0.000000,9.800000,61.000000,6.000000,140.000000,88.270000,132.400000,860.630000,4.520000,191.240000,22.550000 +11,2023-08-08 06:00:00,0.000000,9.800000,61.000000,6.000000,140.000000,87.990000,132.450000,860.750000,4.350000,191.310000,21.930000 +11,2023-08-08 07:00:00,0.000000,9.800000,61.000000,6.000000,140.000000,87.750000,132.510000,860.870000,4.190000,191.380000,21.390000 +11,2023-08-08 08:00:00,0.000000,14.800000,48.000000,7.000000,155.000000,87.750000,132.610000,861.100000,4.410000,191.500000,22.170000 +11,2023-08-08 09:00:00,0.000000,14.800000,48.000000,7.000000,155.000000,87.750000,132.720000,861.330000,4.410000,191.620000,22.180000 +11,2023-08-08 10:00:00,0.000000,14.800000,48.000000,7.000000,155.000000,87.750000,132.820000,861.560000,4.410000,191.740000,22.180000 +11,2023-08-08 11:00:00,0.000000,22.400000,34.000000,3.000000,158.000000,88.130000,133.030000,862.020000,3.810000,191.990000,19.980000 +11,2023-08-08 12:00:00,0.000000,22.400000,34.000000,3.000000,158.000000,88.470000,133.240000,862.490000,4.000000,192.240000,20.690000 +11,2023-08-08 13:00:00,0.000000,22.400000,34.000000,3.000000,158.000000,88.760000,133.460000,862.950000,4.170000,192.490000,21.330000 +11,2023-08-08 14:00:00,0.000000,25.400000,27.000000,7.000000,346.000000,89.420000,133.740000,863.570000,5.610000,192.820000,26.260000 +11,2023-08-08 15:00:00,0.000000,25.400000,27.000000,7.000000,346.000000,89.960000,134.020000,864.180000,6.060000,193.150000,27.720000 +11,2023-08-08 16:00:00,0.000000,25.400000,27.000000,7.000000,346.000000,90.420000,134.300000,864.800000,6.470000,193.480000,28.990000 +11,2023-08-08 17:00:00,0.000000,25.300000,27.000000,13.000000,33.000000,90.830000,134.580000,865.410000,9.290000,193.810000,36.900000 +11,2023-08-08 18:00:00,0.000000,25.300000,27.000000,13.000000,33.000000,91.170000,134.850000,866.020000,9.750000,194.130000,38.080000 +11,2023-08-08 19:00:00,0.000000,25.300000,27.000000,13.000000,33.000000,91.440000,135.130000,866.640000,10.130000,194.460000,39.070000 +11,2023-08-08 20:00:00,0.000000,22.200000,35.000000,8.000000,46.000000,91.440000,135.340000,867.090000,7.880000,194.700000,33.110000 +11,2023-08-08 21:00:00,0.000000,22.200000,35.000000,8.000000,46.000000,91.440000,135.540000,867.540000,7.880000,194.940000,33.120000 +11,2023-08-08 22:00:00,0.000000,22.200000,35.000000,8.000000,46.000000,91.440000,135.540000,867.540000,7.880000,194.940000,33.120000 +11,2023-08-08 23:00:00,0.000000,15.500000,54.000000,5.000000,19.000000,91.020000,135.540000,867.540000,6.380000,194.940000,28.730000 +11,2023-08-09 00:00:00,0.000000,15.500000,54.000000,5.000000,19.000000,90.640000,135.540000,867.540000,6.040000,194.940000,27.690000 +11,2023-08-09 01:00:00,0.000000,15.500000,54.000000,5.000000,19.000000,90.310000,135.540000,867.540000,5.760000,194.940000,26.800000 +11,2023-08-09 02:00:00,0.000000,12.700000,64.000000,4.000000,273.000000,89.800000,135.540000,867.540000,5.090000,194.940000,24.610000 +11,2023-08-09 03:00:00,0.000000,12.700000,64.000000,4.000000,273.000000,89.350000,135.540000,867.540000,4.770000,194.940000,23.510000 +11,2023-08-09 04:00:00,0.000000,12.700000,64.000000,4.000000,273.000000,88.940000,135.540000,867.540000,4.500000,194.940000,22.560000 +11,2023-08-09 05:00:00,0.000000,11.300000,70.000000,5.000000,246.000000,88.440000,135.590000,867.640000,4.400000,195.000000,22.210000 +11,2023-08-09 06:00:00,0.000000,11.300000,70.000000,5.000000,246.000000,87.980000,135.640000,867.730000,4.130000,195.060000,21.200000 +11,2023-08-09 07:00:00,0.000000,11.300000,70.000000,5.000000,246.000000,87.580000,135.690000,867.820000,3.890000,195.110000,20.330000 +11,2023-08-09 08:00:00,0.000000,17.300000,48.000000,3.000000,205.000000,87.580000,135.810000,868.060000,3.520000,195.250000,18.900000 +11,2023-08-09 09:00:00,0.000000,17.300000,48.000000,3.000000,205.000000,87.580000,135.930000,868.300000,3.520000,195.390000,18.900000 +11,2023-08-09 10:00:00,0.000000,17.300000,48.000000,3.000000,205.000000,87.580000,136.060000,868.540000,3.520000,195.540000,18.900000 +11,2023-08-09 11:00:00,0.000000,25.200000,29.000000,4.000000,154.000000,88.280000,136.330000,869.070000,4.100000,195.850000,21.100000 +11,2023-08-09 12:00:00,0.000000,25.200000,29.000000,4.000000,154.000000,88.880000,136.600000,869.600000,4.460000,196.160000,22.440000 +11,2023-08-09 13:00:00,0.000000,25.200000,29.000000,4.000000,154.000000,89.390000,136.870000,870.140000,4.800000,196.480000,23.630000 +11,2023-08-09 14:00:00,0.000000,27.600000,25.000000,7.000000,134.000000,90.130000,137.200000,870.780000,6.210000,196.860000,28.260000 +11,2023-08-09 15:00:00,0.000000,27.600000,25.000000,7.000000,134.000000,90.740000,137.530000,871.430000,6.780000,197.240000,29.980000 +11,2023-08-09 16:00:00,0.000000,27.600000,25.000000,7.000000,134.000000,91.240000,137.860000,872.070000,7.270000,197.620000,31.460000 +11,2023-08-09 17:00:00,0.000000,27.900000,25.000000,9.000000,124.000000,91.670000,138.200000,872.730000,8.560000,198.010000,35.070000 +11,2023-08-09 18:00:00,0.000000,27.900000,25.000000,9.000000,124.000000,92.030000,138.530000,873.390000,9.000000,198.400000,36.250000 +11,2023-08-09 19:00:00,0.000000,27.900000,25.000000,9.000000,124.000000,92.310000,138.870000,874.050000,9.370000,198.780000,37.230000 +11,2023-08-09 20:00:00,0.000000,25.000000,30.000000,6.000000,117.000000,92.310000,139.140000,874.560000,8.050000,199.090000,33.710000 +11,2023-08-09 21:00:00,0.000000,25.000000,30.000000,6.000000,117.000000,92.310000,139.400000,875.080000,8.050000,199.390000,33.710000 +11,2023-08-09 22:00:00,0.000000,25.000000,30.000000,6.000000,117.000000,92.310000,139.400000,875.080000,8.050000,199.390000,33.710000 +11,2023-08-09 23:00:00,0.000000,18.300000,45.000000,5.000000,158.000000,92.010000,139.400000,875.080000,7.340000,199.390000,31.680000 +11,2023-08-10 00:00:00,0.000000,18.300000,45.000000,5.000000,158.000000,91.740000,139.400000,875.080000,7.060000,199.390000,30.880000 +11,2023-08-10 01:00:00,0.000000,18.300000,45.000000,5.000000,158.000000,91.500000,139.400000,875.080000,6.830000,199.390000,30.180000 +11,2023-08-10 02:00:00,0.000000,15.800000,54.000000,7.000000,182.000000,91.050000,139.400000,875.080000,7.080000,199.390000,30.930000 +11,2023-08-10 03:00:00,0.000000,15.800000,54.000000,7.000000,182.000000,90.650000,139.400000,875.080000,6.690000,199.390000,29.760000 +11,2023-08-10 04:00:00,0.000000,15.800000,54.000000,7.000000,182.000000,90.290000,139.400000,875.080000,6.360000,199.390000,28.760000 +11,2023-08-10 05:00:00,0.000000,15.500000,57.000000,7.000000,168.000000,89.910000,139.490000,875.270000,6.020000,199.500000,27.710000 +11,2023-08-10 06:00:00,0.000000,15.500000,57.000000,7.000000,168.000000,89.580000,139.580000,875.450000,5.740000,199.600000,26.810000 +11,2023-08-10 07:00:00,0.000000,15.500000,57.000000,7.000000,168.000000,89.280000,139.670000,875.640000,5.500000,199.710000,26.030000 +11,2023-08-10 08:00:00,0.000000,19.500000,45.000000,8.000000,159.000000,89.280000,139.820000,875.940000,5.780000,199.880000,26.950000 +11,2023-08-10 09:00:00,0.000000,19.500000,45.000000,8.000000,159.000000,89.280000,139.970000,876.250000,5.780000,200.060000,26.960000 +11,2023-08-10 10:00:00,0.000000,19.500000,45.000000,8.000000,159.000000,89.280000,140.120000,876.550000,5.780000,200.230000,26.960000 +11,2023-08-10 11:00:00,0.000000,24.800000,31.000000,11.000000,156.000000,89.700000,140.390000,877.080000,7.150000,200.530000,31.150000 +11,2023-08-10 12:00:00,0.000000,24.800000,31.000000,11.000000,156.000000,90.060000,140.650000,877.600000,7.520000,200.830000,32.230000 +11,2023-08-10 13:00:00,0.000000,24.800000,31.000000,11.000000,156.000000,90.350000,140.910000,878.130000,7.840000,201.130000,33.140000 +11,2023-08-10 14:00:00,0.000000,26.000000,25.000000,11.000000,176.000000,90.880000,141.210000,878.750000,8.450000,201.480000,34.860000 +11,2023-08-10 15:00:00,0.000000,26.000000,25.000000,11.000000,176.000000,91.310000,141.510000,879.360000,8.990000,201.830000,36.300000 +11,2023-08-10 16:00:00,0.000000,26.000000,25.000000,11.000000,176.000000,91.660000,141.820000,879.980000,9.450000,202.180000,37.520000 +11,2023-08-10 17:00:00,0.000000,26.300000,23.000000,9.000000,152.000000,92.030000,142.140000,880.620000,9.010000,202.540000,36.360000 +11,2023-08-10 18:00:00,0.000000,26.300000,23.000000,9.000000,152.000000,92.340000,142.450000,881.260000,9.400000,202.910000,37.410000 +11,2023-08-10 19:00:00,0.000000,26.300000,23.000000,9.000000,152.000000,92.580000,142.770000,881.910000,9.730000,203.270000,38.280000 +11,2023-08-10 20:00:00,0.000000,26.300000,23.000000,9.000000,152.000000,92.780000,143.090000,882.550000,10.010000,203.640000,39.000000 +11,2023-08-10 21:00:00,0.000000,26.300000,23.000000,9.000000,152.000000,92.950000,143.090000,882.550000,10.250000,203.640000,39.590000 +11,2023-08-10 22:00:00,0.000000,26.300000,23.000000,9.000000,152.000000,93.080000,143.090000,882.550000,10.440000,203.640000,40.070000 +11,2023-08-10 23:00:00,0.000000,22.000000,40.000000,11.000000,165.000000,92.800000,143.090000,882.550000,11.110000,203.640000,41.700000 +11,2023-08-11 00:00:00,0.000000,22.000000,40.000000,11.000000,165.000000,92.560000,143.090000,882.550000,10.740000,203.640000,40.790000 +11,2023-08-11 01:00:00,0.000000,22.000000,40.000000,11.000000,165.000000,92.350000,143.090000,882.550000,10.420000,203.640000,40.030000 +11,2023-08-11 02:00:00,0.000000,22.000000,40.000000,11.000000,165.000000,92.170000,143.090000,882.550000,10.160000,203.640000,39.370000 +11,2023-08-11 03:00:00,0.000000,22.000000,40.000000,11.000000,165.000000,92.020000,143.090000,882.550000,9.940000,203.640000,38.810000 +11,2023-08-11 04:00:00,0.000000,22.000000,40.000000,11.000000,165.000000,91.880000,143.090000,882.550000,9.750000,203.640000,38.320000 +11,2023-08-11 05:00:00,0.000000,19.300000,55.000000,5.000000,168.000000,91.400000,143.190000,882.870000,6.730000,203.770000,29.970000 +11,2023-08-11 06:00:00,0.000000,19.300000,55.000000,5.000000,168.000000,90.970000,143.300000,883.200000,6.340000,203.900000,28.770000 +11,2023-08-11 07:00:00,0.000000,19.300000,55.000000,5.000000,168.000000,90.600000,143.410000,883.520000,6.010000,204.020000,27.760000 +11,2023-08-11 08:00:00,0.000000,19.300000,55.000000,5.000000,168.000000,90.280000,143.510000,883.840000,5.740000,204.150000,26.890000 +11,2023-08-11 09:00:00,0.000000,19.300000,55.000000,5.000000,168.000000,90.000000,143.620000,884.160000,5.510000,204.280000,26.140000 +11,2023-08-11 10:00:00,0.000000,19.300000,55.000000,5.000000,168.000000,89.750000,143.720000,884.490000,5.310000,204.410000,25.510000 +11,2023-08-11 11:00:00,0.000000,24.500000,54.000000,4.000000,191.000000,89.640000,143.870000,884.940000,4.980000,204.590000,24.360000 +11,2023-08-11 12:00:00,0.000000,24.500000,54.000000,4.000000,191.000000,89.540000,144.020000,885.390000,4.910000,204.770000,24.140000 +11,2023-08-11 13:00:00,0.000000,24.500000,54.000000,4.000000,191.000000,89.460000,144.170000,885.850000,4.850000,204.950000,23.950000 +11,2023-08-11 14:00:00,0.000000,24.500000,54.000000,4.000000,191.000000,89.390000,144.320000,886.300000,4.800000,205.130000,23.780000 +11,2023-08-11 15:00:00,0.000000,24.500000,54.000000,4.000000,191.000000,89.330000,144.470000,886.750000,4.760000,205.310000,23.640000 +11,2023-08-11 16:00:00,0.000000,24.500000,54.000000,4.000000,191.000000,89.280000,144.620000,887.200000,4.730000,205.490000,23.520000 +11,2023-08-11 17:00:00,0.000000,27.700000,42.000000,6.000000,64.000000,89.410000,144.840000,887.890000,5.330000,205.770000,25.570000 +11,2023-08-11 18:00:00,0.000000,27.700000,42.000000,6.000000,64.000000,89.520000,145.070000,888.580000,5.410000,206.040000,25.850000 +11,2023-08-11 19:00:00,0.000000,27.700000,42.000000,6.000000,64.000000,89.610000,145.290000,889.270000,5.480000,206.320000,26.080000 +11,2023-08-11 20:00:00,0.000000,27.700000,42.000000,6.000000,64.000000,89.680000,145.520000,889.960000,5.540000,206.590000,26.280000 +11,2023-08-11 21:00:00,0.000000,27.700000,42.000000,6.000000,64.000000,89.750000,145.520000,889.960000,5.590000,206.590000,26.450000 +11,2023-08-11 22:00:00,0.000000,27.700000,42.000000,6.000000,64.000000,89.800000,145.520000,889.960000,5.630000,206.590000,26.580000 +11,2023-08-11 23:00:00,0.000000,21.100000,63.000000,4.000000,82.000000,89.410000,145.520000,889.960000,4.810000,206.590000,23.830000 +11,2023-08-12 00:00:00,0.000000,21.100000,63.000000,4.000000,82.000000,89.070000,145.520000,889.960000,4.590000,206.590000,23.030000 +11,2023-08-12 01:00:00,0.000000,21.100000,63.000000,4.000000,82.000000,88.780000,145.520000,889.960000,4.400000,206.590000,22.360000 +11,2023-08-12 02:00:00,0.000000,21.100000,63.000000,4.000000,82.000000,88.520000,145.520000,889.960000,4.240000,206.590000,21.780000 +11,2023-08-12 03:00:00,0.000000,21.100000,63.000000,4.000000,82.000000,88.300000,145.520000,889.960000,4.110000,206.590000,21.300000 +11,2023-08-12 04:00:00,0.000000,21.100000,63.000000,4.000000,82.000000,88.110000,145.520000,889.960000,4.000000,206.590000,20.880000 +11,2023-08-12 05:00:00,0.000000,15.900000,86.000000,6.000000,211.000000,87.140000,145.560000,890.040000,3.850000,206.630000,20.320000 +11,2023-08-12 06:00:00,0.000000,15.900000,86.000000,6.000000,211.000000,86.310000,145.600000,890.120000,3.420000,206.680000,18.640000 +11,2023-08-12 07:00:00,0.000000,15.900000,86.000000,6.000000,211.000000,85.590000,145.630000,890.190000,3.090000,206.720000,17.300000 +11,2023-08-12 08:00:00,0.000000,15.900000,86.000000,6.000000,211.000000,84.960000,145.670000,890.270000,2.830000,206.760000,16.220000 +11,2023-08-12 09:00:00,0.000000,15.900000,86.000000,6.000000,211.000000,84.430000,145.710000,890.350000,2.630000,206.810000,15.340000 +11,2023-08-12 10:00:00,0.000000,15.900000,86.000000,6.000000,211.000000,83.960000,145.750000,890.420000,2.470000,206.850000,14.630000 +11,2023-08-12 11:00:00,0.000000,29.300000,35.000000,8.000000,165.000000,85.380000,146.140000,891.230000,3.320000,207.300000,18.250000 +11,2023-08-12 12:00:00,0.000000,29.300000,35.000000,8.000000,165.000000,86.550000,146.540000,892.030000,3.910000,207.750000,20.570000 +11,2023-08-12 13:00:00,0.000000,29.300000,35.000000,8.000000,165.000000,87.500000,146.930000,892.830000,4.480000,208.210000,22.680000 +11,2023-08-12 14:00:00,0.000000,29.300000,35.000000,8.000000,165.000000,88.280000,147.330000,893.640000,5.010000,208.660000,24.540000 +11,2023-08-12 15:00:00,0.000000,29.300000,35.000000,8.000000,165.000000,88.920000,147.730000,894.440000,5.490000,209.110000,26.160000 +11,2023-08-12 16:00:00,0.000000,29.300000,35.000000,8.000000,165.000000,89.440000,148.120000,895.240000,5.920000,209.560000,27.540000 +11,2023-08-12 17:00:00,0.000000,29.800000,41.000000,11.000000,211.000000,89.670000,148.490000,895.990000,7.110000,209.980000,31.220000 +11,2023-08-12 18:00:00,0.000000,29.800000,41.000000,11.000000,211.000000,89.850000,148.860000,896.740000,7.300000,210.400000,31.780000 +11,2023-08-12 19:00:00,0.000000,29.800000,41.000000,11.000000,211.000000,90.000000,149.230000,897.490000,7.460000,210.820000,32.240000 +11,2023-08-12 20:00:00,0.000000,29.800000,41.000000,11.000000,211.000000,90.120000,149.600000,898.240000,7.590000,211.240000,32.620000 +11,2023-08-12 21:00:00,0.000000,29.800000,41.000000,11.000000,211.000000,90.220000,149.600000,898.240000,7.690000,211.240000,32.920000 +11,2023-08-12 22:00:00,0.000000,29.800000,41.000000,11.000000,211.000000,90.290000,149.600000,898.240000,7.780000,211.240000,33.160000 +11,2023-08-12 23:00:00,0.000000,22.000000,55.000000,7.000000,230.000000,90.020000,149.600000,898.240000,6.120000,211.240000,28.210000 +11,2023-08-13 00:00:00,0.000000,22.000000,55.000000,7.000000,230.000000,89.790000,149.600000,898.240000,5.920000,211.240000,27.580000 +11,2023-08-13 01:00:00,0.000000,22.000000,55.000000,7.000000,230.000000,89.600000,149.600000,898.240000,5.750000,211.240000,27.040000 +11,2023-08-13 02:00:00,0.000000,22.000000,55.000000,7.000000,230.000000,89.430000,149.600000,898.240000,5.610000,211.240000,26.590000 +11,2023-08-13 03:00:00,0.000000,22.000000,55.000000,7.000000,230.000000,89.280000,149.600000,898.240000,5.500000,211.240000,26.210000 +11,2023-08-13 04:00:00,0.000000,22.000000,55.000000,7.000000,230.000000,89.150000,149.600000,898.240000,5.400000,211.240000,25.880000 +11,2023-08-13 05:00:00,0.000000,17.200000,67.000000,6.000000,282.000000,88.690000,149.660000,898.940000,4.800000,211.350000,23.860000 +11,2023-08-13 06:00:00,0.000000,17.200000,67.000000,6.000000,282.000000,88.290000,149.710000,899.650000,4.540000,211.450000,22.920000 +11,2023-08-13 07:00:00,0.000000,17.200000,67.000000,6.000000,282.000000,87.940000,149.770000,900.350000,4.310000,211.560000,22.120000 +11,2023-08-13 08:00:00,0.000000,17.200000,67.000000,6.000000,282.000000,87.640000,149.830000,901.050000,4.130000,211.660000,21.440000 +11,2023-08-13 09:00:00,0.000000,17.200000,67.000000,6.000000,282.000000,87.370000,149.880000,901.750000,3.970000,211.770000,20.860000 +11,2023-08-13 10:00:00,0.000000,17.200000,67.000000,6.000000,282.000000,87.140000,149.940000,902.450000,3.850000,211.870000,20.370000 +11,2023-08-13 11:00:00,5.540000,17.300000,87.000000,5.000000,258.000000,29.520000,108.130000,845.010000,0.000000,163.850000,0.010000 +11,2023-08-13 12:00:00,0.000000,17.300000,87.000000,5.000000,258.000000,31.060000,108.150000,845.290000,0.010000,163.880000,0.020000 +11,2023-08-13 13:00:00,0.000000,17.300000,87.000000,5.000000,258.000000,32.570000,108.180000,845.570000,0.010000,163.920000,0.030000 +11,2023-08-13 14:00:00,0.000000,17.300000,87.000000,5.000000,258.000000,34.060000,108.200000,845.840000,0.010000,163.960000,0.050000 +11,2023-08-13 15:00:00,0.000000,17.300000,87.000000,5.000000,258.000000,35.520000,108.220000,846.120000,0.020000,164.000000,0.060000 +11,2023-08-13 16:00:00,0.000000,17.300000,87.000000,5.000000,258.000000,36.960000,108.240000,846.400000,0.020000,164.040000,0.090000 +11,2023-08-13 17:00:00,11.760000,16.200000,97.000000,15.000000,298.000000,6.750000,71.770000,723.940000,0.000000,115.030000,0.000000 +11,2023-08-13 18:00:00,0.000000,16.200000,97.000000,15.000000,298.000000,7.390000,71.770000,724.000000,0.000000,115.040000,0.000000 +11,2023-08-13 19:00:00,0.000000,16.200000,97.000000,15.000000,298.000000,8.030000,71.780000,724.060000,0.000000,115.050000,0.000000 +11,2023-08-13 20:00:00,0.000000,16.200000,97.000000,15.000000,298.000000,8.660000,71.780000,724.120000,0.000000,115.050000,0.000000 +11,2023-08-13 21:00:00,0.000000,16.200000,97.000000,15.000000,298.000000,9.300000,71.780000,724.120000,0.000000,115.050000,0.000000 +11,2023-08-13 22:00:00,0.000000,16.200000,97.000000,15.000000,298.000000,9.940000,71.780000,724.120000,0.000000,115.050000,0.000000 +11,2023-08-13 23:00:00,6.550000,16.200000,98.000000,12.000000,252.000000,3.190000,59.800000,655.870000,0.000000,97.400000,0.000000 +11,2023-08-14 00:00:00,0.000000,16.200000,98.000000,12.000000,252.000000,3.590000,59.800000,655.870000,0.000000,97.400000,0.000000 +11,2023-08-14 01:00:00,0.000000,16.200000,98.000000,12.000000,252.000000,3.990000,59.800000,655.870000,0.000000,97.400000,0.000000 +11,2023-08-14 02:00:00,0.000000,16.200000,98.000000,12.000000,252.000000,4.390000,59.800000,655.870000,0.000000,97.400000,0.000000 +11,2023-08-14 03:00:00,0.000000,16.200000,98.000000,12.000000,252.000000,4.790000,59.800000,655.870000,0.000000,97.400000,0.000000 +11,2023-08-14 04:00:00,0.000000,16.200000,98.000000,12.000000,252.000000,5.190000,59.800000,655.870000,0.000000,97.400000,0.000000 +11,2023-08-14 05:00:00,0.060000,16.000000,96.000000,9.000000,223.000000,5.690000,59.810000,655.960000,0.000000,97.410000,0.000000 +11,2023-08-14 06:00:00,0.000000,16.000000,96.000000,9.000000,223.000000,6.380000,59.810000,656.050000,0.000000,97.420000,0.000000 +11,2023-08-14 07:00:00,0.000000,16.000000,96.000000,9.000000,223.000000,7.070000,59.820000,656.140000,0.000000,97.430000,0.000000 +11,2023-08-14 08:00:00,0.000000,16.000000,96.000000,9.000000,223.000000,7.760000,59.830000,656.220000,0.000000,97.450000,0.000000 +11,2023-08-14 09:00:00,0.000000,16.000000,96.000000,9.000000,223.000000,8.450000,59.840000,656.310000,0.000000,97.460000,0.000000 +11,2023-08-14 10:00:00,0.000000,16.000000,96.000000,9.000000,223.000000,9.140000,59.850000,656.400000,0.000000,97.470000,0.000000 +11,2023-08-14 11:00:00,0.420000,19.000000,86.000000,11.000000,219.000000,11.040000,59.880000,656.770000,0.000000,97.530000,0.000000 +11,2023-08-14 12:00:00,0.000000,19.000000,86.000000,11.000000,219.000000,13.430000,59.910000,657.140000,0.000000,97.580000,0.000000 +11,2023-08-14 13:00:00,0.000000,19.000000,86.000000,11.000000,219.000000,15.810000,59.950000,657.510000,0.000000,97.640000,0.000000 +11,2023-08-14 14:00:00,0.000000,19.000000,86.000000,11.000000,219.000000,18.170000,59.980000,657.890000,0.000000,97.690000,0.000000 +11,2023-08-14 15:00:00,0.000000,19.000000,86.000000,11.000000,219.000000,20.520000,60.010000,658.260000,0.000000,97.750000,0.000000 +11,2023-08-14 16:00:00,0.000000,19.000000,86.000000,11.000000,219.000000,22.840000,60.050000,658.630000,0.000000,97.800000,0.000000 +11,2023-08-14 17:00:00,0.350000,21.300000,70.000000,7.000000,259.000000,25.860000,60.130000,659.550000,0.000000,97.940000,0.000000 +11,2023-08-14 18:00:00,0.000000,21.300000,70.000000,7.000000,259.000000,29.490000,60.210000,660.460000,0.000000,98.070000,0.010000 +11,2023-08-14 19:00:00,0.000000,21.300000,70.000000,7.000000,259.000000,33.040000,60.300000,661.380000,0.010000,98.210000,0.030000 +11,2023-08-14 20:00:00,0.000000,21.300000,70.000000,7.000000,259.000000,36.470000,60.380000,662.300000,0.020000,98.340000,0.070000 +11,2023-08-14 21:00:00,0.000000,21.300000,70.000000,7.000000,259.000000,39.780000,60.380000,662.300000,0.050000,98.340000,0.130000 +11,2023-08-14 22:00:00,0.000000,21.300000,70.000000,7.000000,259.000000,42.970000,60.380000,662.300000,0.080000,98.340000,0.230000 +11,2023-08-14 23:00:00,0.000000,17.000000,94.000000,5.000000,101.000000,43.600000,60.380000,662.300000,0.080000,98.340000,0.230000 +11,2023-08-15 00:00:00,0.000000,17.000000,94.000000,5.000000,101.000000,44.220000,60.380000,662.300000,0.090000,98.340000,0.260000 +11,2023-08-15 01:00:00,0.000000,17.000000,94.000000,5.000000,101.000000,44.830000,60.380000,662.300000,0.100000,98.340000,0.280000 +11,2023-08-15 02:00:00,0.000000,17.000000,94.000000,5.000000,101.000000,45.440000,60.380000,662.300000,0.110000,98.340000,0.310000 +11,2023-08-15 03:00:00,0.000000,17.000000,94.000000,5.000000,101.000000,46.040000,60.380000,662.300000,0.120000,98.340000,0.340000 +11,2023-08-15 04:00:00,0.000000,17.000000,94.000000,5.000000,101.000000,46.630000,60.380000,662.300000,0.130000,98.340000,0.370000 +11,2023-08-15 05:00:00,0.000000,14.200000,100.000000,2.000000,124.000000,46.630000,60.380000,662.300000,0.120000,98.340000,0.320000 +11,2023-08-15 06:00:00,0.000000,14.200000,100.000000,2.000000,124.000000,46.630000,60.380000,662.300000,0.120000,98.340000,0.320000 +11,2023-08-15 07:00:00,0.000000,14.200000,100.000000,2.000000,124.000000,46.630000,60.380000,662.300000,0.120000,98.340000,0.320000 +11,2023-08-15 08:00:00,0.000000,14.200000,100.000000,2.000000,124.000000,46.630000,60.380000,662.300000,0.120000,98.340000,0.320000 +11,2023-08-15 09:00:00,0.000000,14.200000,100.000000,2.000000,124.000000,46.630000,60.380000,662.300000,0.120000,98.340000,0.320000 +11,2023-08-15 10:00:00,0.000000,14.200000,100.000000,2.000000,124.000000,46.630000,60.380000,662.300000,0.120000,98.340000,0.320000 +11,2023-08-15 11:00:00,0.010000,19.900000,72.000000,5.000000,78.000000,48.950000,60.400000,662.930000,0.180000,98.390000,0.510000 +11,2023-08-15 12:00:00,0.000000,19.900000,72.000000,5.000000,78.000000,51.240000,60.520000,663.560000,0.240000,98.570000,0.670000 +11,2023-08-15 13:00:00,0.000000,19.900000,72.000000,5.000000,78.000000,53.420000,60.640000,664.190000,0.310000,98.740000,0.850000 +11,2023-08-15 14:00:00,0.000000,19.900000,72.000000,5.000000,78.000000,55.500000,60.750000,664.820000,0.370000,98.910000,1.200000 +11,2023-08-15 15:00:00,0.000000,19.900000,72.000000,5.000000,78.000000,57.460000,60.870000,665.450000,0.440000,99.080000,1.750000 +11,2023-08-15 16:00:00,0.000000,19.900000,72.000000,5.000000,78.000000,59.310000,60.990000,666.080000,0.500000,99.250000,2.180000 +11,2023-08-15 17:00:00,0.000000,21.000000,71.000000,14.000000,33.000000,61.720000,61.120000,666.780000,0.920000,99.440000,4.550000 +11,2023-08-15 18:00:00,0.000000,21.000000,71.000000,14.000000,33.000000,63.930000,61.240000,667.480000,1.020000,99.630000,5.090000 +11,2023-08-15 19:00:00,0.000000,21.000000,71.000000,14.000000,33.000000,65.950000,61.370000,668.180000,1.110000,99.820000,5.530000 +11,2023-08-15 20:00:00,0.000000,21.000000,71.000000,14.000000,33.000000,67.790000,61.500000,668.880000,1.180000,100.010000,5.890000 +11,2023-08-15 21:00:00,0.000000,21.000000,71.000000,14.000000,33.000000,69.470000,61.500000,668.880000,1.240000,100.010000,6.200000 +11,2023-08-15 22:00:00,0.000000,21.000000,71.000000,14.000000,33.000000,70.990000,61.500000,668.880000,1.310000,100.010000,6.500000 +11,2023-08-15 23:00:00,1.760000,16.000000,96.000000,7.000000,324.000000,50.880000,57.260000,668.880000,0.260000,94.330000,0.690000 +11,2023-08-16 00:00:00,0.000000,16.000000,96.000000,7.000000,324.000000,51.250000,57.260000,668.880000,0.270000,94.330000,0.720000 +11,2023-08-16 01:00:00,0.000000,16.000000,96.000000,7.000000,324.000000,51.610000,57.260000,668.880000,0.280000,94.330000,0.750000 +11,2023-08-16 02:00:00,0.000000,16.000000,96.000000,7.000000,324.000000,51.970000,57.260000,668.880000,0.290000,94.330000,0.780000 +11,2023-08-16 03:00:00,0.000000,16.000000,96.000000,7.000000,324.000000,52.320000,57.260000,668.880000,0.300000,94.330000,0.810000 +11,2023-08-16 04:00:00,0.000000,16.000000,96.000000,7.000000,324.000000,52.670000,57.260000,668.880000,0.320000,94.330000,0.840000 +11,2023-08-16 05:00:00,0.110000,15.200000,96.000000,8.000000,339.000000,53.020000,57.270000,668.930000,0.340000,94.340000,0.920000 +11,2023-08-16 06:00:00,0.000000,15.200000,96.000000,8.000000,339.000000,53.360000,57.280000,668.980000,0.360000,94.360000,0.950000 +11,2023-08-16 07:00:00,0.000000,15.200000,96.000000,8.000000,339.000000,53.700000,57.280000,669.030000,0.370000,94.370000,0.990000 +11,2023-08-16 08:00:00,0.000000,15.200000,96.000000,8.000000,339.000000,54.040000,57.290000,669.070000,0.380000,94.380000,1.130000 +11,2023-08-16 09:00:00,0.000000,15.200000,96.000000,8.000000,339.000000,54.370000,57.300000,669.120000,0.390000,94.400000,1.260000 +11,2023-08-16 10:00:00,0.000000,15.200000,96.000000,8.000000,339.000000,54.690000,57.310000,669.170000,0.410000,94.410000,1.370000 +11,2023-08-16 11:00:00,0.170000,18.700000,70.000000,12.000000,343.000000,57.170000,57.400000,669.610000,0.610000,94.540000,2.730000 +11,2023-08-16 12:00:00,0.000000,18.700000,70.000000,12.000000,343.000000,59.470000,57.480000,670.060000,0.720000,94.660000,3.370000 +11,2023-08-16 13:00:00,0.000000,18.700000,70.000000,12.000000,343.000000,61.610000,57.570000,670.500000,0.820000,94.790000,3.910000 +11,2023-08-16 14:00:00,0.000000,18.700000,70.000000,12.000000,343.000000,63.600000,57.650000,670.950000,0.910000,94.920000,4.360000 +11,2023-08-16 15:00:00,0.000000,18.700000,70.000000,12.000000,343.000000,65.430000,57.740000,671.390000,0.980000,95.050000,4.730000 +11,2023-08-16 16:00:00,0.000000,18.700000,70.000000,12.000000,343.000000,67.120000,57.830000,671.840000,1.040000,95.170000,5.040000 +11,2023-08-16 17:00:00,0.000000,21.300000,51.000000,15.000000,356.000000,69.780000,57.990000,672.690000,1.320000,95.420000,6.370000 +11,2023-08-16 18:00:00,0.000000,21.300000,51.000000,15.000000,356.000000,72.130000,58.150000,673.550000,1.430000,95.660000,6.870000 +11,2023-08-16 19:00:00,0.000000,21.300000,51.000000,15.000000,356.000000,74.200000,58.320000,674.400000,1.560000,95.900000,7.460000 +11,2023-08-16 20:00:00,0.000000,21.300000,51.000000,15.000000,356.000000,76.020000,58.480000,675.250000,1.730000,96.150000,8.180000 +11,2023-08-16 21:00:00,0.000000,21.300000,51.000000,15.000000,356.000000,77.600000,58.480000,675.250000,1.940000,96.150000,9.020000 +11,2023-08-16 22:00:00,0.000000,21.300000,51.000000,15.000000,356.000000,78.980000,58.480000,675.250000,2.190000,96.150000,9.980000 +11,2023-08-16 23:00:00,0.000000,15.700000,71.000000,4.000000,67.000000,79.260000,58.480000,675.250000,1.290000,96.150000,6.250000 +11,2023-08-17 00:00:00,0.000000,15.700000,71.000000,4.000000,67.000000,79.520000,58.480000,675.250000,1.320000,96.150000,6.410000 +11,2023-08-17 01:00:00,0.000000,15.700000,71.000000,4.000000,67.000000,79.770000,58.480000,675.250000,1.360000,96.150000,6.560000 +11,2023-08-17 02:00:00,0.000000,15.700000,71.000000,4.000000,67.000000,80.000000,58.480000,675.250000,1.390000,96.150000,6.700000 +11,2023-08-17 03:00:00,0.000000,15.700000,71.000000,4.000000,67.000000,80.210000,58.480000,675.250000,1.420000,96.150000,6.840000 +11,2023-08-17 04:00:00,0.000000,15.700000,71.000000,4.000000,67.000000,80.410000,58.480000,675.250000,1.450000,96.150000,6.980000 +11,2023-08-17 05:00:00,0.000000,10.900000,93.000000,3.000000,257.000000,80.080000,58.480000,675.250000,1.330000,96.150000,6.450000 +11,2023-08-17 06:00:00,0.000000,10.900000,93.000000,3.000000,257.000000,79.790000,58.500000,675.300000,1.290000,96.170000,6.270000 +11,2023-08-17 07:00:00,0.000000,10.900000,93.000000,3.000000,257.000000,79.530000,58.510000,675.340000,1.260000,96.190000,6.110000 +11,2023-08-17 08:00:00,0.000000,10.900000,93.000000,3.000000,257.000000,79.300000,58.530000,675.390000,1.230000,96.210000,5.980000 +11,2023-08-17 09:00:00,0.000000,10.900000,93.000000,3.000000,257.000000,79.090000,58.540000,675.430000,1.210000,96.230000,5.870000 +11,2023-08-17 10:00:00,0.000000,10.900000,93.000000,3.000000,257.000000,78.900000,58.560000,675.470000,1.190000,96.250000,5.770000 +11,2023-08-17 11:00:00,0.000000,20.700000,50.000000,6.000000,45.000000,79.900000,58.750000,676.060000,1.520000,96.530000,7.300000 +11,2023-08-17 12:00:00,0.000000,20.700000,50.000000,6.000000,45.000000,80.790000,58.950000,676.650000,1.670000,96.810000,7.970000 +11,2023-08-17 13:00:00,0.000000,20.700000,50.000000,6.000000,45.000000,81.580000,59.150000,677.240000,1.830000,97.100000,8.640000 +11,2023-08-17 14:00:00,0.000000,20.700000,50.000000,6.000000,45.000000,82.280000,59.340000,677.830000,1.990000,97.380000,9.300000 +11,2023-08-17 15:00:00,0.000000,20.700000,50.000000,6.000000,45.000000,82.900000,59.540000,678.420000,2.150000,97.660000,9.950000 +11,2023-08-17 16:00:00,0.000000,20.700000,50.000000,6.000000,45.000000,83.440000,59.740000,679.000000,2.310000,97.930000,10.570000 +11,2023-08-17 17:00:00,0.000000,23.000000,45.000000,14.000000,30.000000,84.280000,59.990000,679.750000,3.860000,98.290000,15.880000 +11,2023-08-17 18:00:00,0.000000,23.000000,45.000000,14.000000,30.000000,84.980000,60.240000,680.490000,4.250000,98.640000,17.100000 +11,2023-08-17 19:00:00,0.000000,23.000000,45.000000,14.000000,30.000000,85.580000,60.480000,681.240000,4.620000,99.000000,18.210000 +11,2023-08-17 20:00:00,0.000000,23.000000,45.000000,14.000000,30.000000,86.080000,60.730000,681.980000,4.950000,99.350000,19.210000 +11,2023-08-17 21:00:00,0.000000,23.000000,45.000000,14.000000,30.000000,86.500000,60.730000,681.980000,5.260000,99.350000,20.070000 +11,2023-08-17 22:00:00,0.000000,23.000000,45.000000,14.000000,30.000000,86.860000,60.730000,681.980000,5.530000,99.350000,20.810000 +11,2023-08-17 23:00:00,0.000000,14.400000,76.000000,1.000000,325.000000,86.500000,60.730000,681.980000,2.730000,99.350000,12.210000 +11,2023-08-18 00:00:00,0.000000,14.400000,76.000000,1.000000,325.000000,86.190000,60.730000,681.980000,2.610000,99.350000,11.780000 +11,2023-08-18 01:00:00,0.000000,14.400000,76.000000,1.000000,325.000000,85.900000,60.730000,681.980000,2.510000,99.350000,11.400000 +11,2023-08-18 02:00:00,0.000000,14.400000,76.000000,1.000000,325.000000,85.650000,60.730000,681.980000,2.420000,99.350000,11.070000 +11,2023-08-18 03:00:00,0.000000,14.400000,76.000000,1.000000,325.000000,85.420000,60.730000,681.980000,2.340000,99.350000,10.790000 +11,2023-08-18 04:00:00,0.000000,14.400000,76.000000,1.000000,325.000000,85.210000,60.730000,681.980000,2.280000,99.350000,10.530000 +11,2023-08-18 05:00:00,0.000000,10.700000,93.000000,5.000000,239.000000,84.310000,60.730000,681.980000,2.470000,99.350000,11.240000 +11,2023-08-18 06:00:00,0.000000,10.700000,93.000000,5.000000,239.000000,83.520000,60.750000,682.030000,2.220000,99.380000,10.310000 +11,2023-08-18 07:00:00,0.000000,10.700000,93.000000,5.000000,239.000000,82.820000,60.780000,682.080000,2.030000,99.410000,9.560000 +11,2023-08-18 08:00:00,0.000000,10.700000,93.000000,5.000000,239.000000,82.200000,60.800000,682.130000,1.880000,99.440000,8.950000 +11,2023-08-18 09:00:00,0.000000,10.700000,93.000000,5.000000,239.000000,81.650000,60.820000,682.180000,1.760000,99.460000,8.450000 +11,2023-08-18 10:00:00,0.000000,10.700000,93.000000,5.000000,239.000000,81.160000,60.840000,682.230000,1.660000,99.490000,8.050000 +11,2023-08-18 11:00:00,0.000000,23.200000,41.000000,8.000000,168.000000,82.360000,61.220000,683.170000,2.230000,100.030000,10.380000 +11,2023-08-18 12:00:00,0.000000,23.200000,41.000000,8.000000,168.000000,83.390000,61.610000,684.100000,2.540000,100.570000,11.590000 +11,2023-08-18 13:00:00,0.000000,23.200000,41.000000,8.000000,168.000000,84.280000,61.990000,685.030000,2.860000,101.110000,12.780000 +11,2023-08-18 14:00:00,0.000000,23.200000,41.000000,8.000000,168.000000,85.050000,62.370000,685.960000,3.170000,101.640000,13.900000 +11,2023-08-18 15:00:00,0.000000,23.200000,41.000000,8.000000,168.000000,85.700000,62.760000,686.900000,3.470000,102.180000,14.950000 +11,2023-08-18 16:00:00,0.000000,23.200000,41.000000,8.000000,168.000000,86.260000,63.140000,687.830000,3.760000,102.710000,15.920000 +11,2023-08-18 17:00:00,0.000000,27.100000,33.000000,5.000000,233.000000,87.150000,63.690000,689.160000,3.660000,103.480000,15.670000 +12,2023-08-03 00:00:00,0.000000,14.500000,60.000000,5.000000,15.000000,86.000000,118.400000,826.100000,3.110000,174.330000,16.900000 +12,2023-08-03 01:00:00,0.000000,14.500000,60.000000,5.000000,15.000000,86.000000,118.400000,826.100000,3.110000,174.330000,16.900000 +12,2023-08-03 02:00:00,0.000000,11.900000,69.000000,2.000000,321.000000,85.840000,118.400000,826.100000,2.620000,174.330000,14.820000 +12,2023-08-03 03:00:00,0.000000,11.900000,69.000000,2.000000,321.000000,85.700000,118.400000,826.100000,2.570000,174.330000,14.600000 +12,2023-08-03 04:00:00,0.000000,11.900000,69.000000,2.000000,321.000000,85.580000,118.400000,826.100000,2.520000,174.330000,14.400000 +12,2023-08-03 05:00:00,0.000000,10.100000,78.000000,4.000000,277.000000,85.240000,118.430000,826.180000,2.660000,174.370000,15.010000 +12,2023-08-03 06:00:00,0.000000,10.100000,78.000000,4.000000,277.000000,84.940000,118.470000,826.260000,2.550000,174.420000,14.550000 +12,2023-08-03 07:00:00,0.000000,10.100000,78.000000,4.000000,277.000000,84.670000,118.500000,826.350000,2.460000,174.460000,14.140000 +12,2023-08-03 08:00:00,0.000000,16.500000,56.000000,2.000000,309.000000,84.760000,118.600000,826.590000,2.250000,174.580000,13.200000 +12,2023-08-03 09:00:00,0.000000,16.500000,56.000000,2.000000,309.000000,84.850000,118.700000,826.840000,2.280000,174.700000,13.320000 +12,2023-08-03 10:00:00,0.000000,16.500000,56.000000,2.000000,309.000000,84.920000,118.800000,827.090000,2.300000,174.820000,13.430000 +12,2023-08-03 11:00:00,0.000000,22.000000,41.000000,4.000000,40.000000,85.480000,118.990000,827.560000,2.750000,175.050000,15.410000 +12,2023-08-03 12:00:00,0.000000,22.000000,41.000000,4.000000,40.000000,85.960000,119.180000,828.030000,2.940000,175.290000,16.230000 +12,2023-08-03 13:00:00,0.000000,22.000000,41.000000,4.000000,40.000000,86.390000,119.370000,828.500000,3.130000,175.520000,16.980000 +12,2023-08-03 14:00:00,0.000000,24.000000,34.000000,7.000000,10.000000,87.100000,119.610000,829.090000,4.020000,175.810000,20.430000 +12,2023-08-03 15:00:00,0.000000,24.000000,34.000000,7.000000,10.000000,87.700000,119.850000,829.680000,4.380000,176.100000,21.730000 +12,2023-08-03 16:00:00,0.000000,24.000000,34.000000,7.000000,10.000000,88.200000,120.090000,830.280000,4.710000,176.390000,22.890000 +12,2023-08-03 17:00:00,0.000000,24.200000,33.000000,7.000000,5.000000,88.680000,120.330000,830.890000,5.040000,176.690000,24.020000 +12,2023-08-03 18:00:00,0.000000,24.200000,33.000000,7.000000,5.000000,89.070000,120.580000,831.490000,5.340000,176.990000,25.010000 +12,2023-08-03 19:00:00,0.000000,24.200000,33.000000,7.000000,5.000000,89.410000,120.830000,832.100000,5.600000,177.290000,25.870000 +12,2023-08-03 20:00:00,0.000000,22.100000,40.000000,4.000000,5.000000,89.420000,121.020000,832.580000,4.820000,177.530000,23.300000 +12,2023-08-03 21:00:00,0.000000,22.100000,40.000000,4.000000,5.000000,89.430000,121.210000,833.060000,4.830000,177.760000,23.330000 +12,2023-08-03 22:00:00,0.000000,22.100000,40.000000,4.000000,5.000000,89.440000,121.210000,833.060000,4.830000,177.760000,23.350000 +12,2023-08-03 23:00:00,0.000000,15.900000,61.000000,3.000000,289.000000,89.110000,121.210000,833.060000,4.390000,177.760000,21.800000 +12,2023-08-04 00:00:00,0.000000,15.900000,61.000000,3.000000,289.000000,88.820000,121.210000,833.060000,4.210000,177.760000,21.150000 +12,2023-08-04 01:00:00,0.000000,15.900000,61.000000,3.000000,289.000000,88.560000,121.210000,833.060000,4.050000,177.760000,20.590000 +12,2023-08-04 02:00:00,0.000000,12.900000,72.000000,6.000000,269.000000,88.030000,121.210000,833.060000,4.370000,177.760000,21.740000 +12,2023-08-04 03:00:00,0.000000,12.900000,72.000000,6.000000,269.000000,87.570000,121.210000,833.060000,4.090000,177.760000,20.730000 +12,2023-08-04 04:00:00,0.000000,12.900000,72.000000,6.000000,269.000000,87.160000,121.210000,833.060000,3.860000,177.760000,19.870000 +12,2023-08-04 05:00:00,0.000000,12.000000,79.000000,7.000000,273.000000,86.590000,121.250000,833.150000,3.740000,177.810000,19.440000 +12,2023-08-04 06:00:00,0.000000,12.000000,79.000000,7.000000,273.000000,86.090000,121.280000,833.250000,3.490000,177.850000,18.460000 +12,2023-08-04 07:00:00,0.000000,12.000000,79.000000,7.000000,273.000000,85.650000,121.320000,833.340000,3.280000,177.890000,17.640000 +12,2023-08-04 08:00:00,0.000000,18.500000,58.000000,6.000000,290.000000,85.660000,121.420000,833.610000,3.120000,178.020000,17.010000 +12,2023-08-04 09:00:00,0.000000,18.500000,58.000000,6.000000,290.000000,85.670000,121.530000,833.890000,3.130000,178.150000,17.030000 +12,2023-08-04 10:00:00,0.000000,18.500000,58.000000,6.000000,290.000000,85.680000,121.630000,834.160000,3.130000,178.280000,17.040000 +12,2023-08-04 11:00:00,0.000000,22.900000,45.000000,7.000000,359.000000,86.100000,121.820000,834.640000,3.490000,178.500000,18.490000 +12,2023-08-04 12:00:00,0.000000,22.900000,45.000000,7.000000,359.000000,86.470000,122.000000,835.110000,3.680000,178.720000,19.210000 +12,2023-08-04 13:00:00,0.000000,22.900000,45.000000,7.000000,359.000000,86.780000,122.180000,835.590000,3.840000,178.940000,19.840000 +12,2023-08-04 14:00:00,0.000000,24.100000,41.000000,9.000000,20.000000,87.230000,122.390000,836.130000,4.530000,179.200000,22.340000 +12,2023-08-04 15:00:00,0.000000,24.100000,41.000000,9.000000,20.000000,87.610000,122.600000,836.680000,4.780000,179.450000,23.210000 +12,2023-08-04 16:00:00,0.000000,24.100000,41.000000,9.000000,20.000000,87.920000,122.800000,837.230000,5.010000,179.710000,23.980000 +12,2023-08-04 17:00:00,0.000000,25.400000,37.000000,8.000000,12.000000,88.370000,123.050000,837.860000,5.070000,180.000000,24.200000 +12,2023-08-04 18:00:00,0.000000,25.400000,37.000000,8.000000,12.000000,88.740000,123.290000,838.490000,5.350000,180.300000,25.130000 +12,2023-08-04 19:00:00,0.000000,25.400000,37.000000,8.000000,12.000000,89.050000,123.530000,839.120000,5.590000,180.590000,25.920000 +12,2023-08-04 20:00:00,0.000000,23.800000,41.000000,4.000000,4.000000,89.120000,123.730000,839.650000,4.620000,180.840000,22.690000 +12,2023-08-04 21:00:00,0.000000,23.800000,41.000000,4.000000,4.000000,89.190000,123.940000,840.190000,4.660000,181.090000,22.840000 +12,2023-08-04 22:00:00,0.000000,23.800000,41.000000,4.000000,4.000000,89.240000,123.940000,840.190000,4.700000,181.090000,22.970000 +12,2023-08-04 23:00:00,0.000000,17.500000,59.000000,4.000000,271.000000,88.980000,123.940000,840.190000,4.530000,181.090000,22.370000 +12,2023-08-05 00:00:00,0.000000,17.500000,59.000000,4.000000,271.000000,88.750000,123.940000,840.190000,4.380000,181.090000,21.850000 +12,2023-08-05 01:00:00,0.000000,17.500000,59.000000,4.000000,271.000000,88.550000,123.940000,840.190000,4.250000,181.090000,21.400000 +12,2023-08-05 02:00:00,0.000000,14.800000,71.000000,7.000000,267.000000,88.040000,123.940000,840.190000,4.600000,181.090000,22.630000 +12,2023-08-05 03:00:00,0.000000,14.800000,71.000000,7.000000,267.000000,87.590000,123.940000,840.190000,4.320000,181.090000,21.620000 +12,2023-08-05 04:00:00,0.000000,14.800000,71.000000,7.000000,267.000000,87.200000,123.940000,840.190000,4.080000,181.090000,20.780000 +12,2023-08-05 05:00:00,0.000000,14.600000,78.000000,8.000000,273.000000,86.650000,123.990000,840.330000,3.970000,181.160000,20.360000 +12,2023-08-05 06:00:00,0.000000,14.600000,78.000000,8.000000,273.000000,86.170000,124.050000,840.470000,3.710000,181.230000,19.390000 +12,2023-08-05 07:00:00,0.000000,14.600000,78.000000,8.000000,273.000000,85.760000,124.110000,840.600000,3.500000,181.300000,18.580000 +12,2023-08-05 08:00:00,0.000000,19.900000,61.000000,10.000000,296.000000,85.760000,124.250000,840.940000,3.870000,181.470000,20.000000 +12,2023-08-05 09:00:00,0.000000,19.900000,61.000000,10.000000,296.000000,85.760000,124.390000,841.280000,3.870000,181.630000,20.000000 +12,2023-08-05 10:00:00,0.000000,19.900000,61.000000,10.000000,296.000000,85.760000,124.520000,841.630000,3.870000,181.800000,20.000000 +12,2023-08-05 11:00:00,0.000000,24.800000,43.000000,10.000000,308.000000,86.340000,124.800000,842.300000,4.200000,182.130000,21.230000 +12,2023-08-05 12:00:00,0.000000,24.800000,43.000000,10.000000,308.000000,86.830000,125.070000,842.970000,4.500000,182.460000,22.310000 +12,2023-08-05 13:00:00,0.000000,24.800000,43.000000,10.000000,308.000000,87.240000,125.350000,843.640000,4.770000,182.800000,23.270000 +12,2023-08-05 14:00:00,0.080000,23.700000,46.000000,10.000000,318.000000,86.310000,125.040000,844.240000,4.180000,182.500000,21.160000 +12,2023-08-05 15:00:00,0.000000,23.700000,46.000000,10.000000,318.000000,86.660000,125.280000,844.830000,4.400000,182.790000,21.950000 +12,2023-08-05 16:00:00,0.000000,23.700000,46.000000,10.000000,318.000000,86.970000,125.520000,845.430000,4.590000,183.090000,22.650000 +12,2023-08-05 17:00:00,0.640000,23.500000,48.000000,9.000000,336.000000,78.380000,122.380000,845.990000,1.530000,179.760000,9.700000 +12,2023-08-05 18:00:00,0.000000,23.500000,48.000000,9.000000,336.000000,79.770000,122.620000,846.560000,1.750000,180.040000,10.820000 +12,2023-08-05 19:00:00,0.000000,23.500000,48.000000,9.000000,336.000000,80.960000,122.850000,847.130000,1.980000,180.320000,12.020000 +12,2023-08-05 20:00:00,0.820000,20.100000,70.000000,6.000000,356.000000,70.540000,118.960000,847.390000,0.860000,176.110000,5.740000 +12,2023-08-05 21:00:00,0.000000,20.100000,70.000000,6.000000,356.000000,71.680000,119.070000,847.660000,0.890000,176.240000,5.960000 +12,2023-08-05 22:00:00,0.000000,20.100000,70.000000,6.000000,356.000000,72.730000,119.070000,847.660000,0.930000,176.240000,6.190000 +12,2023-08-05 23:00:00,0.000000,16.500000,78.000000,8.000000,353.000000,73.350000,119.070000,847.660000,1.060000,176.240000,6.970000 +12,2023-08-06 00:00:00,0.000000,16.500000,78.000000,8.000000,353.000000,73.930000,119.070000,847.660000,1.080000,176.240000,7.140000 +12,2023-08-06 01:00:00,0.000000,16.500000,78.000000,8.000000,353.000000,74.470000,119.070000,847.660000,1.110000,176.240000,7.310000 +12,2023-08-06 02:00:00,0.000000,14.300000,81.000000,7.000000,331.000000,74.820000,119.070000,847.660000,1.080000,176.240000,7.100000 +12,2023-08-06 03:00:00,0.000000,14.300000,81.000000,7.000000,331.000000,75.160000,119.070000,847.660000,1.100000,176.240000,7.220000 +12,2023-08-06 04:00:00,0.000000,14.300000,81.000000,7.000000,331.000000,75.470000,119.070000,847.660000,1.120000,176.240000,7.340000 +12,2023-08-06 05:00:00,0.000000,12.900000,92.000000,8.000000,316.000000,75.500000,119.080000,847.700000,1.180000,176.260000,7.700000 +12,2023-08-06 06:00:00,0.000000,12.900000,92.000000,8.000000,316.000000,75.530000,119.100000,847.740000,1.180000,176.280000,7.710000 +12,2023-08-06 07:00:00,0.000000,12.900000,92.000000,8.000000,316.000000,75.550000,119.120000,847.780000,1.180000,176.300000,7.720000 +12,2023-08-06 08:00:00,0.000000,17.700000,67.000000,7.000000,345.000000,76.300000,119.210000,848.010000,1.180000,176.420000,7.700000 +12,2023-08-06 09:00:00,0.000000,17.700000,67.000000,7.000000,345.000000,76.990000,119.300000,848.230000,1.240000,176.530000,8.040000 +12,2023-08-06 10:00:00,0.000000,17.700000,67.000000,7.000000,345.000000,77.620000,119.400000,848.460000,1.300000,176.650000,8.390000 +12,2023-08-06 11:00:00,0.000000,21.900000,39.000000,10.000000,16.000000,79.330000,119.630000,849.000000,1.760000,176.930000,10.840000 +12,2023-08-06 12:00:00,0.000000,21.900000,39.000000,10.000000,16.000000,80.810000,119.850000,849.540000,2.050000,177.200000,12.290000 +12,2023-08-06 13:00:00,0.000000,21.900000,39.000000,10.000000,16.000000,82.090000,120.080000,850.090000,2.380000,177.480000,13.830000 +12,2023-08-06 14:00:00,0.000000,22.900000,35.000000,13.000000,21.000000,83.450000,120.330000,850.700000,3.290000,177.790000,17.690000 +12,2023-08-06 15:00:00,0.000000,22.900000,35.000000,13.000000,21.000000,84.610000,120.590000,851.310000,3.840000,178.110000,19.820000 +12,2023-08-06 16:00:00,0.000000,22.900000,35.000000,13.000000,21.000000,85.590000,120.850000,851.930000,4.400000,178.420000,21.850000 +12,2023-08-06 17:00:00,0.000000,22.200000,35.000000,13.000000,37.000000,86.370000,121.090000,852.520000,4.910000,178.720000,23.620000 +12,2023-08-06 18:00:00,0.000000,22.200000,35.000000,13.000000,37.000000,87.030000,121.340000,853.110000,5.390000,179.020000,25.230000 +12,2023-08-06 19:00:00,0.000000,22.200000,35.000000,13.000000,37.000000,87.590000,121.580000,853.690000,5.830000,179.320000,26.660000 +12,2023-08-06 20:00:00,0.000000,19.300000,40.000000,9.000000,59.000000,87.780000,121.770000,854.150000,4.900000,179.550000,23.630000 +12,2023-08-06 21:00:00,0.000000,19.300000,40.000000,9.000000,59.000000,87.950000,121.960000,854.600000,5.020000,179.780000,24.040000 +12,2023-08-06 22:00:00,0.000000,19.300000,40.000000,9.000000,59.000000,88.090000,121.960000,854.600000,5.130000,179.780000,24.390000 +12,2023-08-06 23:00:00,0.000000,14.300000,59.000000,4.000000,63.000000,87.930000,121.960000,854.600000,3.890000,179.780000,20.040000 +12,2023-08-07 00:00:00,0.000000,14.300000,59.000000,4.000000,63.000000,87.770000,121.960000,854.600000,3.810000,179.780000,19.730000 +12,2023-08-07 01:00:00,0.000000,14.300000,59.000000,4.000000,63.000000,87.640000,121.960000,854.600000,3.730000,179.780000,19.450000 +12,2023-08-07 02:00:00,0.000000,11.800000,74.000000,1.000000,198.000000,87.250000,121.960000,854.600000,3.040000,179.780000,16.690000 +12,2023-08-07 03:00:00,0.000000,11.800000,74.000000,1.000000,198.000000,86.890000,121.960000,854.600000,2.890000,179.780000,16.070000 +12,2023-08-07 04:00:00,0.000000,11.800000,74.000000,1.000000,198.000000,86.570000,121.960000,854.600000,2.760000,179.780000,15.530000 +12,2023-08-07 05:00:00,0.000000,10.000000,83.000000,2.000000,202.000000,86.040000,121.990000,854.660000,2.690000,179.810000,15.230000 +12,2023-08-07 06:00:00,0.000000,10.000000,83.000000,2.000000,202.000000,85.550000,122.010000,854.720000,2.510000,179.840000,14.460000 +12,2023-08-07 07:00:00,0.000000,10.000000,83.000000,2.000000,202.000000,85.120000,122.040000,854.770000,2.370000,179.880000,13.800000 +12,2023-08-07 08:00:00,0.000000,15.500000,57.000000,4.000000,154.000000,85.140000,122.130000,854.970000,2.630000,179.990000,14.960000 +12,2023-08-07 09:00:00,0.000000,15.500000,57.000000,4.000000,154.000000,85.170000,122.230000,855.170000,2.640000,180.100000,15.000000 +12,2023-08-07 10:00:00,0.000000,15.500000,57.000000,4.000000,154.000000,85.190000,122.320000,855.380000,2.640000,180.210000,15.040000 +12,2023-08-07 11:00:00,0.000000,22.800000,33.000000,7.000000,150.000000,86.050000,122.550000,855.870000,3.470000,180.490000,18.430000 +12,2023-08-07 12:00:00,0.000000,22.800000,33.000000,7.000000,150.000000,86.780000,122.780000,856.360000,3.840000,180.770000,19.880000 +12,2023-08-07 13:00:00,0.000000,22.800000,33.000000,7.000000,150.000000,87.400000,123.010000,856.860000,4.200000,181.040000,21.210000 +12,2023-08-07 14:00:00,0.000000,25.900000,27.000000,7.000000,138.000000,88.310000,123.310000,857.510000,4.780000,181.410000,23.260000 +12,2023-08-07 15:00:00,0.000000,25.900000,27.000000,7.000000,138.000000,89.060000,123.610000,858.160000,5.330000,181.770000,25.110000 +12,2023-08-07 16:00:00,0.000000,25.900000,27.000000,7.000000,138.000000,89.690000,123.920000,858.810000,5.830000,182.130000,26.730000 +12,2023-08-07 17:00:00,0.000000,25.800000,28.000000,7.000000,146.000000,90.170000,124.210000,859.440000,6.250000,182.490000,28.030000 +12,2023-08-07 18:00:00,0.000000,25.800000,28.000000,7.000000,146.000000,90.570000,124.510000,860.080000,6.610000,182.840000,29.150000 +12,2023-08-07 19:00:00,0.000000,25.800000,28.000000,7.000000,146.000000,90.900000,124.800000,860.720000,6.930000,183.200000,30.110000 +12,2023-08-07 20:00:00,0.000000,23.400000,35.000000,5.000000,112.000000,90.900000,125.040000,861.210000,6.270000,183.480000,28.130000 +12,2023-08-07 21:00:00,0.000000,23.400000,35.000000,5.000000,112.000000,90.900000,125.270000,861.710000,6.270000,183.750000,28.130000 +12,2023-08-07 22:00:00,0.000000,23.400000,35.000000,5.000000,112.000000,90.900000,125.270000,861.710000,6.270000,183.750000,28.130000 +12,2023-08-07 23:00:00,0.000000,18.600000,48.000000,4.000000,110.000000,90.700000,125.270000,861.710000,5.790000,183.750000,26.640000 +12,2023-08-08 00:00:00,0.000000,18.600000,48.000000,4.000000,110.000000,90.520000,125.270000,861.710000,5.640000,183.750000,26.170000 +12,2023-08-08 01:00:00,0.000000,18.600000,48.000000,4.000000,110.000000,90.360000,125.270000,861.710000,5.510000,183.750000,25.760000 +12,2023-08-08 02:00:00,0.000000,15.900000,56.000000,4.000000,155.000000,90.020000,125.270000,861.710000,5.260000,183.750000,24.920000 +12,2023-08-08 03:00:00,0.000000,15.900000,56.000000,4.000000,155.000000,89.730000,125.270000,861.710000,5.040000,183.750000,24.190000 +12,2023-08-08 04:00:00,0.000000,15.900000,56.000000,4.000000,155.000000,89.460000,125.270000,861.710000,4.850000,183.750000,23.550000 +12,2023-08-08 05:00:00,0.000000,14.200000,66.000000,3.000000,144.000000,89.020000,125.320000,861.870000,4.330000,183.820000,21.730000 +12,2023-08-08 06:00:00,0.000000,14.200000,66.000000,3.000000,144.000000,88.620000,125.370000,862.030000,4.090000,183.890000,20.860000 +12,2023-08-08 07:00:00,0.000000,14.200000,66.000000,3.000000,144.000000,88.270000,125.430000,862.190000,3.890000,183.950000,20.120000 +12,2023-08-08 08:00:00,0.000000,18.300000,55.000000,6.000000,125.000000,88.210000,125.520000,862.470000,4.480000,184.070000,22.280000 +12,2023-08-08 09:00:00,0.000000,18.300000,55.000000,6.000000,125.000000,88.160000,125.610000,862.750000,4.450000,184.180000,22.160000 +12,2023-08-08 10:00:00,0.000000,18.300000,55.000000,6.000000,125.000000,88.110000,125.700000,863.020000,4.420000,184.300000,22.060000 +12,2023-08-08 11:00:00,0.490000,21.100000,51.000000,14.000000,120.000000,84.590000,125.820000,863.380000,4.030000,184.440000,20.650000 +12,2023-08-08 12:00:00,0.000000,21.100000,51.000000,14.000000,120.000000,84.990000,125.940000,863.740000,4.260000,184.590000,21.480000 +12,2023-08-08 13:00:00,0.000000,21.100000,51.000000,14.000000,120.000000,85.330000,126.060000,864.100000,4.460000,184.740000,22.220000 +12,2023-08-08 14:00:00,0.250000,23.400000,37.000000,12.000000,133.000000,84.470000,126.230000,864.630000,3.590000,184.960000,18.990000 +12,2023-08-08 15:00:00,0.000000,23.400000,37.000000,12.000000,133.000000,85.410000,126.410000,865.160000,4.080000,185.170000,20.850000 +12,2023-08-08 16:00:00,0.000000,23.400000,37.000000,12.000000,133.000000,86.210000,126.580000,865.690000,4.560000,185.390000,22.580000 +12,2023-08-08 17:00:00,0.000000,24.000000,30.000000,11.000000,97.000000,87.150000,126.780000,866.300000,4.950000,185.640000,23.950000 +12,2023-08-08 18:00:00,0.000000,24.000000,30.000000,11.000000,97.000000,87.930000,126.980000,866.910000,5.540000,185.890000,25.900000 +12,2023-08-08 19:00:00,0.000000,24.000000,30.000000,11.000000,97.000000,88.590000,127.190000,867.520000,6.090000,186.150000,27.640000 +12,2023-08-08 20:00:00,0.000000,21.300000,33.000000,10.000000,77.000000,88.910000,127.350000,868.020000,6.070000,186.350000,27.570000 +12,2023-08-08 21:00:00,0.000000,21.300000,33.000000,10.000000,77.000000,89.190000,127.510000,868.510000,6.310000,186.550000,28.330000 +12,2023-08-08 22:00:00,0.000000,21.300000,33.000000,10.000000,77.000000,89.420000,127.510000,868.510000,6.520000,186.550000,28.980000 +12,2023-08-08 23:00:00,0.000000,15.500000,48.000000,7.000000,106.000000,89.320000,127.510000,868.510000,5.530000,186.550000,25.870000 +12,2023-08-09 00:00:00,0.000000,15.500000,48.000000,7.000000,106.000000,89.230000,127.510000,868.510000,5.460000,186.550000,25.650000 +12,2023-08-09 01:00:00,0.000000,15.500000,48.000000,7.000000,106.000000,89.150000,127.510000,868.510000,5.400000,186.550000,25.450000 +12,2023-08-09 02:00:00,0.000000,13.000000,57.000000,6.000000,141.000000,88.890000,127.510000,868.510000,4.940000,186.550000,23.930000 +12,2023-08-09 03:00:00,0.000000,13.000000,57.000000,6.000000,141.000000,88.650000,127.510000,868.510000,4.780000,186.550000,23.360000 +12,2023-08-09 04:00:00,0.000000,13.000000,57.000000,6.000000,141.000000,88.440000,127.510000,868.510000,4.630000,186.550000,22.860000 +12,2023-08-09 05:00:00,0.000000,10.900000,70.000000,5.000000,129.000000,87.980000,127.560000,868.640000,4.130000,186.610000,21.050000 +12,2023-08-09 06:00:00,0.000000,10.900000,70.000000,5.000000,129.000000,87.580000,127.600000,868.760000,3.890000,186.660000,20.190000 +12,2023-08-09 07:00:00,0.000000,10.900000,70.000000,5.000000,129.000000,87.210000,127.650000,868.890000,3.700000,186.720000,19.440000 +12,2023-08-09 08:00:00,0.000000,15.800000,56.000000,7.000000,137.000000,87.210000,127.740000,869.140000,4.090000,186.830000,20.900000 +12,2023-08-09 09:00:00,0.000000,15.800000,56.000000,7.000000,137.000000,87.210000,127.830000,869.390000,4.080000,186.940000,20.900000 +12,2023-08-09 10:00:00,0.000000,15.800000,56.000000,7.000000,137.000000,87.200000,127.920000,869.640000,4.080000,187.050000,20.890000 +12,2023-08-09 11:00:00,0.000000,20.500000,46.000000,8.000000,106.000000,87.330000,128.070000,870.060000,4.370000,187.240000,21.940000 +12,2023-08-09 12:00:00,0.000000,20.500000,46.000000,8.000000,106.000000,87.430000,128.220000,870.470000,4.440000,187.420000,22.180000 +12,2023-08-09 13:00:00,0.000000,20.500000,46.000000,8.000000,106.000000,87.530000,128.370000,870.890000,4.500000,187.600000,22.400000 +12,2023-08-09 14:00:00,0.000000,22.900000,38.000000,10.000000,90.000000,87.910000,128.560000,871.440000,5.250000,187.850000,25.000000 +12,2023-08-09 15:00:00,0.000000,22.900000,38.000000,10.000000,90.000000,88.240000,128.760000,871.990000,5.510000,188.090000,25.840000 +12,2023-08-09 16:00:00,0.000000,22.900000,38.000000,10.000000,90.000000,88.520000,128.960000,872.540000,5.730000,188.330000,26.560000 +12,2023-08-09 17:00:00,0.000000,23.200000,37.000000,12.000000,85.000000,88.800000,129.170000,873.110000,6.600000,188.590000,29.270000 +12,2023-08-09 18:00:00,0.000000,23.200000,37.000000,12.000000,85.000000,89.040000,129.370000,873.680000,6.830000,188.840000,29.960000 +12,2023-08-09 19:00:00,0.000000,23.200000,37.000000,12.000000,85.000000,89.240000,129.580000,874.250000,7.030000,189.090000,30.550000 +12,2023-08-09 20:00:00,0.000000,21.400000,41.000000,9.000000,88.000000,89.240000,129.750000,874.730000,6.040000,189.300000,27.570000 +12,2023-08-09 21:00:00,0.000000,21.400000,41.000000,9.000000,88.000000,89.240000,129.920000,875.210000,6.040000,189.510000,27.580000 +12,2023-08-09 22:00:00,0.000000,21.400000,41.000000,9.000000,88.000000,89.240000,129.920000,875.210000,6.040000,189.510000,27.580000 +12,2023-08-09 23:00:00,0.000000,16.700000,55.000000,6.000000,94.000000,89.040000,129.920000,875.210000,5.050000,189.510000,24.350000 +12,2023-08-10 00:00:00,0.000000,16.700000,55.000000,6.000000,94.000000,88.860000,129.920000,875.210000,4.920000,189.510000,23.930000 +12,2023-08-10 01:00:00,0.000000,16.700000,55.000000,6.000000,94.000000,88.710000,129.920000,875.210000,4.820000,189.510000,23.550000 +12,2023-08-10 02:00:00,0.000000,14.400000,64.000000,7.000000,128.000000,88.350000,129.920000,875.210000,4.810000,189.510000,23.530000 +12,2023-08-10 03:00:00,0.000000,14.400000,64.000000,7.000000,128.000000,88.030000,129.920000,875.210000,4.600000,189.510000,22.790000 +12,2023-08-10 04:00:00,0.000000,14.400000,64.000000,7.000000,128.000000,87.750000,129.920000,875.210000,4.420000,189.510000,22.150000 +12,2023-08-10 05:00:00,0.000000,13.000000,73.000000,7.000000,145.000000,87.280000,129.970000,875.360000,4.130000,189.580000,21.120000 +12,2023-08-10 06:00:00,0.000000,13.000000,73.000000,7.000000,145.000000,86.870000,130.030000,875.510000,3.890000,189.640000,20.240000 +12,2023-08-10 07:00:00,0.000000,13.000000,73.000000,7.000000,145.000000,86.510000,130.080000,875.660000,3.700000,189.700000,19.500000 +12,2023-08-10 08:00:00,0.000000,16.700000,59.000000,8.000000,153.000000,86.510000,130.180000,875.940000,3.890000,189.830000,20.230000 +12,2023-08-10 09:00:00,0.000000,16.700000,59.000000,8.000000,153.000000,86.510000,130.280000,876.230000,3.890000,189.950000,20.230000 +12,2023-08-10 10:00:00,0.000000,16.700000,59.000000,8.000000,153.000000,86.510000,130.380000,876.520000,3.890000,190.070000,20.230000 +12,2023-08-10 11:00:00,0.000000,20.500000,48.000000,10.000000,151.000000,86.680000,130.540000,876.980000,4.410000,190.270000,22.140000 +12,2023-08-10 12:00:00,0.000000,20.500000,48.000000,10.000000,151.000000,86.830000,130.700000,877.450000,4.500000,190.470000,22.480000 +12,2023-08-10 13:00:00,0.000000,20.500000,48.000000,10.000000,151.000000,86.960000,130.860000,877.910000,4.590000,190.670000,22.780000 +12,2023-08-10 14:00:00,0.000000,21.600000,42.000000,9.000000,155.000000,87.260000,131.050000,878.460000,4.550000,190.900000,22.650000 +12,2023-08-10 15:00:00,0.000000,21.600000,42.000000,9.000000,155.000000,87.510000,131.240000,879.020000,4.720000,191.140000,23.250000 +12,2023-08-10 16:00:00,0.000000,21.600000,42.000000,9.000000,155.000000,87.730000,131.430000,879.570000,4.870000,191.370000,23.770000 +12,2023-08-10 17:00:00,0.000000,21.900000,40.000000,8.000000,147.000000,87.980000,131.630000,880.150000,4.800000,191.620000,23.530000 +12,2023-08-10 18:00:00,0.000000,21.900000,40.000000,8.000000,147.000000,88.190000,131.840000,880.740000,4.950000,191.870000,24.050000 +12,2023-08-10 19:00:00,0.000000,21.900000,40.000000,8.000000,147.000000,88.380000,132.040000,881.320000,5.080000,192.120000,24.500000 +12,2023-08-10 20:00:00,0.000000,21.900000,40.000000,8.000000,147.000000,88.530000,132.240000,881.900000,5.190000,192.370000,24.890000 +12,2023-08-10 21:00:00,0.000000,21.900000,40.000000,8.000000,147.000000,88.670000,132.240000,881.900000,5.290000,192.370000,25.220000 +12,2023-08-10 22:00:00,0.000000,21.900000,40.000000,8.000000,147.000000,88.780000,132.240000,881.900000,5.380000,192.370000,25.510000 +12,2023-08-10 23:00:00,0.000000,17.000000,55.000000,6.000000,143.000000,88.640000,132.240000,881.900000,4.770000,192.370000,23.440000 +12,2023-08-11 00:00:00,0.000000,17.000000,55.000000,6.000000,143.000000,88.510000,132.240000,881.900000,4.680000,192.370000,23.150000 +12,2023-08-11 01:00:00,0.000000,17.000000,55.000000,6.000000,143.000000,88.400000,132.240000,881.900000,4.610000,192.370000,22.890000 +12,2023-08-11 02:00:00,0.000000,17.000000,55.000000,6.000000,143.000000,88.300000,132.240000,881.900000,4.540000,192.370000,22.660000 +12,2023-08-11 03:00:00,0.000000,17.000000,55.000000,6.000000,143.000000,88.220000,132.240000,881.900000,4.490000,192.370000,22.460000 +12,2023-08-11 04:00:00,0.000000,17.000000,55.000000,6.000000,143.000000,88.140000,132.240000,881.900000,4.440000,192.370000,22.290000 +12,2023-08-11 05:00:00,0.000000,15.300000,63.000000,6.000000,177.000000,87.890000,132.330000,882.110000,4.280000,192.470000,21.710000 +12,2023-08-11 06:00:00,0.000000,15.300000,63.000000,6.000000,177.000000,87.660000,132.410000,882.320000,4.140000,192.570000,21.220000 +12,2023-08-11 07:00:00,0.000000,15.300000,63.000000,6.000000,177.000000,87.460000,132.500000,882.520000,4.030000,192.680000,20.790000 +12,2023-08-11 08:00:00,0.000000,15.300000,63.000000,6.000000,177.000000,87.280000,132.580000,882.730000,3.930000,192.780000,20.420000 +12,2023-08-11 09:00:00,0.000000,15.300000,63.000000,6.000000,177.000000,87.130000,132.670000,882.940000,3.840000,192.880000,20.090000 +12,2023-08-11 10:00:00,0.000000,15.300000,63.000000,6.000000,177.000000,86.990000,132.760000,883.150000,3.760000,192.990000,19.810000 +12,2023-08-11 11:00:00,0.000000,22.600000,40.000000,12.000000,159.000000,87.400000,132.980000,883.680000,5.400000,193.250000,25.590000 +12,2023-08-11 12:00:00,0.000000,22.600000,40.000000,12.000000,159.000000,87.740000,133.200000,884.210000,5.670000,193.520000,26.480000 +12,2023-08-11 13:00:00,0.000000,22.600000,40.000000,12.000000,159.000000,88.030000,133.420000,884.740000,5.910000,193.780000,27.260000 +12,2023-08-11 14:00:00,0.000000,22.600000,40.000000,12.000000,159.000000,88.280000,133.640000,885.270000,6.120000,194.040000,27.930000 +12,2023-08-11 15:00:00,0.000000,22.600000,40.000000,12.000000,159.000000,88.480000,133.860000,885.800000,6.310000,194.310000,28.500000 +12,2023-08-11 16:00:00,0.000000,22.600000,40.000000,12.000000,159.000000,88.660000,134.080000,886.330000,6.470000,194.570000,29.000000 +12,2023-08-11 17:00:00,0.000000,25.200000,36.000000,13.000000,219.000000,89.040000,134.350000,886.990000,7.180000,194.900000,31.130000 +12,2023-08-11 18:00:00,0.000000,25.200000,36.000000,13.000000,219.000000,89.350000,134.630000,887.650000,7.510000,195.230000,32.090000 +12,2023-08-11 19:00:00,0.000000,25.200000,36.000000,13.000000,219.000000,89.600000,134.900000,888.310000,7.790000,195.560000,32.900000 +12,2023-08-11 20:00:00,0.000000,25.200000,36.000000,13.000000,219.000000,89.810000,135.180000,888.970000,8.030000,195.890000,33.570000 +12,2023-08-11 21:00:00,0.000000,25.200000,36.000000,13.000000,219.000000,89.990000,135.180000,888.970000,8.230000,195.890000,34.130000 +12,2023-08-11 22:00:00,0.000000,25.200000,36.000000,13.000000,219.000000,90.130000,135.180000,888.970000,8.400000,195.890000,34.590000 +12,2023-08-11 23:00:00,0.000000,19.300000,42.000000,11.000000,215.000000,90.130000,135.180000,888.970000,7.600000,195.890000,32.350000 +12,2023-08-12 00:00:00,0.000000,19.300000,42.000000,11.000000,215.000000,90.130000,135.180000,888.970000,7.600000,195.890000,32.350000 +12,2023-08-12 01:00:00,0.000000,19.300000,42.000000,11.000000,215.000000,90.130000,135.180000,888.970000,7.600000,195.890000,32.350000 +12,2023-08-12 02:00:00,0.000000,19.300000,42.000000,11.000000,215.000000,90.130000,135.180000,888.970000,7.600000,195.890000,32.350000 +12,2023-08-12 03:00:00,0.000000,19.300000,42.000000,11.000000,215.000000,90.130000,135.180000,888.970000,7.600000,195.890000,32.350000 +12,2023-08-12 04:00:00,0.000000,19.300000,42.000000,11.000000,215.000000,90.130000,135.180000,888.970000,7.600000,195.890000,32.350000 +12,2023-08-12 05:00:00,0.000000,15.400000,52.000000,12.000000,206.000000,89.850000,135.290000,889.210000,7.670000,196.020000,32.560000 +12,2023-08-12 06:00:00,0.000000,15.400000,52.000000,12.000000,206.000000,89.600000,135.400000,889.440000,7.400000,196.150000,31.800000 +12,2023-08-12 07:00:00,0.000000,15.400000,52.000000,12.000000,206.000000,89.380000,135.510000,889.670000,7.170000,196.280000,31.140000 +12,2023-08-12 08:00:00,0.000000,15.400000,52.000000,12.000000,206.000000,89.190000,135.620000,889.900000,6.980000,196.410000,30.570000 +12,2023-08-12 09:00:00,0.000000,15.400000,52.000000,12.000000,206.000000,89.020000,135.730000,890.140000,6.810000,196.540000,30.080000 +12,2023-08-12 10:00:00,0.000000,15.400000,52.000000,12.000000,206.000000,88.870000,135.840000,890.370000,6.670000,196.670000,29.650000 +12,2023-08-12 11:00:00,0.000000,22.600000,31.000000,17.000000,231.000000,89.310000,136.090000,890.890000,9.130000,196.960000,36.570000 +12,2023-08-12 12:00:00,0.000000,22.600000,31.000000,17.000000,231.000000,89.670000,136.340000,891.420000,9.620000,197.260000,37.840000 +12,2023-08-12 13:00:00,0.000000,22.600000,31.000000,17.000000,231.000000,89.960000,136.590000,891.940000,10.030000,197.550000,38.900000 +12,2023-08-12 14:00:00,0.000000,22.600000,31.000000,17.000000,231.000000,90.210000,136.840000,892.460000,10.390000,197.840000,39.800000 +12,2023-08-12 15:00:00,0.000000,22.600000,31.000000,17.000000,231.000000,90.410000,137.090000,892.990000,10.690000,198.140000,40.550000 +12,2023-08-12 16:00:00,0.000000,22.600000,31.000000,17.000000,231.000000,90.570000,137.340000,893.510000,10.950000,198.430000,41.180000 +12,2023-08-12 17:00:00,0.000000,24.600000,26.000000,17.000000,251.000000,90.990000,137.640000,894.150000,11.620000,198.790000,42.790000 +12,2023-08-12 18:00:00,0.000000,24.600000,26.000000,17.000000,251.000000,91.320000,137.950000,894.780000,12.190000,199.140000,44.130000 +12,2023-08-12 19:00:00,0.000000,24.600000,26.000000,17.000000,251.000000,91.590000,138.250000,895.410000,12.670000,199.500000,45.240000 +12,2023-08-12 20:00:00,0.000000,24.600000,26.000000,17.000000,251.000000,91.810000,138.550000,896.050000,13.070000,199.850000,46.150000 +12,2023-08-12 21:00:00,0.000000,24.600000,26.000000,17.000000,251.000000,91.990000,138.550000,896.050000,13.400000,199.850000,46.880000 +12,2023-08-12 22:00:00,0.000000,24.600000,26.000000,17.000000,251.000000,92.130000,138.550000,896.050000,13.670000,199.850000,47.480000 +12,2023-08-12 23:00:00,0.000000,17.700000,48.000000,8.000000,278.000000,91.750000,138.550000,896.050000,8.220000,199.850000,34.200000 +12,2023-08-13 00:00:00,0.000000,17.700000,48.000000,8.000000,278.000000,91.410000,138.550000,896.050000,7.840000,199.850000,33.120000 +12,2023-08-13 01:00:00,0.000000,17.700000,48.000000,8.000000,278.000000,91.110000,138.550000,896.050000,7.510000,199.850000,32.200000 +12,2023-08-13 02:00:00,0.000000,17.700000,48.000000,8.000000,278.000000,90.850000,138.550000,896.050000,7.230000,199.850000,31.400000 +12,2023-08-13 03:00:00,0.000000,17.700000,48.000000,8.000000,278.000000,90.610000,138.550000,896.050000,7.000000,199.850000,30.700000 +12,2023-08-13 04:00:00,0.000000,17.700000,48.000000,8.000000,278.000000,90.410000,138.550000,896.050000,6.800000,199.850000,30.100000 +12,2023-08-13 05:00:00,0.000000,13.800000,73.000000,9.000000,259.000000,89.580000,138.600000,896.200000,6.350000,199.910000,28.740000 +12,2023-08-13 06:00:00,0.000000,13.800000,73.000000,9.000000,259.000000,88.860000,138.660000,896.360000,5.720000,199.980000,26.780000 +12,2023-08-13 07:00:00,0.000000,13.800000,73.000000,9.000000,259.000000,88.230000,138.710000,896.510000,5.230000,200.040000,25.160000 +12,2023-08-13 08:00:00,0.000000,13.800000,73.000000,9.000000,259.000000,87.690000,138.760000,896.670000,4.840000,200.110000,23.820000 +12,2023-08-13 09:00:00,0.000000,13.800000,73.000000,9.000000,259.000000,87.210000,138.810000,896.820000,4.520000,200.170000,22.710000 +12,2023-08-13 10:00:00,0.000000,13.800000,73.000000,9.000000,259.000000,86.790000,138.870000,896.980000,4.260000,200.230000,21.770000 +12,2023-08-13 11:00:00,0.000000,22.500000,51.000000,11.000000,254.000000,86.910000,139.030000,897.460000,4.790000,200.440000,23.660000 +12,2023-08-13 12:00:00,0.000000,22.500000,51.000000,11.000000,254.000000,87.010000,139.200000,897.950000,4.860000,200.640000,23.890000 +12,2023-08-13 13:00:00,0.000000,22.500000,51.000000,11.000000,254.000000,87.090000,139.360000,898.430000,4.910000,200.840000,24.100000 +12,2023-08-13 14:00:00,0.000000,22.500000,51.000000,11.000000,254.000000,87.160000,139.520000,898.920000,4.970000,201.040000,24.280000 +12,2023-08-13 15:00:00,0.000000,22.500000,51.000000,11.000000,254.000000,87.230000,139.690000,899.410000,5.010000,201.240000,24.430000 +12,2023-08-13 16:00:00,0.000000,22.500000,51.000000,11.000000,254.000000,87.280000,139.850000,899.890000,5.050000,201.440000,24.560000 +12,2023-08-13 17:00:00,0.000000,26.400000,36.000000,8.000000,237.000000,87.910000,140.130000,900.690000,4.750000,201.770000,23.530000 +12,2023-08-13 18:00:00,0.000000,26.400000,36.000000,8.000000,237.000000,88.430000,140.400000,901.500000,5.120000,202.110000,24.810000 +12,2023-08-13 19:00:00,0.000000,26.400000,36.000000,8.000000,237.000000,88.860000,140.670000,902.300000,5.450000,202.440000,25.910000 +12,2023-08-13 20:00:00,0.000000,26.400000,36.000000,8.000000,237.000000,89.230000,140.940000,903.100000,5.740000,202.770000,26.870000 +12,2023-08-13 21:00:00,0.000000,26.400000,36.000000,8.000000,237.000000,89.530000,140.940000,903.100000,5.990000,202.770000,27.670000 +12,2023-08-13 22:00:00,0.000000,26.400000,36.000000,8.000000,237.000000,89.780000,140.940000,903.100000,6.210000,202.770000,28.360000 +12,2023-08-13 23:00:00,0.000000,22.000000,41.000000,13.000000,201.000000,89.780000,140.940000,903.100000,7.990000,202.770000,33.600000 +12,2023-08-14 00:00:00,0.000000,22.000000,41.000000,13.000000,201.000000,89.780000,140.940000,903.100000,7.990000,202.770000,33.600000 +12,2023-08-14 01:00:00,0.000000,22.000000,41.000000,13.000000,201.000000,89.780000,140.940000,903.100000,7.990000,202.770000,33.600000 +12,2023-08-14 02:00:00,0.000000,22.000000,41.000000,13.000000,201.000000,89.780000,140.940000,903.100000,7.990000,202.770000,33.600000 +12,2023-08-14 03:00:00,0.000000,22.000000,41.000000,13.000000,201.000000,89.780000,140.940000,903.100000,7.990000,202.770000,33.600000 +12,2023-08-14 04:00:00,0.000000,22.000000,41.000000,13.000000,201.000000,89.780000,140.940000,903.100000,7.990000,202.770000,33.600000 +12,2023-08-14 05:00:00,0.000000,19.300000,44.000000,13.000000,185.000000,89.780000,141.070000,903.380000,7.990000,202.920000,33.600000 +12,2023-08-14 06:00:00,0.000000,19.300000,44.000000,13.000000,185.000000,89.780000,141.200000,903.670000,7.990000,203.070000,33.610000 +12,2023-08-14 07:00:00,0.000000,19.300000,44.000000,13.000000,185.000000,89.780000,141.330000,903.950000,7.990000,203.230000,33.610000 +12,2023-08-14 08:00:00,0.000000,19.300000,44.000000,13.000000,185.000000,89.780000,141.460000,904.240000,7.990000,203.380000,33.610000 +12,2023-08-14 09:00:00,0.000000,19.300000,44.000000,13.000000,185.000000,89.780000,141.590000,904.520000,7.990000,203.540000,33.610000 +12,2023-08-14 10:00:00,0.000000,19.300000,44.000000,13.000000,185.000000,89.780000,141.730000,904.810000,7.990000,203.690000,33.620000 +12,2023-08-14 11:00:00,0.000000,25.200000,36.000000,15.000000,199.000000,89.960000,141.940000,905.270000,9.070000,203.940000,36.570000 +12,2023-08-14 12:00:00,0.000000,25.200000,36.000000,15.000000,199.000000,90.110000,142.150000,905.740000,9.270000,204.190000,37.090000 +12,2023-08-14 13:00:00,0.000000,25.200000,36.000000,15.000000,199.000000,90.230000,142.370000,906.200000,9.430000,204.440000,37.530000 +12,2023-08-14 14:00:00,0.000000,25.200000,36.000000,15.000000,199.000000,90.330000,142.580000,906.670000,9.570000,204.690000,37.880000 +12,2023-08-14 15:00:00,0.000000,25.200000,36.000000,15.000000,199.000000,90.410000,142.800000,907.130000,9.680000,204.940000,38.180000 +12,2023-08-14 16:00:00,0.000000,25.200000,36.000000,15.000000,199.000000,90.480000,143.010000,907.600000,9.770000,205.190000,38.420000 +12,2023-08-14 17:00:00,0.000000,31.400000,27.000000,18.000000,254.000000,91.250000,143.360000,908.360000,12.680000,205.600000,45.430000 +12,2023-08-14 18:00:00,0.000000,31.400000,27.000000,18.000000,254.000000,91.830000,143.710000,909.120000,13.780000,206.010000,47.890000 +12,2023-08-14 19:00:00,0.000000,31.400000,27.000000,18.000000,254.000000,92.280000,144.060000,909.880000,14.670000,206.420000,49.830000 +12,2023-08-14 20:00:00,0.000000,31.400000,27.000000,18.000000,254.000000,92.610000,144.410000,910.640000,15.380000,206.830000,51.330000 +12,2023-08-14 21:00:00,0.000000,31.400000,27.000000,18.000000,254.000000,92.870000,144.410000,910.640000,15.940000,206.830000,52.490000 +12,2023-08-14 22:00:00,0.000000,31.400000,27.000000,18.000000,254.000000,93.060000,144.410000,910.640000,16.380000,206.830000,53.380000 +12,2023-08-14 23:00:00,0.000000,25.200000,33.000000,11.000000,265.000000,93.030000,144.410000,910.640000,11.460000,206.830000,42.620000 +12,2023-08-15 00:00:00,0.000000,25.200000,33.000000,11.000000,265.000000,93.000000,144.410000,910.640000,11.420000,206.830000,42.530000 +12,2023-08-15 01:00:00,0.000000,25.200000,33.000000,11.000000,265.000000,92.980000,144.410000,910.640000,11.390000,206.830000,42.440000 +12,2023-08-15 02:00:00,0.000000,25.200000,33.000000,11.000000,265.000000,92.960000,144.410000,910.640000,11.360000,206.830000,42.370000 +12,2023-08-15 03:00:00,0.000000,25.200000,33.000000,11.000000,265.000000,92.950000,144.410000,910.640000,11.330000,206.830000,42.310000 +12,2023-08-15 04:00:00,0.000000,25.200000,33.000000,11.000000,265.000000,92.930000,144.410000,910.640000,11.310000,206.830000,42.250000 +12,2023-08-15 05:00:00,0.000000,19.200000,39.000000,10.000000,240.000000,92.670000,144.570000,910.930000,10.360000,207.010000,39.950000 +12,2023-08-15 06:00:00,0.000000,19.200000,39.000000,10.000000,240.000000,92.440000,144.730000,911.220000,10.030000,207.190000,39.120000 +12,2023-08-15 07:00:00,0.000000,19.200000,39.000000,10.000000,240.000000,92.230000,144.890000,911.510000,9.750000,207.370000,38.400000 +12,2023-08-15 08:00:00,0.000000,19.200000,39.000000,10.000000,240.000000,92.050000,145.050000,911.810000,9.500000,207.550000,37.770000 +12,2023-08-15 09:00:00,0.000000,19.200000,39.000000,10.000000,240.000000,91.900000,145.200000,912.100000,9.290000,207.730000,37.220000 +12,2023-08-15 10:00:00,0.000000,19.200000,39.000000,10.000000,240.000000,91.760000,145.360000,912.390000,9.110000,207.910000,36.740000 +12,2023-08-15 11:00:00,0.000000,25.500000,25.000000,13.000000,271.000000,92.010000,145.650000,912.910000,10.980000,208.240000,41.500000 +12,2023-08-15 12:00:00,0.000000,25.500000,25.000000,13.000000,271.000000,92.220000,145.930000,913.440000,11.310000,208.560000,42.290000 +12,2023-08-15 13:00:00,0.000000,25.500000,25.000000,13.000000,271.000000,92.380000,146.220000,913.970000,11.580000,208.890000,42.940000 +12,2023-08-15 14:00:00,0.000000,25.500000,25.000000,13.000000,271.000000,92.520000,146.500000,914.490000,11.800000,209.210000,43.480000 +12,2023-08-15 15:00:00,0.000000,25.500000,25.000000,13.000000,271.000000,92.630000,146.790000,915.020000,11.980000,209.540000,43.910000 +12,2023-08-15 16:00:00,0.000000,25.500000,25.000000,13.000000,271.000000,92.720000,147.070000,915.540000,12.130000,209.860000,44.270000 +12,2023-08-15 17:00:00,0.000000,28.400000,19.000000,16.000000,288.000000,93.210000,147.440000,916.220000,15.120000,210.280000,50.870000 +12,2023-08-15 18:00:00,0.000000,28.400000,19.000000,16.000000,288.000000,93.590000,147.800000,916.890000,15.950000,210.700000,52.600000 +12,2023-08-15 19:00:00,0.000000,28.400000,19.000000,16.000000,288.000000,93.890000,148.170000,917.560000,16.620000,211.110000,53.990000 +12,2023-08-15 20:00:00,0.000000,28.400000,19.000000,16.000000,288.000000,94.120000,148.530000,918.230000,17.170000,211.530000,55.080000 +12,2023-08-15 21:00:00,0.000000,28.400000,19.000000,16.000000,288.000000,94.300000,148.530000,918.230000,17.600000,211.530000,55.940000 +12,2023-08-15 22:00:00,0.000000,28.400000,19.000000,16.000000,288.000000,94.440000,148.530000,918.230000,17.940000,211.530000,56.610000 +12,2023-08-15 23:00:00,0.000000,19.800000,37.000000,8.000000,315.000000,94.070000,148.530000,918.230000,11.400000,211.530000,42.570000 +12,2023-08-16 00:00:00,0.000000,19.800000,37.000000,8.000000,315.000000,93.750000,148.530000,918.230000,10.900000,211.530000,41.360000 +12,2023-08-16 01:00:00,0.000000,19.800000,37.000000,8.000000,315.000000,93.460000,148.530000,918.230000,10.470000,211.530000,40.300000 +12,2023-08-16 02:00:00,0.000000,19.800000,37.000000,8.000000,315.000000,93.210000,148.530000,918.230000,10.100000,211.530000,39.380000 +12,2023-08-16 03:00:00,0.000000,19.800000,37.000000,8.000000,315.000000,92.980000,148.530000,918.230000,9.780000,211.530000,38.580000 +12,2023-08-16 04:00:00,0.000000,19.800000,37.000000,8.000000,315.000000,92.780000,148.530000,918.230000,9.510000,211.530000,37.870000 +12,2023-08-16 05:00:00,0.000000,14.200000,61.000000,7.000000,307.000000,92.010000,148.620000,918.430000,8.120000,211.620000,34.120000 +12,2023-08-16 06:00:00,0.000000,14.200000,61.000000,7.000000,307.000000,91.330000,148.700000,918.630000,7.370000,211.720000,32.010000 +12,2023-08-16 07:00:00,0.000000,14.200000,61.000000,7.000000,307.000000,90.730000,148.780000,918.830000,6.770000,211.820000,30.220000 +12,2023-08-16 08:00:00,0.000000,14.200000,61.000000,7.000000,307.000000,90.200000,148.870000,919.030000,6.280000,211.910000,28.720000 +12,2023-08-16 09:00:00,0.000000,14.200000,61.000000,7.000000,307.000000,89.740000,148.950000,919.230000,5.870000,212.010000,27.430000 +12,2023-08-16 10:00:00,0.000000,14.200000,61.000000,7.000000,307.000000,89.320000,149.030000,919.430000,5.530000,212.110000,26.340000 +12,2023-08-16 11:00:00,0.000000,23.000000,40.000000,12.000000,331.000000,89.380000,149.250000,919.960000,7.170000,212.370000,31.430000 +12,2023-08-16 12:00:00,0.000000,23.000000,40.000000,12.000000,331.000000,89.420000,149.480000,920.490000,7.210000,212.630000,31.560000 +12,2023-08-16 13:00:00,0.000000,23.000000,40.000000,12.000000,331.000000,89.450000,149.700000,921.020000,7.250000,212.890000,31.670000 +12,2023-08-16 14:00:00,0.000000,23.000000,40.000000,12.000000,331.000000,89.480000,149.920000,921.550000,7.280000,213.150000,31.770000 +12,2023-08-16 15:00:00,0.000000,23.000000,40.000000,12.000000,331.000000,89.510000,150.140000,922.080000,7.310000,213.410000,31.850000 +12,2023-08-16 16:00:00,0.000000,23.000000,40.000000,12.000000,331.000000,89.530000,150.360000,922.610000,7.330000,213.670000,31.920000 +12,2023-08-16 17:00:00,0.000000,24.600000,29.000000,14.000000,9.000000,90.000000,150.650000,923.300000,8.670000,214.010000,35.690000 +12,2023-08-16 18:00:00,0.000000,24.600000,29.000000,14.000000,9.000000,90.380000,150.940000,923.990000,9.160000,214.340000,37.010000 +12,2023-08-16 19:00:00,0.000000,24.600000,29.000000,14.000000,9.000000,90.700000,151.230000,924.690000,9.580000,214.680000,38.110000 +12,2023-08-16 20:00:00,0.000000,24.600000,29.000000,14.000000,9.000000,90.950000,151.520000,925.380000,9.940000,215.020000,39.040000 +12,2023-08-16 21:00:00,0.000000,24.600000,29.000000,14.000000,9.000000,91.160000,151.520000,925.380000,10.240000,215.020000,39.800000 +12,2023-08-16 22:00:00,0.000000,24.600000,29.000000,14.000000,9.000000,91.330000,151.520000,925.380000,10.490000,215.020000,40.420000 +12,2023-08-16 23:00:00,0.000000,17.900000,53.000000,3.000000,50.000000,90.980000,151.520000,925.380000,5.730000,215.020000,27.040000 +12,2023-08-17 00:00:00,0.000000,17.900000,53.000000,3.000000,50.000000,90.670000,151.520000,925.380000,5.490000,215.020000,26.220000 +12,2023-08-17 01:00:00,0.000000,17.900000,53.000000,3.000000,50.000000,90.390000,151.520000,925.380000,5.270000,215.020000,25.510000 +12,2023-08-17 02:00:00,0.000000,17.900000,53.000000,3.000000,50.000000,90.140000,151.520000,925.380000,5.090000,215.020000,24.890000 +12,2023-08-17 03:00:00,0.000000,17.900000,53.000000,3.000000,50.000000,89.920000,151.520000,925.380000,4.930000,215.020000,24.340000 +12,2023-08-17 04:00:00,0.000000,17.900000,53.000000,3.000000,50.000000,89.720000,151.520000,925.380000,4.790000,215.020000,23.860000 +12,2023-08-17 05:00:00,0.000000,14.200000,63.000000,11.000000,26.000000,89.230000,151.520000,925.380000,6.680000,215.020000,29.990000 +12,2023-08-17 06:00:00,0.000000,14.200000,63.000000,11.000000,26.000000,88.800000,151.600000,925.610000,6.280000,215.120000,28.760000 +12,2023-08-17 07:00:00,0.000000,14.200000,63.000000,11.000000,26.000000,88.420000,151.690000,925.840000,5.940000,215.230000,27.720000 +12,2023-08-17 08:00:00,0.000000,14.200000,63.000000,11.000000,26.000000,88.090000,151.780000,926.070000,5.670000,215.330000,26.830000 +12,2023-08-17 09:00:00,0.000000,14.200000,63.000000,11.000000,26.000000,87.800000,151.860000,926.300000,5.440000,215.430000,26.070000 +12,2023-08-17 10:00:00,0.000000,14.200000,63.000000,11.000000,26.000000,87.550000,151.950000,926.530000,5.250000,215.530000,25.430000 +12,2023-08-17 11:00:00,0.000000,19.000000,42.000000,19.000000,20.000000,87.710000,152.130000,927.020000,8.030000,215.750000,33.960000 +12,2023-08-17 12:00:00,0.000000,19.000000,42.000000,19.000000,20.000000,87.850000,152.320000,927.520000,8.190000,215.970000,34.410000 +12,2023-08-17 13:00:00,0.000000,19.000000,42.000000,19.000000,20.000000,87.960000,152.500000,928.010000,8.330000,216.190000,34.790000 +12,2023-08-17 14:00:00,0.000000,19.000000,42.000000,19.000000,20.000000,88.060000,152.690000,928.500000,8.450000,216.410000,35.120000 +12,2023-08-17 15:00:00,0.000000,19.000000,42.000000,19.000000,20.000000,88.150000,152.870000,928.990000,8.550000,216.630000,35.400000 +12,2023-08-17 16:00:00,0.000000,19.000000,42.000000,19.000000,20.000000,88.220000,153.060000,929.480000,8.640000,216.840000,35.640000 +12,2023-08-17 17:00:00,0.000000,20.600000,38.000000,17.000000,25.000000,88.440000,153.270000,930.060000,8.070000,217.100000,34.070000 +12,2023-08-17 18:00:00,0.000000,20.600000,38.000000,17.000000,25.000000,88.630000,153.490000,930.640000,8.290000,217.360000,34.700000 +12,2023-08-17 19:00:00,0.000000,20.600000,38.000000,17.000000,25.000000,88.790000,153.710000,931.220000,8.480000,217.620000,35.230000 +12,2023-08-17 20:00:00,0.000000,20.600000,38.000000,17.000000,25.000000,88.920000,153.920000,931.800000,8.640000,217.870000,35.680000 +12,2023-08-17 21:00:00,0.000000,20.600000,38.000000,17.000000,25.000000,89.040000,153.920000,931.800000,8.780000,217.870000,36.060000 +12,2023-08-17 22:00:00,0.000000,20.600000,38.000000,17.000000,25.000000,89.130000,153.920000,931.800000,8.900000,217.870000,36.380000 +12,2023-08-17 23:00:00,0.000000,15.600000,55.000000,4.000000,284.000000,88.940000,153.920000,931.800000,4.500000,217.870000,22.870000 +12,2023-08-18 00:00:00,0.000000,15.600000,55.000000,4.000000,284.000000,88.780000,153.920000,931.800000,4.400000,217.870000,22.490000 +12,2023-08-18 01:00:00,0.000000,15.600000,55.000000,4.000000,284.000000,88.630000,153.920000,931.800000,4.300000,217.870000,22.150000 +12,2023-08-18 02:00:00,0.000000,15.600000,55.000000,4.000000,284.000000,88.490000,153.920000,931.800000,4.220000,217.870000,21.840000 +12,2023-08-18 03:00:00,0.000000,15.600000,55.000000,4.000000,284.000000,88.370000,153.920000,931.800000,4.150000,217.870000,21.580000 +12,2023-08-18 04:00:00,0.000000,15.600000,55.000000,4.000000,284.000000,88.260000,153.920000,931.800000,4.080000,217.870000,21.340000 +12,2023-08-18 05:00:00,0.000000,12.800000,68.000000,3.000000,288.000000,87.900000,153.920000,931.800000,3.690000,217.870000,19.820000 +12,2023-08-18 06:00:00,0.000000,12.800000,68.000000,3.000000,288.000000,87.580000,154.020000,932.040000,3.520000,217.980000,19.160000 +12,2023-08-18 07:00:00,0.000000,12.800000,68.000000,3.000000,288.000000,87.280000,154.110000,932.280000,3.380000,218.090000,18.580000 +12,2023-08-18 08:00:00,0.000000,12.800000,68.000000,3.000000,288.000000,87.020000,154.210000,932.520000,3.250000,218.210000,18.080000 +12,2023-08-18 09:00:00,0.000000,12.800000,68.000000,3.000000,288.000000,86.780000,154.300000,932.760000,3.140000,218.320000,17.640000 +12,2023-08-18 10:00:00,0.000000,12.800000,68.000000,3.000000,288.000000,86.570000,154.400000,933.000000,3.050000,218.430000,17.250000 +12,2023-08-18 11:00:00,0.000000,21.700000,42.000000,5.000000,91.000000,86.890000,154.700000,933.760000,3.530000,218.780000,19.220000 +12,2023-08-18 12:00:00,0.000000,21.700000,42.000000,5.000000,91.000000,87.180000,155.000000,934.520000,3.680000,219.130000,19.790000 +12,2023-08-18 13:00:00,0.000000,21.700000,42.000000,5.000000,91.000000,87.420000,155.300000,935.270000,3.810000,219.480000,20.300000 +12,2023-08-18 14:00:00,0.000000,21.700000,42.000000,5.000000,91.000000,87.640000,155.600000,936.030000,3.930000,219.840000,20.760000 +12,2023-08-18 15:00:00,0.000000,21.700000,42.000000,5.000000,91.000000,87.820000,155.900000,936.790000,4.030000,220.190000,21.160000 +12,2023-08-18 16:00:00,0.000000,21.700000,42.000000,5.000000,91.000000,87.980000,156.200000,937.550000,4.130000,220.540000,21.520000 +12,2023-08-18 17:00:00,0.000000,25.100000,28.000000,8.000000,76.000000,88.730000,156.650000,938.710000,5.340000,221.080000,25.810000 +13,2023-08-03 00:00:00,0.000000,16.800000,57.000000,7.000000,58.000000,86.000000,118.400000,826.100000,3.440000,174.330000,18.210000 +13,2023-08-03 01:00:00,0.000000,16.800000,57.000000,7.000000,58.000000,86.000000,118.400000,826.100000,3.440000,174.330000,18.210000 +13,2023-08-03 02:00:00,0.000000,14.900000,63.000000,5.000000,53.000000,85.980000,118.400000,826.100000,3.110000,174.330000,16.870000 +13,2023-08-03 03:00:00,0.000000,14.900000,63.000000,5.000000,53.000000,85.970000,118.400000,826.100000,3.100000,174.330000,16.840000 +13,2023-08-03 04:00:00,0.000000,14.900000,63.000000,5.000000,53.000000,85.960000,118.400000,826.100000,3.090000,174.330000,16.820000 +13,2023-08-03 05:00:00,0.000000,14.800000,67.000000,6.000000,57.000000,85.860000,118.460000,826.280000,3.210000,174.410000,17.290000 +13,2023-08-03 06:00:00,0.000000,14.800000,67.000000,6.000000,57.000000,85.780000,118.510000,826.470000,3.170000,174.480000,17.140000 +13,2023-08-03 07:00:00,0.000000,14.800000,67.000000,6.000000,57.000000,85.700000,118.570000,826.650000,3.140000,174.550000,17.010000 +13,2023-08-03 08:00:00,0.000000,16.600000,65.000000,6.000000,82.000000,85.700000,118.640000,826.870000,3.140000,174.640000,17.010000 +13,2023-08-03 09:00:00,0.000000,16.600000,65.000000,6.000000,82.000000,85.700000,118.710000,827.090000,3.140000,174.720000,17.020000 +13,2023-08-03 10:00:00,0.000000,16.600000,65.000000,6.000000,82.000000,85.700000,118.770000,827.310000,3.140000,174.810000,17.020000 +13,2023-08-03 11:00:00,0.000000,20.800000,54.000000,7.000000,50.000000,85.840000,118.890000,827.690000,3.360000,174.950000,17.910000 +13,2023-08-03 12:00:00,0.000000,20.800000,54.000000,7.000000,50.000000,85.950000,119.000000,828.060000,3.420000,175.100000,18.140000 +13,2023-08-03 13:00:00,0.000000,20.800000,54.000000,7.000000,50.000000,86.050000,119.120000,828.440000,3.470000,175.240000,18.330000 +13,2023-08-03 14:00:00,0.000000,23.300000,39.000000,11.000000,32.000000,86.660000,119.300000,829.020000,4.620000,175.470000,22.570000 +13,2023-08-03 15:00:00,0.000000,23.300000,39.000000,11.000000,32.000000,87.180000,119.480000,829.590000,4.970000,175.700000,23.770000 +13,2023-08-03 16:00:00,0.000000,23.300000,39.000000,11.000000,32.000000,87.610000,119.660000,830.170000,5.290000,175.920000,24.820000 +13,2023-08-03 17:00:00,0.000000,23.000000,38.000000,13.000000,35.000000,88.000000,119.830000,830.750000,6.190000,176.150000,27.690000 +13,2023-08-03 18:00:00,0.000000,23.000000,38.000000,13.000000,35.000000,88.340000,120.010000,831.330000,6.500000,176.370000,28.610000 +13,2023-08-03 19:00:00,0.000000,23.000000,38.000000,13.000000,35.000000,88.610000,120.190000,831.910000,6.760000,176.600000,29.400000 +13,2023-08-03 20:00:00,0.000000,20.700000,42.000000,7.000000,57.000000,88.650000,120.330000,832.380000,5.020000,176.780000,23.960000 +13,2023-08-03 21:00:00,0.000000,20.700000,42.000000,7.000000,57.000000,88.680000,120.480000,832.850000,5.050000,176.960000,24.040000 +13,2023-08-03 22:00:00,0.000000,20.700000,42.000000,7.000000,57.000000,88.710000,120.480000,832.850000,5.070000,176.960000,24.110000 +13,2023-08-03 23:00:00,0.000000,15.700000,58.000000,0.000000,124.000000,88.570000,120.480000,832.850000,3.490000,176.960000,18.440000 +13,2023-08-04 00:00:00,0.000000,15.700000,58.000000,0.000000,124.000000,88.440000,120.480000,832.850000,3.420000,176.960000,18.190000 +13,2023-08-04 01:00:00,0.000000,15.700000,58.000000,0.000000,124.000000,88.320000,120.480000,832.850000,3.360000,176.960000,17.960000 +13,2023-08-04 02:00:00,0.000000,13.700000,65.000000,3.000000,232.000000,88.010000,120.480000,832.850000,3.750000,176.960000,19.440000 +13,2023-08-04 03:00:00,0.000000,13.700000,65.000000,3.000000,232.000000,87.740000,120.480000,832.850000,3.600000,176.960000,18.890000 +13,2023-08-04 04:00:00,0.000000,13.700000,65.000000,3.000000,232.000000,87.500000,120.480000,832.850000,3.480000,176.960000,18.410000 +13,2023-08-04 05:00:00,0.000000,14.200000,66.000000,5.000000,285.000000,87.250000,120.540000,833.020000,3.710000,177.040000,19.310000 +13,2023-08-04 06:00:00,0.000000,14.200000,66.000000,5.000000,285.000000,87.020000,120.610000,833.180000,3.600000,177.120000,18.870000 +13,2023-08-04 07:00:00,0.000000,14.200000,66.000000,5.000000,285.000000,86.830000,120.670000,833.350000,3.500000,177.200000,18.490000 +13,2023-08-04 08:00:00,0.000000,17.800000,58.000000,4.000000,304.000000,86.830000,120.770000,833.610000,3.330000,177.320000,17.820000 +13,2023-08-04 09:00:00,0.000000,17.800000,58.000000,4.000000,304.000000,86.830000,120.870000,833.870000,3.330000,177.440000,17.820000 +13,2023-08-04 10:00:00,0.000000,17.800000,58.000000,4.000000,304.000000,86.830000,120.970000,834.130000,3.330000,177.560000,17.820000 +13,2023-08-04 11:00:00,0.000000,22.700000,45.000000,6.000000,332.000000,87.080000,121.140000,834.590000,3.810000,177.780000,19.700000 +13,2023-08-04 12:00:00,0.000000,22.700000,45.000000,6.000000,332.000000,87.300000,121.320000,835.050000,3.930000,177.990000,20.160000 +13,2023-08-04 13:00:00,0.000000,22.700000,45.000000,6.000000,332.000000,87.480000,121.500000,835.510000,4.040000,178.210000,20.560000 +13,2023-08-04 14:00:00,0.000000,24.700000,41.000000,12.000000,339.000000,87.860000,121.710000,836.070000,5.770000,178.470000,26.440000 +13,2023-08-04 15:00:00,0.000000,24.700000,41.000000,12.000000,339.000000,88.180000,121.920000,836.630000,6.040000,178.730000,27.290000 +13,2023-08-04 16:00:00,0.000000,24.700000,41.000000,12.000000,339.000000,88.450000,122.130000,837.180000,6.270000,178.990000,28.020000 +13,2023-08-04 17:00:00,0.000000,24.800000,39.000000,15.000000,337.000000,88.750000,122.350000,837.760000,7.620000,179.260000,31.970000 +13,2023-08-04 18:00:00,0.000000,24.800000,39.000000,15.000000,337.000000,89.000000,122.570000,838.340000,7.900000,179.530000,32.750000 +13,2023-08-04 19:00:00,0.000000,24.800000,39.000000,15.000000,337.000000,89.200000,122.800000,838.920000,8.130000,179.800000,33.400000 +13,2023-08-04 20:00:00,0.000000,23.400000,42.000000,11.000000,326.000000,89.220000,122.990000,839.430000,6.670000,180.030000,29.240000 +13,2023-08-04 21:00:00,0.000000,23.400000,42.000000,11.000000,326.000000,89.240000,123.180000,839.940000,6.690000,180.270000,29.300000 +13,2023-08-04 22:00:00,0.000000,23.400000,42.000000,11.000000,326.000000,89.260000,123.180000,839.940000,6.700000,180.270000,29.340000 +13,2023-08-04 23:00:00,0.000000,18.900000,58.000000,7.000000,294.000000,89.010000,123.180000,839.940000,5.290000,180.270000,24.940000 +13,2023-08-05 00:00:00,0.000000,18.900000,58.000000,7.000000,294.000000,88.800000,123.180000,839.940000,5.130000,180.270000,24.410000 +13,2023-08-05 01:00:00,0.000000,18.900000,58.000000,7.000000,294.000000,88.610000,123.180000,839.940000,4.990000,180.270000,23.960000 +13,2023-08-05 02:00:00,0.000000,16.400000,74.000000,7.000000,284.000000,88.010000,123.180000,839.940000,4.580000,180.270000,22.550000 +13,2023-08-05 03:00:00,0.000000,16.400000,74.000000,7.000000,284.000000,87.490000,123.180000,839.940000,4.260000,180.270000,21.380000 +13,2023-08-05 04:00:00,0.000000,16.400000,74.000000,7.000000,284.000000,87.040000,123.180000,839.940000,3.990000,180.270000,20.420000 +13,2023-08-05 05:00:00,0.000000,14.500000,88.000000,6.000000,277.000000,86.130000,123.210000,840.010000,3.340000,180.300000,17.910000 +13,2023-08-05 06:00:00,0.000000,14.500000,88.000000,6.000000,277.000000,85.340000,123.230000,840.080000,2.990000,180.330000,16.500000 +13,2023-08-05 07:00:00,0.000000,14.500000,88.000000,6.000000,277.000000,84.660000,123.260000,840.160000,2.720000,180.360000,15.360000 +13,2023-08-05 08:00:00,0.000000,19.100000,68.000000,6.000000,316.000000,84.660000,123.340000,840.420000,2.720000,180.470000,15.370000 +13,2023-08-05 09:00:00,0.000000,19.100000,68.000000,6.000000,316.000000,84.660000,123.430000,840.680000,2.720000,180.580000,15.370000 +13,2023-08-05 10:00:00,0.000000,19.100000,68.000000,6.000000,316.000000,84.660000,123.520000,840.940000,2.720000,180.690000,15.370000 +13,2023-08-05 11:00:00,0.000000,22.800000,51.000000,8.000000,340.000000,85.060000,123.690000,841.440000,3.180000,180.900000,17.290000 +13,2023-08-05 12:00:00,0.000000,22.800000,51.000000,8.000000,340.000000,85.410000,123.860000,841.940000,3.340000,181.110000,17.930000 +13,2023-08-05 13:00:00,0.000000,22.800000,51.000000,8.000000,340.000000,85.720000,124.030000,842.440000,3.480000,181.320000,18.500000 +13,2023-08-05 14:00:00,0.000000,23.800000,45.000000,12.000000,9.000000,86.210000,124.230000,843.030000,4.560000,181.570000,22.510000 +13,2023-08-05 15:00:00,0.000000,23.800000,45.000000,12.000000,9.000000,86.640000,124.440000,843.630000,4.840000,181.820000,23.490000 +13,2023-08-05 16:00:00,0.000000,23.800000,45.000000,12.000000,9.000000,86.990000,124.640000,844.220000,5.100000,182.080000,24.340000 +13,2023-08-05 17:00:00,0.050000,23.500000,43.000000,12.000000,20.000000,87.340000,124.850000,844.830000,5.360000,182.330000,25.200000 +13,2023-08-05 18:00:00,0.000000,23.500000,43.000000,12.000000,20.000000,87.630000,125.050000,845.430000,5.580000,182.590000,25.960000 +13,2023-08-05 19:00:00,0.000000,23.500000,43.000000,12.000000,20.000000,87.880000,125.260000,846.040000,5.790000,182.840000,26.610000 +13,2023-08-05 20:00:00,0.000000,21.600000,47.000000,8.000000,30.000000,87.920000,125.430000,846.540000,4.750000,183.050000,23.200000 +13,2023-08-05 21:00:00,0.000000,21.600000,47.000000,8.000000,30.000000,87.950000,125.600000,847.050000,4.770000,183.260000,23.280000 +13,2023-08-05 22:00:00,0.000000,21.600000,47.000000,8.000000,30.000000,87.970000,125.600000,847.050000,4.790000,183.260000,23.340000 +13,2023-08-05 23:00:00,0.000000,17.400000,61.000000,3.000000,14.000000,87.820000,125.600000,847.050000,3.650000,183.260000,19.180000 +13,2023-08-06 00:00:00,0.000000,17.400000,61.000000,3.000000,14.000000,87.690000,125.600000,847.050000,3.580000,183.260000,18.910000 +13,2023-08-06 01:00:00,0.000000,17.400000,61.000000,3.000000,14.000000,87.570000,125.600000,847.050000,3.510000,183.260000,18.670000 +13,2023-08-06 02:00:00,0.000000,13.900000,77.000000,6.000000,311.000000,87.020000,125.600000,847.050000,3.780000,183.260000,19.710000 +13,2023-08-06 03:00:00,0.000000,13.900000,77.000000,6.000000,311.000000,86.550000,125.600000,847.050000,3.540000,183.260000,18.760000 +13,2023-08-06 04:00:00,0.000000,13.900000,77.000000,6.000000,311.000000,86.130000,125.600000,847.050000,3.330000,183.260000,17.960000 +13,2023-08-06 05:00:00,0.000000,12.900000,82.000000,7.000000,312.000000,85.590000,125.640000,847.140000,3.250000,183.310000,17.620000 +13,2023-08-06 06:00:00,0.000000,12.900000,82.000000,7.000000,312.000000,85.110000,125.670000,847.240000,3.040000,183.350000,16.780000 +13,2023-08-06 07:00:00,0.000000,12.900000,82.000000,7.000000,312.000000,84.700000,125.710000,847.330000,2.870000,183.390000,16.080000 +13,2023-08-06 08:00:00,0.000000,17.100000,63.000000,8.000000,5.000000,84.700000,125.800000,847.590000,3.020000,183.510000,16.700000 +13,2023-08-06 09:00:00,0.000000,17.100000,63.000000,8.000000,5.000000,84.700000,125.900000,847.850000,3.020000,183.630000,16.700000 +13,2023-08-06 10:00:00,0.000000,17.100000,63.000000,8.000000,5.000000,84.700000,125.990000,848.110000,3.020000,183.740000,16.710000 +13,2023-08-06 11:00:00,0.000000,21.500000,46.000000,14.000000,32.000000,85.240000,126.170000,848.610000,4.400000,183.970000,22.000000 +13,2023-08-06 12:00:00,0.000000,21.500000,46.000000,14.000000,32.000000,85.700000,126.360000,849.110000,4.700000,184.190000,23.030000 +13,2023-08-06 13:00:00,0.000000,21.500000,46.000000,14.000000,32.000000,86.090000,126.540000,849.610000,4.960000,184.410000,23.950000 +13,2023-08-06 14:00:00,0.010000,22.200000,41.000000,17.000000,38.000000,86.630000,126.750000,850.180000,6.230000,184.670000,28.020000 +13,2023-08-06 15:00:00,0.000000,22.200000,41.000000,17.000000,38.000000,87.080000,126.950000,850.740000,6.630000,184.920000,29.270000 +13,2023-08-06 16:00:00,0.000000,22.200000,41.000000,17.000000,38.000000,87.450000,127.160000,851.310000,7.000000,185.180000,30.360000 +13,2023-08-06 17:00:00,0.000000,21.900000,39.000000,17.000000,50.000000,87.820000,127.370000,851.890000,7.370000,185.430000,31.450000 +13,2023-08-06 18:00:00,0.000000,21.900000,39.000000,17.000000,50.000000,88.120000,127.590000,852.460000,7.700000,185.690000,32.390000 +13,2023-08-06 19:00:00,0.000000,21.900000,39.000000,17.000000,50.000000,88.380000,127.800000,853.040000,7.990000,185.950000,33.200000 +13,2023-08-06 20:00:00,0.000000,19.200000,45.000000,14.000000,70.000000,88.380000,127.960000,853.480000,6.870000,186.150000,30.010000 +13,2023-08-06 21:00:00,0.000000,19.200000,45.000000,14.000000,70.000000,88.380000,128.120000,853.920000,6.870000,186.340000,30.010000 +13,2023-08-06 22:00:00,0.000000,19.200000,45.000000,14.000000,70.000000,88.380000,128.120000,853.920000,6.870000,186.340000,30.010000 +13,2023-08-06 23:00:00,0.000000,14.300000,59.000000,4.000000,87.000000,88.180000,128.120000,853.920000,4.030000,186.340000,20.710000 +13,2023-08-07 00:00:00,0.000000,14.300000,59.000000,4.000000,87.000000,88.000000,128.120000,853.920000,3.930000,186.340000,20.330000 +13,2023-08-07 01:00:00,0.000000,14.300000,59.000000,4.000000,87.000000,87.840000,128.120000,853.920000,3.840000,186.340000,20.000000 +13,2023-08-07 02:00:00,0.000000,11.000000,73.000000,1.000000,308.000000,87.450000,128.120000,853.920000,3.130000,186.340000,17.180000 +13,2023-08-07 03:00:00,0.000000,11.000000,73.000000,1.000000,308.000000,87.100000,128.120000,853.920000,2.970000,186.340000,16.540000 +13,2023-08-07 04:00:00,0.000000,11.000000,73.000000,1.000000,308.000000,86.780000,128.120000,853.920000,2.840000,186.340000,15.980000 +13,2023-08-07 05:00:00,0.000000,9.400000,81.000000,2.000000,315.000000,86.280000,128.150000,854.000000,2.780000,186.380000,15.740000 +13,2023-08-07 06:00:00,0.000000,9.400000,81.000000,2.000000,315.000000,85.830000,128.180000,854.090000,2.610000,186.420000,15.000000 +13,2023-08-07 07:00:00,0.000000,9.400000,81.000000,2.000000,315.000000,85.420000,128.210000,854.170000,2.470000,186.460000,14.360000 +13,2023-08-07 08:00:00,0.000000,14.400000,64.000000,4.000000,63.000000,85.420000,128.290000,854.390000,2.730000,186.550000,15.510000 +13,2023-08-07 09:00:00,0.000000,14.400000,64.000000,4.000000,63.000000,85.420000,128.370000,854.600000,2.730000,186.650000,15.520000 +13,2023-08-07 10:00:00,0.000000,14.400000,64.000000,4.000000,63.000000,85.420000,128.450000,854.820000,2.730000,186.750000,15.520000 +13,2023-08-07 11:00:00,0.000000,19.500000,43.000000,11.000000,71.000000,85.840000,128.630000,855.300000,4.120000,186.970000,21.030000 +13,2023-08-07 12:00:00,0.000000,19.500000,43.000000,11.000000,71.000000,86.210000,128.810000,855.770000,4.340000,187.180000,21.830000 +13,2023-08-07 13:00:00,0.000000,19.500000,43.000000,11.000000,71.000000,86.530000,128.990000,856.250000,4.530000,187.400000,22.530000 +13,2023-08-07 14:00:00,0.000000,20.900000,35.000000,15.000000,55.000000,87.120000,129.210000,856.840000,6.030000,187.670000,27.510000 +13,2023-08-07 15:00:00,0.000000,20.900000,35.000000,15.000000,55.000000,87.620000,129.430000,857.440000,6.480000,187.930000,28.890000 +13,2023-08-07 16:00:00,0.000000,20.900000,35.000000,15.000000,55.000000,88.040000,129.650000,858.030000,6.880000,188.200000,30.100000 +13,2023-08-07 17:00:00,0.000000,20.100000,38.000000,15.000000,56.000000,88.270000,129.850000,858.570000,7.110000,188.450000,30.780000 +13,2023-08-07 18:00:00,0.000000,20.100000,38.000000,15.000000,56.000000,88.460000,130.050000,859.100000,7.320000,188.690000,31.380000 +13,2023-08-07 19:00:00,0.000000,20.100000,38.000000,15.000000,56.000000,88.630000,130.250000,859.640000,7.490000,188.930000,31.880000 +13,2023-08-07 20:00:00,0.000000,17.700000,47.000000,10.000000,59.000000,88.630000,130.400000,860.040000,5.820000,189.110000,26.880000 +13,2023-08-07 21:00:00,0.000000,17.700000,47.000000,10.000000,59.000000,88.630000,130.540000,860.430000,5.820000,189.290000,26.880000 +13,2023-08-07 22:00:00,0.000000,17.700000,47.000000,10.000000,59.000000,88.630000,130.540000,860.430000,5.820000,189.290000,26.880000 +13,2023-08-07 23:00:00,0.000000,12.500000,70.000000,4.000000,48.000000,88.170000,130.540000,860.430000,4.030000,189.290000,20.750000 +13,2023-08-08 00:00:00,0.000000,12.500000,70.000000,4.000000,48.000000,87.760000,130.540000,860.430000,3.800000,189.290000,19.880000 +13,2023-08-08 01:00:00,0.000000,12.500000,70.000000,4.000000,48.000000,87.390000,130.540000,860.430000,3.610000,189.290000,19.140000 +13,2023-08-08 02:00:00,0.000000,10.000000,84.000000,1.000000,120.000000,86.780000,130.540000,860.430000,2.840000,189.290000,16.030000 +13,2023-08-08 03:00:00,0.000000,10.000000,84.000000,1.000000,120.000000,86.220000,130.540000,860.430000,2.630000,189.290000,15.100000 +13,2023-08-08 04:00:00,0.000000,10.000000,84.000000,1.000000,120.000000,85.720000,130.540000,860.430000,2.450000,189.290000,14.300000 +13,2023-08-08 05:00:00,0.000000,8.900000,91.000000,4.000000,193.000000,84.920000,130.560000,860.470000,2.550000,189.310000,14.760000 +13,2023-08-08 06:00:00,0.000000,8.900000,91.000000,4.000000,193.000000,84.210000,130.570000,860.500000,2.310000,189.320000,13.690000 +13,2023-08-08 07:00:00,0.000000,8.900000,91.000000,4.000000,193.000000,83.570000,130.580000,860.530000,2.130000,189.340000,12.810000 +13,2023-08-08 08:00:00,0.000000,14.600000,63.000000,5.000000,169.000000,83.630000,130.660000,860.720000,2.250000,189.430000,13.410000 +13,2023-08-08 09:00:00,0.000000,14.600000,63.000000,5.000000,169.000000,83.680000,130.740000,860.910000,2.270000,189.530000,13.490000 +13,2023-08-08 10:00:00,0.000000,14.600000,63.000000,5.000000,169.000000,83.730000,130.820000,861.100000,2.280000,189.620000,13.560000 +13,2023-08-08 11:00:00,0.000000,21.800000,38.000000,9.000000,144.000000,84.610000,131.030000,861.590000,3.140000,189.880000,17.300000 +13,2023-08-08 12:00:00,0.000000,21.800000,38.000000,9.000000,144.000000,85.370000,131.250000,862.090000,3.490000,190.130000,18.690000 +13,2023-08-08 13:00:00,0.000000,21.800000,38.000000,9.000000,144.000000,86.020000,131.460000,862.590000,3.820000,190.380000,19.970000 +13,2023-08-08 14:00:00,0.000000,24.100000,33.000000,10.000000,111.000000,86.870000,131.720000,863.210000,4.530000,190.690000,22.570000 +13,2023-08-08 15:00:00,0.000000,24.100000,33.000000,10.000000,111.000000,87.580000,131.980000,863.830000,5.010000,191.000000,24.260000 +13,2023-08-08 16:00:00,0.000000,24.100000,33.000000,10.000000,111.000000,88.180000,132.240000,864.450000,5.460000,191.320000,25.760000 +13,2023-08-08 17:00:00,0.000000,24.700000,34.000000,13.000000,93.000000,88.700000,132.510000,865.080000,6.840000,191.630000,30.050000 +13,2023-08-08 18:00:00,0.000000,24.700000,34.000000,13.000000,93.000000,89.120000,132.780000,865.710000,7.270000,191.950000,31.320000 +13,2023-08-08 19:00:00,0.000000,24.700000,34.000000,13.000000,93.000000,89.470000,133.040000,866.340000,7.640000,192.270000,32.400000 +13,2023-08-08 20:00:00,0.000000,22.400000,39.000000,12.000000,77.000000,89.510000,133.260000,866.850000,7.310000,192.530000,31.450000 +13,2023-08-08 21:00:00,0.000000,22.400000,39.000000,12.000000,77.000000,89.540000,133.470000,867.360000,7.350000,192.780000,31.560000 +13,2023-08-08 22:00:00,0.000000,22.400000,39.000000,12.000000,77.000000,89.570000,133.470000,867.360000,7.380000,192.780000,31.650000 +13,2023-08-08 23:00:00,0.000000,17.000000,56.000000,7.000000,93.000000,89.310000,133.470000,867.360000,5.520000,192.780000,25.990000 +13,2023-08-09 00:00:00,0.000000,17.000000,56.000000,7.000000,93.000000,89.080000,133.470000,867.360000,5.340000,192.780000,25.400000 +13,2023-08-09 01:00:00,0.000000,17.000000,56.000000,7.000000,93.000000,88.880000,133.470000,867.360000,5.190000,192.780000,24.890000 +13,2023-08-09 02:00:00,0.000000,14.100000,64.000000,8.000000,165.000000,88.490000,133.470000,867.360000,5.160000,192.780000,24.800000 +13,2023-08-09 03:00:00,0.000000,14.100000,64.000000,8.000000,165.000000,88.150000,133.470000,867.360000,4.910000,192.780000,23.950000 +13,2023-08-09 04:00:00,0.000000,14.100000,64.000000,8.000000,165.000000,87.840000,133.470000,867.360000,4.710000,192.780000,23.230000 +13,2023-08-09 05:00:00,0.000000,11.900000,71.000000,6.000000,156.000000,87.420000,133.520000,867.460000,4.000000,192.840000,20.710000 +13,2023-08-09 06:00:00,0.000000,11.900000,71.000000,6.000000,156.000000,87.050000,133.570000,867.560000,3.800000,192.890000,19.930000 +13,2023-08-09 07:00:00,0.000000,11.900000,71.000000,6.000000,156.000000,86.710000,133.610000,867.670000,3.620000,192.940000,19.250000 +13,2023-08-09 08:00:00,0.000000,17.100000,53.000000,8.000000,149.000000,86.710000,133.710000,867.900000,4.000000,193.070000,20.710000 +13,2023-08-09 09:00:00,0.000000,17.100000,53.000000,8.000000,149.000000,86.710000,133.820000,868.130000,4.000000,193.190000,20.710000 +13,2023-08-09 10:00:00,0.000000,17.100000,53.000000,8.000000,149.000000,86.710000,133.920000,868.360000,4.000000,193.310000,20.720000 +13,2023-08-09 11:00:00,0.000000,23.500000,36.000000,12.000000,146.000000,87.340000,134.130000,868.820000,5.350000,193.560000,25.440000 +13,2023-08-09 12:00:00,0.000000,23.500000,36.000000,12.000000,146.000000,87.860000,134.340000,869.290000,5.770000,193.800000,26.800000 +13,2023-08-09 13:00:00,0.000000,23.500000,36.000000,12.000000,146.000000,88.300000,134.550000,869.750000,6.140000,194.050000,27.980000 +13,2023-08-09 14:00:00,0.000000,25.900000,27.000000,14.000000,152.000000,89.150000,134.820000,870.370000,7.670000,194.370000,32.530000 +13,2023-08-09 15:00:00,0.000000,25.900000,27.000000,14.000000,152.000000,89.840000,135.100000,870.980000,8.470000,194.700000,34.750000 +13,2023-08-09 16:00:00,0.000000,25.900000,27.000000,14.000000,152.000000,90.390000,135.370000,871.590000,9.180000,195.020000,36.640000 +13,2023-08-09 17:00:00,0.000000,26.100000,24.000000,14.000000,155.000000,90.990000,135.660000,872.240000,9.990000,195.360000,38.730000 +13,2023-08-09 18:00:00,0.000000,26.100000,24.000000,14.000000,155.000000,91.470000,135.950000,872.880000,10.690000,195.710000,40.490000 +13,2023-08-09 19:00:00,0.000000,26.100000,24.000000,14.000000,155.000000,91.850000,136.240000,873.530000,11.290000,196.050000,41.940000 +13,2023-08-09 20:00:00,0.000000,23.600000,27.000000,9.000000,157.000000,91.930000,136.480000,874.060000,8.880000,196.330000,35.880000 +13,2023-08-09 21:00:00,0.000000,23.600000,27.000000,9.000000,157.000000,92.000000,136.720000,874.600000,8.960000,196.610000,36.120000 +13,2023-08-09 22:00:00,0.000000,23.600000,27.000000,9.000000,157.000000,92.060000,136.720000,874.600000,9.040000,196.610000,36.310000 +13,2023-08-09 23:00:00,0.000000,18.900000,36.000000,9.000000,149.000000,91.960000,136.720000,874.600000,8.920000,196.610000,35.990000 +13,2023-08-10 00:00:00,0.000000,18.900000,36.000000,9.000000,149.000000,91.880000,136.720000,874.600000,8.810000,196.610000,35.720000 +13,2023-08-10 01:00:00,0.000000,18.900000,36.000000,9.000000,149.000000,91.800000,136.720000,874.600000,8.720000,196.610000,35.470000 +13,2023-08-10 02:00:00,0.000000,17.900000,40.000000,9.000000,133.000000,91.640000,136.720000,874.600000,8.520000,196.610000,34.920000 +13,2023-08-10 03:00:00,0.000000,17.900000,40.000000,9.000000,133.000000,91.490000,136.720000,874.600000,8.340000,196.610000,34.440000 +13,2023-08-10 04:00:00,0.000000,17.900000,40.000000,9.000000,133.000000,91.360000,136.720000,874.600000,8.180000,196.610000,34.010000 +13,2023-08-10 05:00:00,0.000000,17.700000,43.000000,9.000000,131.000000,91.170000,136.860000,874.880000,7.970000,196.770000,33.420000 +13,2023-08-10 06:00:00,0.000000,17.700000,43.000000,9.000000,131.000000,91.010000,136.990000,875.160000,7.790000,196.920000,32.910000 +13,2023-08-10 07:00:00,0.000000,17.700000,43.000000,9.000000,131.000000,90.860000,137.130000,875.440000,7.630000,197.080000,32.460000 +13,2023-08-10 08:00:00,0.000000,20.000000,38.000000,11.000000,136.000000,90.860000,137.300000,875.800000,8.430000,197.280000,34.710000 +13,2023-08-10 09:00:00,0.000000,20.000000,38.000000,11.000000,136.000000,90.860000,137.470000,876.150000,8.430000,197.470000,34.720000 +13,2023-08-10 10:00:00,0.000000,20.000000,38.000000,11.000000,136.000000,90.860000,137.630000,876.510000,8.430000,197.670000,34.720000 +13,2023-08-10 11:00:00,0.000000,23.300000,32.000000,13.000000,139.000000,90.930000,137.860000,876.980000,9.420000,197.930000,37.340000 +13,2023-08-10 12:00:00,0.000000,23.300000,32.000000,13.000000,139.000000,90.980000,138.090000,877.460000,9.490000,198.200000,37.530000 +13,2023-08-10 13:00:00,0.000000,23.300000,32.000000,13.000000,139.000000,91.030000,138.310000,877.930000,9.550000,198.460000,37.700000 +13,2023-08-10 14:00:00,0.000000,25.300000,29.000000,15.000000,146.000000,91.250000,138.580000,878.490000,10.910000,198.770000,41.090000 +13,2023-08-10 15:00:00,0.000000,25.300000,29.000000,15.000000,146.000000,91.430000,138.850000,879.050000,11.190000,199.080000,41.790000 +13,2023-08-10 16:00:00,0.000000,25.300000,29.000000,15.000000,146.000000,91.580000,139.110000,879.610000,11.430000,199.390000,42.360000 +13,2023-08-10 17:00:00,0.000000,25.100000,30.000000,15.000000,148.000000,91.650000,139.370000,880.160000,11.550000,199.690000,42.650000 +13,2023-08-10 18:00:00,0.000000,25.100000,30.000000,15.000000,148.000000,91.710000,139.630000,880.700000,11.640000,199.990000,42.880000 +13,2023-08-10 19:00:00,0.000000,25.100000,30.000000,15.000000,148.000000,91.760000,139.890000,881.250000,11.720000,200.290000,43.070000 +13,2023-08-10 20:00:00,0.000000,25.100000,30.000000,15.000000,148.000000,91.790000,140.150000,881.790000,11.780000,200.600000,43.220000 +13,2023-08-10 21:00:00,0.000000,25.100000,30.000000,15.000000,148.000000,91.820000,140.150000,881.790000,11.830000,200.600000,43.340000 +13,2023-08-10 22:00:00,0.000000,25.100000,30.000000,15.000000,148.000000,91.850000,140.150000,881.790000,11.870000,200.600000,43.440000 +13,2023-08-10 23:00:00,0.000000,22.000000,42.000000,9.000000,161.000000,91.690000,140.150000,881.790000,8.580000,200.600000,35.180000 +13,2023-08-11 00:00:00,0.000000,22.000000,42.000000,9.000000,161.000000,91.550000,140.150000,881.790000,8.410000,200.600000,34.730000 +13,2023-08-11 01:00:00,0.000000,22.000000,42.000000,9.000000,161.000000,91.430000,140.150000,881.790000,8.270000,200.600000,34.340000 +13,2023-08-11 02:00:00,0.000000,22.000000,42.000000,9.000000,161.000000,91.330000,140.150000,881.790000,8.150000,200.600000,34.010000 +13,2023-08-11 03:00:00,0.000000,22.000000,42.000000,9.000000,161.000000,91.240000,140.150000,881.790000,8.050000,200.600000,33.720000 +13,2023-08-11 04:00:00,0.000000,22.000000,42.000000,9.000000,161.000000,91.160000,140.150000,881.790000,7.960000,200.600000,33.470000 +13,2023-08-11 05:00:00,0.000000,19.300000,51.000000,7.000000,139.000000,90.840000,140.320000,882.190000,6.880000,200.790000,30.360000 +13,2023-08-11 06:00:00,0.000000,19.300000,51.000000,7.000000,139.000000,90.570000,140.490000,882.590000,6.610000,200.990000,29.560000 +13,2023-08-11 07:00:00,0.000000,19.300000,51.000000,7.000000,139.000000,90.320000,140.660000,882.980000,6.390000,201.190000,28.880000 +13,2023-08-11 08:00:00,0.000000,19.300000,51.000000,7.000000,139.000000,90.110000,140.820000,883.380000,6.190000,201.390000,28.290000 +13,2023-08-11 09:00:00,0.000000,19.300000,51.000000,7.000000,139.000000,89.930000,140.990000,883.780000,6.030000,201.590000,27.780000 +13,2023-08-11 10:00:00,0.000000,19.300000,51.000000,7.000000,139.000000,89.760000,141.160000,884.170000,5.890000,201.780000,27.350000 +13,2023-08-11 11:00:00,0.000000,25.300000,41.000000,8.000000,144.000000,89.780000,141.450000,884.860000,6.210000,202.130000,28.350000 +13,2023-08-11 12:00:00,0.000000,25.300000,41.000000,8.000000,144.000000,89.790000,141.750000,885.550000,6.220000,202.470000,28.380000 +13,2023-08-11 13:00:00,0.000000,25.300000,41.000000,8.000000,144.000000,89.790000,142.040000,886.230000,6.230000,202.810000,28.410000 +13,2023-08-11 14:00:00,0.000000,25.300000,41.000000,8.000000,144.000000,89.800000,142.330000,886.920000,6.230000,203.160000,28.440000 +13,2023-08-11 15:00:00,0.000000,25.300000,41.000000,8.000000,144.000000,89.810000,142.620000,887.610000,6.240000,203.500000,28.460000 +13,2023-08-11 16:00:00,0.000000,25.300000,41.000000,8.000000,144.000000,89.810000,142.920000,888.300000,6.240000,203.840000,28.480000 +13,2023-08-11 17:00:00,2.970000,23.000000,74.000000,5.000000,151.000000,48.930000,94.540000,867.780000,0.180000,148.610000,0.640000 +13,2023-08-11 18:00:00,0.000000,23.000000,74.000000,5.000000,151.000000,51.380000,94.660000,868.050000,0.250000,148.760000,0.870000 +13,2023-08-11 19:00:00,0.000000,23.000000,74.000000,5.000000,151.000000,53.710000,94.770000,868.310000,0.320000,148.910000,1.450000 +13,2023-08-11 20:00:00,0.000000,23.000000,74.000000,5.000000,151.000000,55.920000,94.880000,868.570000,0.390000,149.060000,2.100000 +13,2023-08-11 21:00:00,0.000000,23.000000,74.000000,5.000000,151.000000,57.990000,94.880000,868.570000,0.460000,149.060000,2.660000 +13,2023-08-11 22:00:00,0.000000,23.000000,74.000000,5.000000,151.000000,59.950000,94.880000,868.570000,0.520000,149.060000,3.160000 +13,2023-08-11 23:00:00,0.000000,18.000000,91.000000,2.000000,190.000000,60.390000,94.880000,868.570000,0.460000,149.060000,2.700000 +13,2023-08-12 00:00:00,0.000000,18.000000,91.000000,2.000000,190.000000,60.830000,94.880000,868.570000,0.480000,149.060000,2.790000 +13,2023-08-12 01:00:00,0.000000,18.000000,91.000000,2.000000,190.000000,61.260000,94.880000,868.570000,0.490000,149.060000,2.880000 +13,2023-08-12 02:00:00,0.000000,18.000000,91.000000,2.000000,190.000000,61.680000,94.880000,868.570000,0.500000,149.060000,2.970000 +13,2023-08-12 03:00:00,0.000000,18.000000,91.000000,2.000000,190.000000,62.090000,94.880000,868.570000,0.510000,149.060000,3.050000 +13,2023-08-12 04:00:00,0.000000,18.000000,91.000000,2.000000,190.000000,62.490000,94.880000,868.570000,0.520000,149.060000,3.130000 +13,2023-08-12 05:00:00,0.000000,14.800000,98.000000,4.000000,230.000000,62.570000,94.890000,868.590000,0.580000,149.060000,3.550000 +13,2023-08-12 06:00:00,0.000000,14.800000,98.000000,4.000000,230.000000,62.640000,94.890000,868.600000,0.580000,149.070000,3.560000 +13,2023-08-12 07:00:00,0.000000,14.800000,98.000000,4.000000,230.000000,62.720000,94.900000,868.610000,0.580000,149.070000,3.580000 +13,2023-08-12 08:00:00,0.000000,14.800000,98.000000,4.000000,230.000000,62.790000,94.900000,868.620000,0.580000,149.080000,3.590000 +13,2023-08-12 09:00:00,0.000000,14.800000,98.000000,4.000000,230.000000,62.870000,94.900000,868.640000,0.590000,149.090000,3.610000 +13,2023-08-12 10:00:00,0.000000,14.800000,98.000000,4.000000,230.000000,62.940000,94.910000,868.650000,0.590000,149.090000,3.620000 +13,2023-08-12 11:00:00,0.000000,25.700000,47.000000,6.000000,180.000000,66.230000,95.160000,869.310000,0.750000,149.430000,4.700000 +13,2023-08-12 12:00:00,0.000000,25.700000,47.000000,6.000000,180.000000,69.160000,95.420000,869.970000,0.820000,149.770000,5.200000 +13,2023-08-12 13:00:00,0.000000,25.700000,47.000000,6.000000,180.000000,71.760000,95.670000,870.620000,0.900000,150.100000,5.670000 +13,2023-08-12 14:00:00,0.000000,25.700000,47.000000,6.000000,180.000000,74.060000,95.920000,871.280000,0.990000,150.440000,6.210000 +13,2023-08-12 15:00:00,0.000000,25.700000,47.000000,6.000000,180.000000,76.080000,96.170000,871.940000,1.100000,150.770000,6.910000 +13,2023-08-12 16:00:00,0.000000,25.700000,47.000000,6.000000,180.000000,77.850000,96.430000,872.600000,1.260000,151.110000,7.780000 +13,2023-08-12 17:00:00,0.000000,26.800000,32.000000,12.000000,175.000000,80.340000,96.770000,873.500000,2.160000,151.570000,12.250000 +13,2023-08-12 18:00:00,0.000000,26.800000,32.000000,12.000000,175.000000,82.410000,97.120000,874.400000,2.740000,152.030000,14.800000 +13,2023-08-12 19:00:00,0.000000,26.800000,32.000000,12.000000,175.000000,84.130000,97.470000,875.300000,3.430000,152.480000,17.530000 +13,2023-08-12 20:00:00,0.000000,26.800000,32.000000,12.000000,175.000000,85.560000,97.810000,876.200000,4.160000,152.940000,20.230000 +13,2023-08-12 21:00:00,0.000000,26.800000,32.000000,12.000000,175.000000,86.720000,97.810000,876.200000,4.910000,152.940000,22.760000 +13,2023-08-12 22:00:00,0.000000,26.800000,32.000000,12.000000,175.000000,87.680000,97.810000,876.200000,5.620000,152.940000,25.050000 +13,2023-08-12 23:00:00,0.000000,21.200000,45.000000,10.000000,174.000000,87.790000,97.810000,876.200000,5.160000,152.940000,23.590000 +13,2023-08-13 00:00:00,0.000000,21.200000,45.000000,10.000000,174.000000,87.880000,97.810000,876.200000,5.230000,152.940000,23.810000 +13,2023-08-13 01:00:00,0.000000,21.200000,45.000000,10.000000,174.000000,87.960000,97.810000,876.200000,5.290000,152.940000,24.000000 +13,2023-08-13 02:00:00,0.000000,21.200000,45.000000,10.000000,174.000000,88.020000,97.810000,876.200000,5.340000,152.940000,24.160000 +13,2023-08-13 03:00:00,0.000000,21.200000,45.000000,10.000000,174.000000,88.080000,97.810000,876.200000,5.380000,152.940000,24.300000 +13,2023-08-13 04:00:00,0.000000,21.200000,45.000000,10.000000,174.000000,88.130000,97.810000,876.200000,5.420000,152.940000,24.420000 +13,2023-08-13 05:00:00,0.000000,19.100000,50.000000,16.000000,250.000000,88.130000,97.950000,876.490000,7.340000,153.130000,30.070000 +13,2023-08-13 06:00:00,0.000000,19.100000,50.000000,16.000000,250.000000,88.130000,98.100000,876.770000,7.340000,153.310000,30.080000 +13,2023-08-13 07:00:00,0.000000,19.100000,50.000000,16.000000,250.000000,88.130000,98.240000,877.060000,7.340000,153.490000,30.090000 +13,2023-08-13 08:00:00,0.000000,19.100000,50.000000,16.000000,250.000000,88.130000,98.380000,877.340000,7.340000,153.680000,30.100000 +13,2023-08-13 09:00:00,0.000000,19.100000,50.000000,16.000000,250.000000,88.130000,98.520000,877.630000,7.340000,153.860000,30.110000 +13,2023-08-13 10:00:00,0.000000,19.100000,50.000000,16.000000,250.000000,88.130000,98.660000,877.910000,7.340000,154.040000,30.120000 +13,2023-08-13 11:00:00,0.000000,22.400000,28.000000,21.000000,244.000000,88.830000,98.910000,878.420000,10.440000,154.370000,38.070000 +13,2023-08-13 12:00:00,0.000000,22.400000,28.000000,21.000000,244.000000,89.400000,99.160000,878.920000,11.330000,154.690000,40.190000 +13,2023-08-13 13:00:00,0.000000,22.400000,28.000000,21.000000,244.000000,89.870000,99.410000,879.420000,12.120000,155.010000,41.990000 +13,2023-08-13 14:00:00,0.000000,22.400000,28.000000,21.000000,244.000000,90.250000,99.660000,879.930000,12.800000,155.340000,43.510000 +13,2023-08-13 15:00:00,0.000000,22.400000,28.000000,21.000000,244.000000,90.570000,99.910000,880.430000,13.380000,155.660000,44.780000 +13,2023-08-13 16:00:00,0.000000,22.400000,28.000000,21.000000,244.000000,90.820000,100.160000,880.930000,13.880000,155.980000,45.850000 +13,2023-08-13 17:00:00,0.000000,24.000000,25.000000,18.000000,259.000000,91.210000,100.450000,881.510000,12.610000,156.350000,43.160000 +13,2023-08-13 18:00:00,0.000000,24.000000,25.000000,18.000000,259.000000,91.520000,100.730000,882.090000,13.190000,156.720000,44.440000 +13,2023-08-13 19:00:00,0.000000,24.000000,25.000000,18.000000,259.000000,91.780000,101.020000,882.660000,13.670000,157.090000,45.490000 +13,2023-08-13 20:00:00,0.000000,24.000000,25.000000,18.000000,259.000000,91.980000,101.310000,883.240000,14.080000,157.460000,46.370000 +13,2023-08-13 21:00:00,0.000000,24.000000,25.000000,18.000000,259.000000,92.150000,101.310000,883.240000,14.410000,157.460000,47.060000 +13,2023-08-13 22:00:00,0.000000,24.000000,25.000000,18.000000,259.000000,92.280000,101.310000,883.240000,14.680000,157.460000,47.620000 +13,2023-08-13 23:00:00,0.000000,18.800000,41.000000,7.000000,262.000000,92.060000,101.310000,883.240000,8.180000,157.460000,32.580000 +13,2023-08-14 00:00:00,0.000000,18.800000,41.000000,7.000000,262.000000,91.860000,101.310000,883.240000,7.950000,157.460000,31.980000 +13,2023-08-14 01:00:00,0.000000,18.800000,41.000000,7.000000,262.000000,91.690000,101.310000,883.240000,7.760000,157.460000,31.450000 +13,2023-08-14 02:00:00,0.000000,18.800000,41.000000,7.000000,262.000000,91.530000,101.310000,883.240000,7.590000,157.460000,30.990000 +13,2023-08-14 03:00:00,0.000000,18.800000,41.000000,7.000000,262.000000,91.390000,101.310000,883.240000,7.440000,157.460000,30.580000 +13,2023-08-14 04:00:00,0.000000,18.800000,41.000000,7.000000,262.000000,91.270000,101.310000,883.240000,7.310000,157.460000,30.220000 +13,2023-08-14 05:00:00,0.000000,16.800000,53.000000,11.000000,203.000000,90.840000,101.430000,883.460000,8.410000,157.610000,33.200000 +13,2023-08-14 06:00:00,0.000000,16.800000,53.000000,11.000000,203.000000,90.460000,101.540000,883.690000,7.970000,157.770000,32.030000 +13,2023-08-14 07:00:00,0.000000,16.800000,53.000000,11.000000,203.000000,90.130000,101.660000,883.910000,7.600000,157.920000,31.050000 +13,2023-08-14 08:00:00,0.000000,16.800000,53.000000,11.000000,203.000000,89.850000,101.780000,884.140000,7.300000,158.070000,30.210000 +13,2023-08-14 09:00:00,0.000000,16.800000,53.000000,11.000000,203.000000,89.600000,101.900000,884.360000,7.040000,158.230000,29.490000 +13,2023-08-14 10:00:00,0.000000,16.800000,53.000000,11.000000,203.000000,89.380000,102.020000,884.590000,6.820000,158.380000,28.870000 +13,2023-08-14 11:00:00,0.000000,27.100000,28.000000,31.000000,272.000000,90.160000,102.370000,885.230000,20.900000,158.820000,59.420000 +13,2023-08-14 12:00:00,0.000000,27.100000,28.000000,31.000000,272.000000,90.760000,102.710000,885.880000,22.780000,159.260000,62.660000 +13,2023-08-14 13:00:00,0.000000,27.100000,28.000000,31.000000,272.000000,91.220000,103.050000,886.520000,24.330000,159.690000,65.240000 +13,2023-08-14 14:00:00,0.000000,27.100000,28.000000,31.000000,272.000000,91.580000,103.390000,887.170000,25.580000,160.130000,67.280000 +13,2023-08-14 15:00:00,0.000000,27.100000,28.000000,31.000000,272.000000,91.840000,103.740000,887.810000,26.580000,160.570000,68.890000 +13,2023-08-14 16:00:00,0.000000,27.100000,28.000000,31.000000,272.000000,92.050000,104.080000,888.460000,27.360000,161.010000,70.140000 +13,2023-08-14 17:00:00,0.000000,26.300000,22.000000,28.000000,290.000000,92.470000,104.430000,889.120000,24.970000,161.460000,66.430000 +13,2023-08-14 18:00:00,0.000000,26.300000,22.000000,28.000000,290.000000,92.800000,104.790000,889.790000,26.140000,161.910000,68.340000 +13,2023-08-14 19:00:00,0.000000,26.300000,22.000000,28.000000,290.000000,93.050000,105.140000,890.460000,27.080000,162.360000,69.840000 +13,2023-08-14 20:00:00,0.000000,26.300000,22.000000,28.000000,290.000000,93.250000,105.500000,891.120000,27.830000,162.810000,71.020000 +13,2023-08-14 21:00:00,0.000000,26.300000,22.000000,28.000000,290.000000,93.390000,105.500000,891.120000,28.410000,162.810000,71.910000 +13,2023-08-14 22:00:00,0.000000,26.300000,22.000000,28.000000,290.000000,93.510000,105.500000,891.120000,28.870000,162.810000,72.600000 +13,2023-08-14 23:00:00,0.000000,21.800000,28.000000,16.000000,292.000000,93.480000,105.500000,891.120000,15.700000,162.810000,50.040000 +13,2023-08-15 00:00:00,0.000000,21.800000,28.000000,16.000000,292.000000,93.450000,105.500000,891.120000,15.640000,162.810000,49.920000 +13,2023-08-15 01:00:00,0.000000,21.800000,28.000000,16.000000,292.000000,93.420000,105.500000,891.120000,15.580000,162.810000,49.800000 +13,2023-08-15 02:00:00,0.000000,21.800000,28.000000,16.000000,292.000000,93.400000,105.500000,891.120000,15.530000,162.810000,49.710000 +13,2023-08-15 03:00:00,0.000000,21.800000,28.000000,16.000000,292.000000,93.380000,105.500000,891.120000,15.490000,162.810000,49.620000 +13,2023-08-15 04:00:00,0.000000,21.800000,28.000000,16.000000,292.000000,93.360000,105.500000,891.120000,15.450000,162.810000,49.550000 +13,2023-08-15 05:00:00,0.000000,17.600000,38.000000,9.000000,278.000000,93.070000,105.640000,891.390000,10.420000,163.000000,38.530000 +13,2023-08-15 06:00:00,0.000000,17.600000,38.000000,9.000000,278.000000,92.800000,105.790000,891.670000,10.040000,163.180000,37.620000 +13,2023-08-15 07:00:00,0.000000,17.600000,38.000000,9.000000,278.000000,92.570000,105.940000,891.940000,9.710000,163.370000,36.830000 +13,2023-08-15 08:00:00,0.000000,17.600000,38.000000,9.000000,278.000000,92.360000,106.090000,892.210000,9.430000,163.550000,36.130000 +13,2023-08-15 09:00:00,0.000000,17.600000,38.000000,9.000000,278.000000,92.170000,106.230000,892.480000,9.180000,163.740000,35.520000 +13,2023-08-15 10:00:00,0.000000,17.600000,38.000000,9.000000,278.000000,92.000000,106.380000,892.760000,8.970000,163.930000,34.980000 +13,2023-08-15 11:00:00,0.000000,25.100000,25.000000,6.000000,278.000000,92.170000,106.660000,893.280000,7.900000,164.280000,32.160000 +13,2023-08-15 12:00:00,0.000000,25.100000,25.000000,6.000000,278.000000,92.320000,106.940000,893.800000,8.060000,164.640000,32.610000 +13,2023-08-15 13:00:00,0.000000,25.100000,25.000000,6.000000,278.000000,92.430000,107.220000,894.320000,8.190000,164.990000,32.990000 +13,2023-08-15 14:00:00,0.000000,25.100000,25.000000,6.000000,278.000000,92.530000,107.510000,894.850000,8.310000,165.350000,33.310000 +13,2023-08-15 15:00:00,0.000000,25.100000,25.000000,6.000000,278.000000,92.610000,107.790000,895.370000,8.400000,165.700000,33.580000 +13,2023-08-15 16:00:00,0.000000,25.100000,25.000000,6.000000,278.000000,92.680000,108.070000,895.890000,8.490000,166.060000,33.820000 +13,2023-08-15 17:00:00,0.000000,29.600000,24.000000,6.000000,322.000000,92.940000,108.440000,896.580000,8.800000,166.530000,34.650000 +13,2023-08-15 18:00:00,0.000000,29.600000,24.000000,6.000000,322.000000,93.140000,108.810000,897.270000,9.050000,166.990000,35.340000 +13,2023-08-15 19:00:00,0.000000,29.600000,24.000000,6.000000,322.000000,93.310000,109.180000,897.960000,9.270000,167.460000,35.900000 +13,2023-08-15 20:00:00,0.000000,29.600000,24.000000,6.000000,322.000000,93.440000,109.550000,898.640000,9.440000,167.930000,36.370000 +13,2023-08-15 21:00:00,0.000000,29.600000,24.000000,6.000000,322.000000,93.550000,109.550000,898.640000,9.580000,167.930000,36.730000 +13,2023-08-15 22:00:00,0.000000,29.600000,24.000000,6.000000,322.000000,93.640000,109.550000,898.640000,9.700000,167.930000,37.020000 +13,2023-08-15 23:00:00,0.000000,21.700000,41.000000,8.000000,191.000000,93.280000,109.550000,898.640000,10.200000,167.930000,38.260000 +13,2023-08-16 00:00:00,0.000000,21.700000,41.000000,8.000000,191.000000,92.960000,109.550000,898.640000,9.760000,167.930000,37.180000 +13,2023-08-16 01:00:00,0.000000,21.700000,41.000000,8.000000,191.000000,92.690000,109.550000,898.640000,9.390000,167.930000,36.250000 +13,2023-08-16 02:00:00,0.000000,21.700000,41.000000,8.000000,191.000000,92.450000,109.550000,898.640000,9.080000,167.930000,35.450000 +13,2023-08-16 03:00:00,0.000000,21.700000,41.000000,8.000000,191.000000,92.240000,109.550000,898.640000,8.820000,167.930000,34.770000 +13,2023-08-16 04:00:00,0.000000,21.700000,41.000000,8.000000,191.000000,92.050000,109.550000,898.640000,8.590000,167.930000,34.170000 +13,2023-08-16 05:00:00,0.000000,22.300000,43.000000,11.000000,224.000000,91.840000,109.730000,898.970000,9.690000,168.150000,37.010000 +13,2023-08-16 06:00:00,0.000000,22.300000,43.000000,11.000000,224.000000,91.650000,109.900000,899.300000,9.440000,168.370000,36.390000 +13,2023-08-16 07:00:00,0.000000,22.300000,43.000000,11.000000,224.000000,91.490000,110.080000,899.630000,9.230000,168.590000,35.860000 +13,2023-08-16 08:00:00,0.000000,22.300000,43.000000,11.000000,224.000000,91.360000,110.260000,899.960000,9.050000,168.810000,35.420000 +13,2023-08-16 09:00:00,0.000000,22.300000,43.000000,11.000000,224.000000,91.240000,110.430000,900.290000,8.900000,169.030000,35.030000 +13,2023-08-16 10:00:00,0.000000,22.300000,43.000000,11.000000,224.000000,91.140000,110.610000,900.620000,8.770000,169.250000,34.710000 +13,2023-08-16 11:00:00,0.000000,29.500000,30.000000,12.000000,328.000000,91.470000,110.940000,901.240000,9.670000,169.660000,37.020000 +13,2023-08-16 12:00:00,0.000000,29.500000,30.000000,12.000000,328.000000,91.730000,111.270000,901.860000,10.030000,170.070000,37.940000 +13,2023-08-16 13:00:00,0.000000,29.500000,30.000000,12.000000,328.000000,91.930000,111.600000,902.480000,10.330000,170.490000,38.690000 +13,2023-08-16 14:00:00,0.000000,29.500000,30.000000,12.000000,328.000000,92.090000,111.930000,903.100000,10.570000,170.900000,39.290000 +13,2023-08-16 15:00:00,0.000000,29.500000,30.000000,12.000000,328.000000,92.220000,112.260000,903.720000,10.760000,171.310000,39.770000 +13,2023-08-16 16:00:00,0.000000,29.500000,30.000000,12.000000,328.000000,92.320000,112.580000,904.340000,10.920000,171.720000,40.160000 +13,2023-08-16 17:00:00,0.000000,29.700000,27.000000,16.000000,355.000000,92.560000,112.930000,905.000000,13.810000,172.160000,46.690000 +13,2023-08-16 18:00:00,0.000000,29.700000,27.000000,16.000000,355.000000,92.740000,113.280000,905.650000,14.160000,172.590000,47.470000 +13,2023-08-16 19:00:00,0.000000,29.700000,27.000000,16.000000,355.000000,92.880000,113.630000,906.300000,14.450000,173.020000,48.090000 +13,2023-08-16 20:00:00,0.000000,29.700000,27.000000,16.000000,355.000000,92.990000,113.980000,906.960000,14.670000,173.460000,48.580000 +13,2023-08-16 21:00:00,0.000000,29.700000,27.000000,16.000000,355.000000,93.080000,113.980000,906.960000,14.840000,173.460000,48.940000 +13,2023-08-16 22:00:00,0.000000,29.700000,27.000000,16.000000,355.000000,93.140000,113.980000,906.960000,14.980000,173.460000,49.220000 +13,2023-08-16 23:00:00,0.000000,21.500000,41.000000,7.000000,53.000000,92.850000,113.980000,906.960000,9.140000,173.460000,35.830000 +13,2023-08-17 00:00:00,0.000000,21.500000,41.000000,7.000000,53.000000,92.590000,113.980000,906.960000,8.810000,173.460000,34.990000 +13,2023-08-17 01:00:00,0.000000,21.500000,41.000000,7.000000,53.000000,92.370000,113.980000,906.960000,8.540000,173.460000,34.270000 +13,2023-08-17 02:00:00,0.000000,21.500000,41.000000,7.000000,53.000000,92.170000,113.980000,906.960000,8.300000,173.460000,33.640000 +13,2023-08-17 03:00:00,0.000000,21.500000,41.000000,7.000000,53.000000,92.000000,113.980000,906.960000,8.100000,173.460000,33.090000 +13,2023-08-17 04:00:00,0.000000,21.500000,41.000000,7.000000,53.000000,91.840000,113.980000,906.960000,7.930000,173.460000,32.620000 +13,2023-08-17 05:00:00,0.000000,17.400000,55.000000,7.000000,86.000000,91.330000,113.980000,906.960000,7.370000,173.460000,31.070000 +13,2023-08-17 06:00:00,0.000000,17.400000,55.000000,7.000000,86.000000,90.880000,114.090000,907.180000,6.920000,173.590000,29.760000 +13,2023-08-17 07:00:00,0.000000,17.400000,55.000000,7.000000,86.000000,90.490000,114.200000,907.410000,6.540000,173.730000,28.650000 +13,2023-08-17 08:00:00,0.000000,17.400000,55.000000,7.000000,86.000000,90.140000,114.300000,907.630000,6.220000,173.870000,27.710000 +13,2023-08-17 09:00:00,0.000000,17.400000,55.000000,7.000000,86.000000,89.840000,114.410000,907.860000,5.960000,174.000000,26.900000 +13,2023-08-17 10:00:00,0.000000,17.400000,55.000000,7.000000,86.000000,89.570000,114.520000,908.080000,5.730000,174.140000,26.200000 +13,2023-08-17 11:00:00,0.000000,24.900000,32.000000,17.000000,109.000000,89.940000,114.790000,908.620000,10.010000,174.470000,38.080000 +13,2023-08-17 12:00:00,0.000000,24.900000,32.000000,17.000000,109.000000,90.240000,115.050000,909.150000,10.450000,174.800000,39.170000 +13,2023-08-17 13:00:00,0.000000,24.900000,32.000000,17.000000,109.000000,90.490000,115.310000,909.690000,10.820000,175.120000,40.080000 +13,2023-08-17 14:00:00,0.000000,24.900000,32.000000,17.000000,109.000000,90.680000,115.570000,910.230000,11.130000,175.450000,40.830000 +13,2023-08-17 15:00:00,0.000000,24.900000,32.000000,17.000000,109.000000,90.840000,115.830000,910.770000,11.380000,175.780000,41.440000 +13,2023-08-17 16:00:00,0.000000,24.900000,32.000000,17.000000,109.000000,90.970000,116.100000,911.300000,11.590000,176.100000,41.950000 +13,2023-08-17 17:00:00,0.000000,29.700000,25.000000,23.000000,112.000000,91.660000,116.480000,912.090000,17.290000,176.580000,54.000000 +13,2023-08-17 18:00:00,0.000000,29.700000,25.000000,23.000000,112.000000,92.180000,116.860000,912.870000,18.610000,177.060000,56.540000 +13,2023-08-17 19:00:00,0.000000,29.700000,25.000000,23.000000,112.000000,92.570000,117.240000,913.660000,19.670000,177.530000,58.530000 +13,2023-08-17 20:00:00,0.000000,29.700000,25.000000,23.000000,112.000000,92.870000,117.630000,914.440000,20.520000,178.010000,60.080000 +13,2023-08-17 21:00:00,0.000000,29.700000,25.000000,23.000000,112.000000,93.100000,117.630000,914.440000,21.180000,178.010000,61.260000 +13,2023-08-17 22:00:00,0.000000,29.700000,25.000000,23.000000,112.000000,93.270000,117.630000,914.440000,21.690000,178.010000,62.150000 +13,2023-08-17 23:00:00,0.000000,23.800000,33.000000,14.000000,117.000000,93.170000,117.630000,914.440000,13.610000,178.010000,46.550000 +13,2023-08-18 00:00:00,0.000000,23.800000,33.000000,14.000000,117.000000,93.100000,117.630000,914.440000,13.460000,178.010000,46.220000 +13,2023-08-18 01:00:00,0.000000,23.800000,33.000000,14.000000,117.000000,93.030000,117.630000,914.440000,13.330000,178.010000,45.950000 +13,2023-08-18 02:00:00,0.000000,23.800000,33.000000,14.000000,117.000000,92.970000,117.630000,914.440000,13.220000,178.010000,45.710000 +13,2023-08-18 03:00:00,0.000000,23.800000,33.000000,14.000000,117.000000,92.920000,117.630000,914.440000,13.130000,178.010000,45.500000 +13,2023-08-18 04:00:00,0.000000,23.800000,33.000000,14.000000,117.000000,92.880000,117.630000,914.440000,13.050000,178.010000,45.330000 +13,2023-08-18 05:00:00,0.000000,21.200000,35.000000,11.000000,120.000000,92.740000,117.630000,914.440000,11.010000,178.010000,40.650000 +13,2023-08-18 06:00:00,0.000000,21.200000,35.000000,11.000000,120.000000,92.620000,117.890000,914.940000,10.830000,178.340000,40.240000 +13,2023-08-18 07:00:00,0.000000,21.200000,35.000000,11.000000,120.000000,92.520000,118.160000,915.440000,10.670000,178.670000,39.870000 +13,2023-08-18 08:00:00,0.000000,21.200000,35.000000,11.000000,120.000000,92.430000,118.430000,915.940000,10.540000,178.990000,39.560000 +13,2023-08-18 09:00:00,0.000000,21.200000,35.000000,11.000000,120.000000,92.350000,118.690000,916.440000,10.420000,179.320000,39.280000 +13,2023-08-18 10:00:00,0.000000,21.200000,35.000000,11.000000,120.000000,92.280000,118.960000,916.940000,10.320000,179.650000,39.050000 +13,2023-08-18 11:00:00,0.000000,27.300000,28.000000,8.000000,152.000000,92.370000,119.380000,917.740000,8.980000,180.170000,35.670000 +13,2023-08-18 12:00:00,0.000000,27.300000,28.000000,8.000000,152.000000,92.440000,119.810000,918.540000,9.070000,180.700000,35.920000 +13,2023-08-18 13:00:00,0.000000,27.300000,28.000000,8.000000,152.000000,92.490000,120.240000,919.340000,9.140000,181.220000,36.130000 +13,2023-08-18 14:00:00,0.000000,27.300000,28.000000,8.000000,152.000000,92.540000,120.660000,920.140000,9.200000,181.740000,36.300000 +13,2023-08-18 15:00:00,0.000000,27.300000,28.000000,8.000000,152.000000,92.580000,121.090000,920.940000,9.250000,182.260000,36.450000 +13,2023-08-18 16:00:00,0.000000,27.300000,28.000000,8.000000,152.000000,92.610000,121.510000,921.730000,9.290000,182.780000,36.570000 +13,2023-08-18 17:00:00,0.000000,26.600000,41.000000,18.000000,270.000000,92.430000,121.850000,922.360000,15.000000,183.190000,49.720000 +14,2023-08-03 00:00:00,0.000000,15.600000,66.000000,5.000000,64.000000,85.940000,118.400000,826.100000,3.080000,174.330000,16.780000 +14,2023-08-03 01:00:00,0.000000,15.600000,66.000000,5.000000,64.000000,85.880000,118.400000,826.100000,3.060000,174.330000,16.680000 +14,2023-08-03 02:00:00,0.000000,12.800000,79.000000,3.000000,65.000000,85.510000,118.400000,826.100000,2.630000,174.330000,14.860000 +14,2023-08-03 03:00:00,0.000000,12.800000,79.000000,3.000000,65.000000,85.180000,118.400000,826.100000,2.510000,174.330000,14.350000 +14,2023-08-03 04:00:00,0.000000,12.800000,79.000000,3.000000,65.000000,84.890000,118.400000,826.100000,2.410000,174.330000,13.910000 +14,2023-08-03 05:00:00,0.000000,11.600000,85.000000,0.000000,297.000000,84.530000,118.430000,826.180000,1.980000,174.380000,11.880000 +14,2023-08-03 06:00:00,0.000000,11.600000,85.000000,0.000000,297.000000,84.210000,118.470000,826.270000,1.890000,174.420000,11.470000 +14,2023-08-03 07:00:00,0.000000,11.600000,85.000000,0.000000,297.000000,83.920000,118.500000,826.350000,1.820000,174.460000,11.110000 +14,2023-08-03 08:00:00,0.000000,17.200000,61.000000,1.000000,22.000000,84.000000,118.630000,826.660000,1.930000,174.620000,11.680000 +14,2023-08-03 09:00:00,0.000000,17.200000,61.000000,1.000000,22.000000,84.070000,118.760000,826.970000,1.950000,174.770000,11.770000 +14,2023-08-03 10:00:00,0.000000,17.200000,61.000000,1.000000,22.000000,84.140000,118.890000,827.280000,1.970000,174.930000,11.870000 +14,2023-08-03 11:00:00,0.000000,22.700000,40.000000,5.000000,59.000000,84.880000,119.170000,827.940000,2.660000,175.270000,15.030000 +14,2023-08-03 12:00:00,0.000000,22.700000,40.000000,5.000000,59.000000,85.510000,119.440000,828.610000,2.910000,175.610000,16.080000 +14,2023-08-03 13:00:00,0.000000,22.700000,40.000000,5.000000,59.000000,86.070000,119.720000,829.280000,3.140000,175.940000,17.040000 +14,2023-08-03 14:00:00,0.000000,24.200000,38.000000,8.000000,32.000000,86.710000,120.040000,830.040000,4.000000,176.330000,20.370000 +14,2023-08-03 15:00:00,0.000000,24.200000,38.000000,8.000000,32.000000,87.260000,120.350000,830.790000,4.330000,176.710000,21.560000 +14,2023-08-03 16:00:00,0.000000,24.200000,38.000000,8.000000,32.000000,87.720000,120.670000,831.550000,4.620000,177.090000,22.610000 +14,2023-08-03 17:00:00,1.480000,20.600000,62.000000,5.000000,256.000000,68.000000,120.820000,831.920000,0.750000,177.280000,5.050000 +14,2023-08-03 18:00:00,0.000000,20.600000,62.000000,5.000000,256.000000,69.610000,120.980000,832.290000,0.790000,177.460000,5.320000 +14,2023-08-03 19:00:00,0.000000,20.600000,62.000000,5.000000,256.000000,71.090000,121.130000,832.670000,0.830000,177.650000,5.580000 +14,2023-08-03 20:00:00,0.000000,19.300000,71.000000,7.000000,202.000000,72.140000,121.240000,832.930000,0.960000,177.780000,6.370000 +14,2023-08-03 21:00:00,0.000000,19.300000,71.000000,7.000000,202.000000,73.120000,121.350000,833.190000,1.000000,177.920000,6.610000 +14,2023-08-03 22:00:00,0.000000,19.300000,71.000000,7.000000,202.000000,74.020000,121.350000,833.190000,1.040000,177.920000,6.860000 +14,2023-08-03 23:00:00,0.010000,15.600000,90.000000,6.000000,234.000000,74.030000,121.350000,833.190000,0.990000,177.920000,6.550000 +14,2023-08-04 00:00:00,0.000000,15.600000,90.000000,6.000000,234.000000,74.160000,121.350000,833.190000,0.990000,177.920000,6.590000 +14,2023-08-04 01:00:00,0.000000,15.600000,90.000000,6.000000,234.000000,74.290000,121.350000,833.190000,1.000000,177.920000,6.630000 +14,2023-08-04 02:00:00,0.000000,13.800000,99.000000,5.000000,244.000000,74.240000,121.350000,833.190000,0.950000,177.920000,6.310000 +14,2023-08-04 03:00:00,0.000000,13.800000,99.000000,5.000000,244.000000,74.190000,121.350000,833.190000,0.940000,177.920000,6.290000 +14,2023-08-04 04:00:00,0.000000,13.800000,99.000000,5.000000,244.000000,74.140000,121.350000,833.190000,0.940000,177.920000,6.280000 +14,2023-08-04 05:00:00,0.000000,12.600000,98.000000,5.000000,254.000000,74.140000,121.350000,833.200000,0.940000,177.920000,6.280000 +14,2023-08-04 06:00:00,0.000000,12.600000,98.000000,5.000000,254.000000,74.140000,121.360000,833.210000,0.940000,177.920000,6.280000 +14,2023-08-04 07:00:00,0.000000,12.600000,98.000000,5.000000,254.000000,74.140000,121.360000,833.220000,0.940000,177.930000,6.280000 +14,2023-08-04 08:00:00,0.000000,18.100000,72.000000,5.000000,273.000000,74.830000,121.430000,833.400000,0.980000,178.020000,6.490000 +14,2023-08-04 09:00:00,0.000000,18.100000,72.000000,5.000000,273.000000,75.460000,121.510000,833.580000,1.010000,178.110000,6.710000 +14,2023-08-04 10:00:00,0.000000,18.100000,72.000000,5.000000,273.000000,76.050000,121.580000,833.760000,1.050000,178.200000,6.940000 +14,2023-08-04 11:00:00,0.000000,23.900000,42.000000,7.000000,325.000000,77.910000,121.800000,834.300000,1.330000,178.470000,8.580000 +14,2023-08-04 12:00:00,0.000000,23.900000,42.000000,7.000000,325.000000,79.520000,122.020000,834.830000,1.540000,178.730000,9.740000 +14,2023-08-04 13:00:00,0.000000,23.900000,42.000000,7.000000,325.000000,80.920000,122.240000,835.370000,1.790000,179.000000,11.020000 +14,2023-08-04 14:00:00,0.000000,25.200000,37.000000,9.000000,336.000000,82.470000,122.500000,836.000000,2.370000,179.310000,13.830000 +14,2023-08-04 15:00:00,0.000000,25.200000,37.000000,9.000000,336.000000,83.780000,122.760000,836.620000,2.810000,179.620000,15.740000 +14,2023-08-04 16:00:00,0.000000,25.200000,37.000000,9.000000,336.000000,84.880000,123.010000,837.250000,3.260000,179.930000,17.610000 +14,2023-08-04 17:00:00,0.000000,25.900000,33.000000,8.000000,331.000000,85.990000,123.300000,837.950000,3.610000,180.280000,19.000000 +14,2023-08-04 18:00:00,0.000000,25.900000,33.000000,8.000000,331.000000,86.910000,123.580000,838.650000,4.120000,180.630000,20.900000 +14,2023-08-04 19:00:00,0.000000,25.900000,33.000000,8.000000,331.000000,87.690000,123.870000,839.340000,4.600000,180.970000,22.620000 +14,2023-08-04 20:00:00,0.000000,24.000000,38.000000,4.000000,336.000000,88.040000,124.110000,839.920000,3.950000,181.260000,20.300000 +14,2023-08-04 21:00:00,0.000000,24.000000,38.000000,4.000000,336.000000,88.340000,124.340000,840.500000,4.130000,181.540000,20.960000 +14,2023-08-04 22:00:00,0.000000,24.000000,38.000000,4.000000,336.000000,88.600000,124.340000,840.500000,4.290000,181.540000,21.520000 +14,2023-08-04 23:00:00,0.000000,18.200000,55.000000,5.000000,279.000000,88.500000,124.340000,840.500000,4.440000,181.540000,22.090000 +14,2023-08-05 00:00:00,0.000000,18.200000,55.000000,5.000000,279.000000,88.410000,124.340000,840.500000,4.390000,181.540000,21.890000 +14,2023-08-05 01:00:00,0.000000,18.200000,55.000000,5.000000,279.000000,88.340000,124.340000,840.500000,4.340000,181.540000,21.720000 +14,2023-08-05 02:00:00,0.000000,16.200000,69.000000,6.000000,300.000000,87.920000,124.340000,840.500000,4.300000,181.540000,21.580000 +14,2023-08-05 03:00:00,0.000000,16.200000,69.000000,6.000000,300.000000,87.560000,124.340000,840.500000,4.080000,181.540000,20.790000 +14,2023-08-05 04:00:00,0.000000,16.200000,69.000000,6.000000,300.000000,87.240000,124.340000,840.500000,3.900000,181.540000,20.130000 +14,2023-08-05 05:00:00,0.000000,16.400000,82.000000,6.000000,298.000000,86.570000,124.410000,840.720000,3.550000,181.630000,18.770000 +14,2023-08-05 06:00:00,0.000000,16.400000,82.000000,6.000000,298.000000,85.990000,124.480000,840.940000,3.270000,181.720000,17.670000 +14,2023-08-05 07:00:00,0.000000,16.400000,82.000000,6.000000,298.000000,85.480000,124.550000,841.160000,3.040000,181.810000,16.770000 +14,2023-08-05 08:00:00,0.000000,19.200000,65.000000,8.000000,326.000000,85.480000,124.720000,841.680000,3.370000,182.010000,18.070000 +14,2023-08-05 09:00:00,0.000000,19.200000,65.000000,8.000000,326.000000,85.480000,124.880000,842.200000,3.370000,182.220000,18.080000 +14,2023-08-05 10:00:00,0.000000,19.200000,65.000000,8.000000,326.000000,85.480000,125.050000,842.710000,3.370000,182.420000,18.080000 +14,2023-08-05 11:00:00,0.010000,20.200000,52.000000,10.000000,334.000000,85.540000,125.100000,843.460000,3.750000,182.530000,19.580000 +14,2023-08-05 12:00:00,0.000000,20.200000,52.000000,10.000000,334.000000,85.730000,125.340000,844.220000,3.860000,182.820000,19.980000 +14,2023-08-05 13:00:00,0.000000,20.200000,52.000000,10.000000,334.000000,85.900000,125.580000,844.970000,3.950000,183.120000,20.330000 +14,2023-08-05 14:00:00,0.910000,17.000000,76.000000,9.000000,322.000000,72.950000,121.730000,845.280000,1.090000,179.010000,7.220000 +14,2023-08-05 15:00:00,0.000000,17.000000,76.000000,9.000000,322.000000,73.660000,121.830000,845.590000,1.130000,179.140000,7.420000 +14,2023-08-05 16:00:00,0.000000,17.000000,76.000000,9.000000,322.000000,74.320000,121.930000,845.900000,1.160000,179.260000,7.630000 +14,2023-08-05 17:00:00,0.590000,15.500000,84.000000,7.000000,288.000000,67.360000,119.540000,846.080000,0.820000,176.680000,5.470000 +14,2023-08-05 18:00:00,0.000000,15.500000,84.000000,7.000000,288.000000,68.010000,119.600000,846.270000,0.840000,176.750000,5.580000 +14,2023-08-05 19:00:00,0.000000,15.500000,84.000000,7.000000,288.000000,68.620000,119.660000,846.460000,0.850000,176.830000,5.690000 +14,2023-08-05 20:00:00,0.000000,16.700000,73.000000,5.000000,271.000000,69.590000,119.770000,846.800000,0.790000,176.970000,5.310000 +14,2023-08-05 21:00:00,0.000000,16.700000,73.000000,5.000000,271.000000,70.490000,119.880000,847.140000,0.820000,177.100000,5.470000 +14,2023-08-05 22:00:00,0.000000,16.700000,73.000000,5.000000,271.000000,71.340000,119.880000,847.140000,0.840000,177.100000,5.620000 +14,2023-08-05 23:00:00,0.000000,13.600000,90.000000,5.000000,242.000000,71.540000,119.880000,847.140000,0.850000,177.100000,5.660000 +14,2023-08-06 00:00:00,0.000000,13.600000,90.000000,5.000000,242.000000,71.730000,119.880000,847.140000,0.850000,177.100000,5.700000 +14,2023-08-06 01:00:00,0.000000,13.600000,90.000000,5.000000,242.000000,71.910000,119.880000,847.140000,0.860000,177.100000,5.740000 +14,2023-08-06 02:00:00,0.000000,11.700000,98.000000,4.000000,255.000000,71.920000,119.880000,847.140000,0.820000,177.100000,5.460000 +14,2023-08-06 03:00:00,0.000000,11.700000,98.000000,4.000000,255.000000,71.920000,119.880000,847.140000,0.820000,177.100000,5.460000 +14,2023-08-06 04:00:00,0.000000,11.700000,98.000000,4.000000,255.000000,71.920000,119.880000,847.140000,0.820000,177.100000,5.460000 +14,2023-08-06 05:00:00,0.000000,10.600000,98.000000,2.000000,231.000000,71.930000,119.880000,847.150000,0.740000,177.110000,4.940000 +14,2023-08-06 06:00:00,0.000000,10.600000,98.000000,2.000000,231.000000,71.930000,119.880000,847.160000,0.740000,177.110000,4.940000 +14,2023-08-06 07:00:00,0.000000,10.600000,98.000000,2.000000,231.000000,71.930000,119.890000,847.170000,0.740000,177.110000,4.940000 +14,2023-08-06 08:00:00,0.010000,15.000000,79.000000,3.000000,148.000000,72.400000,119.930000,847.310000,0.790000,177.170000,5.290000 +14,2023-08-06 09:00:00,0.000000,15.000000,79.000000,3.000000,148.000000,72.850000,119.970000,847.450000,0.800000,177.220000,5.380000 +14,2023-08-06 10:00:00,0.000000,15.000000,79.000000,3.000000,148.000000,73.270000,120.010000,847.590000,0.820000,177.270000,5.480000 +14,2023-08-06 11:00:00,0.000000,19.200000,54.000000,6.000000,107.000000,74.640000,120.130000,847.990000,1.020000,177.430000,6.740000 +14,2023-08-06 12:00:00,0.000000,19.200000,54.000000,6.000000,107.000000,75.880000,120.250000,848.400000,1.090000,177.580000,7.190000 +14,2023-08-06 13:00:00,0.000000,19.200000,54.000000,6.000000,107.000000,77.000000,120.370000,848.800000,1.180000,177.730000,7.710000 +14,2023-08-06 14:00:00,0.000000,21.500000,38.000000,9.000000,82.000000,78.760000,120.560000,849.430000,1.580000,177.970000,9.960000 +14,2023-08-06 15:00:00,0.000000,21.500000,38.000000,9.000000,82.000000,80.290000,120.750000,850.050000,1.840000,178.210000,11.290000 +14,2023-08-06 16:00:00,0.000000,21.500000,38.000000,9.000000,82.000000,81.620000,120.940000,850.680000,2.140000,178.450000,12.740000 +14,2023-08-06 17:00:00,0.000000,21.900000,38.000000,11.000000,75.000000,82.840000,121.130000,851.320000,2.750000,178.690000,15.480000 +14,2023-08-06 18:00:00,0.000000,21.900000,38.000000,11.000000,75.000000,83.890000,121.320000,851.970000,3.150000,178.940000,17.150000 +14,2023-08-06 19:00:00,0.000000,21.900000,38.000000,11.000000,75.000000,84.780000,121.510000,852.610000,3.560000,179.180000,18.760000 +14,2023-08-06 20:00:00,0.000000,19.300000,44.000000,11.000000,79.000000,85.260000,121.660000,853.100000,3.800000,179.370000,19.680000 +14,2023-08-06 21:00:00,0.000000,19.300000,44.000000,11.000000,79.000000,85.670000,121.810000,853.600000,4.020000,179.560000,20.510000 +14,2023-08-06 22:00:00,0.000000,19.300000,44.000000,11.000000,79.000000,86.020000,121.810000,853.600000,4.220000,179.560000,21.260000 +14,2023-08-06 23:00:00,0.000000,14.200000,59.000000,7.000000,84.000000,86.020000,121.810000,853.600000,3.450000,179.560000,18.360000 +14,2023-08-07 00:00:00,0.000000,14.200000,59.000000,7.000000,84.000000,86.020000,121.810000,853.600000,3.450000,179.560000,18.360000 +14,2023-08-07 01:00:00,0.000000,14.200000,59.000000,7.000000,84.000000,86.020000,121.810000,853.600000,3.450000,179.560000,18.360000 +14,2023-08-07 02:00:00,0.000000,11.400000,69.000000,4.000000,93.000000,85.850000,121.810000,853.600000,2.900000,179.560000,16.110000 +14,2023-08-07 03:00:00,0.000000,11.400000,69.000000,4.000000,93.000000,85.690000,121.810000,853.600000,2.830000,179.560000,15.840000 +14,2023-08-07 04:00:00,0.000000,11.400000,69.000000,4.000000,93.000000,85.550000,121.810000,853.600000,2.780000,179.560000,15.600000 +14,2023-08-07 05:00:00,0.000000,9.900000,75.000000,3.000000,80.000000,85.290000,121.840000,853.690000,2.550000,179.600000,14.620000 +14,2023-08-07 06:00:00,0.000000,9.900000,75.000000,3.000000,80.000000,85.060000,121.880000,853.780000,2.470000,179.650000,14.260000 +14,2023-08-07 07:00:00,0.000000,9.900000,75.000000,3.000000,80.000000,84.860000,121.920000,853.880000,2.400000,179.690000,13.950000 +14,2023-08-07 08:00:00,0.000000,14.600000,54.000000,4.000000,103.000000,84.940000,122.010000,854.120000,2.550000,179.810000,14.640000 +14,2023-08-07 09:00:00,0.000000,14.600000,54.000000,4.000000,103.000000,85.020000,122.110000,854.350000,2.580000,179.920000,14.760000 +14,2023-08-07 10:00:00,0.000000,14.600000,54.000000,4.000000,103.000000,85.090000,122.200000,854.590000,2.610000,180.040000,14.870000 +14,2023-08-07 11:00:00,0.000000,20.100000,40.000000,7.000000,94.000000,85.620000,122.370000,855.030000,3.260000,180.250000,17.620000 +14,2023-08-07 12:00:00,0.000000,20.100000,40.000000,7.000000,94.000000,86.080000,122.550000,855.460000,3.480000,180.460000,18.490000 +14,2023-08-07 13:00:00,0.000000,20.100000,40.000000,7.000000,94.000000,86.490000,122.720000,855.900000,3.690000,180.680000,19.290000 +14,2023-08-07 14:00:00,0.000000,22.700000,36.000000,10.000000,101.000000,87.090000,122.940000,856.450000,4.670000,180.940000,22.870000 +14,2023-08-07 15:00:00,0.000000,22.700000,36.000000,10.000000,101.000000,87.600000,123.150000,856.990000,5.020000,181.210000,24.080000 +14,2023-08-07 16:00:00,0.000000,22.700000,36.000000,10.000000,101.000000,88.030000,123.370000,857.540000,5.340000,181.470000,25.150000 +14,2023-08-07 17:00:00,0.000000,23.000000,34.000000,12.000000,93.000000,88.490000,123.600000,858.110000,6.310000,181.750000,28.210000 +14,2023-08-07 18:00:00,0.000000,23.000000,34.000000,12.000000,93.000000,88.870000,123.820000,858.690000,6.670000,182.030000,29.290000 +14,2023-08-07 19:00:00,0.000000,23.000000,34.000000,12.000000,93.000000,89.190000,124.050000,859.260000,6.980000,182.300000,30.220000 +14,2023-08-07 20:00:00,0.000000,20.800000,37.000000,12.000000,85.000000,89.290000,124.240000,859.740000,7.080000,182.540000,30.520000 +14,2023-08-07 21:00:00,0.000000,20.800000,37.000000,12.000000,85.000000,89.370000,124.430000,860.220000,7.170000,182.770000,30.780000 +14,2023-08-07 22:00:00,0.000000,20.800000,37.000000,12.000000,85.000000,89.440000,124.430000,860.220000,7.240000,182.770000,30.990000 +14,2023-08-07 23:00:00,0.000000,17.300000,43.000000,10.000000,94.000000,89.440000,124.430000,860.220000,6.550000,182.770000,28.950000 +14,2023-08-08 00:00:00,0.000000,17.300000,43.000000,10.000000,94.000000,89.440000,124.430000,860.220000,6.550000,182.770000,28.950000 +14,2023-08-08 01:00:00,0.000000,17.300000,43.000000,10.000000,94.000000,89.440000,124.430000,860.220000,6.550000,182.770000,28.950000 +14,2023-08-08 02:00:00,0.000000,15.600000,47.000000,9.000000,139.000000,89.360000,124.430000,860.220000,6.150000,182.770000,27.740000 +14,2023-08-08 03:00:00,0.000000,15.600000,47.000000,9.000000,139.000000,89.280000,124.430000,860.220000,6.080000,182.770000,27.540000 +14,2023-08-08 04:00:00,0.000000,15.600000,47.000000,9.000000,139.000000,89.220000,124.430000,860.220000,6.030000,182.770000,27.360000 +14,2023-08-08 05:00:00,0.000000,14.300000,53.000000,8.000000,163.000000,89.020000,124.530000,860.430000,5.570000,182.880000,25.930000 +14,2023-08-08 06:00:00,0.000000,14.300000,53.000000,8.000000,163.000000,88.850000,124.620000,860.640000,5.440000,183.000000,25.490000 +14,2023-08-08 07:00:00,0.000000,14.300000,53.000000,8.000000,163.000000,88.700000,124.720000,860.860000,5.320000,183.120000,25.110000 +14,2023-08-08 08:00:00,0.000000,17.700000,42.000000,10.000000,154.000000,88.700000,124.870000,861.180000,5.880000,183.290000,26.930000 +14,2023-08-08 09:00:00,0.000000,17.700000,42.000000,10.000000,154.000000,88.700000,125.020000,861.510000,5.880000,183.470000,26.930000 +14,2023-08-08 10:00:00,0.000000,17.700000,42.000000,10.000000,154.000000,88.700000,125.160000,861.830000,5.880000,183.650000,26.940000 +14,2023-08-08 11:00:00,0.000000,21.200000,33.000000,12.000000,132.000000,89.010000,125.370000,862.300000,6.810000,183.900000,29.760000 +14,2023-08-08 12:00:00,0.000000,21.200000,33.000000,12.000000,132.000000,89.280000,125.590000,862.770000,7.070000,184.160000,30.540000 +14,2023-08-08 13:00:00,0.000000,21.200000,33.000000,12.000000,132.000000,89.500000,125.800000,863.240000,7.300000,184.410000,31.210000 +14,2023-08-08 14:00:00,0.000000,21.900000,30.000000,14.000000,105.000000,89.820000,126.030000,863.750000,8.460000,184.690000,34.430000 +14,2023-08-08 15:00:00,0.000000,21.900000,30.000000,14.000000,105.000000,90.090000,126.260000,864.260000,8.790000,184.970000,35.320000 +14,2023-08-08 16:00:00,0.000000,21.900000,30.000000,14.000000,105.000000,90.310000,126.490000,864.770000,9.070000,185.240000,36.090000 +14,2023-08-08 17:00:00,0.000000,21.100000,31.000000,15.000000,106.000000,90.440000,126.710000,865.250000,9.720000,185.500000,37.750000 +14,2023-08-08 18:00:00,0.000000,21.100000,31.000000,15.000000,106.000000,90.550000,126.920000,865.730000,9.860000,185.760000,38.130000 +14,2023-08-08 19:00:00,0.000000,21.100000,31.000000,15.000000,106.000000,90.630000,127.140000,866.210000,9.990000,186.020000,38.450000 +14,2023-08-08 20:00:00,0.000000,19.700000,35.000000,11.000000,106.000000,90.630000,127.330000,866.620000,8.160000,186.250000,33.690000 +14,2023-08-08 21:00:00,0.000000,19.700000,35.000000,11.000000,106.000000,90.630000,127.520000,867.040000,8.160000,186.470000,33.690000 +14,2023-08-08 22:00:00,0.000000,19.700000,35.000000,11.000000,106.000000,90.630000,127.520000,867.040000,8.160000,186.470000,33.690000 +14,2023-08-08 23:00:00,0.000000,16.400000,47.000000,9.000000,106.000000,90.430000,127.520000,867.040000,7.170000,186.470000,30.880000 +14,2023-08-09 00:00:00,0.000000,16.400000,47.000000,9.000000,106.000000,90.240000,127.520000,867.040000,6.980000,186.470000,30.340000 +14,2023-08-09 01:00:00,0.000000,16.400000,47.000000,9.000000,106.000000,90.080000,127.520000,867.040000,6.820000,186.470000,29.870000 +14,2023-08-09 02:00:00,0.000000,14.900000,54.000000,9.000000,110.000000,89.770000,127.520000,867.040000,6.530000,186.470000,28.990000 +14,2023-08-09 03:00:00,0.000000,14.900000,54.000000,9.000000,110.000000,89.500000,127.520000,867.040000,6.270000,186.470000,28.220000 +14,2023-08-09 04:00:00,0.000000,14.900000,54.000000,9.000000,110.000000,89.260000,127.520000,867.040000,6.060000,186.470000,27.550000 +14,2023-08-09 05:00:00,0.000000,13.700000,61.000000,8.000000,98.000000,88.890000,127.600000,867.240000,5.460000,186.580000,25.660000 +14,2023-08-09 06:00:00,0.000000,13.700000,61.000000,8.000000,98.000000,88.560000,127.690000,867.440000,5.210000,186.680000,24.840000 +14,2023-08-09 07:00:00,0.000000,13.700000,61.000000,8.000000,98.000000,88.270000,127.780000,867.640000,5.000000,186.790000,24.130000 +14,2023-08-09 08:00:00,0.000000,18.300000,47.000000,13.000000,104.000000,88.270000,127.940000,868.000000,6.440000,186.980000,28.720000 +14,2023-08-09 09:00:00,0.000000,18.300000,47.000000,13.000000,104.000000,88.270000,128.100000,868.360000,6.440000,187.170000,28.730000 +14,2023-08-09 10:00:00,0.000000,18.300000,47.000000,13.000000,104.000000,88.270000,128.260000,868.730000,6.440000,187.370000,28.730000 +14,2023-08-09 11:00:00,0.000000,21.600000,35.000000,18.000000,125.000000,88.630000,128.500000,869.270000,8.710000,187.660000,35.210000 +14,2023-08-09 12:00:00,0.000000,21.600000,35.000000,18.000000,125.000000,88.920000,128.750000,869.820000,9.090000,187.950000,36.220000 +14,2023-08-09 13:00:00,0.000000,21.600000,35.000000,18.000000,125.000000,89.170000,128.990000,870.370000,9.420000,188.240000,37.080000 +14,2023-08-09 14:00:00,0.000000,20.900000,36.000000,18.000000,133.000000,89.320000,129.220000,870.880000,9.620000,188.510000,37.600000 +14,2023-08-09 15:00:00,0.000000,20.900000,36.000000,18.000000,133.000000,89.440000,129.440000,871.400000,9.790000,188.780000,38.040000 +14,2023-08-09 16:00:00,0.000000,20.900000,36.000000,18.000000,133.000000,89.540000,129.670000,871.920000,9.930000,189.050000,38.410000 +14,2023-08-09 17:00:00,0.030000,19.200000,44.000000,15.000000,110.000000,89.540000,129.850000,872.320000,8.540000,189.270000,34.790000 +14,2023-08-09 18:00:00,0.000000,19.200000,44.000000,15.000000,110.000000,89.540000,130.030000,872.730000,8.540000,189.480000,34.800000 +14,2023-08-09 19:00:00,0.000000,19.200000,44.000000,15.000000,110.000000,89.540000,130.210000,873.140000,8.540000,189.700000,34.800000 +14,2023-08-09 20:00:00,0.000000,19.100000,45.000000,13.000000,89.000000,89.540000,130.390000,873.530000,7.720000,189.910000,32.560000 +14,2023-08-09 21:00:00,0.000000,19.100000,45.000000,13.000000,89.000000,89.540000,130.560000,873.930000,7.720000,190.120000,32.560000 +14,2023-08-09 22:00:00,0.000000,19.100000,45.000000,13.000000,89.000000,89.540000,130.560000,873.930000,7.720000,190.120000,32.560000 +14,2023-08-09 23:00:00,0.000000,18.200000,45.000000,9.000000,100.000000,89.530000,130.560000,873.930000,6.300000,190.120000,28.390000 +14,2023-08-10 00:00:00,0.000000,18.200000,45.000000,9.000000,100.000000,89.520000,130.560000,873.930000,6.290000,190.120000,28.370000 +14,2023-08-10 01:00:00,0.000000,18.200000,45.000000,9.000000,100.000000,89.510000,130.560000,873.930000,6.290000,190.120000,28.350000 +14,2023-08-10 02:00:00,0.000000,17.300000,46.000000,7.000000,100.000000,89.470000,130.560000,873.930000,5.650000,190.120000,26.340000 +14,2023-08-10 03:00:00,0.000000,17.300000,46.000000,7.000000,100.000000,89.430000,130.560000,873.930000,5.620000,190.120000,26.240000 +14,2023-08-10 04:00:00,0.000000,17.300000,46.000000,7.000000,100.000000,89.400000,130.560000,873.930000,5.590000,190.120000,26.160000 +14,2023-08-10 05:00:00,0.000000,16.300000,50.000000,8.000000,95.000000,89.270000,130.680000,874.480000,5.780000,190.280000,26.750000 +14,2023-08-10 06:00:00,0.000000,16.300000,50.000000,8.000000,95.000000,89.160000,130.810000,875.040000,5.680000,190.440000,26.460000 +14,2023-08-10 07:00:00,0.000000,16.300000,50.000000,8.000000,95.000000,89.060000,130.930000,875.590000,5.600000,190.600000,26.200000 +14,2023-08-10 08:00:00,0.030000,18.300000,48.000000,9.000000,106.000000,88.340000,130.320000,875.940000,5.310000,189.970000,25.240000 +14,2023-08-10 09:00:00,0.000000,18.300000,48.000000,9.000000,106.000000,88.340000,130.460000,876.590000,5.310000,190.170000,25.240000 +14,2023-08-10 10:00:00,0.000000,18.300000,48.000000,9.000000,106.000000,88.340000,130.600000,877.250000,5.310000,190.360000,25.250000 +14,2023-08-10 11:00:00,1.220000,17.800000,65.000000,9.000000,99.000000,65.850000,110.900000,865.160000,0.860000,167.970000,5.640000 +14,2023-08-10 12:00:00,0.000000,17.800000,65.000000,9.000000,99.000000,67.520000,110.990000,865.590000,0.910000,168.100000,5.970000 +14,2023-08-10 13:00:00,0.000000,17.800000,65.000000,9.000000,99.000000,69.060000,111.080000,866.010000,0.960000,168.220000,6.260000 +14,2023-08-10 14:00:00,3.140000,16.600000,83.000000,8.000000,90.000000,35.510000,82.220000,834.000000,0.020000,131.920000,0.070000 +14,2023-08-10 15:00:00,0.000000,16.600000,83.000000,8.000000,90.000000,37.480000,82.260000,834.190000,0.030000,131.980000,0.100000 +14,2023-08-10 16:00:00,0.000000,16.600000,83.000000,8.000000,90.000000,39.390000,82.300000,834.380000,0.050000,132.040000,0.150000 +14,2023-08-10 17:00:00,2.050000,16.600000,84.000000,6.000000,79.000000,26.570000,70.300000,813.530000,0.000000,115.620000,0.010000 +14,2023-08-10 18:00:00,0.000000,16.600000,84.000000,6.000000,79.000000,28.460000,70.340000,813.710000,0.000000,115.680000,0.010000 +14,2023-08-10 19:00:00,0.000000,16.600000,84.000000,6.000000,79.000000,30.320000,70.380000,813.890000,0.010000,115.740000,0.020000 +14,2023-08-10 20:00:00,0.000000,16.600000,84.000000,6.000000,79.000000,32.160000,70.420000,814.070000,0.010000,115.800000,0.030000 +14,2023-08-10 21:00:00,0.000000,16.600000,84.000000,6.000000,79.000000,33.960000,70.420000,814.070000,0.010000,115.800000,0.040000 +14,2023-08-10 22:00:00,0.000000,16.600000,84.000000,6.000000,79.000000,35.730000,70.420000,814.070000,0.020000,115.800000,0.060000 +14,2023-08-10 23:00:00,0.220000,13.700000,97.000000,3.000000,169.000000,34.340000,69.230000,811.820000,0.010000,114.130000,0.040000 +14,2023-08-11 00:00:00,0.000000,13.700000,97.000000,3.000000,169.000000,34.630000,69.230000,811.820000,0.010000,114.130000,0.040000 +14,2023-08-11 01:00:00,0.000000,13.700000,97.000000,3.000000,169.000000,34.920000,69.230000,811.820000,0.010000,114.130000,0.040000 +14,2023-08-11 02:00:00,0.000000,13.700000,97.000000,3.000000,169.000000,35.200000,69.230000,811.820000,0.010000,114.130000,0.040000 +14,2023-08-11 03:00:00,0.000000,13.700000,97.000000,3.000000,169.000000,35.480000,69.230000,811.820000,0.020000,114.130000,0.050000 +14,2023-08-11 04:00:00,0.000000,13.700000,97.000000,3.000000,169.000000,35.760000,69.230000,811.820000,0.020000,114.130000,0.050000 +14,2023-08-11 05:00:00,0.070000,11.500000,98.000000,3.000000,198.000000,35.940000,69.240000,811.830000,0.020000,114.140000,0.050000 +14,2023-08-11 06:00:00,0.000000,11.500000,98.000000,3.000000,198.000000,36.110000,69.240000,811.850000,0.020000,114.140000,0.050000 +14,2023-08-11 07:00:00,0.000000,11.500000,98.000000,3.000000,198.000000,36.280000,69.240000,811.870000,0.020000,114.150000,0.060000 +14,2023-08-11 08:00:00,0.000000,11.500000,98.000000,3.000000,198.000000,36.450000,69.250000,811.880000,0.020000,114.150000,0.060000 +14,2023-08-11 09:00:00,0.000000,11.500000,98.000000,3.000000,198.000000,36.620000,69.250000,811.900000,0.020000,114.160000,0.060000 +14,2023-08-11 10:00:00,0.000000,11.500000,98.000000,3.000000,198.000000,36.790000,69.250000,811.920000,0.020000,114.160000,0.060000 +14,2023-08-11 11:00:00,0.100000,18.600000,69.000000,3.000000,120.000000,39.350000,69.330000,812.320000,0.040000,114.280000,0.110000 +14,2023-08-11 12:00:00,0.000000,18.600000,69.000000,3.000000,120.000000,41.830000,69.410000,812.730000,0.060000,114.400000,0.170000 +14,2023-08-11 13:00:00,0.000000,18.600000,69.000000,3.000000,120.000000,44.230000,69.500000,813.130000,0.080000,114.520000,0.260000 +14,2023-08-11 14:00:00,0.000000,18.600000,69.000000,3.000000,120.000000,46.540000,69.580000,813.540000,0.120000,114.640000,0.370000 +14,2023-08-11 15:00:00,0.000000,18.600000,69.000000,3.000000,120.000000,48.760000,69.660000,813.940000,0.160000,114.760000,0.500000 +14,2023-08-11 16:00:00,0.000000,18.600000,69.000000,3.000000,120.000000,50.890000,69.740000,814.350000,0.210000,114.880000,0.650000 +14,2023-08-11 17:00:00,0.000000,23.200000,45.000000,6.000000,66.000000,54.980000,69.930000,815.300000,0.380000,115.160000,1.560000 +14,2023-08-11 18:00:00,0.000000,23.200000,45.000000,6.000000,66.000000,58.750000,70.120000,816.260000,0.510000,115.440000,2.560000 +14,2023-08-11 19:00:00,0.000000,23.200000,45.000000,6.000000,66.000000,62.190000,70.310000,817.210000,0.630000,115.720000,3.340000 +14,2023-08-11 20:00:00,0.000000,23.200000,45.000000,6.000000,66.000000,65.320000,70.490000,818.170000,0.720000,116.000000,3.930000 +14,2023-08-11 21:00:00,0.000000,23.200000,45.000000,6.000000,66.000000,68.140000,70.490000,818.170000,0.800000,116.000000,4.380000 +14,2023-08-11 22:00:00,0.000000,23.200000,45.000000,6.000000,66.000000,70.680000,70.490000,818.170000,0.860000,116.000000,4.770000 +14,2023-08-11 23:00:00,0.000000,16.600000,75.000000,7.000000,120.000000,71.510000,70.490000,818.170000,0.940000,116.000000,5.170000 +14,2023-08-12 00:00:00,0.000000,16.600000,75.000000,7.000000,120.000000,72.290000,70.490000,818.170000,0.960000,116.000000,5.310000 +14,2023-08-12 01:00:00,0.000000,16.600000,75.000000,7.000000,120.000000,73.010000,70.490000,818.170000,0.990000,116.000000,5.470000 +14,2023-08-12 02:00:00,0.000000,16.600000,75.000000,7.000000,120.000000,73.690000,70.490000,818.170000,1.020000,116.000000,5.630000 +14,2023-08-12 03:00:00,0.000000,16.600000,75.000000,7.000000,120.000000,74.320000,70.490000,818.170000,1.050000,116.000000,5.790000 +14,2023-08-12 04:00:00,0.000000,16.600000,75.000000,7.000000,120.000000,74.910000,70.490000,818.170000,1.080000,116.000000,5.970000 +14,2023-08-12 05:00:00,0.000000,13.500000,87.000000,6.000000,160.000000,75.060000,70.520000,818.270000,1.040000,116.040000,5.730000 +14,2023-08-12 06:00:00,0.000000,13.500000,87.000000,6.000000,160.000000,75.210000,70.550000,818.370000,1.050000,116.090000,5.780000 +14,2023-08-12 07:00:00,0.000000,13.500000,87.000000,6.000000,160.000000,75.350000,70.580000,818.470000,1.060000,116.130000,5.830000 +14,2023-08-12 08:00:00,0.000000,13.500000,87.000000,6.000000,160.000000,75.490000,70.610000,818.570000,1.070000,116.170000,5.870000 +14,2023-08-12 09:00:00,0.000000,13.500000,87.000000,6.000000,160.000000,75.620000,70.640000,818.670000,1.070000,116.210000,5.920000 +14,2023-08-12 10:00:00,0.000000,13.500000,87.000000,6.000000,160.000000,75.750000,70.670000,818.760000,1.080000,116.250000,5.970000 +14,2023-08-12 11:00:00,0.000000,21.600000,57.000000,6.000000,87.000000,76.930000,70.830000,819.310000,1.170000,116.480000,6.440000 +14,2023-08-12 12:00:00,0.000000,21.600000,57.000000,6.000000,87.000000,77.980000,70.990000,819.860000,1.270000,116.710000,6.960000 +14,2023-08-12 13:00:00,0.000000,21.600000,57.000000,6.000000,87.000000,78.930000,71.150000,820.410000,1.380000,116.950000,7.520000 +14,2023-08-12 14:00:00,0.000000,21.600000,57.000000,6.000000,87.000000,79.770000,71.310000,820.960000,1.500000,117.180000,8.100000 +14,2023-08-12 15:00:00,0.000000,21.600000,57.000000,6.000000,87.000000,80.530000,71.470000,821.510000,1.630000,117.410000,8.690000 +14,2023-08-12 16:00:00,0.000000,21.600000,57.000000,6.000000,87.000000,81.200000,71.630000,822.060000,1.750000,117.640000,9.280000 +14,2023-08-12 17:00:00,0.000000,24.300000,50.000000,10.000000,50.000000,82.200000,71.850000,822.810000,2.420000,117.950000,12.110000 +14,2023-08-12 18:00:00,0.000000,24.300000,50.000000,10.000000,50.000000,83.070000,72.070000,823.560000,2.690000,118.270000,13.220000 +14,2023-08-12 19:00:00,0.000000,24.300000,50.000000,10.000000,50.000000,83.810000,72.290000,824.310000,2.970000,118.580000,14.270000 +14,2023-08-12 20:00:00,0.000000,24.300000,50.000000,10.000000,50.000000,84.440000,72.510000,825.060000,3.230000,118.900000,15.250000 +14,2023-08-12 21:00:00,0.000000,24.300000,50.000000,10.000000,50.000000,84.980000,72.510000,825.060000,3.480000,118.900000,16.120000 +14,2023-08-12 22:00:00,0.000000,24.300000,50.000000,10.000000,50.000000,85.440000,72.510000,825.060000,3.700000,118.900000,16.920000 +14,2023-08-12 23:00:00,0.000000,17.100000,75.000000,3.000000,34.000000,85.270000,72.510000,825.060000,2.540000,118.900000,12.650000 +14,2023-08-13 00:00:00,0.000000,17.100000,75.000000,3.000000,34.000000,85.110000,72.510000,825.060000,2.490000,118.900000,12.440000 +14,2023-08-13 01:00:00,0.000000,17.100000,75.000000,3.000000,34.000000,84.970000,72.510000,825.060000,2.440000,118.900000,12.250000 +14,2023-08-13 02:00:00,0.000000,17.100000,75.000000,3.000000,34.000000,84.850000,72.510000,825.060000,2.400000,118.900000,12.090000 +14,2023-08-13 03:00:00,0.000000,17.100000,75.000000,3.000000,34.000000,84.750000,72.510000,825.060000,2.370000,118.900000,11.950000 +14,2023-08-13 04:00:00,0.000000,17.100000,75.000000,3.000000,34.000000,84.650000,72.510000,825.060000,2.340000,118.900000,11.830000 +14,2023-08-13 05:00:00,0.010000,13.900000,95.000000,3.000000,137.000000,83.690000,72.520000,825.090000,2.050000,118.910000,10.650000 +14,2023-08-13 06:00:00,0.000000,13.900000,95.000000,3.000000,137.000000,82.850000,72.530000,825.120000,1.840000,118.930000,9.730000 +14,2023-08-13 07:00:00,0.000000,13.900000,95.000000,3.000000,137.000000,82.120000,72.540000,825.150000,1.680000,118.950000,9.000000 +14,2023-08-13 08:00:00,0.000000,13.900000,95.000000,3.000000,137.000000,81.470000,72.560000,825.190000,1.550000,118.960000,8.420000 +14,2023-08-13 09:00:00,0.000000,13.900000,95.000000,3.000000,137.000000,80.900000,72.570000,825.220000,1.460000,118.980000,7.950000 +14,2023-08-13 10:00:00,0.000000,13.900000,95.000000,3.000000,137.000000,80.400000,72.580000,825.250000,1.380000,118.990000,7.570000 +14,2023-08-13 11:00:00,0.000000,25.800000,50.000000,7.000000,106.000000,81.530000,72.820000,825.910000,1.920000,119.330000,10.080000 +14,2023-08-13 12:00:00,0.000000,25.800000,50.000000,7.000000,106.000000,82.510000,73.060000,826.570000,2.160000,119.670000,11.130000 +14,2023-08-13 13:00:00,0.000000,25.800000,50.000000,7.000000,106.000000,83.350000,73.300000,827.230000,2.400000,120.010000,12.150000 +14,2023-08-13 14:00:00,0.000000,25.800000,50.000000,7.000000,106.000000,84.080000,73.540000,827.890000,2.640000,120.350000,13.130000 +14,2023-08-13 15:00:00,0.000000,25.800000,50.000000,7.000000,106.000000,84.700000,73.780000,828.560000,2.870000,120.690000,14.030000 +14,2023-08-13 16:00:00,0.000000,25.800000,50.000000,7.000000,106.000000,85.230000,74.020000,829.220000,3.090000,121.030000,14.870000 +14,2023-08-13 17:00:00,0.010000,28.000000,42.000000,16.000000,61.000000,86.180000,74.340000,830.090000,5.560000,121.480000,22.920000 +14,2023-08-13 18:00:00,0.000000,28.000000,42.000000,16.000000,61.000000,86.950000,74.650000,830.960000,6.200000,121.920000,24.790000 +14,2023-08-13 19:00:00,0.000000,28.000000,42.000000,16.000000,61.000000,87.580000,74.970000,831.840000,6.770000,122.370000,26.410000 +14,2023-08-13 20:00:00,0.000000,28.000000,42.000000,16.000000,61.000000,88.080000,75.290000,832.710000,7.280000,122.810000,27.780000 +14,2023-08-13 21:00:00,0.000000,28.000000,42.000000,16.000000,61.000000,88.480000,75.290000,832.710000,7.710000,122.810000,28.900000 +14,2023-08-13 22:00:00,0.000000,28.000000,42.000000,16.000000,61.000000,88.800000,75.290000,832.710000,8.080000,122.810000,29.830000 +14,2023-08-13 23:00:00,0.000000,18.700000,57.000000,6.000000,68.000000,88.640000,75.290000,832.710000,4.770000,122.810000,20.650000 +14,2023-08-14 00:00:00,0.000000,18.700000,57.000000,6.000000,68.000000,88.500000,75.290000,832.710000,4.670000,122.810000,20.350000 +14,2023-08-14 01:00:00,0.000000,18.700000,57.000000,6.000000,68.000000,88.370000,75.290000,832.710000,4.590000,122.810000,20.090000 +14,2023-08-14 02:00:00,0.000000,18.700000,57.000000,6.000000,68.000000,88.270000,75.290000,832.710000,4.520000,122.810000,19.860000 +14,2023-08-14 03:00:00,0.000000,18.700000,57.000000,6.000000,68.000000,88.170000,75.290000,832.710000,4.460000,122.810000,19.660000 +14,2023-08-14 04:00:00,0.000000,18.700000,57.000000,6.000000,68.000000,88.090000,75.290000,832.710000,4.400000,122.810000,19.490000 +14,2023-08-14 05:00:00,0.000000,14.400000,58.000000,2.000000,181.000000,87.950000,75.380000,832.900000,3.530000,122.940000,16.560000 +14,2023-08-14 06:00:00,0.000000,14.400000,58.000000,2.000000,181.000000,87.830000,75.470000,833.090000,3.470000,123.060000,16.350000 +14,2023-08-14 07:00:00,0.000000,14.400000,58.000000,2.000000,181.000000,87.710000,75.560000,833.280000,3.410000,123.190000,16.160000 +14,2023-08-14 08:00:00,0.000000,14.400000,58.000000,2.000000,181.000000,87.610000,75.650000,833.480000,3.360000,123.310000,15.990000 +14,2023-08-14 09:00:00,0.000000,14.400000,58.000000,2.000000,181.000000,87.520000,75.740000,833.670000,3.320000,123.440000,15.840000 +14,2023-08-14 10:00:00,0.000000,14.400000,58.000000,2.000000,181.000000,87.440000,75.830000,833.860000,3.280000,123.560000,15.700000 +14,2023-08-14 11:00:00,0.000000,25.400000,35.000000,8.000000,81.000000,88.030000,76.100000,834.450000,4.830000,123.950000,20.920000 +14,2023-08-14 12:00:00,0.000000,25.400000,35.000000,8.000000,81.000000,88.520000,76.380000,835.040000,5.180000,124.330000,22.030000 +14,2023-08-14 13:00:00,0.000000,25.400000,35.000000,8.000000,81.000000,88.930000,76.650000,835.620000,5.500000,124.710000,23.010000 +14,2023-08-14 14:00:00,0.000000,25.400000,35.000000,8.000000,81.000000,89.280000,76.930000,836.210000,5.780000,125.090000,23.850000 +14,2023-08-14 15:00:00,0.000000,25.400000,35.000000,8.000000,81.000000,89.570000,77.210000,836.800000,6.020000,125.470000,24.580000 +14,2023-08-14 16:00:00,0.000000,25.400000,35.000000,8.000000,81.000000,89.810000,77.480000,837.390000,6.240000,125.850000,25.210000 +14,2023-08-14 17:00:00,0.000000,27.700000,30.000000,12.000000,63.000000,90.320000,77.820000,838.110000,8.210000,126.320000,30.470000 +14,2023-08-14 18:00:00,0.000000,27.700000,30.000000,12.000000,63.000000,90.730000,78.160000,838.830000,8.700000,126.790000,31.740000 +14,2023-08-14 19:00:00,0.000000,27.700000,30.000000,12.000000,63.000000,91.060000,78.500000,839.560000,9.120000,127.260000,32.800000 +14,2023-08-14 20:00:00,0.000000,27.700000,30.000000,12.000000,63.000000,91.320000,78.840000,840.280000,9.480000,127.720000,33.680000 +14,2023-08-14 21:00:00,0.000000,27.700000,30.000000,12.000000,63.000000,91.540000,78.840000,840.280000,9.770000,127.720000,34.370000 +14,2023-08-14 22:00:00,0.000000,27.700000,30.000000,12.000000,63.000000,91.710000,78.840000,840.280000,10.010000,127.720000,34.920000 +14,2023-08-14 23:00:00,0.000000,17.900000,58.000000,5.000000,89.000000,91.170000,78.840000,840.280000,6.510000,127.720000,26.130000 +14,2023-08-15 00:00:00,0.000000,17.900000,58.000000,5.000000,89.000000,90.690000,78.840000,840.280000,6.090000,127.720000,24.930000 +14,2023-08-15 01:00:00,0.000000,17.900000,58.000000,5.000000,89.000000,90.280000,78.840000,840.280000,5.730000,127.720000,23.910000 +14,2023-08-15 02:00:00,0.000000,17.900000,58.000000,5.000000,89.000000,89.910000,78.840000,840.280000,5.440000,127.720000,23.050000 +14,2023-08-15 03:00:00,0.000000,17.900000,58.000000,5.000000,89.000000,89.590000,78.840000,840.280000,5.200000,127.720000,22.300000 +14,2023-08-15 04:00:00,0.000000,17.900000,58.000000,5.000000,89.000000,89.310000,78.840000,840.280000,4.990000,127.720000,21.670000 +14,2023-08-15 05:00:00,0.000000,13.700000,75.000000,3.000000,192.000000,88.670000,78.890000,840.390000,4.110000,127.790000,18.850000 +14,2023-08-15 06:00:00,0.000000,13.700000,75.000000,3.000000,192.000000,88.100000,78.940000,840.490000,3.790000,127.860000,17.760000 +14,2023-08-15 07:00:00,0.000000,13.700000,75.000000,3.000000,192.000000,87.590000,78.990000,840.600000,3.530000,127.930000,16.830000 +14,2023-08-15 08:00:00,0.000000,13.700000,75.000000,3.000000,192.000000,87.150000,79.040000,840.700000,3.310000,128.000000,16.050000 +14,2023-08-15 09:00:00,0.000000,13.700000,75.000000,3.000000,192.000000,86.750000,79.090000,840.800000,3.130000,128.060000,15.370000 +14,2023-08-15 10:00:00,0.000000,13.700000,75.000000,3.000000,192.000000,86.390000,79.140000,840.910000,2.970000,128.130000,14.790000 +14,2023-08-15 11:00:00,0.000000,27.500000,36.000000,9.000000,120.000000,87.240000,79.430000,841.530000,4.540000,128.540000,20.300000 +14,2023-08-15 12:00:00,0.000000,27.500000,36.000000,9.000000,120.000000,87.950000,79.730000,842.150000,5.020000,128.940000,21.850000 +14,2023-08-15 13:00:00,0.000000,27.500000,36.000000,9.000000,120.000000,88.530000,80.030000,842.770000,5.460000,129.350000,23.200000 +14,2023-08-15 14:00:00,0.000000,27.500000,36.000000,9.000000,120.000000,89.000000,80.320000,843.400000,5.840000,129.750000,24.380000 +14,2023-08-15 15:00:00,0.000000,27.500000,36.000000,9.000000,120.000000,89.390000,80.620000,844.020000,6.180000,130.150000,25.380000 +14,2023-08-15 16:00:00,0.000000,27.500000,36.000000,9.000000,120.000000,89.720000,80.910000,844.640000,6.470000,130.560000,26.230000 +14,2023-08-15 17:00:00,0.000000,32.600000,31.000000,11.000000,107.000000,90.460000,81.340000,845.540000,7.970000,131.140000,30.290000 +14,2023-08-15 18:00:00,0.000000,32.600000,31.000000,11.000000,107.000000,91.050000,81.770000,846.440000,8.660000,131.720000,32.080000 +14,2023-08-15 19:00:00,0.000000,32.600000,31.000000,11.000000,107.000000,91.500000,82.190000,847.340000,9.230000,132.300000,33.530000 +14,2023-08-15 20:00:00,0.000000,32.600000,31.000000,11.000000,107.000000,91.850000,82.620000,848.240000,9.700000,132.880000,34.700000 +14,2023-08-15 21:00:00,0.000000,32.600000,31.000000,11.000000,107.000000,92.120000,82.620000,848.240000,10.080000,132.880000,35.590000 +14,2023-08-15 22:00:00,0.000000,32.600000,31.000000,11.000000,107.000000,92.320000,82.620000,848.240000,10.380000,132.880000,36.280000 +14,2023-08-15 23:00:00,0.000000,24.200000,49.000000,8.000000,144.000000,91.950000,82.620000,848.240000,8.460000,132.880000,31.690000 +14,2023-08-16 00:00:00,0.000000,24.200000,49.000000,8.000000,144.000000,91.630000,82.620000,848.240000,8.090000,132.880000,30.740000 +14,2023-08-16 01:00:00,0.000000,24.200000,49.000000,8.000000,144.000000,91.360000,82.620000,848.240000,7.780000,132.880000,29.940000 +14,2023-08-16 02:00:00,0.000000,24.200000,49.000000,8.000000,144.000000,91.120000,82.620000,848.240000,7.530000,132.880000,29.280000 +14,2023-08-16 03:00:00,0.000000,24.200000,49.000000,8.000000,144.000000,90.930000,82.620000,848.240000,7.320000,132.880000,28.720000 +14,2023-08-16 04:00:00,0.000000,24.200000,49.000000,8.000000,144.000000,90.760000,82.620000,848.240000,7.140000,132.880000,28.250000 +14,2023-08-16 05:00:00,0.010000,21.300000,69.000000,9.000000,206.000000,89.980000,82.710000,848.410000,6.720000,133.000000,27.100000 +14,2023-08-16 06:00:00,0.000000,21.300000,69.000000,9.000000,206.000000,89.320000,82.790000,848.580000,6.120000,133.120000,25.400000 +14,2023-08-16 07:00:00,0.000000,21.300000,69.000000,9.000000,206.000000,88.770000,82.880000,848.750000,5.650000,133.230000,24.050000 +14,2023-08-16 08:00:00,0.000000,21.300000,69.000000,9.000000,206.000000,88.310000,82.960000,848.920000,5.290000,133.350000,22.950000 +14,2023-08-16 09:00:00,0.000000,21.300000,69.000000,9.000000,206.000000,87.920000,83.050000,849.090000,5.000000,133.460000,22.070000 +14,2023-08-16 10:00:00,0.000000,21.300000,69.000000,9.000000,206.000000,87.590000,83.140000,849.260000,4.770000,133.580000,21.350000 +14,2023-08-16 11:00:00,0.000000,32.500000,36.000000,6.000000,220.000000,88.470000,83.480000,849.940000,4.650000,134.040000,20.990000 +14,2023-08-16 12:00:00,0.000000,32.500000,36.000000,6.000000,220.000000,89.170000,83.820000,850.630000,5.150000,134.500000,22.590000 +14,2023-08-16 13:00:00,0.000000,32.500000,36.000000,6.000000,220.000000,89.740000,84.160000,851.310000,5.590000,134.960000,23.960000 +14,2023-08-16 14:00:00,0.000000,32.500000,36.000000,6.000000,220.000000,90.200000,84.500000,851.990000,5.960000,135.420000,25.110000 +14,2023-08-16 15:00:00,0.000000,32.500000,36.000000,6.000000,220.000000,90.560000,84.840000,852.670000,6.280000,135.880000,26.070000 +14,2023-08-16 16:00:00,0.000000,32.500000,36.000000,6.000000,220.000000,90.850000,85.180000,853.350000,6.550000,136.340000,26.860000 +14,2023-08-16 17:00:00,0.000000,35.600000,26.000000,9.000000,323.000000,91.770000,85.650000,854.280000,8.680000,136.970000,32.550000 +14,2023-08-16 18:00:00,0.000000,35.600000,26.000000,9.000000,323.000000,92.460000,86.120000,855.220000,9.570000,137.600000,34.800000 +14,2023-08-16 19:00:00,0.000000,35.600000,26.000000,9.000000,323.000000,92.990000,86.590000,856.160000,10.310000,138.230000,36.580000 +14,2023-08-16 20:00:00,0.000000,35.600000,26.000000,9.000000,323.000000,93.380000,87.060000,857.090000,10.890000,138.860000,37.980000 +14,2023-08-16 21:00:00,0.000000,35.600000,26.000000,9.000000,323.000000,93.680000,87.060000,857.090000,11.350000,138.860000,39.020000 +14,2023-08-16 22:00:00,0.000000,35.600000,26.000000,9.000000,323.000000,93.910000,87.060000,857.090000,11.710000,138.860000,39.820000 +14,2023-08-16 23:00:00,0.000000,25.000000,52.000000,4.000000,258.000000,93.280000,87.060000,857.090000,8.340000,138.860000,31.830000 +14,2023-08-17 00:00:00,0.000000,25.000000,52.000000,4.000000,258.000000,92.730000,87.060000,857.090000,7.730000,138.860000,30.250000 +14,2023-08-17 01:00:00,0.000000,25.000000,52.000000,4.000000,258.000000,92.270000,87.060000,857.090000,7.240000,138.860000,28.940000 +14,2023-08-17 02:00:00,0.000000,25.000000,52.000000,4.000000,258.000000,91.870000,87.060000,857.090000,6.840000,138.860000,27.840000 +14,2023-08-17 03:00:00,0.000000,25.000000,52.000000,4.000000,258.000000,91.530000,87.060000,857.090000,6.520000,138.860000,26.930000 +14,2023-08-17 04:00:00,0.000000,25.000000,52.000000,4.000000,258.000000,91.230000,87.060000,857.090000,6.250000,138.860000,26.160000 +14,2023-08-17 05:00:00,0.000000,21.700000,70.000000,6.000000,274.000000,90.390000,87.060000,857.090000,6.130000,138.860000,25.820000 +14,2023-08-17 06:00:00,0.000000,21.700000,70.000000,6.000000,274.000000,89.680000,87.150000,857.290000,5.540000,138.980000,24.060000 +14,2023-08-17 07:00:00,0.000000,21.700000,70.000000,6.000000,274.000000,89.080000,87.240000,857.480000,5.080000,139.100000,22.640000 +14,2023-08-17 08:00:00,0.000000,21.700000,70.000000,6.000000,274.000000,88.570000,87.330000,857.680000,4.720000,139.230000,21.500000 +14,2023-08-17 09:00:00,0.000000,21.700000,70.000000,6.000000,274.000000,88.140000,87.430000,857.870000,4.440000,139.350000,20.580000 +14,2023-08-17 10:00:00,0.000000,21.700000,70.000000,6.000000,274.000000,87.770000,87.520000,858.070000,4.210000,139.470000,19.820000 +14,2023-08-17 11:00:00,0.000000,31.700000,40.000000,6.000000,324.000000,88.410000,87.840000,858.770000,4.610000,139.910000,21.180000 +14,2023-08-17 12:00:00,0.000000,31.700000,40.000000,6.000000,324.000000,88.920000,88.170000,859.480000,4.960000,140.350000,22.340000 +14,2023-08-17 13:00:00,0.000000,31.700000,40.000000,6.000000,324.000000,89.340000,88.500000,860.180000,5.270000,140.790000,23.340000 +14,2023-08-17 14:00:00,0.000000,31.700000,40.000000,6.000000,324.000000,89.680000,88.830000,860.880000,5.530000,141.230000,24.170000 +14,2023-08-17 15:00:00,0.000000,31.700000,40.000000,6.000000,324.000000,89.950000,89.160000,861.590000,5.750000,141.670000,24.870000 +14,2023-08-17 16:00:00,0.000000,31.700000,40.000000,6.000000,324.000000,90.170000,89.490000,862.290000,5.940000,142.100000,25.460000 +14,2023-08-17 17:00:00,0.000000,33.400000,32.000000,10.000000,340.000000,90.810000,89.900000,863.170000,7.960000,142.650000,31.120000 +14,2023-08-17 18:00:00,0.000000,33.400000,32.000000,10.000000,340.000000,91.300000,90.300000,864.050000,8.540000,143.200000,32.660000 +14,2023-08-17 19:00:00,0.000000,33.400000,32.000000,10.000000,340.000000,91.680000,90.710000,864.920000,9.010000,143.740000,33.890000 +14,2023-08-17 20:00:00,0.000000,33.400000,32.000000,10.000000,340.000000,91.980000,91.120000,865.800000,9.400000,144.280000,34.880000 +14,2023-08-17 21:00:00,0.000000,33.400000,32.000000,10.000000,340.000000,92.200000,91.120000,865.800000,9.700000,144.280000,35.630000 +14,2023-08-17 22:00:00,0.000000,33.400000,32.000000,10.000000,340.000000,92.380000,91.120000,865.800000,9.950000,144.280000,36.210000 +14,2023-08-17 23:00:00,0.000000,24.300000,56.000000,4.000000,273.000000,91.840000,91.120000,865.800000,6.820000,144.280000,28.120000 +14,2023-08-18 00:00:00,0.000000,24.300000,56.000000,4.000000,273.000000,91.390000,91.120000,865.800000,6.390000,144.280000,26.890000 +14,2023-08-18 01:00:00,0.000000,24.300000,56.000000,4.000000,273.000000,90.990000,91.120000,865.800000,6.040000,144.280000,25.870000 +14,2023-08-18 02:00:00,0.000000,24.300000,56.000000,4.000000,273.000000,90.660000,91.120000,865.800000,5.760000,144.280000,25.020000 +14,2023-08-18 03:00:00,0.000000,24.300000,56.000000,4.000000,273.000000,90.370000,91.120000,865.800000,5.520000,144.280000,24.310000 +14,2023-08-18 04:00:00,0.000000,24.300000,56.000000,4.000000,273.000000,90.120000,91.120000,865.800000,5.330000,144.280000,23.710000 +14,2023-08-18 05:00:00,0.000000,20.500000,69.000000,7.000000,263.000000,89.460000,91.120000,865.800000,5.650000,144.280000,24.690000 +14,2023-08-18 06:00:00,0.000000,20.500000,69.000000,7.000000,263.000000,88.910000,91.250000,866.080000,5.210000,144.450000,23.350000 +14,2023-08-18 07:00:00,0.000000,20.500000,69.000000,7.000000,263.000000,88.440000,91.380000,866.360000,4.870000,144.630000,22.260000 +14,2023-08-18 08:00:00,0.000000,20.500000,69.000000,7.000000,263.000000,88.030000,91.510000,866.630000,4.600000,144.800000,21.380000 +14,2023-08-18 09:00:00,0.000000,20.500000,69.000000,7.000000,263.000000,87.690000,91.640000,866.910000,4.380000,144.970000,20.640000 +14,2023-08-18 10:00:00,0.000000,20.500000,69.000000,7.000000,263.000000,87.400000,91.770000,867.190000,4.200000,145.140000,20.040000 +14,2023-08-18 11:00:00,0.000000,31.200000,40.000000,7.000000,328.000000,88.090000,92.240000,868.200000,4.630000,145.760000,21.540000 +14,2023-08-18 12:00:00,0.000000,31.200000,40.000000,7.000000,328.000000,88.650000,92.710000,869.210000,5.020000,146.380000,22.840000 +14,2023-08-18 13:00:00,0.000000,31.200000,40.000000,7.000000,328.000000,89.110000,93.180000,870.230000,5.360000,147.000000,23.950000 +14,2023-08-18 14:00:00,0.000000,31.200000,40.000000,7.000000,328.000000,89.470000,93.650000,871.240000,5.650000,147.620000,24.890000 +14,2023-08-18 15:00:00,0.000000,31.200000,40.000000,7.000000,328.000000,89.770000,94.120000,872.250000,5.900000,148.240000,25.670000 +14,2023-08-18 16:00:00,0.000000,31.200000,40.000000,7.000000,328.000000,90.020000,94.590000,873.260000,6.110000,148.860000,26.330000 +14,2023-08-18 17:00:00,0.000000,32.200000,35.000000,9.000000,17.000000,90.470000,95.120000,874.420000,7.210000,149.570000,29.530000 +15,2023-08-03 00:00:00,0.000000,15.900000,62.000000,6.000000,97.000000,86.000000,118.400000,826.100000,3.270000,174.330000,17.540000 +15,2023-08-03 01:00:00,0.000000,15.900000,62.000000,6.000000,97.000000,86.000000,118.400000,826.100000,3.270000,174.330000,17.540000 +15,2023-08-03 02:00:00,0.000000,13.600000,68.000000,5.000000,101.000000,85.870000,118.400000,826.100000,3.050000,174.330000,16.660000 +15,2023-08-03 03:00:00,0.000000,13.600000,68.000000,5.000000,101.000000,85.750000,118.400000,826.100000,3.000000,174.330000,16.450000 +15,2023-08-03 04:00:00,0.000000,13.600000,68.000000,5.000000,101.000000,85.640000,118.400000,826.100000,2.960000,174.330000,16.270000 +15,2023-08-03 05:00:00,0.000000,12.900000,71.000000,5.000000,90.000000,85.470000,118.470000,826.280000,2.890000,174.420000,15.990000 +15,2023-08-03 06:00:00,0.000000,12.900000,71.000000,5.000000,90.000000,85.330000,118.530000,826.450000,2.830000,174.500000,15.740000 +15,2023-08-03 07:00:00,0.000000,12.900000,71.000000,5.000000,90.000000,85.190000,118.600000,826.630000,2.780000,174.580000,15.530000 +15,2023-08-03 08:00:00,0.000000,16.600000,58.000000,7.000000,89.000000,85.220000,118.720000,826.960000,3.090000,174.730000,16.800000 +15,2023-08-03 09:00:00,0.000000,16.600000,58.000000,7.000000,89.000000,85.240000,118.840000,827.280000,3.100000,174.870000,16.840000 +15,2023-08-03 10:00:00,0.000000,16.600000,58.000000,7.000000,89.000000,85.260000,118.960000,827.610000,3.110000,175.020000,16.880000 +15,2023-08-03 11:00:00,0.000000,21.000000,45.000000,9.000000,83.000000,85.690000,119.160000,828.170000,3.650000,175.280000,19.010000 +15,2023-08-03 12:00:00,0.000000,21.000000,45.000000,9.000000,83.000000,86.060000,119.370000,828.730000,3.840000,175.530000,19.750000 +15,2023-08-03 13:00:00,0.000000,21.000000,45.000000,9.000000,83.000000,86.380000,119.580000,829.290000,4.020000,175.790000,20.420000 +15,2023-08-03 14:00:00,0.000000,24.000000,39.000000,13.000000,55.000000,86.990000,119.860000,830.030000,5.360000,176.130000,25.050000 +15,2023-08-03 15:00:00,0.000000,24.000000,39.000000,13.000000,55.000000,87.500000,120.130000,830.780000,5.760000,176.470000,26.350000 +15,2023-08-03 16:00:00,0.000000,24.000000,39.000000,13.000000,55.000000,87.920000,120.410000,831.530000,6.120000,176.810000,27.480000 +15,2023-08-03 17:00:00,1.940000,20.700000,76.000000,8.000000,52.000000,59.180000,97.440000,831.770000,0.580000,150.740000,3.580000 +15,2023-08-03 18:00:00,0.000000,20.700000,76.000000,8.000000,52.000000,60.980000,97.530000,832.010000,0.650000,150.850000,4.060000 +15,2023-08-03 19:00:00,0.000000,20.700000,76.000000,8.000000,52.000000,62.670000,97.620000,832.250000,0.710000,150.970000,4.480000 +15,2023-08-03 20:00:00,0.390000,20.100000,67.000000,4.000000,63.000000,59.820000,94.180000,832.570000,0.490000,146.830000,2.910000 +15,2023-08-03 21:00:00,0.000000,20.100000,67.000000,4.000000,63.000000,61.700000,94.300000,832.880000,0.550000,146.990000,3.340000 +15,2023-08-03 22:00:00,0.000000,20.100000,67.000000,4.000000,63.000000,63.470000,94.300000,832.880000,0.600000,146.990000,3.700000 +15,2023-08-03 23:00:00,0.000000,15.300000,86.000000,1.000000,281.000000,63.930000,94.300000,832.880000,0.530000,146.990000,3.170000 +15,2023-08-04 00:00:00,0.000000,15.300000,86.000000,1.000000,281.000000,64.380000,94.300000,832.880000,0.540000,146.990000,3.250000 +15,2023-08-04 01:00:00,0.000000,15.300000,86.000000,1.000000,281.000000,64.820000,94.300000,832.880000,0.550000,146.990000,3.320000 +15,2023-08-04 02:00:00,0.000000,13.300000,93.000000,4.000000,248.000000,65.060000,94.300000,832.880000,0.650000,146.990000,4.000000 +15,2023-08-04 03:00:00,0.000000,13.300000,93.000000,4.000000,248.000000,65.300000,94.300000,832.880000,0.650000,146.990000,4.040000 +15,2023-08-04 04:00:00,0.000000,13.300000,93.000000,4.000000,248.000000,65.530000,94.300000,832.880000,0.660000,146.990000,4.080000 +15,2023-08-04 05:00:00,0.000000,11.700000,98.000000,5.000000,246.000000,65.580000,94.300000,832.890000,0.690000,146.990000,4.310000 +15,2023-08-04 06:00:00,0.000000,11.700000,98.000000,5.000000,246.000000,65.630000,94.300000,832.900000,0.690000,147.000000,4.320000 +15,2023-08-04 07:00:00,0.000000,11.700000,98.000000,5.000000,246.000000,65.680000,94.300000,832.910000,0.700000,147.000000,4.330000 +15,2023-08-04 08:00:00,0.000000,17.400000,75.000000,5.000000,271.000000,66.770000,94.360000,833.090000,0.720000,147.070000,4.520000 +15,2023-08-04 09:00:00,0.000000,17.400000,75.000000,5.000000,271.000000,67.810000,94.410000,833.260000,0.750000,147.140000,4.690000 +15,2023-08-04 10:00:00,0.000000,17.400000,75.000000,5.000000,271.000000,68.780000,94.460000,833.430000,0.770000,147.210000,4.840000 +15,2023-08-04 11:00:00,0.000000,21.900000,55.000000,7.000000,319.000000,70.800000,94.590000,833.840000,0.910000,147.380000,5.720000 +15,2023-08-04 12:00:00,0.000000,21.900000,55.000000,7.000000,319.000000,72.610000,94.720000,834.260000,0.970000,147.550000,6.090000 +15,2023-08-04 13:00:00,0.000000,21.900000,55.000000,7.000000,319.000000,74.240000,94.840000,834.670000,1.050000,147.720000,6.520000 +15,2023-08-04 14:00:00,0.000000,24.000000,45.000000,9.000000,297.000000,76.310000,95.020000,835.240000,1.300000,147.960000,7.970000 +15,2023-08-04 15:00:00,0.000000,24.000000,45.000000,9.000000,297.000000,78.110000,95.200000,835.810000,1.490000,148.190000,8.980000 +15,2023-08-04 16:00:00,0.000000,24.000000,45.000000,9.000000,297.000000,79.670000,95.370000,836.380000,1.730000,148.430000,10.150000 +15,2023-08-04 17:00:00,0.010000,26.300000,36.000000,10.000000,335.000000,81.570000,95.610000,837.150000,2.240000,148.740000,12.540000 +15,2023-08-04 18:00:00,0.000000,26.300000,36.000000,10.000000,335.000000,83.170000,95.840000,837.910000,2.730000,149.060000,14.650000 +15,2023-08-04 19:00:00,0.000000,26.300000,36.000000,10.000000,335.000000,84.510000,96.080000,838.670000,3.260000,149.370000,16.770000 +15,2023-08-04 20:00:00,0.000000,23.900000,44.000000,8.000000,339.000000,85.180000,96.250000,839.250000,3.230000,149.610000,16.670000 +15,2023-08-04 21:00:00,0.000000,23.900000,44.000000,8.000000,339.000000,85.750000,96.430000,839.830000,3.500000,149.850000,17.700000 +15,2023-08-04 22:00:00,0.000000,23.900000,44.000000,8.000000,339.000000,86.240000,96.430000,839.830000,3.750000,149.850000,18.630000 +15,2023-08-04 23:00:00,0.000000,19.300000,65.000000,8.000000,331.000000,86.240000,96.430000,839.830000,3.740000,149.850000,18.620000 +15,2023-08-05 00:00:00,0.000000,19.300000,65.000000,8.000000,331.000000,86.230000,96.430000,839.830000,3.740000,149.850000,18.610000 +15,2023-08-05 01:00:00,0.000000,19.300000,65.000000,8.000000,331.000000,86.230000,96.430000,839.830000,3.740000,149.850000,18.600000 +15,2023-08-05 02:00:00,0.000000,17.200000,81.000000,7.000000,284.000000,85.720000,96.430000,839.830000,3.310000,149.850000,17.000000 +15,2023-08-05 03:00:00,0.000000,17.200000,81.000000,7.000000,284.000000,85.290000,96.430000,839.830000,3.120000,149.850000,16.250000 +15,2023-08-05 04:00:00,0.000000,17.200000,81.000000,7.000000,284.000000,84.910000,96.430000,839.830000,2.960000,149.850000,15.620000 +15,2023-08-05 05:00:00,0.000000,15.600000,92.000000,7.000000,296.000000,84.020000,96.450000,839.870000,2.620000,149.870000,14.240000 +15,2023-08-05 06:00:00,0.000000,15.600000,92.000000,7.000000,296.000000,83.260000,96.470000,839.910000,2.370000,149.900000,13.170000 +15,2023-08-05 07:00:00,0.000000,15.600000,92.000000,7.000000,296.000000,82.600000,96.490000,839.940000,2.180000,149.920000,12.330000 +15,2023-08-05 08:00:00,0.000000,19.600000,58.000000,8.000000,318.000000,82.980000,96.610000,840.200000,2.410000,150.080000,13.320000 +15,2023-08-05 09:00:00,0.000000,19.600000,58.000000,8.000000,318.000000,83.310000,96.730000,840.450000,2.510000,150.240000,13.780000 +15,2023-08-05 10:00:00,0.000000,19.600000,58.000000,8.000000,318.000000,83.610000,96.850000,840.710000,2.610000,150.390000,14.210000 +15,2023-08-05 11:00:00,0.000000,24.200000,32.000000,10.000000,340.000000,84.880000,97.120000,841.250000,3.430000,150.730000,17.480000 +15,2023-08-05 12:00:00,0.000000,24.200000,32.000000,10.000000,340.000000,85.960000,97.380000,841.800000,3.980000,151.070000,19.520000 +15,2023-08-05 13:00:00,0.000000,24.200000,32.000000,10.000000,340.000000,86.860000,97.640000,842.340000,4.520000,151.410000,21.410000 +15,2023-08-05 14:00:00,0.000000,25.900000,25.000000,12.000000,353.000000,88.030000,97.970000,843.010000,5.910000,151.820000,25.880000 +15,2023-08-05 15:00:00,0.000000,25.900000,25.000000,12.000000,353.000000,88.990000,98.290000,843.670000,6.790000,152.240000,28.480000 +15,2023-08-05 16:00:00,0.000000,25.900000,25.000000,12.000000,353.000000,89.780000,98.610000,844.340000,7.600000,152.650000,30.760000 +15,2023-08-05 17:00:00,0.000000,25.500000,26.000000,12.000000,7.000000,90.350000,98.920000,844.980000,8.250000,153.040000,32.530000 +15,2023-08-05 18:00:00,0.000000,25.500000,26.000000,12.000000,7.000000,90.820000,99.230000,845.620000,8.820000,153.440000,34.040000 +15,2023-08-05 19:00:00,0.000000,25.500000,26.000000,12.000000,7.000000,91.210000,99.540000,846.260000,9.320000,153.840000,35.320000 +15,2023-08-05 20:00:00,0.000000,22.800000,37.000000,8.000000,19.000000,91.210000,99.760000,846.730000,7.620000,154.120000,30.900000 +15,2023-08-05 21:00:00,0.000000,22.800000,37.000000,8.000000,19.000000,91.210000,99.980000,847.190000,7.620000,154.410000,30.910000 +15,2023-08-05 22:00:00,0.000000,22.800000,37.000000,8.000000,19.000000,91.210000,99.980000,847.190000,7.620000,154.410000,30.910000 +15,2023-08-05 23:00:00,0.000000,17.300000,58.000000,3.000000,321.000000,90.760000,99.980000,847.190000,5.550000,154.410000,24.900000 +15,2023-08-06 00:00:00,0.000000,17.300000,58.000000,3.000000,321.000000,90.360000,99.980000,847.190000,5.250000,154.410000,23.930000 +15,2023-08-06 01:00:00,0.000000,17.300000,58.000000,3.000000,321.000000,90.010000,99.980000,847.190000,4.990000,154.410000,23.090000 +15,2023-08-06 02:00:00,0.000000,14.200000,72.000000,7.000000,318.000000,89.290000,99.980000,847.190000,5.500000,154.410000,24.740000 +15,2023-08-06 03:00:00,0.000000,14.200000,72.000000,7.000000,318.000000,88.660000,99.980000,847.190000,5.030000,154.410000,23.220000 +15,2023-08-06 04:00:00,0.000000,14.200000,72.000000,7.000000,318.000000,88.110000,99.980000,847.190000,4.650000,154.410000,21.960000 +15,2023-08-06 05:00:00,0.000000,13.100000,83.000000,7.000000,330.000000,87.280000,100.020000,847.270000,4.130000,154.450000,20.170000 +15,2023-08-06 06:00:00,0.000000,13.100000,83.000000,7.000000,330.000000,86.560000,100.050000,847.360000,3.720000,154.500000,18.710000 +15,2023-08-06 07:00:00,0.000000,13.100000,83.000000,7.000000,330.000000,85.930000,100.090000,847.440000,3.410000,154.540000,17.530000 +15,2023-08-06 08:00:00,0.000000,18.000000,66.000000,7.000000,357.000000,85.910000,100.180000,847.670000,3.400000,154.660000,17.510000 +15,2023-08-06 09:00:00,0.000000,18.000000,66.000000,7.000000,357.000000,85.900000,100.270000,847.910000,3.390000,154.780000,17.490000 +15,2023-08-06 10:00:00,0.000000,18.000000,66.000000,7.000000,357.000000,85.890000,100.360000,848.140000,3.390000,154.900000,17.470000 +15,2023-08-06 11:00:00,0.000000,22.700000,42.000000,12.000000,13.000000,86.410000,100.580000,848.670000,4.690000,155.180000,22.140000 +15,2023-08-06 12:00:00,0.000000,22.700000,42.000000,12.000000,13.000000,86.850000,100.790000,849.190000,4.990000,155.450000,23.150000 +15,2023-08-06 13:00:00,0.000000,22.700000,42.000000,12.000000,13.000000,87.220000,101.000000,849.720000,5.270000,155.730000,24.040000 +15,2023-08-06 14:00:00,0.000000,23.600000,34.000000,16.000000,28.000000,87.870000,101.260000,850.350000,7.070000,156.060000,29.480000 +15,2023-08-06 15:00:00,0.000000,23.600000,34.000000,16.000000,28.000000,88.410000,101.510000,850.990000,7.640000,156.390000,31.070000 +15,2023-08-06 16:00:00,0.000000,23.600000,34.000000,16.000000,28.000000,88.850000,101.770000,851.620000,8.140000,156.710000,32.440000 +15,2023-08-06 17:00:00,0.000000,22.700000,35.000000,17.000000,40.000000,89.150000,102.000000,852.210000,8.930000,157.020000,34.520000 +15,2023-08-06 18:00:00,0.000000,22.700000,35.000000,17.000000,40.000000,89.400000,102.240000,852.810000,9.250000,157.330000,35.350000 +15,2023-08-06 19:00:00,0.000000,22.700000,35.000000,17.000000,40.000000,89.600000,102.480000,853.400000,9.520000,157.630000,36.050000 +15,2023-08-06 20:00:00,0.000000,19.800000,42.000000,12.000000,48.000000,89.600000,102.660000,853.840000,7.400000,157.860000,30.500000 +15,2023-08-06 21:00:00,0.000000,19.800000,42.000000,12.000000,48.000000,89.600000,102.830000,854.280000,7.400000,158.090000,30.510000 +15,2023-08-06 22:00:00,0.000000,19.800000,42.000000,12.000000,48.000000,89.600000,102.830000,854.280000,7.400000,158.090000,30.510000 +15,2023-08-06 23:00:00,0.000000,14.500000,61.000000,6.000000,25.000000,89.210000,102.830000,854.280000,5.180000,158.090000,23.850000 +15,2023-08-07 00:00:00,0.000000,14.500000,61.000000,6.000000,25.000000,88.870000,102.830000,854.280000,4.930000,158.090000,23.040000 +15,2023-08-07 01:00:00,0.000000,14.500000,61.000000,6.000000,25.000000,88.570000,102.830000,854.280000,4.720000,158.090000,22.340000 +15,2023-08-07 02:00:00,0.000000,11.800000,75.000000,5.000000,20.000000,87.980000,102.830000,854.280000,4.120000,158.090000,20.280000 +15,2023-08-07 03:00:00,0.000000,11.800000,75.000000,5.000000,20.000000,87.460000,102.830000,854.280000,3.830000,158.090000,19.210000 +15,2023-08-07 04:00:00,0.000000,11.800000,75.000000,5.000000,20.000000,86.990000,102.830000,854.280000,3.580000,158.090000,18.300000 +15,2023-08-07 05:00:00,0.000000,10.400000,83.000000,2.000000,54.000000,86.410000,102.860000,854.350000,2.840000,158.130000,15.370000 +15,2023-08-07 06:00:00,0.000000,10.400000,83.000000,2.000000,54.000000,85.890000,102.890000,854.410000,2.630000,158.170000,14.530000 +15,2023-08-07 07:00:00,0.000000,10.400000,83.000000,2.000000,54.000000,85.420000,102.920000,854.480000,2.470000,158.210000,13.810000 +15,2023-08-07 08:00:00,0.000000,15.700000,58.000000,4.000000,110.000000,85.420000,103.030000,854.700000,2.730000,158.340000,14.930000 +15,2023-08-07 09:00:00,0.000000,15.700000,58.000000,4.000000,110.000000,85.420000,103.130000,854.930000,2.730000,158.470000,14.930000 +15,2023-08-07 10:00:00,0.000000,15.700000,58.000000,4.000000,110.000000,85.420000,103.240000,855.160000,2.730000,158.610000,14.940000 +15,2023-08-07 11:00:00,0.000000,22.100000,33.000000,10.000000,104.000000,86.250000,103.490000,855.700000,4.150000,158.920000,20.410000 +15,2023-08-07 12:00:00,0.000000,22.100000,33.000000,10.000000,104.000000,86.960000,103.730000,856.240000,4.590000,159.240000,21.940000 +15,2023-08-07 13:00:00,0.000000,22.100000,33.000000,10.000000,104.000000,87.560000,103.980000,856.780000,5.000000,159.550000,23.330000 +15,2023-08-07 14:00:00,0.000000,23.400000,29.000000,15.000000,74.000000,88.330000,104.270000,857.400000,7.180000,159.920000,29.970000 +15,2023-08-07 15:00:00,0.000000,23.400000,29.000000,15.000000,74.000000,88.960000,104.550000,858.020000,7.860000,160.280000,31.870000 +15,2023-08-07 16:00:00,0.000000,23.400000,29.000000,15.000000,74.000000,89.480000,104.840000,858.640000,8.470000,160.640000,33.520000 +15,2023-08-07 17:00:00,0.000000,22.500000,30.000000,20.000000,66.000000,89.860000,105.100000,859.220000,11.500000,160.980000,40.960000 +15,2023-08-07 18:00:00,0.000000,22.500000,30.000000,20.000000,66.000000,90.160000,105.370000,859.800000,12.010000,161.320000,42.150000 +15,2023-08-07 19:00:00,0.000000,22.500000,30.000000,20.000000,66.000000,90.410000,105.640000,860.380000,12.450000,161.650000,43.150000 +15,2023-08-07 20:00:00,0.000000,19.100000,34.000000,14.000000,67.000000,90.410000,105.840000,860.820000,9.200000,161.910000,35.470000 +15,2023-08-07 21:00:00,0.000000,19.100000,34.000000,14.000000,67.000000,90.410000,106.040000,861.260000,9.200000,162.170000,35.490000 +15,2023-08-07 22:00:00,0.000000,19.100000,34.000000,14.000000,67.000000,90.410000,106.040000,861.260000,9.200000,162.170000,35.490000 +15,2023-08-07 23:00:00,0.000000,13.500000,50.000000,6.000000,75.000000,90.160000,106.040000,861.260000,5.930000,162.170000,26.390000 +15,2023-08-08 00:00:00,0.000000,13.500000,50.000000,6.000000,75.000000,89.930000,106.040000,861.260000,5.740000,162.170000,25.800000 +15,2023-08-08 01:00:00,0.000000,13.500000,50.000000,6.000000,75.000000,89.720000,106.040000,861.260000,5.570000,162.170000,25.270000 +15,2023-08-08 02:00:00,0.000000,11.100000,61.000000,6.000000,116.000000,89.310000,106.040000,861.260000,5.250000,162.170000,24.250000 +15,2023-08-08 03:00:00,0.000000,11.100000,61.000000,6.000000,116.000000,88.940000,106.040000,861.260000,4.980000,162.170000,23.360000 +15,2023-08-08 04:00:00,0.000000,11.100000,61.000000,6.000000,116.000000,88.610000,106.040000,861.260000,4.750000,162.170000,22.590000 +15,2023-08-08 05:00:00,0.000000,10.600000,61.000000,7.000000,141.000000,88.300000,106.100000,861.390000,4.780000,162.240000,22.690000 +15,2023-08-08 06:00:00,0.000000,10.600000,61.000000,7.000000,141.000000,88.020000,106.160000,861.520000,4.590000,162.320000,22.060000 +15,2023-08-08 07:00:00,0.000000,10.600000,61.000000,7.000000,141.000000,87.770000,106.220000,861.650000,4.430000,162.390000,21.500000 +15,2023-08-08 08:00:00,0.000000,16.000000,45.000000,9.000000,144.000000,87.770000,106.340000,861.910000,4.900000,162.540000,23.110000 +15,2023-08-08 09:00:00,0.000000,16.000000,45.000000,9.000000,144.000000,87.770000,106.450000,862.170000,4.900000,162.690000,23.110000 +15,2023-08-08 10:00:00,0.000000,16.000000,45.000000,9.000000,144.000000,87.770000,106.570000,862.430000,4.900000,162.840000,23.120000 +15,2023-08-08 11:00:00,0.000000,22.600000,35.000000,11.000000,135.000000,88.210000,106.780000,862.900000,5.770000,163.100000,25.930000 +15,2023-08-08 12:00:00,0.000000,22.600000,35.000000,11.000000,135.000000,88.580000,106.990000,863.360000,6.090000,163.360000,26.910000 +15,2023-08-08 13:00:00,0.000000,22.600000,35.000000,11.000000,135.000000,88.900000,107.200000,863.830000,6.370000,163.630000,27.770000 +15,2023-08-08 14:00:00,0.000000,25.100000,30.000000,13.000000,107.000000,89.460000,107.460000,864.410000,7.630000,163.960000,31.410000 +15,2023-08-08 15:00:00,0.000000,25.100000,30.000000,13.000000,107.000000,89.920000,107.720000,864.990000,8.150000,164.290000,32.840000 +15,2023-08-08 16:00:00,0.000000,25.100000,30.000000,13.000000,107.000000,90.290000,107.980000,865.570000,8.600000,164.620000,34.050000 +15,2023-08-08 17:00:00,0.000000,25.400000,29.000000,16.000000,95.000000,90.670000,108.250000,866.170000,10.550000,164.960000,38.960000 +15,2023-08-08 18:00:00,0.000000,25.400000,29.000000,16.000000,95.000000,90.970000,108.520000,866.770000,11.020000,165.300000,40.080000 +15,2023-08-08 19:00:00,0.000000,25.400000,29.000000,16.000000,95.000000,91.210000,108.790000,867.370000,11.410000,165.640000,41.000000 +15,2023-08-08 20:00:00,0.000000,22.900000,34.000000,14.000000,89.000000,91.210000,109.010000,867.850000,10.310000,165.910000,38.430000 +15,2023-08-08 21:00:00,0.000000,22.900000,34.000000,14.000000,89.000000,91.210000,109.220000,868.330000,10.310000,166.190000,38.440000 +15,2023-08-08 22:00:00,0.000000,22.900000,34.000000,14.000000,89.000000,91.210000,109.220000,868.330000,10.310000,166.190000,38.440000 +15,2023-08-08 23:00:00,0.000000,19.000000,44.000000,11.000000,103.000000,91.030000,109.220000,868.330000,8.640000,166.190000,34.230000 +15,2023-08-09 00:00:00,0.000000,19.000000,44.000000,11.000000,103.000000,90.870000,109.220000,868.330000,8.450000,166.190000,33.720000 +15,2023-08-09 01:00:00,0.000000,19.000000,44.000000,11.000000,103.000000,90.730000,109.220000,868.330000,8.280000,166.190000,33.280000 +15,2023-08-09 02:00:00,0.000000,17.100000,52.000000,10.000000,124.000000,90.400000,109.220000,868.330000,7.510000,166.190000,31.180000 +15,2023-08-09 03:00:00,0.000000,17.100000,52.000000,10.000000,124.000000,90.120000,109.220000,868.330000,7.210000,166.190000,30.330000 +15,2023-08-09 04:00:00,0.000000,17.100000,52.000000,10.000000,124.000000,89.860000,109.220000,868.330000,6.950000,166.190000,29.590000 +15,2023-08-09 05:00:00,0.000000,15.000000,63.000000,8.000000,129.000000,89.380000,109.290000,868.510000,5.870000,166.270000,26.350000 +15,2023-08-09 06:00:00,0.000000,15.000000,63.000000,8.000000,129.000000,88.960000,109.360000,868.680000,5.520000,166.360000,25.270000 +15,2023-08-09 07:00:00,0.000000,15.000000,63.000000,8.000000,129.000000,88.590000,109.430000,868.850000,5.240000,166.450000,24.350000 +15,2023-08-09 08:00:00,0.000000,18.200000,55.000000,10.000000,127.000000,88.480000,109.530000,869.110000,5.700000,166.580000,25.840000 +15,2023-08-09 09:00:00,0.000000,18.200000,55.000000,10.000000,127.000000,88.380000,109.630000,869.370000,5.620000,166.710000,25.600000 +15,2023-08-09 10:00:00,0.000000,18.200000,55.000000,10.000000,127.000000,88.300000,109.730000,869.630000,5.550000,166.830000,25.390000 +15,2023-08-09 11:00:00,0.000000,22.300000,43.000000,12.000000,138.000000,88.400000,109.900000,870.050000,6.240000,167.050000,27.510000 +15,2023-08-09 12:00:00,0.000000,22.300000,43.000000,12.000000,138.000000,88.490000,110.060000,870.470000,6.320000,167.260000,27.760000 +15,2023-08-09 13:00:00,0.000000,22.300000,43.000000,12.000000,138.000000,88.570000,110.230000,870.900000,6.380000,167.470000,27.970000 +15,2023-08-09 14:00:00,0.000000,24.400000,35.000000,12.000000,131.000000,88.960000,110.440000,871.440000,6.750000,167.740000,29.070000 +15,2023-08-09 15:00:00,0.000000,24.400000,35.000000,12.000000,131.000000,89.280000,110.660000,871.990000,7.080000,168.010000,30.020000 +15,2023-08-09 16:00:00,0.000000,24.400000,35.000000,12.000000,131.000000,89.550000,110.870000,872.530000,7.350000,168.280000,30.820000 +15,2023-08-09 17:00:00,0.000000,24.800000,30.000000,14.000000,131.000000,89.990000,111.110000,873.140000,8.660000,168.580000,34.380000 +15,2023-08-09 18:00:00,0.000000,24.800000,30.000000,14.000000,131.000000,90.340000,111.340000,873.740000,9.110000,168.880000,35.560000 +15,2023-08-09 19:00:00,0.000000,24.800000,30.000000,14.000000,131.000000,90.630000,111.580000,874.340000,9.490000,169.180000,36.560000 +15,2023-08-09 20:00:00,0.000000,22.600000,33.000000,13.000000,125.000000,90.680000,111.780000,874.850000,9.090000,169.440000,35.540000 +15,2023-08-09 21:00:00,0.000000,22.600000,33.000000,13.000000,125.000000,90.720000,111.980000,875.350000,9.140000,169.690000,35.690000 +15,2023-08-09 22:00:00,0.000000,22.600000,33.000000,13.000000,125.000000,90.750000,111.980000,875.350000,9.190000,169.690000,35.800000 +15,2023-08-09 23:00:00,0.000000,19.000000,43.000000,12.000000,120.000000,90.650000,111.980000,875.350000,8.610000,169.690000,34.300000 +15,2023-08-10 00:00:00,0.000000,19.000000,43.000000,12.000000,120.000000,90.560000,111.980000,875.350000,8.500000,169.690000,34.010000 +15,2023-08-10 01:00:00,0.000000,19.000000,43.000000,12.000000,120.000000,90.480000,111.980000,875.350000,8.410000,169.690000,33.760000 +15,2023-08-10 02:00:00,0.000000,17.400000,46.000000,12.000000,122.000000,90.320000,111.980000,875.350000,8.210000,169.690000,33.240000 +15,2023-08-10 03:00:00,0.000000,17.400000,46.000000,12.000000,122.000000,90.180000,111.980000,875.350000,8.040000,169.690000,32.780000 +15,2023-08-10 04:00:00,0.000000,17.400000,46.000000,12.000000,122.000000,90.050000,111.980000,875.350000,7.900000,169.690000,32.390000 +15,2023-08-10 05:00:00,0.000000,16.000000,52.000000,11.000000,121.000000,89.790000,112.080000,875.590000,7.230000,169.820000,30.540000 +15,2023-08-10 06:00:00,0.000000,16.000000,52.000000,11.000000,121.000000,89.560000,112.190000,875.830000,7.000000,169.950000,29.870000 +15,2023-08-10 07:00:00,0.000000,16.000000,52.000000,11.000000,121.000000,89.360000,112.290000,876.070000,6.800000,170.080000,29.290000 +15,2023-08-10 08:00:00,0.000000,18.800000,46.000000,17.000000,134.000000,89.360000,112.430000,876.390000,9.200000,170.260000,35.860000 +15,2023-08-10 09:00:00,0.000000,18.800000,46.000000,17.000000,134.000000,89.360000,112.570000,876.710000,9.200000,170.440000,35.860000 +15,2023-08-10 10:00:00,0.000000,18.800000,46.000000,17.000000,134.000000,89.360000,112.710000,877.030000,9.200000,170.610000,35.870000 +15,2023-08-10 11:00:00,0.000000,23.100000,37.000000,17.000000,134.000000,89.510000,112.930000,877.520000,9.400000,170.880000,36.410000 +15,2023-08-10 12:00:00,0.000000,23.100000,37.000000,17.000000,134.000000,89.640000,113.140000,878.010000,9.580000,171.150000,36.850000 +15,2023-08-10 13:00:00,0.000000,23.100000,37.000000,17.000000,134.000000,89.740000,113.360000,878.490000,9.720000,171.420000,37.230000 +15,2023-08-10 14:00:00,0.000000,25.700000,33.000000,20.000000,152.000000,90.080000,113.620000,879.100000,11.880000,171.750000,42.410000 +15,2023-08-10 15:00:00,0.000000,25.700000,33.000000,20.000000,152.000000,90.360000,113.890000,879.710000,12.360000,172.080000,43.510000 +15,2023-08-10 16:00:00,0.000000,25.700000,33.000000,20.000000,152.000000,90.580000,114.160000,880.310000,12.750000,172.420000,44.410000 +15,2023-08-10 17:00:00,0.000000,24.600000,35.000000,22.000000,154.000000,90.640000,114.400000,880.860000,14.220000,172.720000,47.590000 +15,2023-08-10 18:00:00,0.000000,24.600000,35.000000,22.000000,154.000000,90.680000,114.640000,881.410000,14.310000,173.020000,47.800000 +15,2023-08-10 19:00:00,0.000000,24.600000,35.000000,22.000000,154.000000,90.720000,114.880000,881.960000,14.380000,173.320000,47.970000 +15,2023-08-10 20:00:00,0.000000,24.600000,35.000000,22.000000,154.000000,90.750000,115.120000,882.510000,14.440000,173.620000,48.110000 +15,2023-08-10 21:00:00,0.000000,24.600000,35.000000,22.000000,154.000000,90.770000,115.120000,882.510000,14.490000,173.620000,48.210000 +15,2023-08-10 22:00:00,0.000000,24.600000,35.000000,22.000000,154.000000,90.790000,115.120000,882.510000,14.530000,173.620000,48.300000 +15,2023-08-10 23:00:00,0.440000,17.600000,74.000000,7.000000,156.000000,89.880000,115.120000,882.510000,5.990000,173.620000,26.990000 +15,2023-08-11 00:00:00,0.000000,17.600000,74.000000,7.000000,156.000000,89.100000,115.120000,882.510000,5.360000,173.620000,24.990000 +15,2023-08-11 01:00:00,0.000000,17.600000,74.000000,7.000000,156.000000,88.440000,115.120000,882.510000,4.870000,173.620000,23.360000 +15,2023-08-11 02:00:00,0.000000,17.600000,74.000000,7.000000,156.000000,87.860000,115.120000,882.510000,4.490000,173.620000,22.040000 +15,2023-08-11 03:00:00,0.000000,17.600000,74.000000,7.000000,156.000000,87.370000,115.120000,882.510000,4.180000,173.620000,20.960000 +15,2023-08-11 04:00:00,0.000000,17.600000,74.000000,7.000000,156.000000,86.950000,115.120000,882.510000,3.940000,173.620000,20.060000 +15,2023-08-11 05:00:00,0.050000,15.400000,92.000000,9.000000,192.000000,85.720000,115.140000,882.570000,3.660000,173.650000,19.040000 +15,2023-08-11 06:00:00,0.000000,15.400000,92.000000,9.000000,192.000000,84.680000,115.160000,882.620000,3.170000,173.670000,17.120000 +15,2023-08-11 07:00:00,0.000000,15.400000,92.000000,9.000000,192.000000,83.790000,115.180000,882.670000,2.810000,173.700000,15.650000 +15,2023-08-11 08:00:00,0.000000,15.400000,92.000000,9.000000,192.000000,83.030000,115.200000,882.730000,2.550000,173.720000,14.510000 +15,2023-08-11 09:00:00,0.000000,15.400000,92.000000,9.000000,192.000000,82.380000,115.220000,882.780000,2.350000,173.740000,13.620000 +15,2023-08-11 10:00:00,0.000000,15.400000,92.000000,9.000000,192.000000,81.830000,115.240000,882.830000,2.200000,173.770000,12.910000 +15,2023-08-11 11:00:00,0.000000,24.200000,51.000000,15.000000,193.000000,82.790000,115.430000,883.400000,3.340000,174.020000,17.810000 +15,2023-08-11 12:00:00,0.000000,24.200000,51.000000,15.000000,193.000000,83.600000,115.630000,883.960000,3.710000,174.270000,19.240000 +15,2023-08-11 13:00:00,0.000000,24.200000,51.000000,15.000000,193.000000,84.280000,115.820000,884.520000,4.070000,174.520000,20.560000 +15,2023-08-11 14:00:00,0.000000,24.200000,51.000000,15.000000,193.000000,84.860000,116.020000,885.090000,4.400000,174.770000,21.760000 +15,2023-08-11 15:00:00,0.000000,24.200000,51.000000,15.000000,193.000000,85.340000,116.210000,885.650000,4.700000,175.020000,22.820000 +15,2023-08-11 16:00:00,0.000000,24.200000,51.000000,15.000000,193.000000,85.750000,116.410000,886.210000,4.980000,175.270000,23.760000 +15,2023-08-11 17:00:00,0.000000,27.100000,33.000000,16.000000,208.000000,86.930000,116.730000,887.130000,6.180000,175.670000,27.620000 +15,2023-08-11 18:00:00,0.000000,27.100000,33.000000,16.000000,208.000000,87.870000,117.050000,888.040000,7.070000,176.080000,30.290000 +15,2023-08-11 19:00:00,0.000000,27.100000,33.000000,16.000000,208.000000,88.640000,117.370000,888.960000,7.890000,176.480000,32.610000 +15,2023-08-11 20:00:00,0.000000,27.100000,33.000000,16.000000,208.000000,89.250000,117.680000,889.870000,8.610000,176.890000,34.590000 +15,2023-08-11 21:00:00,0.000000,27.100000,33.000000,16.000000,208.000000,89.740000,117.680000,889.870000,9.240000,176.890000,36.230000 +15,2023-08-11 22:00:00,0.000000,27.100000,33.000000,16.000000,208.000000,90.130000,117.680000,889.870000,9.780000,176.890000,37.590000 +15,2023-08-11 23:00:00,0.000000,19.900000,54.000000,7.000000,173.000000,89.880000,117.680000,889.870000,5.990000,176.890000,27.090000 +15,2023-08-12 00:00:00,0.000000,19.900000,54.000000,7.000000,173.000000,89.660000,117.680000,889.870000,5.810000,176.890000,26.510000 +15,2023-08-12 01:00:00,0.000000,19.900000,54.000000,7.000000,173.000000,89.470000,117.680000,889.870000,5.650000,176.890000,26.020000 +15,2023-08-12 02:00:00,0.000000,19.900000,54.000000,7.000000,173.000000,89.310000,117.680000,889.870000,5.520000,176.890000,25.600000 +15,2023-08-12 03:00:00,0.000000,19.900000,54.000000,7.000000,173.000000,89.170000,117.680000,889.870000,5.410000,176.890000,25.230000 +15,2023-08-12 04:00:00,0.000000,19.900000,54.000000,7.000000,173.000000,89.040000,117.680000,889.870000,5.310000,176.890000,24.920000 +15,2023-08-12 05:00:00,1.610000,17.000000,78.000000,9.000000,184.000000,59.200000,102.540000,872.350000,0.610000,158.510000,3.880000 +15,2023-08-12 06:00:00,0.000000,17.000000,78.000000,9.000000,184.000000,60.690000,102.580000,872.710000,0.670000,158.570000,4.300000 +15,2023-08-12 07:00:00,0.000000,17.000000,78.000000,9.000000,184.000000,62.090000,102.620000,873.080000,0.730000,158.630000,4.680000 +15,2023-08-12 08:00:00,0.000000,17.000000,78.000000,9.000000,184.000000,63.420000,102.660000,873.440000,0.770000,158.690000,5.000000 +15,2023-08-12 09:00:00,0.000000,17.000000,78.000000,9.000000,184.000000,64.670000,102.700000,873.800000,0.820000,158.760000,5.290000 +15,2023-08-12 10:00:00,0.000000,17.000000,78.000000,9.000000,184.000000,65.840000,102.740000,874.170000,0.860000,158.820000,5.530000 +15,2023-08-12 11:00:00,9.870000,18.600000,83.000000,3.000000,232.000000,16.700000,57.940000,764.810000,0.000000,97.430000,0.000000 +15,2023-08-12 12:00:00,0.000000,18.600000,83.000000,3.000000,232.000000,18.600000,57.970000,765.120000,0.000000,97.480000,0.000000 +15,2023-08-12 13:00:00,0.000000,18.600000,83.000000,3.000000,232.000000,20.480000,58.010000,765.430000,0.000000,97.540000,0.000000 +15,2023-08-12 14:00:00,0.000000,18.600000,83.000000,3.000000,232.000000,22.360000,58.040000,765.740000,0.000000,97.590000,0.000000 +15,2023-08-12 15:00:00,0.000000,18.600000,83.000000,3.000000,232.000000,24.210000,58.080000,766.050000,0.000000,97.650000,0.000000 +15,2023-08-12 16:00:00,0.000000,18.600000,83.000000,3.000000,232.000000,26.050000,58.110000,766.360000,0.000000,97.700000,0.000000 +15,2023-08-12 17:00:00,0.480000,20.500000,72.000000,3.000000,263.000000,26.320000,56.770000,761.600000,0.000000,95.700000,0.000000 +15,2023-08-12 18:00:00,0.000000,20.500000,72.000000,3.000000,263.000000,29.130000,56.830000,762.180000,0.000000,95.800000,0.010000 +15,2023-08-12 19:00:00,0.000000,20.500000,72.000000,3.000000,263.000000,31.880000,56.890000,762.760000,0.010000,95.900000,0.020000 +15,2023-08-12 20:00:00,0.000000,20.500000,72.000000,3.000000,263.000000,34.570000,56.960000,763.330000,0.010000,96.000000,0.030000 +15,2023-08-12 21:00:00,0.000000,20.500000,72.000000,3.000000,263.000000,37.190000,56.960000,763.330000,0.020000,96.000000,0.060000 +15,2023-08-12 22:00:00,0.000000,20.500000,72.000000,3.000000,263.000000,39.740000,56.960000,763.330000,0.040000,96.000000,0.100000 +15,2023-08-12 23:00:00,0.020000,15.700000,96.000000,9.000000,196.000000,40.090000,56.840000,763.110000,0.060000,95.830000,0.150000 +15,2023-08-13 00:00:00,0.000000,15.700000,96.000000,9.000000,196.000000,40.600000,56.840000,763.110000,0.060000,95.830000,0.160000 +15,2023-08-13 01:00:00,0.000000,15.700000,96.000000,9.000000,196.000000,41.120000,56.840000,763.110000,0.070000,95.830000,0.180000 +15,2023-08-13 02:00:00,0.000000,15.700000,96.000000,9.000000,196.000000,41.630000,56.840000,763.110000,0.070000,95.830000,0.200000 +15,2023-08-13 03:00:00,0.000000,15.700000,96.000000,9.000000,196.000000,42.130000,56.840000,763.110000,0.080000,95.830000,0.220000 +15,2023-08-13 04:00:00,0.000000,15.700000,96.000000,9.000000,196.000000,42.630000,56.840000,763.110000,0.090000,95.830000,0.240000 +15,2023-08-13 05:00:00,0.000000,12.900000,87.000000,10.000000,231.000000,43.950000,56.860000,763.180000,0.110000,95.870000,0.310000 +15,2023-08-13 06:00:00,0.000000,12.900000,87.000000,10.000000,231.000000,45.250000,56.890000,763.260000,0.140000,95.910000,0.380000 +15,2023-08-13 07:00:00,0.000000,12.900000,87.000000,10.000000,231.000000,46.510000,56.920000,763.330000,0.170000,95.950000,0.460000 +15,2023-08-13 08:00:00,0.000000,12.900000,87.000000,10.000000,231.000000,47.730000,56.940000,763.400000,0.200000,95.980000,0.550000 +15,2023-08-13 09:00:00,0.000000,12.900000,87.000000,10.000000,231.000000,48.920000,56.970000,763.480000,0.240000,96.020000,0.640000 +15,2023-08-13 10:00:00,0.000000,12.900000,87.000000,10.000000,231.000000,50.080000,56.990000,763.550000,0.270000,96.060000,0.740000 +15,2023-08-13 11:00:00,0.000000,20.300000,47.000000,16.000000,229.000000,54.490000,57.160000,764.030000,0.600000,96.310000,2.680000 +15,2023-08-13 12:00:00,0.000000,20.300000,47.000000,16.000000,229.000000,58.520000,57.330000,764.510000,0.830000,96.560000,4.000000 +15,2023-08-13 13:00:00,0.000000,20.300000,47.000000,16.000000,229.000000,62.170000,57.500000,764.990000,1.040000,96.810000,5.070000 +15,2023-08-13 14:00:00,0.000000,20.300000,47.000000,16.000000,229.000000,65.460000,57.670000,765.470000,1.200000,97.060000,5.880000 +15,2023-08-13 15:00:00,0.000000,20.300000,47.000000,16.000000,229.000000,68.390000,57.840000,765.950000,1.330000,97.300000,6.490000 +15,2023-08-13 16:00:00,0.000000,20.300000,47.000000,16.000000,229.000000,71.000000,58.000000,766.430000,1.450000,97.550000,7.020000 +15,2023-08-13 17:00:00,0.020000,25.600000,33.000000,16.000000,232.000000,74.520000,58.300000,767.260000,1.670000,97.980000,8.020000 +15,2023-08-13 18:00:00,0.000000,25.600000,33.000000,16.000000,232.000000,77.510000,58.590000,768.100000,2.030000,98.420000,9.490000 +15,2023-08-13 19:00:00,0.000000,25.600000,33.000000,16.000000,232.000000,80.010000,58.890000,768.930000,2.550000,98.850000,11.500000 +15,2023-08-13 20:00:00,0.000000,25.600000,33.000000,16.000000,232.000000,82.090000,59.180000,769.770000,3.230000,99.280000,13.910000 +15,2023-08-13 21:00:00,0.000000,25.600000,33.000000,16.000000,232.000000,83.820000,59.180000,769.770000,4.020000,99.280000,16.450000 +15,2023-08-13 22:00:00,0.000000,25.600000,33.000000,16.000000,232.000000,85.240000,59.180000,769.770000,4.870000,99.280000,18.980000 +15,2023-08-13 23:00:00,0.000000,22.000000,47.000000,18.000000,205.000000,85.710000,59.180000,769.770000,5.760000,99.280000,21.420000 +15,2023-08-14 00:00:00,0.000000,22.000000,47.000000,18.000000,205.000000,86.120000,59.180000,769.770000,6.090000,99.280000,22.290000 +15,2023-08-14 01:00:00,0.000000,22.000000,47.000000,18.000000,205.000000,86.450000,59.180000,769.770000,6.390000,99.280000,23.060000 +15,2023-08-14 02:00:00,0.000000,22.000000,47.000000,18.000000,205.000000,86.740000,59.180000,769.770000,6.650000,99.280000,23.720000 +15,2023-08-14 03:00:00,0.000000,22.000000,47.000000,18.000000,205.000000,86.970000,59.180000,769.770000,6.880000,99.280000,24.290000 +15,2023-08-14 04:00:00,0.000000,22.000000,47.000000,18.000000,205.000000,87.170000,59.180000,769.770000,7.080000,99.280000,24.780000 +15,2023-08-14 05:00:00,0.000000,23.900000,42.000000,17.000000,243.000000,87.570000,59.380000,770.110000,7.120000,99.570000,24.910000 +15,2023-08-14 06:00:00,0.000000,23.900000,42.000000,17.000000,243.000000,87.890000,59.580000,770.450000,7.460000,99.850000,25.770000 +15,2023-08-14 07:00:00,0.000000,23.900000,42.000000,17.000000,243.000000,88.160000,59.780000,770.780000,7.750000,100.140000,26.500000 +15,2023-08-14 08:00:00,0.000000,23.900000,42.000000,17.000000,243.000000,88.380000,59.980000,771.120000,8.000000,100.430000,27.130000 +15,2023-08-14 09:00:00,0.000000,23.900000,42.000000,17.000000,243.000000,88.570000,60.180000,771.460000,8.210000,100.720000,27.660000 +15,2023-08-14 10:00:00,0.000000,23.900000,42.000000,17.000000,243.000000,88.720000,60.380000,771.800000,8.390000,101.000000,28.110000 +15,2023-08-14 11:00:00,0.000000,27.100000,20.000000,25.000000,283.000000,90.030000,60.710000,772.360000,15.160000,101.480000,41.670000 +15,2023-08-14 12:00:00,0.000000,27.100000,20.000000,25.000000,283.000000,91.050000,61.050000,772.930000,17.540000,101.960000,45.830000 +15,2023-08-14 13:00:00,0.000000,27.100000,20.000000,25.000000,283.000000,91.840000,61.380000,773.490000,19.620000,102.440000,49.290000 +15,2023-08-14 14:00:00,0.000000,27.100000,20.000000,25.000000,283.000000,92.450000,61.710000,774.050000,21.390000,102.910000,52.120000 +15,2023-08-14 15:00:00,0.000000,27.100000,20.000000,25.000000,283.000000,92.920000,62.040000,774.620000,22.850000,103.390000,54.420000 +15,2023-08-14 16:00:00,0.000000,27.100000,20.000000,25.000000,283.000000,93.280000,62.380000,775.180000,24.040000,103.860000,56.260000 +15,2023-08-14 17:00:00,0.000000,27.600000,15.000000,31.000000,291.000000,93.900000,62.740000,775.800000,35.450000,104.380000,71.360000 +15,2023-08-14 18:00:00,0.000000,27.600000,15.000000,31.000000,291.000000,94.360000,63.110000,776.420000,37.810000,104.900000,74.300000 +15,2023-08-14 19:00:00,0.000000,27.600000,15.000000,31.000000,291.000000,94.710000,63.470000,777.030000,39.680000,105.420000,76.600000 +15,2023-08-14 20:00:00,0.000000,27.600000,15.000000,31.000000,291.000000,94.980000,63.840000,777.650000,41.140000,105.930000,78.410000 +15,2023-08-14 21:00:00,0.000000,27.600000,15.000000,31.000000,291.000000,95.180000,63.840000,777.650000,42.270000,105.930000,79.670000 +15,2023-08-14 22:00:00,0.000000,27.600000,15.000000,31.000000,291.000000,95.320000,63.840000,777.650000,43.130000,105.930000,80.630000 +15,2023-08-14 23:00:00,0.000000,22.300000,25.000000,18.000000,308.000000,95.150000,63.840000,777.650000,21.890000,105.930000,53.530000 +15,2023-08-15 00:00:00,0.000000,22.300000,25.000000,18.000000,308.000000,95.010000,63.840000,777.650000,21.450000,105.930000,52.860000 +15,2023-08-15 01:00:00,0.000000,22.300000,25.000000,18.000000,308.000000,94.880000,63.840000,777.650000,21.070000,105.930000,52.280000 +15,2023-08-15 02:00:00,0.000000,22.300000,25.000000,18.000000,308.000000,94.760000,63.840000,777.650000,20.740000,105.930000,51.770000 +15,2023-08-15 03:00:00,0.000000,22.300000,25.000000,18.000000,308.000000,94.660000,63.840000,777.650000,20.460000,105.930000,51.330000 +15,2023-08-15 04:00:00,0.000000,22.300000,25.000000,18.000000,308.000000,94.570000,63.840000,777.650000,20.210000,105.930000,50.940000 +15,2023-08-15 05:00:00,0.000000,18.900000,31.000000,16.000000,310.000000,94.290000,64.010000,778.020000,17.570000,106.180000,46.700000 +15,2023-08-15 06:00:00,0.000000,18.900000,31.000000,16.000000,310.000000,94.040000,64.190000,778.390000,16.980000,106.430000,45.730000 +15,2023-08-15 07:00:00,0.000000,18.900000,31.000000,16.000000,310.000000,93.820000,64.360000,778.750000,16.460000,106.680000,44.890000 +15,2023-08-15 08:00:00,0.000000,18.900000,31.000000,16.000000,310.000000,93.620000,64.540000,779.120000,16.020000,106.930000,44.170000 +15,2023-08-15 09:00:00,0.000000,18.900000,31.000000,16.000000,310.000000,93.450000,64.710000,779.490000,15.640000,107.180000,43.540000 +15,2023-08-15 10:00:00,0.000000,18.900000,31.000000,16.000000,310.000000,93.300000,64.880000,779.850000,15.320000,107.420000,43.000000 +15,2023-08-15 11:00:00,0.000000,22.400000,31.000000,19.000000,312.000000,93.220000,65.100000,780.310000,17.630000,107.730000,47.070000 +15,2023-08-15 12:00:00,0.000000,22.400000,31.000000,19.000000,312.000000,93.160000,65.320000,780.760000,17.470000,108.040000,46.860000 +15,2023-08-15 13:00:00,0.000000,22.400000,31.000000,19.000000,312.000000,93.100000,65.530000,781.220000,17.330000,108.350000,46.680000 +15,2023-08-15 14:00:00,0.000000,22.400000,31.000000,19.000000,312.000000,93.050000,65.750000,781.680000,17.210000,108.650000,46.530000 +15,2023-08-15 15:00:00,0.000000,22.400000,31.000000,19.000000,312.000000,93.010000,65.970000,782.130000,17.110000,108.960000,46.410000 +15,2023-08-15 16:00:00,0.000000,22.400000,31.000000,19.000000,312.000000,92.970000,66.180000,782.590000,17.020000,109.270000,46.320000 +15,2023-08-15 17:00:00,0.000000,23.600000,26.000000,17.000000,318.000000,92.970000,66.430000,783.110000,15.390000,109.620000,43.500000 +15,2023-08-15 18:00:00,0.000000,23.600000,26.000000,17.000000,318.000000,92.970000,66.680000,783.640000,15.390000,109.970000,43.560000 +15,2023-08-15 19:00:00,0.000000,23.600000,26.000000,17.000000,318.000000,92.970000,66.930000,784.160000,15.390000,110.330000,43.620000 +15,2023-08-15 20:00:00,0.000000,23.600000,26.000000,17.000000,318.000000,92.970000,67.180000,784.690000,15.390000,110.680000,43.670000 +15,2023-08-15 21:00:00,0.000000,23.600000,26.000000,17.000000,318.000000,92.970000,67.180000,784.690000,15.390000,110.680000,43.670000 +15,2023-08-15 22:00:00,0.000000,23.600000,26.000000,17.000000,318.000000,92.970000,67.180000,784.690000,15.390000,110.680000,43.670000 +15,2023-08-15 23:00:00,0.000000,16.800000,41.000000,4.000000,311.000000,92.690000,67.180000,784.690000,7.680000,110.680000,27.590000 +15,2023-08-16 00:00:00,0.000000,16.800000,41.000000,4.000000,311.000000,92.430000,67.180000,784.690000,7.410000,110.680000,26.920000 +15,2023-08-16 01:00:00,0.000000,16.800000,41.000000,4.000000,311.000000,92.200000,67.180000,784.690000,7.170000,110.680000,26.320000 +15,2023-08-16 02:00:00,0.000000,16.800000,41.000000,4.000000,311.000000,91.990000,67.180000,784.690000,6.960000,110.680000,25.780000 +15,2023-08-16 03:00:00,0.000000,16.800000,41.000000,4.000000,311.000000,91.800000,67.180000,784.690000,6.780000,110.680000,25.300000 +15,2023-08-16 04:00:00,0.000000,16.800000,41.000000,4.000000,311.000000,91.630000,67.180000,784.690000,6.610000,110.680000,24.870000 +15,2023-08-16 05:00:00,0.000000,11.500000,58.000000,5.000000,224.000000,91.100000,67.260000,784.830000,6.450000,110.780000,24.460000 +15,2023-08-16 06:00:00,0.000000,11.500000,58.000000,5.000000,224.000000,90.620000,67.330000,784.980000,6.030000,110.880000,23.330000 +15,2023-08-16 07:00:00,0.000000,11.500000,58.000000,5.000000,224.000000,90.190000,67.400000,785.130000,5.670000,110.980000,22.340000 +15,2023-08-16 08:00:00,0.000000,11.500000,58.000000,5.000000,224.000000,89.810000,67.470000,785.270000,5.360000,111.090000,21.490000 +15,2023-08-16 09:00:00,0.000000,11.500000,58.000000,5.000000,224.000000,89.460000,67.550000,785.420000,5.100000,111.190000,20.740000 +15,2023-08-16 10:00:00,0.000000,11.500000,58.000000,5.000000,224.000000,89.140000,67.620000,785.570000,4.870000,111.290000,20.080000 +15,2023-08-16 11:00:00,0.000000,22.800000,29.000000,10.000000,161.000000,89.570000,67.870000,786.080000,6.670000,111.640000,25.120000 +15,2023-08-16 12:00:00,0.000000,22.800000,29.000000,10.000000,161.000000,89.930000,68.120000,786.580000,7.020000,111.990000,26.080000 +15,2023-08-16 13:00:00,0.000000,22.800000,29.000000,10.000000,161.000000,90.240000,68.370000,787.090000,7.330000,112.340000,26.900000 +15,2023-08-16 14:00:00,0.000000,22.800000,29.000000,10.000000,161.000000,90.490000,68.620000,787.600000,7.600000,112.690000,27.620000 +15,2023-08-16 15:00:00,0.000000,22.800000,29.000000,10.000000,161.000000,90.700000,68.870000,788.110000,7.840000,113.040000,28.230000 +15,2023-08-16 16:00:00,0.000000,22.800000,29.000000,10.000000,161.000000,90.880000,69.120000,788.620000,8.040000,113.400000,28.760000 +15,2023-08-16 17:00:00,0.000000,27.900000,18.000000,8.000000,200.000000,91.690000,69.510000,789.410000,8.160000,113.940000,29.120000 +15,2023-08-16 18:00:00,0.000000,27.900000,18.000000,8.000000,200.000000,92.350000,69.900000,790.210000,8.960000,114.490000,31.070000 +15,2023-08-16 19:00:00,0.000000,27.900000,18.000000,8.000000,200.000000,92.880000,70.300000,791.000000,9.650000,115.030000,32.740000 +15,2023-08-16 20:00:00,0.000000,27.900000,18.000000,8.000000,200.000000,93.310000,70.690000,791.790000,10.250000,115.580000,34.140000 +15,2023-08-16 21:00:00,0.000000,27.900000,18.000000,8.000000,200.000000,93.660000,70.690000,791.790000,10.760000,115.580000,35.250000 +15,2023-08-16 22:00:00,0.000000,27.900000,18.000000,8.000000,200.000000,93.940000,70.690000,791.790000,11.190000,115.580000,36.160000 +15,2023-08-16 23:00:00,0.000000,21.600000,30.000000,14.000000,195.000000,93.800000,70.690000,791.790000,14.850000,115.580000,43.440000 +15,2023-08-17 00:00:00,0.000000,21.600000,30.000000,14.000000,195.000000,93.680000,70.690000,791.790000,14.600000,115.580000,42.980000 +15,2023-08-17 01:00:00,0.000000,21.600000,30.000000,14.000000,195.000000,93.570000,70.690000,791.790000,14.390000,115.580000,42.580000 +15,2023-08-17 02:00:00,0.000000,21.600000,30.000000,14.000000,195.000000,93.480000,70.690000,791.790000,14.200000,115.580000,42.220000 +15,2023-08-17 03:00:00,0.000000,21.600000,30.000000,14.000000,195.000000,93.400000,70.690000,791.790000,14.040000,115.580000,41.910000 +15,2023-08-17 04:00:00,0.000000,21.600000,30.000000,14.000000,195.000000,93.330000,70.690000,791.790000,13.900000,115.580000,41.640000 +15,2023-08-17 05:00:00,0.000000,20.200000,36.000000,11.000000,194.000000,93.100000,70.690000,791.790000,11.580000,115.580000,36.980000 +15,2023-08-17 06:00:00,0.000000,20.200000,36.000000,11.000000,194.000000,92.900000,70.860000,792.110000,11.260000,115.820000,36.340000 +15,2023-08-17 07:00:00,0.000000,20.200000,36.000000,11.000000,194.000000,92.720000,71.030000,792.430000,10.980000,116.060000,35.780000 +15,2023-08-17 08:00:00,0.000000,20.200000,36.000000,11.000000,194.000000,92.570000,71.210000,792.750000,10.740000,116.300000,35.300000 +15,2023-08-17 09:00:00,0.000000,20.200000,36.000000,11.000000,194.000000,92.430000,71.380000,793.070000,10.540000,116.540000,34.880000 +15,2023-08-17 10:00:00,0.000000,20.200000,36.000000,11.000000,194.000000,92.310000,71.560000,793.380000,10.360000,116.780000,34.520000 +15,2023-08-17 11:00:00,0.000000,28.200000,27.000000,14.000000,192.000000,92.480000,71.880000,793.970000,12.340000,117.220000,38.770000 +15,2023-08-17 12:00:00,0.000000,28.200000,27.000000,14.000000,192.000000,92.610000,72.200000,794.550000,12.570000,117.660000,39.310000 +15,2023-08-17 13:00:00,0.000000,28.200000,27.000000,14.000000,192.000000,92.720000,72.520000,795.140000,12.760000,118.100000,39.740000 +15,2023-08-17 14:00:00,0.000000,28.200000,27.000000,14.000000,192.000000,92.800000,72.840000,795.720000,12.910000,118.540000,40.100000 +15,2023-08-17 15:00:00,0.000000,28.200000,27.000000,14.000000,192.000000,92.860000,73.150000,796.310000,13.030000,118.980000,40.400000 +15,2023-08-17 16:00:00,0.000000,28.200000,27.000000,14.000000,192.000000,92.920000,73.470000,796.900000,13.120000,119.420000,40.650000 +15,2023-08-17 17:00:00,0.000000,31.700000,24.000000,9.000000,191.000000,93.230000,73.880000,797.640000,10.660000,119.980000,35.570000 +15,2023-08-17 18:00:00,0.000000,31.700000,24.000000,9.000000,191.000000,93.480000,74.290000,798.390000,11.040000,120.540000,36.450000 +15,2023-08-17 19:00:00,0.000000,31.700000,24.000000,9.000000,191.000000,93.670000,74.700000,799.130000,11.340000,121.090000,37.160000 +15,2023-08-17 20:00:00,0.000000,31.700000,24.000000,9.000000,191.000000,93.820000,75.100000,799.870000,11.580000,121.650000,37.730000 +15,2023-08-17 21:00:00,0.000000,31.700000,24.000000,9.000000,191.000000,93.940000,75.100000,799.870000,11.760000,121.650000,38.130000 +15,2023-08-17 22:00:00,0.000000,31.700000,24.000000,9.000000,191.000000,94.030000,75.100000,799.870000,11.910000,121.650000,38.450000 +15,2023-08-17 23:00:00,0.650000,22.700000,50.000000,15.000000,253.000000,89.830000,75.100000,799.870000,8.900000,121.650000,31.720000 +15,2023-08-18 00:00:00,0.000000,22.700000,50.000000,15.000000,253.000000,89.750000,75.100000,799.870000,8.800000,121.650000,31.480000 +15,2023-08-18 01:00:00,0.000000,22.700000,50.000000,15.000000,253.000000,89.690000,75.100000,799.870000,8.720000,121.650000,31.290000 +15,2023-08-18 02:00:00,0.000000,22.700000,50.000000,15.000000,253.000000,89.630000,75.100000,799.870000,8.650000,121.650000,31.120000 +15,2023-08-18 03:00:00,0.000000,22.700000,50.000000,15.000000,253.000000,89.590000,75.100000,799.870000,8.600000,121.650000,30.980000 +15,2023-08-18 04:00:00,0.000000,22.700000,50.000000,15.000000,253.000000,89.550000,75.100000,799.870000,8.550000,121.650000,30.870000 +15,2023-08-18 05:00:00,0.000000,19.600000,40.000000,21.000000,275.000000,89.550000,75.100000,799.870000,11.570000,121.650000,37.710000 +15,2023-08-18 06:00:00,0.000000,19.600000,40.000000,21.000000,275.000000,89.550000,75.330000,800.350000,11.570000,121.960000,37.750000 +15,2023-08-18 07:00:00,0.000000,19.600000,40.000000,21.000000,275.000000,89.550000,75.560000,800.830000,11.570000,122.270000,37.790000 +15,2023-08-18 08:00:00,0.000000,19.600000,40.000000,21.000000,275.000000,89.550000,75.780000,801.310000,11.570000,122.580000,37.820000 +15,2023-08-18 09:00:00,0.000000,19.600000,40.000000,21.000000,275.000000,89.550000,76.010000,801.780000,11.570000,122.900000,37.860000 +15,2023-08-18 10:00:00,0.000000,19.600000,40.000000,21.000000,275.000000,89.550000,76.240000,802.260000,11.570000,123.210000,37.900000 +15,2023-08-18 11:00:00,0.000000,22.400000,31.000000,15.000000,271.000000,89.850000,76.550000,802.910000,8.930000,123.630000,31.980000 +15,2023-08-18 12:00:00,0.000000,22.400000,31.000000,15.000000,271.000000,90.100000,76.860000,803.570000,9.250000,124.050000,32.790000 +15,2023-08-18 13:00:00,0.000000,22.400000,31.000000,15.000000,271.000000,90.310000,77.170000,804.220000,9.530000,124.480000,33.490000 +15,2023-08-18 14:00:00,0.000000,22.400000,31.000000,15.000000,271.000000,90.480000,77.480000,804.870000,9.770000,124.900000,34.080000 +15,2023-08-18 15:00:00,0.000000,22.400000,31.000000,15.000000,271.000000,90.620000,77.790000,805.520000,9.970000,125.320000,34.590000 +15,2023-08-18 16:00:00,0.000000,22.400000,31.000000,15.000000,271.000000,90.740000,78.100000,806.170000,10.130000,125.740000,35.010000 +15,2023-08-18 17:00:00,0.000000,23.300000,26.000000,22.000000,289.000000,91.080000,78.450000,806.910000,15.150000,126.220000,45.480000 +16,2023-08-03 00:00:00,0.000000,15.600000,63.000000,4.000000,79.000000,86.000000,118.400000,826.100000,2.960000,174.330000,16.260000 +16,2023-08-03 01:00:00,0.000000,15.600000,63.000000,4.000000,79.000000,85.990000,118.400000,826.100000,2.960000,174.330000,16.250000 +16,2023-08-03 02:00:00,0.000000,13.600000,69.000000,4.000000,115.000000,85.840000,118.400000,826.100000,2.890000,174.330000,16.000000 +16,2023-08-03 03:00:00,0.000000,13.600000,69.000000,4.000000,115.000000,85.710000,118.400000,826.100000,2.840000,174.330000,15.780000 +16,2023-08-03 04:00:00,0.000000,13.600000,69.000000,4.000000,115.000000,85.590000,118.400000,826.100000,2.790000,174.330000,15.580000 +16,2023-08-03 05:00:00,0.000000,11.300000,79.000000,3.000000,115.000000,85.250000,118.460000,826.260000,2.530000,174.410000,14.450000 +16,2023-08-03 06:00:00,0.000000,11.300000,79.000000,3.000000,115.000000,84.940000,118.530000,826.410000,2.430000,174.490000,13.980000 +16,2023-08-03 07:00:00,0.000000,11.300000,79.000000,3.000000,115.000000,84.660000,118.590000,826.570000,2.340000,174.570000,13.580000 +16,2023-08-03 08:00:00,0.000000,16.200000,60.000000,5.000000,118.000000,84.690000,118.760000,826.980000,2.600000,174.770000,14.740000 +16,2023-08-03 09:00:00,0.000000,16.200000,60.000000,5.000000,118.000000,84.720000,118.930000,827.390000,2.610000,174.980000,14.790000 +16,2023-08-03 10:00:00,0.000000,16.200000,60.000000,5.000000,118.000000,84.750000,119.090000,827.800000,2.620000,175.180000,14.840000 +16,2023-08-03 11:00:00,0.000000,22.500000,41.000000,4.000000,135.000000,85.350000,119.460000,828.700000,2.700000,175.620000,15.210000 +16,2023-08-03 12:00:00,0.000000,22.500000,41.000000,4.000000,135.000000,85.870000,119.820000,829.590000,2.910000,176.070000,16.080000 +16,2023-08-03 13:00:00,0.000000,22.500000,41.000000,4.000000,135.000000,86.320000,120.190000,830.490000,3.100000,176.510000,16.880000 +16,2023-08-03 14:00:00,1.050000,22.900000,56.000000,4.000000,228.000000,67.400000,107.030000,821.190000,0.700000,161.460000,4.560000 +16,2023-08-03 15:00:00,0.000000,22.900000,56.000000,4.000000,228.000000,69.400000,107.310000,821.880000,0.750000,161.810000,4.870000 +16,2023-08-03 16:00:00,0.000000,22.900000,56.000000,4.000000,228.000000,71.210000,107.590000,822.560000,0.800000,162.160000,5.180000 +16,2023-08-03 17:00:00,5.560000,19.700000,87.000000,3.000000,339.000000,25.330000,69.150000,769.890000,0.000000,112.950000,0.000000 +16,2023-08-03 18:00:00,0.000000,19.700000,87.000000,3.000000,339.000000,26.870000,69.220000,770.060000,0.000000,113.040000,0.000000 +16,2023-08-03 19:00:00,0.000000,19.700000,87.000000,3.000000,339.000000,28.380000,69.290000,770.220000,0.000000,113.140000,0.010000 +16,2023-08-03 20:00:00,1.650000,18.400000,95.000000,1.000000,205.000000,20.050000,62.250000,754.600000,0.000000,103.210000,0.000000 +16,2023-08-03 21:00:00,0.000000,18.400000,95.000000,1.000000,205.000000,20.550000,62.270000,754.660000,0.000000,103.240000,0.000000 +16,2023-08-03 22:00:00,0.000000,18.400000,95.000000,1.000000,205.000000,21.050000,62.270000,754.660000,0.000000,103.240000,0.000000 +16,2023-08-03 23:00:00,0.000000,15.600000,100.000000,3.000000,236.000000,21.050000,62.270000,754.660000,0.000000,103.240000,0.000000 +16,2023-08-04 00:00:00,0.000000,15.600000,100.000000,3.000000,236.000000,21.050000,62.270000,754.660000,0.000000,103.240000,0.000000 +16,2023-08-04 01:00:00,0.000000,15.600000,100.000000,3.000000,236.000000,21.050000,62.270000,754.660000,0.000000,103.240000,0.000000 +16,2023-08-04 02:00:00,0.010000,14.000000,100.000000,5.000000,237.000000,21.050000,62.270000,754.660000,0.000000,103.240000,0.000000 +16,2023-08-04 03:00:00,0.000000,14.000000,100.000000,5.000000,237.000000,21.050000,62.270000,754.660000,0.000000,103.240000,0.000000 +16,2023-08-04 04:00:00,0.000000,14.000000,100.000000,5.000000,237.000000,21.050000,62.270000,754.660000,0.000000,103.240000,0.000000 +16,2023-08-04 05:00:00,0.040000,13.700000,99.000000,5.000000,240.000000,21.180000,62.270000,754.670000,0.000000,103.250000,0.000000 +16,2023-08-04 06:00:00,0.000000,13.700000,99.000000,5.000000,240.000000,21.310000,62.270000,754.670000,0.000000,103.250000,0.000000 +16,2023-08-04 07:00:00,0.000000,13.700000,99.000000,5.000000,240.000000,21.440000,62.270000,754.680000,0.000000,103.250000,0.000000 +16,2023-08-04 08:00:00,0.070000,15.900000,93.000000,4.000000,252.000000,22.300000,62.290000,754.740000,0.000000,103.270000,0.000000 +16,2023-08-04 09:00:00,0.000000,15.900000,93.000000,4.000000,252.000000,23.150000,62.300000,754.790000,0.000000,103.290000,0.000000 +16,2023-08-04 10:00:00,0.000000,15.900000,93.000000,4.000000,252.000000,24.000000,62.310000,754.850000,0.000000,103.310000,0.000000 +16,2023-08-04 11:00:00,0.030000,20.600000,67.000000,4.000000,324.000000,27.370000,62.390000,755.210000,0.000000,103.420000,0.010000 +16,2023-08-04 12:00:00,0.000000,20.600000,67.000000,4.000000,324.000000,30.670000,62.470000,755.570000,0.010000,103.540000,0.010000 +16,2023-08-04 13:00:00,0.000000,20.600000,67.000000,4.000000,324.000000,33.890000,62.550000,755.930000,0.010000,103.660000,0.030000 +16,2023-08-04 14:00:00,0.000000,22.800000,50.000000,8.000000,355.000000,38.910000,62.690000,756.550000,0.040000,103.860000,0.120000 +16,2023-08-04 15:00:00,0.000000,22.800000,50.000000,8.000000,355.000000,43.670000,62.820000,757.170000,0.100000,104.060000,0.280000 +16,2023-08-04 16:00:00,0.000000,22.800000,50.000000,8.000000,355.000000,48.160000,62.960000,757.800000,0.190000,104.270000,0.560000 +16,2023-08-04 17:00:00,0.000000,23.800000,42.000000,8.000000,6.000000,52.930000,63.130000,758.560000,0.340000,104.520000,0.980000 +16,2023-08-04 18:00:00,0.000000,23.800000,42.000000,8.000000,6.000000,57.310000,63.300000,759.330000,0.510000,104.770000,2.320000 +16,2023-08-04 19:00:00,0.000000,23.800000,42.000000,8.000000,6.000000,61.300000,63.470000,760.100000,0.660000,105.010000,3.300000 +16,2023-08-04 20:00:00,0.000000,21.900000,46.000000,5.000000,342.000000,64.220000,63.610000,760.730000,0.660000,105.220000,3.270000 +16,2023-08-04 21:00:00,0.000000,21.900000,46.000000,5.000000,342.000000,66.880000,63.750000,761.370000,0.730000,105.430000,3.690000 +16,2023-08-04 22:00:00,0.000000,21.900000,46.000000,5.000000,342.000000,69.290000,63.750000,761.370000,0.790000,105.430000,4.040000 +16,2023-08-04 23:00:00,0.000000,17.100000,63.000000,5.000000,311.000000,70.550000,63.750000,761.370000,0.820000,105.430000,4.220000 +16,2023-08-05 00:00:00,0.000000,17.100000,63.000000,5.000000,311.000000,71.720000,63.750000,761.370000,0.850000,105.430000,4.400000 +16,2023-08-05 01:00:00,0.000000,17.100000,63.000000,5.000000,311.000000,72.790000,63.750000,761.370000,0.890000,105.430000,4.590000 +16,2023-08-05 02:00:00,0.000000,15.600000,72.000000,6.000000,332.000000,73.510000,63.750000,761.370000,0.960000,105.430000,4.990000 +16,2023-08-05 03:00:00,0.000000,15.600000,72.000000,6.000000,332.000000,74.180000,63.750000,761.370000,0.990000,105.430000,5.150000 +16,2023-08-05 04:00:00,0.000000,15.600000,72.000000,6.000000,332.000000,74.810000,63.750000,761.370000,1.020000,105.430000,5.320000 +16,2023-08-05 05:00:00,0.000000,13.500000,82.000000,5.000000,329.000000,75.080000,63.780000,761.460000,0.990000,105.480000,5.130000 +16,2023-08-05 06:00:00,0.000000,13.500000,82.000000,5.000000,329.000000,75.330000,63.820000,761.550000,1.000000,105.530000,5.210000 +16,2023-08-05 07:00:00,0.000000,13.500000,82.000000,5.000000,329.000000,75.580000,63.850000,761.640000,1.020000,105.580000,5.290000 +16,2023-08-05 08:00:00,0.000000,17.300000,58.000000,4.000000,350.000000,76.450000,63.960000,761.910000,1.020000,105.730000,5.320000 +16,2023-08-05 09:00:00,0.000000,17.300000,58.000000,4.000000,350.000000,77.260000,64.070000,762.180000,1.090000,105.880000,5.640000 +16,2023-08-05 10:00:00,0.000000,17.300000,58.000000,4.000000,350.000000,77.990000,64.170000,762.440000,1.150000,106.030000,5.980000 +16,2023-08-05 11:00:00,0.000000,19.700000,40.000000,6.000000,13.000000,79.330000,64.350000,762.890000,1.440000,106.280000,7.360000 +16,2023-08-05 12:00:00,0.000000,19.700000,40.000000,6.000000,13.000000,80.520000,64.520000,763.330000,1.620000,106.530000,8.220000 +16,2023-08-05 13:00:00,0.000000,19.700000,40.000000,6.000000,13.000000,81.570000,64.690000,763.780000,1.830000,106.780000,9.130000 +16,2023-08-05 14:00:00,0.000000,21.400000,34.000000,9.000000,31.000000,82.850000,64.910000,764.320000,2.490000,107.080000,11.810000 +16,2023-08-05 15:00:00,0.000000,21.400000,34.000000,9.000000,31.000000,83.970000,65.120000,764.860000,2.880000,107.390000,13.270000 +16,2023-08-05 16:00:00,0.000000,21.400000,34.000000,9.000000,31.000000,84.920000,65.340000,765.400000,3.280000,107.690000,14.700000 +16,2023-08-05 17:00:00,0.000000,21.200000,33.000000,10.000000,29.000000,85.780000,65.550000,765.950000,3.880000,107.990000,16.740000 +16,2023-08-05 18:00:00,0.000000,21.200000,33.000000,10.000000,29.000000,86.520000,65.760000,766.490000,4.310000,108.300000,18.100000 +16,2023-08-05 19:00:00,0.000000,21.200000,33.000000,10.000000,29.000000,87.140000,65.980000,767.040000,4.710000,108.600000,19.350000 +16,2023-08-05 20:00:00,0.000000,19.100000,38.000000,4.000000,19.000000,87.410000,66.150000,767.480000,3.610000,108.850000,15.920000 +16,2023-08-05 21:00:00,0.000000,19.100000,38.000000,4.000000,19.000000,87.640000,66.330000,767.920000,3.740000,109.090000,16.340000 +16,2023-08-05 22:00:00,0.000000,19.100000,38.000000,4.000000,19.000000,87.850000,66.330000,767.920000,3.850000,109.090000,16.710000 +16,2023-08-05 23:00:00,0.000000,15.100000,50.000000,3.000000,315.000000,87.850000,66.330000,767.920000,3.660000,109.090000,16.090000 +16,2023-08-06 00:00:00,0.000000,15.100000,50.000000,3.000000,315.000000,87.850000,66.330000,767.920000,3.660000,109.090000,16.090000 +16,2023-08-06 01:00:00,0.000000,15.100000,50.000000,3.000000,315.000000,87.850000,66.330000,767.920000,3.660000,109.090000,16.090000 +16,2023-08-06 02:00:00,0.000000,12.800000,57.000000,4.000000,288.000000,87.720000,66.330000,767.920000,3.780000,109.090000,16.490000 +16,2023-08-06 03:00:00,0.000000,12.800000,57.000000,4.000000,288.000000,87.610000,66.330000,767.920000,3.720000,109.090000,16.290000 +16,2023-08-06 04:00:00,0.000000,12.800000,57.000000,4.000000,288.000000,87.510000,66.330000,767.920000,3.660000,109.090000,16.110000 +16,2023-08-06 05:00:00,0.000000,11.700000,63.000000,4.000000,301.000000,87.300000,66.390000,768.100000,3.560000,109.190000,15.760000 +16,2023-08-06 06:00:00,0.000000,11.700000,63.000000,4.000000,301.000000,87.110000,66.460000,768.280000,3.460000,109.280000,15.450000 +16,2023-08-06 07:00:00,0.000000,11.700000,63.000000,4.000000,301.000000,86.940000,66.520000,768.470000,3.380000,109.370000,15.170000 +16,2023-08-06 08:00:00,0.000000,16.000000,56.000000,1.000000,5.000000,86.940000,66.620000,768.750000,2.910000,109.520000,13.510000 +16,2023-08-06 09:00:00,0.000000,16.000000,56.000000,1.000000,5.000000,86.940000,66.730000,769.040000,2.910000,109.660000,13.520000 +16,2023-08-06 10:00:00,0.000000,16.000000,56.000000,1.000000,5.000000,86.940000,66.830000,769.320000,2.910000,109.810000,13.530000 +16,2023-08-06 11:00:00,0.000000,20.300000,46.000000,4.000000,80.000000,87.080000,66.990000,769.780000,3.450000,110.040000,15.440000 +16,2023-08-06 12:00:00,0.000000,20.300000,46.000000,4.000000,80.000000,87.200000,67.160000,770.240000,3.510000,110.280000,15.660000 +16,2023-08-06 13:00:00,0.000000,20.300000,46.000000,4.000000,80.000000,87.300000,67.320000,770.700000,3.560000,110.510000,15.860000 +16,2023-08-06 14:00:00,0.000000,21.800000,43.000000,10.000000,54.000000,87.540000,67.510000,771.230000,4.980000,110.780000,20.350000 +16,2023-08-06 15:00:00,0.000000,21.800000,43.000000,10.000000,54.000000,87.730000,67.700000,771.760000,5.120000,111.050000,20.790000 +16,2023-08-06 16:00:00,0.000000,21.800000,43.000000,10.000000,54.000000,87.900000,67.890000,772.300000,5.250000,111.320000,21.180000 +16,2023-08-06 17:00:00,0.000000,21.600000,45.000000,14.000000,61.000000,87.990000,68.070000,772.800000,6.500000,111.580000,24.680000 +16,2023-08-06 18:00:00,0.000000,21.600000,45.000000,14.000000,61.000000,88.070000,68.260000,773.310000,6.580000,111.830000,24.900000 +16,2023-08-06 19:00:00,0.000000,21.600000,45.000000,14.000000,61.000000,88.140000,68.440000,773.820000,6.640000,112.090000,25.090000 +16,2023-08-06 20:00:00,0.000000,18.900000,51.000000,13.000000,66.000000,88.140000,68.570000,774.200000,6.310000,112.280000,24.240000 +16,2023-08-06 21:00:00,0.000000,18.900000,51.000000,13.000000,66.000000,88.140000,68.710000,774.580000,6.310000,112.480000,24.260000 +16,2023-08-06 22:00:00,0.000000,18.900000,51.000000,13.000000,66.000000,88.140000,68.710000,774.580000,6.310000,112.480000,24.260000 +16,2023-08-06 23:00:00,0.000000,13.900000,68.000000,6.000000,63.000000,87.760000,68.710000,774.580000,4.200000,112.480000,18.110000 +16,2023-08-07 00:00:00,0.000000,13.900000,68.000000,6.000000,63.000000,87.420000,68.710000,774.580000,4.010000,112.480000,17.480000 +16,2023-08-07 01:00:00,0.000000,13.900000,68.000000,6.000000,63.000000,87.130000,68.710000,774.580000,3.840000,112.480000,16.940000 +16,2023-08-07 02:00:00,0.000000,10.900000,80.000000,3.000000,58.000000,86.600000,68.710000,774.580000,3.060000,112.480000,14.260000 +16,2023-08-07 03:00:00,0.000000,10.900000,80.000000,3.000000,58.000000,86.120000,68.710000,774.580000,2.860000,112.480000,13.530000 +16,2023-08-07 04:00:00,0.000000,10.900000,80.000000,3.000000,58.000000,85.700000,68.710000,774.580000,2.700000,112.480000,12.910000 +16,2023-08-07 05:00:00,0.000000,9.000000,91.000000,3.000000,21.000000,84.930000,68.730000,774.620000,2.420000,112.500000,11.860000 +16,2023-08-07 06:00:00,0.000000,9.000000,91.000000,3.000000,21.000000,84.230000,68.740000,774.660000,2.210000,112.520000,10.990000 +16,2023-08-07 07:00:00,0.000000,9.000000,91.000000,3.000000,21.000000,83.620000,68.760000,774.710000,2.030000,112.540000,10.270000 +16,2023-08-07 08:00:00,0.000000,14.300000,68.000000,7.000000,54.000000,83.620000,68.830000,774.920000,2.490000,112.650000,12.110000 +16,2023-08-07 09:00:00,0.000000,14.300000,68.000000,7.000000,54.000000,83.620000,68.900000,775.140000,2.490000,112.750000,12.110000 +16,2023-08-07 10:00:00,0.000000,14.300000,68.000000,7.000000,54.000000,83.620000,68.980000,775.350000,2.490000,112.860000,12.120000 +16,2023-08-07 11:00:00,0.000000,19.800000,47.000000,17.000000,72.000000,84.230000,69.150000,775.850000,4.470000,113.100000,18.990000 +16,2023-08-07 12:00:00,0.000000,19.800000,47.000000,17.000000,72.000000,84.760000,69.330000,776.350000,4.800000,113.350000,20.030000 +16,2023-08-07 13:00:00,0.000000,19.800000,47.000000,17.000000,72.000000,85.220000,69.500000,776.860000,5.110000,113.600000,20.970000 +16,2023-08-07 14:00:00,0.000000,21.200000,38.000000,23.000000,60.000000,85.990000,69.730000,777.500000,7.700000,113.910000,27.990000 +16,2023-08-07 15:00:00,0.000000,21.200000,38.000000,23.000000,60.000000,86.640000,69.950000,778.140000,8.440000,114.230000,29.820000 +16,2023-08-07 16:00:00,0.000000,21.200000,38.000000,23.000000,60.000000,87.180000,70.170000,778.780000,9.100000,114.540000,31.420000 +16,2023-08-07 17:00:00,0.000000,19.700000,41.000000,26.000000,49.000000,87.470000,70.370000,779.340000,11.040000,114.820000,35.760000 +16,2023-08-07 18:00:00,0.000000,19.700000,41.000000,26.000000,49.000000,87.710000,70.560000,779.890000,11.430000,115.090000,36.620000 +16,2023-08-07 19:00:00,0.000000,19.700000,41.000000,26.000000,49.000000,87.910000,70.750000,780.450000,11.770000,115.360000,37.350000 +16,2023-08-07 20:00:00,0.000000,17.000000,56.000000,18.000000,44.000000,87.840000,70.880000,780.800000,7.780000,115.530000,28.350000 +16,2023-08-07 21:00:00,0.000000,17.000000,56.000000,18.000000,44.000000,87.770000,71.000000,781.150000,7.710000,115.700000,28.190000 +16,2023-08-07 22:00:00,0.000000,17.000000,56.000000,18.000000,44.000000,87.710000,71.000000,781.150000,7.640000,115.700000,28.030000 +16,2023-08-07 23:00:00,0.000000,13.300000,79.000000,8.000000,42.000000,87.060000,71.000000,781.150000,4.210000,115.700000,18.370000 +16,2023-08-08 00:00:00,0.000000,13.300000,79.000000,8.000000,42.000000,86.500000,71.000000,781.150000,3.880000,115.700000,17.300000 +16,2023-08-08 01:00:00,0.000000,13.300000,79.000000,8.000000,42.000000,86.000000,71.000000,781.150000,3.620000,115.700000,16.420000 +16,2023-08-08 02:00:00,0.000000,11.600000,73.000000,7.000000,96.000000,85.730000,71.000000,781.150000,3.310000,115.700000,15.360000 +16,2023-08-08 03:00:00,0.000000,11.600000,73.000000,7.000000,96.000000,85.480000,71.000000,781.150000,3.200000,115.700000,14.960000 +16,2023-08-08 04:00:00,0.000000,11.600000,73.000000,7.000000,96.000000,85.270000,71.000000,781.150000,3.110000,115.700000,14.620000 +16,2023-08-08 05:00:00,0.000000,10.000000,75.000000,5.000000,93.000000,85.030000,71.040000,781.240000,2.720000,115.760000,13.180000 +16,2023-08-08 06:00:00,0.000000,10.000000,75.000000,5.000000,93.000000,84.810000,71.070000,781.330000,2.640000,115.810000,12.870000 +16,2023-08-08 07:00:00,0.000000,10.000000,75.000000,5.000000,93.000000,84.620000,71.110000,781.420000,2.570000,115.860000,12.610000 +16,2023-08-08 08:00:00,0.000000,15.200000,55.000000,5.000000,106.000000,84.720000,71.200000,781.650000,2.610000,115.990000,12.760000 +16,2023-08-08 09:00:00,0.000000,15.200000,55.000000,5.000000,106.000000,84.810000,71.300000,781.880000,2.640000,116.130000,12.890000 +16,2023-08-08 10:00:00,0.000000,15.200000,55.000000,5.000000,106.000000,84.900000,71.390000,782.110000,2.670000,116.260000,13.020000 +16,2023-08-08 11:00:00,0.000000,21.200000,39.000000,11.000000,109.000000,85.580000,71.580000,782.570000,3.970000,116.520000,17.650000 +16,2023-08-08 12:00:00,0.000000,21.200000,39.000000,11.000000,109.000000,86.160000,71.770000,783.020000,4.310000,116.780000,18.770000 +16,2023-08-08 13:00:00,0.000000,21.200000,39.000000,11.000000,109.000000,86.660000,71.960000,783.470000,4.620000,117.040000,19.780000 +16,2023-08-08 14:00:00,0.000000,23.400000,34.000000,15.000000,100.000000,87.390000,72.190000,784.040000,6.280000,117.360000,24.610000 +16,2023-08-08 15:00:00,0.000000,23.400000,34.000000,15.000000,100.000000,88.000000,72.420000,784.600000,6.840000,117.680000,26.160000 +16,2023-08-08 16:00:00,0.000000,23.400000,34.000000,15.000000,100.000000,88.500000,72.650000,785.160000,7.350000,118.000000,27.520000 +16,2023-08-08 17:00:00,0.000000,23.600000,30.000000,18.000000,101.000000,89.090000,72.900000,785.760000,9.310000,118.350000,32.340000 +16,2023-08-08 18:00:00,0.000000,23.600000,30.000000,18.000000,101.000000,89.580000,73.150000,786.370000,9.990000,118.690000,33.910000 +16,2023-08-08 19:00:00,0.000000,23.600000,30.000000,18.000000,101.000000,89.970000,73.400000,786.970000,10.570000,119.040000,35.250000 +16,2023-08-08 20:00:00,0.000000,21.400000,34.000000,14.000000,102.000000,90.060000,73.600000,787.470000,8.750000,119.320000,31.120000 +16,2023-08-08 21:00:00,0.000000,21.400000,34.000000,14.000000,102.000000,90.140000,73.810000,787.970000,8.850000,119.600000,31.380000 +16,2023-08-08 22:00:00,0.000000,21.400000,34.000000,14.000000,102.000000,90.200000,73.810000,787.970000,8.930000,119.600000,31.570000 +16,2023-08-08 23:00:00,0.000000,16.800000,46.000000,9.000000,107.000000,90.070000,73.810000,787.970000,6.810000,119.600000,26.260000 +16,2023-08-09 00:00:00,0.000000,16.800000,46.000000,9.000000,107.000000,89.950000,73.810000,787.970000,6.700000,119.600000,25.960000 +16,2023-08-09 01:00:00,0.000000,16.800000,46.000000,9.000000,107.000000,89.850000,73.810000,787.970000,6.600000,119.600000,25.690000 +16,2023-08-09 02:00:00,0.000000,13.600000,57.000000,6.000000,110.000000,89.520000,73.810000,787.970000,5.410000,119.600000,22.340000 +16,2023-08-09 03:00:00,0.000000,13.600000,57.000000,6.000000,110.000000,89.220000,73.810000,787.970000,5.180000,119.600000,21.670000 +16,2023-08-09 04:00:00,0.000000,13.600000,57.000000,6.000000,110.000000,88.950000,73.810000,787.970000,4.990000,119.600000,21.080000 +16,2023-08-09 05:00:00,0.000000,11.200000,69.000000,4.000000,115.000000,88.480000,73.860000,788.070000,4.210000,119.670000,18.660000 +16,2023-08-09 06:00:00,0.000000,11.200000,69.000000,4.000000,115.000000,88.060000,73.910000,788.180000,3.970000,119.740000,17.850000 +16,2023-08-09 07:00:00,0.000000,11.200000,69.000000,4.000000,115.000000,87.680000,73.960000,788.290000,3.760000,119.810000,17.150000 +16,2023-08-09 08:00:00,0.000000,16.000000,52.000000,5.000000,109.000000,87.680000,74.060000,788.520000,3.950000,119.960000,17.810000 +16,2023-08-09 09:00:00,0.000000,16.000000,52.000000,5.000000,109.000000,87.680000,74.170000,788.740000,3.950000,120.110000,17.820000 +16,2023-08-09 10:00:00,0.000000,16.000000,52.000000,5.000000,109.000000,87.680000,74.280000,788.970000,3.950000,120.250000,17.830000 +16,2023-08-09 11:00:00,0.000000,22.700000,32.000000,11.000000,110.000000,88.240000,74.510000,789.460000,5.790000,120.570000,23.530000 +16,2023-08-09 12:00:00,0.000000,22.700000,32.000000,11.000000,110.000000,88.710000,74.740000,789.950000,6.200000,120.880000,24.700000 +16,2023-08-09 13:00:00,0.000000,22.700000,32.000000,11.000000,110.000000,89.110000,74.970000,790.440000,6.560000,121.200000,25.730000 +16,2023-08-09 14:00:00,0.000000,24.700000,26.000000,13.000000,103.000000,89.770000,75.250000,791.030000,7.980000,121.590000,29.470000 +16,2023-08-09 15:00:00,0.000000,24.700000,26.000000,13.000000,103.000000,90.320000,75.530000,791.630000,8.630000,121.970000,31.110000 +16,2023-08-09 16:00:00,0.000000,24.700000,26.000000,13.000000,103.000000,90.770000,75.820000,792.230000,9.200000,122.360000,32.500000 +16,2023-08-09 17:00:00,0.000000,24.900000,26.000000,15.000000,100.000000,91.150000,76.100000,792.840000,10.750000,122.750000,36.070000 +16,2023-08-09 18:00:00,0.000000,24.900000,26.000000,15.000000,100.000000,91.460000,76.390000,793.450000,11.230000,123.140000,37.180000 +16,2023-08-09 19:00:00,0.000000,24.900000,26.000000,15.000000,100.000000,91.710000,76.670000,794.050000,11.640000,123.530000,38.100000 +16,2023-08-09 20:00:00,0.000000,22.700000,30.000000,11.000000,95.000000,91.710000,76.910000,794.560000,9.520000,123.850000,33.400000 +16,2023-08-09 21:00:00,0.000000,22.700000,30.000000,11.000000,95.000000,91.710000,77.150000,795.060000,9.520000,124.170000,33.430000 +16,2023-08-09 22:00:00,0.000000,22.700000,30.000000,11.000000,95.000000,91.710000,77.150000,795.060000,9.520000,124.170000,33.430000 +16,2023-08-09 23:00:00,0.000000,17.300000,43.000000,8.000000,118.000000,91.490000,77.150000,795.060000,7.930000,124.170000,29.570000 +16,2023-08-10 00:00:00,0.000000,17.300000,43.000000,8.000000,118.000000,91.290000,77.150000,795.060000,7.700000,124.170000,29.000000 +16,2023-08-10 01:00:00,0.000000,17.300000,43.000000,8.000000,118.000000,91.110000,77.150000,795.060000,7.510000,124.170000,28.500000 +16,2023-08-10 02:00:00,0.000000,14.300000,53.000000,7.000000,143.000000,90.720000,77.150000,795.060000,6.750000,124.170000,26.500000 +16,2023-08-10 03:00:00,0.000000,14.300000,53.000000,7.000000,143.000000,90.370000,77.150000,795.060000,6.420000,124.170000,25.600000 +16,2023-08-10 04:00:00,0.000000,14.300000,53.000000,7.000000,143.000000,90.060000,77.150000,795.060000,6.150000,124.170000,24.820000 +16,2023-08-10 05:00:00,0.000000,12.300000,63.000000,6.000000,141.000000,89.570000,77.210000,795.200000,5.450000,124.260000,22.820000 +16,2023-08-10 06:00:00,0.000000,12.300000,63.000000,6.000000,141.000000,89.140000,77.280000,795.350000,5.120000,124.350000,21.840000 +16,2023-08-10 07:00:00,0.000000,12.300000,63.000000,6.000000,141.000000,88.750000,77.340000,795.490000,4.840000,124.440000,20.990000 +16,2023-08-10 08:00:00,0.000000,17.300000,48.000000,8.000000,140.000000,88.750000,77.470000,795.770000,5.360000,124.610000,22.570000 +16,2023-08-10 09:00:00,0.000000,17.300000,48.000000,8.000000,140.000000,88.750000,77.600000,796.050000,5.360000,124.790000,22.580000 +16,2023-08-10 10:00:00,0.000000,17.300000,48.000000,8.000000,140.000000,88.750000,77.730000,796.330000,5.360000,124.960000,22.600000 +16,2023-08-10 11:00:00,0.000000,23.300000,35.000000,11.000000,158.000000,89.060000,77.960000,796.840000,6.520000,125.270000,25.950000 +16,2023-08-10 12:00:00,0.000000,23.300000,35.000000,11.000000,158.000000,89.320000,78.190000,797.350000,6.770000,125.590000,26.650000 +16,2023-08-10 13:00:00,0.000000,23.300000,35.000000,11.000000,158.000000,89.540000,78.420000,797.850000,6.980000,125.900000,27.260000 +16,2023-08-10 14:00:00,0.000000,25.300000,31.000000,12.000000,173.000000,89.950000,78.690000,798.460000,7.780000,126.280000,29.400000 +16,2023-08-10 15:00:00,0.000000,25.300000,31.000000,12.000000,173.000000,90.280000,78.970000,799.070000,8.170000,126.650000,30.400000 +16,2023-08-10 16:00:00,0.000000,25.300000,31.000000,12.000000,173.000000,90.560000,79.250000,799.670000,8.490000,127.020000,31.250000 +16,2023-08-10 17:00:00,0.000000,26.100000,30.000000,12.000000,167.000000,90.850000,79.540000,800.320000,8.860000,127.420000,32.180000 +16,2023-08-10 18:00:00,0.000000,26.100000,30.000000,12.000000,167.000000,91.090000,79.830000,800.960000,9.170000,127.820000,32.960000 +16,2023-08-10 19:00:00,0.000000,26.100000,30.000000,12.000000,167.000000,91.290000,80.130000,801.610000,9.420000,128.210000,33.610000 +16,2023-08-10 20:00:00,0.000000,26.100000,30.000000,12.000000,167.000000,91.440000,80.420000,802.260000,9.640000,128.610000,34.150000 +16,2023-08-10 21:00:00,0.000000,26.100000,30.000000,12.000000,167.000000,91.570000,80.420000,802.260000,9.820000,128.610000,34.570000 +16,2023-08-10 22:00:00,0.000000,26.100000,30.000000,12.000000,167.000000,91.680000,80.420000,802.260000,9.960000,128.610000,34.910000 +16,2023-08-10 23:00:00,0.000000,19.500000,46.000000,10.000000,173.000000,91.400000,80.420000,802.260000,8.660000,128.610000,31.800000 +16,2023-08-11 00:00:00,0.000000,19.500000,46.000000,10.000000,173.000000,91.160000,80.420000,802.260000,8.370000,128.610000,31.080000 +16,2023-08-11 01:00:00,0.000000,19.500000,46.000000,10.000000,173.000000,90.950000,80.420000,802.260000,8.120000,128.610000,30.450000 +16,2023-08-11 02:00:00,0.000000,19.500000,46.000000,10.000000,173.000000,90.760000,80.420000,802.260000,7.910000,128.610000,29.920000 +16,2023-08-11 03:00:00,0.000000,19.500000,46.000000,10.000000,173.000000,90.600000,80.420000,802.260000,7.730000,128.610000,29.460000 +16,2023-08-11 04:00:00,0.000000,19.500000,46.000000,10.000000,173.000000,90.460000,80.420000,802.260000,7.580000,128.610000,29.060000 +16,2023-08-11 05:00:00,0.000000,15.300000,61.000000,7.000000,168.000000,89.970000,80.510000,802.490000,6.070000,128.730000,24.950000 +16,2023-08-11 06:00:00,0.000000,15.300000,61.000000,7.000000,168.000000,89.530000,80.600000,802.720000,5.700000,128.860000,23.900000 +16,2023-08-11 07:00:00,0.000000,15.300000,61.000000,7.000000,168.000000,89.150000,80.690000,802.950000,5.400000,128.980000,23.000000 +16,2023-08-11 08:00:00,0.000000,15.300000,61.000000,7.000000,168.000000,88.810000,80.780000,803.180000,5.140000,129.100000,22.230000 +16,2023-08-11 09:00:00,0.000000,15.300000,61.000000,7.000000,168.000000,88.510000,80.870000,803.410000,4.930000,129.220000,21.570000 +16,2023-08-11 10:00:00,0.000000,15.300000,61.000000,7.000000,168.000000,88.250000,80.960000,803.640000,4.740000,129.340000,21.000000 +16,2023-08-11 11:00:00,0.000000,22.800000,44.000000,8.000000,183.000000,88.340000,81.160000,804.170000,5.050000,129.620000,21.990000 +16,2023-08-11 12:00:00,0.000000,22.800000,44.000000,8.000000,183.000000,88.420000,81.370000,804.700000,5.110000,129.900000,22.180000 +16,2023-08-11 13:00:00,0.000000,22.800000,44.000000,8.000000,183.000000,88.490000,81.580000,805.220000,5.160000,130.180000,22.350000 +16,2023-08-11 14:00:00,0.000000,22.800000,44.000000,8.000000,183.000000,88.540000,81.780000,805.750000,5.200000,130.460000,22.500000 +16,2023-08-11 15:00:00,0.000000,22.800000,44.000000,8.000000,183.000000,88.590000,81.990000,806.280000,5.240000,130.740000,22.630000 +16,2023-08-11 16:00:00,0.000000,22.800000,44.000000,8.000000,183.000000,88.630000,82.190000,806.810000,5.270000,131.020000,22.740000 +16,2023-08-11 17:00:00,0.000000,24.800000,40.000000,12.000000,143.000000,88.860000,82.440000,807.450000,6.650000,131.350000,26.800000 +16,2023-08-11 18:00:00,0.000000,24.800000,40.000000,12.000000,143.000000,89.040000,82.690000,808.090000,6.840000,131.690000,27.320000 +16,2023-08-11 19:00:00,0.000000,24.800000,40.000000,12.000000,143.000000,89.200000,82.940000,808.730000,6.990000,132.020000,27.770000 +16,2023-08-11 20:00:00,0.000000,24.800000,40.000000,12.000000,143.000000,89.320000,83.180000,809.360000,7.120000,132.360000,28.140000 +16,2023-08-11 21:00:00,0.000000,24.800000,40.000000,12.000000,143.000000,89.430000,83.180000,809.360000,7.230000,132.360000,28.440000 +16,2023-08-11 22:00:00,0.000000,24.800000,40.000000,12.000000,143.000000,89.520000,83.180000,809.360000,7.320000,132.360000,28.680000 +16,2023-08-11 23:00:00,0.000000,17.100000,76.000000,2.000000,200.000000,88.840000,83.180000,809.360000,4.010000,132.360000,18.760000 +16,2023-08-12 00:00:00,0.000000,17.100000,76.000000,2.000000,200.000000,88.240000,83.180000,809.360000,3.680000,132.360000,17.610000 +16,2023-08-12 01:00:00,0.000000,17.100000,76.000000,2.000000,200.000000,87.720000,83.180000,809.360000,3.410000,132.360000,16.650000 +16,2023-08-12 02:00:00,0.000000,17.100000,76.000000,2.000000,200.000000,87.250000,83.180000,809.360000,3.200000,132.360000,15.840000 +16,2023-08-12 03:00:00,0.000000,17.100000,76.000000,2.000000,200.000000,86.850000,83.180000,809.360000,3.020000,132.360000,15.160000 +16,2023-08-12 04:00:00,0.000000,17.100000,76.000000,2.000000,200.000000,86.490000,83.180000,809.360000,2.870000,132.360000,14.570000 +16,2023-08-12 05:00:00,0.000000,14.800000,92.000000,6.000000,252.000000,85.410000,83.200000,809.430000,3.010000,132.380000,15.140000 +16,2023-08-12 06:00:00,0.000000,14.800000,92.000000,6.000000,252.000000,84.470000,83.210000,809.500000,2.650000,132.400000,13.720000 +16,2023-08-12 07:00:00,0.000000,14.800000,92.000000,6.000000,252.000000,83.670000,83.220000,809.570000,2.380000,132.420000,12.610000 +16,2023-08-12 08:00:00,0.000000,14.800000,92.000000,6.000000,252.000000,82.970000,83.240000,809.640000,2.170000,132.430000,11.730000 +16,2023-08-12 09:00:00,0.000000,14.800000,92.000000,6.000000,252.000000,82.370000,83.250000,809.710000,2.020000,132.450000,11.030000 +16,2023-08-12 10:00:00,0.000000,14.800000,92.000000,6.000000,252.000000,81.850000,83.260000,809.780000,1.890000,132.470000,10.470000 +16,2023-08-12 11:00:00,5.130000,20.300000,72.000000,2.000000,244.000000,31.800000,53.230000,767.940000,0.010000,90.730000,0.020000 +16,2023-08-12 12:00:00,0.000000,20.300000,72.000000,2.000000,244.000000,34.290000,53.290000,768.290000,0.010000,90.830000,0.030000 +16,2023-08-12 13:00:00,0.000000,20.300000,72.000000,2.000000,244.000000,36.720000,53.360000,768.640000,0.020000,90.930000,0.050000 +16,2023-08-12 14:00:00,0.000000,20.300000,72.000000,2.000000,244.000000,39.090000,53.420000,768.980000,0.030000,91.030000,0.080000 +16,2023-08-12 15:00:00,0.000000,20.300000,72.000000,2.000000,244.000000,41.390000,53.490000,769.330000,0.050000,91.130000,0.130000 +16,2023-08-12 16:00:00,0.000000,20.300000,72.000000,2.000000,244.000000,43.620000,53.550000,769.680000,0.070000,91.230000,0.190000 +16,2023-08-12 17:00:00,0.000000,24.800000,36.000000,10.000000,282.000000,49.460000,53.740000,770.720000,0.250000,91.530000,0.660000 +16,2023-08-12 18:00:00,0.000000,24.800000,36.000000,10.000000,282.000000,54.830000,53.940000,771.760000,0.450000,91.830000,1.670000 +16,2023-08-12 19:00:00,0.000000,24.800000,36.000000,10.000000,282.000000,59.690000,54.130000,772.800000,0.660000,92.130000,2.960000 +16,2023-08-12 20:00:00,0.000000,24.800000,36.000000,10.000000,282.000000,64.050000,54.320000,773.840000,0.840000,92.430000,3.910000 +16,2023-08-12 21:00:00,0.000000,24.800000,36.000000,10.000000,282.000000,67.920000,54.320000,773.840000,0.970000,92.430000,4.570000 +16,2023-08-12 22:00:00,0.000000,24.800000,36.000000,10.000000,282.000000,71.310000,54.320000,773.840000,1.080000,92.430000,5.110000 +16,2023-08-12 23:00:00,0.000000,16.400000,62.000000,4.000000,257.000000,72.370000,54.320000,773.840000,0.830000,92.430000,3.870000 +16,2023-08-13 00:00:00,0.000000,16.400000,62.000000,4.000000,257.000000,73.350000,54.320000,773.840000,0.860000,92.430000,4.040000 +16,2023-08-13 01:00:00,0.000000,16.400000,62.000000,4.000000,257.000000,74.260000,54.320000,773.840000,0.900000,92.430000,4.230000 +16,2023-08-13 02:00:00,0.000000,16.400000,62.000000,4.000000,257.000000,75.100000,54.320000,773.840000,0.940000,92.430000,4.430000 +16,2023-08-13 03:00:00,0.000000,16.400000,62.000000,4.000000,257.000000,75.880000,54.320000,773.840000,0.990000,92.430000,4.660000 +16,2023-08-13 04:00:00,0.000000,16.400000,62.000000,4.000000,257.000000,76.600000,54.320000,773.840000,1.030000,92.430000,4.890000 +16,2023-08-13 05:00:00,0.000000,12.600000,75.000000,8.000000,211.000000,76.940000,54.370000,773.950000,1.300000,92.500000,6.120000 +16,2023-08-13 06:00:00,0.000000,12.600000,75.000000,8.000000,211.000000,77.260000,54.420000,774.060000,1.330000,92.580000,6.260000 +16,2023-08-13 07:00:00,0.000000,12.600000,75.000000,8.000000,211.000000,77.560000,54.470000,774.180000,1.360000,92.650000,6.400000 +16,2023-08-13 08:00:00,0.000000,12.600000,75.000000,8.000000,211.000000,77.850000,54.520000,774.290000,1.390000,92.720000,6.550000 +16,2023-08-13 09:00:00,0.000000,12.600000,75.000000,8.000000,211.000000,78.110000,54.570000,774.400000,1.420000,92.800000,6.680000 +16,2023-08-13 10:00:00,0.000000,12.600000,75.000000,8.000000,211.000000,78.350000,54.620000,774.520000,1.450000,92.870000,6.820000 +16,2023-08-13 11:00:00,0.000000,25.000000,38.000000,11.000000,217.000000,80.290000,54.900000,775.120000,2.040000,93.280000,9.240000 +16,2023-08-13 12:00:00,0.000000,25.000000,38.000000,11.000000,217.000000,81.930000,55.170000,775.730000,2.460000,93.680000,10.840000 +16,2023-08-13 13:00:00,0.000000,25.000000,38.000000,11.000000,217.000000,83.320000,55.440000,776.340000,2.930000,94.080000,12.500000 +16,2023-08-13 14:00:00,0.000000,25.000000,38.000000,11.000000,217.000000,84.490000,55.710000,776.950000,3.420000,94.480000,14.160000 +16,2023-08-13 15:00:00,0.000000,25.000000,38.000000,11.000000,217.000000,85.470000,55.980000,777.560000,3.910000,94.880000,15.740000 +16,2023-08-13 16:00:00,0.000000,25.000000,38.000000,11.000000,217.000000,86.290000,56.250000,778.170000,4.390000,95.280000,17.200000 +16,2023-08-13 17:00:00,0.000000,27.200000,29.000000,15.000000,238.000000,87.530000,56.600000,778.960000,6.400000,95.800000,22.690000 +16,2023-08-13 18:00:00,0.000000,27.200000,29.000000,15.000000,238.000000,88.530000,56.960000,779.750000,7.390000,96.320000,25.160000 +16,2023-08-13 19:00:00,0.000000,27.200000,29.000000,15.000000,238.000000,89.340000,57.310000,780.550000,8.290000,96.840000,27.320000 +16,2023-08-13 20:00:00,0.000000,27.200000,29.000000,15.000000,238.000000,89.980000,57.660000,781.340000,9.100000,97.360000,29.180000 +16,2023-08-13 21:00:00,0.000000,27.200000,29.000000,15.000000,238.000000,90.500000,57.660000,781.340000,9.790000,97.360000,30.670000 +16,2023-08-13 22:00:00,0.000000,27.200000,29.000000,15.000000,238.000000,90.910000,57.660000,781.340000,10.390000,97.360000,31.910000 +16,2023-08-13 23:00:00,0.000000,22.100000,39.000000,12.000000,244.000000,90.910000,57.660000,781.340000,8.930000,97.360000,28.810000 +16,2023-08-14 00:00:00,0.000000,22.100000,39.000000,12.000000,244.000000,90.910000,57.660000,781.340000,8.930000,97.360000,28.810000 +16,2023-08-14 01:00:00,0.000000,22.100000,39.000000,12.000000,244.000000,90.910000,57.660000,781.340000,8.930000,97.360000,28.810000 +16,2023-08-14 02:00:00,0.000000,22.100000,39.000000,12.000000,244.000000,90.910000,57.660000,781.340000,8.930000,97.360000,28.810000 +16,2023-08-14 03:00:00,0.000000,22.100000,39.000000,12.000000,244.000000,90.910000,57.660000,781.340000,8.930000,97.360000,28.810000 +16,2023-08-14 04:00:00,0.000000,22.100000,39.000000,12.000000,244.000000,90.910000,57.660000,781.340000,8.930000,97.360000,28.810000 +16,2023-08-14 05:00:00,0.000000,19.500000,45.000000,12.000000,215.000000,90.750000,57.810000,781.680000,8.730000,97.580000,28.390000 +16,2023-08-14 06:00:00,0.000000,19.500000,45.000000,12.000000,215.000000,90.610000,57.960000,782.010000,8.550000,97.800000,28.040000 +16,2023-08-14 07:00:00,0.000000,19.500000,45.000000,12.000000,215.000000,90.480000,58.110000,782.350000,8.410000,98.020000,27.740000 +16,2023-08-14 08:00:00,0.000000,19.500000,45.000000,12.000000,215.000000,90.380000,58.260000,782.680000,8.280000,98.240000,27.480000 +16,2023-08-14 09:00:00,0.000000,19.500000,45.000000,12.000000,215.000000,90.290000,58.410000,783.020000,8.170000,98.460000,27.260000 +16,2023-08-14 10:00:00,0.000000,19.500000,45.000000,12.000000,215.000000,90.210000,58.560000,783.350000,8.080000,98.680000,27.080000 +16,2023-08-14 11:00:00,0.300000,24.000000,37.000000,27.000000,257.000000,84.860000,57.200000,781.780000,8.050000,96.710000,26.750000 +16,2023-08-14 12:00:00,0.000000,24.000000,37.000000,27.000000,257.000000,85.940000,57.430000,782.280000,9.350000,97.050000,29.690000 +16,2023-08-14 13:00:00,0.000000,24.000000,37.000000,27.000000,257.000000,86.820000,57.650000,782.790000,10.590000,97.380000,32.320000 +16,2023-08-14 14:00:00,0.000000,24.000000,37.000000,27.000000,257.000000,87.520000,57.880000,783.300000,11.710000,97.710000,34.610000 +16,2023-08-14 15:00:00,0.000000,24.000000,37.000000,27.000000,257.000000,88.090000,58.110000,783.800000,12.700000,98.040000,36.570000 +16,2023-08-14 16:00:00,0.000000,24.000000,37.000000,27.000000,257.000000,88.550000,58.330000,784.310000,13.560000,98.370000,38.230000 +16,2023-08-14 17:00:00,3.770000,22.400000,22.000000,23.000000,270.000000,46.110000,42.530000,758.710000,0.310000,74.610000,0.700000 +16,2023-08-14 18:00:00,0.000000,22.400000,22.000000,23.000000,270.000000,52.930000,42.790000,759.280000,0.730000,75.010000,2.730000 +16,2023-08-14 19:00:00,0.000000,22.400000,22.000000,23.000000,270.000000,59.080000,43.040000,759.850000,1.230000,75.400000,5.000000 +16,2023-08-14 20:00:00,0.000000,22.400000,22.000000,23.000000,270.000000,64.530000,43.290000,760.420000,1.650000,75.800000,6.680000 +16,2023-08-14 21:00:00,0.000000,22.400000,22.000000,23.000000,270.000000,69.290000,43.290000,760.420000,1.950000,75.800000,7.770000 +16,2023-08-14 22:00:00,0.000000,22.400000,22.000000,23.000000,270.000000,73.380000,43.290000,760.420000,2.250000,75.800000,8.830000 +16,2023-08-14 23:00:00,0.000000,17.200000,33.000000,14.000000,266.000000,75.540000,43.290000,760.420000,1.600000,75.800000,6.490000 +16,2023-08-15 00:00:00,0.000000,17.200000,33.000000,14.000000,266.000000,77.440000,43.290000,760.420000,1.820000,75.800000,7.320000 +16,2023-08-15 01:00:00,0.000000,17.200000,33.000000,14.000000,266.000000,79.110000,43.290000,760.420000,2.100000,75.800000,8.320000 +16,2023-08-15 02:00:00,0.000000,17.200000,33.000000,14.000000,266.000000,80.570000,43.290000,760.420000,2.450000,75.800000,9.470000 +16,2023-08-15 03:00:00,0.000000,17.200000,33.000000,14.000000,266.000000,81.850000,43.290000,760.420000,2.830000,75.800000,10.710000 +16,2023-08-15 04:00:00,0.000000,17.200000,33.000000,14.000000,266.000000,82.970000,43.290000,760.420000,3.250000,75.800000,11.980000 +16,2023-08-15 05:00:00,0.000000,17.400000,35.000000,16.000000,268.000000,83.910000,43.370000,760.950000,4.070000,75.930000,14.300000 +16,2023-08-15 06:00:00,0.000000,17.400000,35.000000,16.000000,268.000000,84.730000,43.460000,761.480000,4.540000,76.060000,15.580000 +16,2023-08-15 07:00:00,0.000000,17.400000,35.000000,16.000000,268.000000,85.430000,43.540000,762.010000,5.000000,76.190000,16.770000 +16,2023-08-15 08:00:00,0.000000,17.400000,35.000000,16.000000,268.000000,86.030000,43.620000,762.540000,5.440000,76.320000,17.880000 +16,2023-08-15 09:00:00,0.000000,17.400000,35.000000,16.000000,268.000000,86.550000,43.700000,763.070000,5.860000,76.450000,18.890000 +16,2023-08-15 10:00:00,0.000000,17.400000,35.000000,16.000000,268.000000,87.000000,43.780000,763.600000,6.240000,76.580000,19.800000 +16,2023-08-15 11:00:00,0.980000,13.900000,73.000000,25.000000,274.000000,70.320000,40.640000,758.900000,2.230000,71.680000,8.440000 +16,2023-08-15 12:00:00,0.000000,13.900000,73.000000,25.000000,274.000000,71.470000,40.670000,759.080000,2.310000,71.720000,8.730000 +16,2023-08-15 13:00:00,0.000000,13.900000,73.000000,25.000000,274.000000,72.520000,40.690000,759.250000,2.410000,71.770000,9.030000 +16,2023-08-15 14:00:00,0.000000,13.900000,73.000000,25.000000,274.000000,73.480000,40.720000,759.430000,2.500000,71.810000,9.340000 +16,2023-08-15 15:00:00,0.000000,13.900000,73.000000,25.000000,274.000000,74.340000,40.750000,759.600000,2.610000,71.860000,9.670000 +16,2023-08-15 16:00:00,0.000000,13.900000,73.000000,25.000000,274.000000,75.130000,40.770000,759.780000,2.720000,71.900000,10.020000 +16,2023-08-15 17:00:00,1.750000,17.000000,60.000000,25.000000,287.000000,54.430000,35.700000,751.390000,0.930000,63.820000,3.220000 +16,2023-08-15 18:00:00,0.000000,17.000000,60.000000,25.000000,287.000000,57.800000,35.750000,751.710000,1.240000,63.900000,4.450000 +16,2023-08-15 19:00:00,0.000000,17.000000,60.000000,25.000000,287.000000,60.890000,35.800000,752.030000,1.520000,63.980000,5.490000 +16,2023-08-15 20:00:00,0.000000,17.000000,60.000000,25.000000,287.000000,63.690000,35.840000,752.340000,1.760000,64.060000,6.320000 +16,2023-08-15 21:00:00,0.000000,17.000000,60.000000,25.000000,287.000000,66.220000,35.840000,752.340000,1.950000,64.060000,6.950000 +16,2023-08-15 22:00:00,0.000000,17.000000,60.000000,25.000000,287.000000,68.490000,35.840000,752.340000,2.100000,64.060000,7.450000 +16,2023-08-15 23:00:00,0.120000,15.300000,63.000000,17.000000,273.000000,68.450000,35.480000,751.750000,1.400000,63.460000,5.030000 +16,2023-08-16 00:00:00,0.000000,15.300000,63.000000,17.000000,273.000000,70.060000,35.480000,751.750000,1.480000,63.460000,5.300000 +16,2023-08-16 01:00:00,0.000000,15.300000,63.000000,17.000000,273.000000,71.520000,35.480000,751.750000,1.550000,63.460000,5.560000 +16,2023-08-16 02:00:00,0.000000,15.300000,63.000000,17.000000,273.000000,72.840000,35.480000,751.750000,1.630000,63.460000,5.840000 +16,2023-08-16 03:00:00,0.000000,15.300000,63.000000,17.000000,273.000000,74.040000,35.480000,751.750000,1.720000,63.460000,6.140000 +16,2023-08-16 04:00:00,0.000000,15.300000,63.000000,17.000000,273.000000,75.130000,35.480000,751.750000,1.820000,63.460000,6.470000 +16,2023-08-16 05:00:00,0.000000,14.000000,68.000000,15.000000,282.000000,75.880000,35.540000,751.930000,1.720000,63.570000,6.150000 +16,2023-08-16 06:00:00,0.000000,14.000000,68.000000,15.000000,282.000000,76.570000,35.610000,752.110000,1.800000,63.680000,6.420000 +16,2023-08-16 07:00:00,0.000000,14.000000,68.000000,15.000000,282.000000,77.190000,35.670000,752.290000,1.880000,63.780000,6.710000 +16,2023-08-16 08:00:00,0.000000,14.000000,68.000000,15.000000,282.000000,77.760000,35.740000,752.470000,1.970000,63.890000,7.000000 +16,2023-08-16 09:00:00,0.000000,14.000000,68.000000,15.000000,282.000000,78.280000,35.800000,752.650000,2.050000,64.000000,7.290000 +16,2023-08-16 10:00:00,0.000000,14.000000,68.000000,15.000000,282.000000,78.760000,35.870000,752.830000,2.140000,64.100000,7.580000 +16,2023-08-16 11:00:00,0.030000,19.200000,44.000000,13.000000,278.000000,80.030000,36.030000,753.270000,2.190000,64.360000,7.770000 +16,2023-08-16 12:00:00,0.000000,19.200000,44.000000,13.000000,278.000000,81.140000,36.190000,753.710000,2.480000,64.620000,8.670000 +16,2023-08-16 13:00:00,0.000000,19.200000,44.000000,13.000000,278.000000,82.110000,36.350000,754.150000,2.780000,64.880000,9.580000 +16,2023-08-16 14:00:00,0.000000,19.200000,44.000000,13.000000,278.000000,82.950000,36.510000,754.590000,3.090000,65.140000,10.490000 +16,2023-08-16 15:00:00,0.000000,19.200000,44.000000,13.000000,278.000000,83.680000,36.670000,755.030000,3.390000,65.400000,11.360000 +16,2023-08-16 16:00:00,0.000000,19.200000,44.000000,13.000000,278.000000,84.320000,36.830000,755.470000,3.690000,65.660000,12.190000 +16,2023-08-16 17:00:00,0.000000,23.000000,31.000000,4.000000,251.000000,85.300000,37.080000,756.150000,2.680000,66.060000,9.410000 +16,2023-08-16 18:00:00,0.000000,23.000000,31.000000,4.000000,251.000000,86.150000,37.330000,756.840000,3.020000,66.460000,10.430000 +16,2023-08-16 19:00:00,0.000000,23.000000,31.000000,4.000000,251.000000,86.880000,37.570000,757.520000,3.350000,66.860000,11.400000 +16,2023-08-16 20:00:00,0.000000,23.000000,31.000000,4.000000,251.000000,87.520000,37.820000,758.210000,3.670000,67.260000,12.300000 +16,2023-08-16 21:00:00,0.000000,23.000000,31.000000,4.000000,251.000000,88.060000,37.820000,758.210000,3.970000,67.260000,13.090000 +16,2023-08-16 22:00:00,0.000000,23.000000,31.000000,4.000000,251.000000,88.530000,37.820000,758.210000,4.250000,67.260000,13.800000 +16,2023-08-16 23:00:00,0.000000,17.500000,45.000000,7.000000,168.000000,88.530000,37.820000,758.210000,4.940000,67.260000,15.500000 +16,2023-08-17 00:00:00,0.000000,17.500000,45.000000,7.000000,168.000000,88.530000,37.820000,758.210000,4.940000,67.260000,15.500000 +16,2023-08-17 01:00:00,0.000000,17.500000,45.000000,7.000000,168.000000,88.530000,37.820000,758.210000,4.940000,67.260000,15.500000 +16,2023-08-17 02:00:00,0.000000,17.500000,45.000000,7.000000,168.000000,88.530000,37.820000,758.210000,4.940000,67.260000,15.500000 +16,2023-08-17 03:00:00,0.000000,17.500000,45.000000,7.000000,168.000000,88.530000,37.820000,758.210000,4.940000,67.260000,15.500000 +16,2023-08-17 04:00:00,0.000000,17.500000,45.000000,7.000000,168.000000,88.530000,37.820000,758.210000,4.940000,67.260000,15.500000 +16,2023-08-17 05:00:00,0.000000,12.700000,63.000000,4.000000,255.000000,88.230000,37.820000,758.210000,4.070000,67.260000,13.340000 +16,2023-08-17 06:00:00,0.000000,12.700000,63.000000,4.000000,255.000000,87.960000,37.910000,758.490000,3.910000,67.400000,12.950000 +16,2023-08-17 07:00:00,0.000000,12.700000,63.000000,4.000000,255.000000,87.720000,38.000000,758.780000,3.780000,67.540000,12.610000 +16,2023-08-17 08:00:00,0.000000,12.700000,63.000000,4.000000,255.000000,87.500000,38.080000,759.060000,3.660000,67.680000,12.320000 +16,2023-08-17 09:00:00,0.000000,12.700000,63.000000,4.000000,255.000000,87.300000,38.170000,759.340000,3.560000,67.820000,12.060000 +16,2023-08-17 10:00:00,0.000000,12.700000,63.000000,4.000000,255.000000,87.120000,38.260000,759.630000,3.470000,67.960000,11.830000 +16,2023-08-17 11:00:00,0.000000,18.400000,52.000000,8.000000,343.000000,87.120000,38.420000,760.160000,4.240000,68.220000,13.900000 +16,2023-08-17 12:00:00,0.000000,18.400000,52.000000,8.000000,343.000000,87.120000,38.580000,760.690000,4.240000,68.480000,13.930000 +16,2023-08-17 13:00:00,0.000000,18.400000,52.000000,8.000000,343.000000,87.120000,38.740000,761.220000,4.240000,68.740000,13.960000 +16,2023-08-17 14:00:00,0.000000,18.400000,52.000000,8.000000,343.000000,87.120000,38.910000,761.750000,4.240000,69.000000,13.990000 +16,2023-08-17 15:00:00,0.000000,18.400000,52.000000,8.000000,343.000000,87.120000,39.070000,762.280000,4.240000,69.260000,14.020000 +16,2023-08-17 16:00:00,0.000000,18.400000,52.000000,8.000000,343.000000,87.120000,39.230000,762.810000,4.240000,69.520000,14.050000 +16,2023-08-17 17:00:00,0.120000,17.500000,59.000000,13.000000,3.000000,86.060000,39.360000,763.240000,4.700000,69.730000,15.230000 +16,2023-08-17 18:00:00,0.000000,17.500000,59.000000,13.000000,3.000000,86.060000,39.490000,763.670000,4.700000,69.940000,15.250000 +16,2023-08-17 19:00:00,0.000000,17.500000,59.000000,13.000000,3.000000,86.060000,39.620000,764.100000,4.700000,70.150000,15.280000 +16,2023-08-17 20:00:00,0.000000,17.500000,59.000000,13.000000,3.000000,86.060000,39.760000,764.520000,4.700000,70.360000,15.300000 +16,2023-08-17 21:00:00,0.000000,17.500000,59.000000,13.000000,3.000000,86.060000,39.760000,764.520000,4.700000,70.360000,15.300000 +16,2023-08-17 22:00:00,0.000000,17.500000,59.000000,13.000000,3.000000,86.060000,39.760000,764.520000,4.700000,70.360000,15.300000 +16,2023-08-17 23:00:00,0.650000,13.800000,81.000000,6.000000,341.000000,80.590000,39.760000,764.520000,1.640000,70.360000,6.300000 +16,2023-08-18 00:00:00,0.000000,13.800000,81.000000,6.000000,341.000000,80.590000,39.760000,764.520000,1.640000,70.360000,6.300000 +16,2023-08-18 01:00:00,0.000000,13.800000,81.000000,6.000000,341.000000,80.590000,39.760000,764.520000,1.640000,70.360000,6.300000 +16,2023-08-18 02:00:00,0.000000,13.800000,81.000000,6.000000,341.000000,80.590000,39.760000,764.520000,1.640000,70.360000,6.300000 +16,2023-08-18 03:00:00,0.000000,13.800000,81.000000,6.000000,341.000000,80.590000,39.760000,764.520000,1.640000,70.360000,6.300000 +16,2023-08-18 04:00:00,0.000000,13.800000,81.000000,6.000000,341.000000,80.590000,39.760000,764.520000,1.640000,70.360000,6.300000 +16,2023-08-18 05:00:00,0.000000,13.700000,87.000000,8.000000,359.000000,80.550000,39.760000,764.520000,1.800000,70.360000,6.890000 +16,2023-08-18 06:00:00,0.000000,13.700000,87.000000,8.000000,359.000000,80.510000,39.800000,764.720000,1.790000,70.440000,6.870000 +16,2023-08-18 07:00:00,0.000000,13.700000,87.000000,8.000000,359.000000,80.470000,39.850000,764.910000,1.790000,70.510000,6.850000 +16,2023-08-18 08:00:00,0.000000,13.700000,87.000000,8.000000,359.000000,80.440000,39.900000,765.100000,1.780000,70.590000,6.840000 +16,2023-08-18 09:00:00,0.000000,13.700000,87.000000,8.000000,359.000000,80.410000,39.940000,765.290000,1.780000,70.660000,6.820000 +16,2023-08-18 10:00:00,0.000000,13.700000,87.000000,8.000000,359.000000,80.390000,39.990000,765.490000,1.770000,70.740000,6.810000 +16,2023-08-18 11:00:00,0.000000,17.400000,61.000000,16.000000,21.000000,80.940000,40.170000,766.220000,2.820000,71.020000,10.240000 +16,2023-08-18 12:00:00,0.000000,17.400000,61.000000,16.000000,21.000000,81.420000,40.340000,766.950000,2.980000,71.310000,10.750000 +16,2023-08-18 13:00:00,0.000000,17.400000,61.000000,16.000000,21.000000,81.850000,40.520000,767.680000,3.130000,71.600000,11.240000 +16,2023-08-18 14:00:00,0.000000,17.400000,61.000000,16.000000,21.000000,82.230000,40.700000,768.410000,3.280000,71.880000,11.690000 +16,2023-08-18 15:00:00,0.000000,17.400000,61.000000,16.000000,21.000000,82.570000,40.880000,769.140000,3.420000,72.160000,12.120000 +16,2023-08-18 16:00:00,0.000000,17.400000,61.000000,16.000000,21.000000,82.870000,41.050000,769.870000,3.550000,72.450000,12.520000 +16,2023-08-18 17:00:00,0.030000,17.000000,57.000000,15.000000,20.000000,83.200000,41.240000,770.660000,3.530000,72.760000,12.480000 +17,2023-08-03 00:00:00,0.000000,16.400000,63.000000,6.000000,54.000000,86.000000,118.400000,826.100000,3.270000,174.330000,17.540000 +17,2023-08-03 01:00:00,0.000000,16.400000,63.000000,6.000000,54.000000,86.000000,118.400000,826.100000,3.270000,174.330000,17.540000 +17,2023-08-03 02:00:00,0.000000,13.900000,72.000000,3.000000,48.000000,85.800000,118.400000,826.100000,2.730000,174.330000,15.320000 +17,2023-08-03 03:00:00,0.000000,13.900000,72.000000,3.000000,48.000000,85.610000,118.400000,826.100000,2.670000,174.330000,15.030000 +17,2023-08-03 04:00:00,0.000000,13.900000,72.000000,3.000000,48.000000,85.450000,118.400000,826.100000,2.610000,174.330000,14.770000 +17,2023-08-03 05:00:00,0.000000,12.500000,79.000000,2.000000,38.000000,85.140000,118.440000,826.210000,2.370000,174.380000,13.740000 +17,2023-08-03 06:00:00,0.000000,12.500000,79.000000,2.000000,38.000000,84.860000,118.470000,826.310000,2.280000,174.430000,13.330000 +17,2023-08-03 07:00:00,0.000000,12.500000,79.000000,2.000000,38.000000,84.610000,118.510000,826.420000,2.210000,174.470000,12.980000 +17,2023-08-03 08:00:00,0.000000,16.400000,64.000000,3.000000,49.000000,84.610000,118.590000,826.660000,2.320000,174.580000,13.510000 +17,2023-08-03 09:00:00,0.000000,16.400000,64.000000,3.000000,49.000000,84.610000,118.680000,826.890000,2.320000,174.680000,13.510000 +17,2023-08-03 10:00:00,0.000000,16.400000,64.000000,3.000000,49.000000,84.610000,118.760000,827.130000,2.320000,174.780000,13.510000 +17,2023-08-03 11:00:00,0.000000,20.900000,48.000000,8.000000,54.000000,85.030000,118.920000,827.580000,3.160000,174.970000,17.120000 +17,2023-08-03 12:00:00,0.000000,20.900000,48.000000,8.000000,54.000000,85.400000,119.070000,828.030000,3.330000,175.170000,17.780000 +17,2023-08-03 13:00:00,0.000000,20.900000,48.000000,8.000000,54.000000,85.720000,119.230000,828.480000,3.480000,175.370000,18.380000 +17,2023-08-03 14:00:00,0.000000,23.000000,41.000000,9.000000,43.000000,86.280000,119.430000,829.060000,3.960000,175.620000,20.200000 +17,2023-08-03 15:00:00,0.000000,23.000000,41.000000,9.000000,43.000000,86.760000,119.640000,829.640000,4.240000,175.870000,21.210000 +17,2023-08-03 16:00:00,0.000000,23.000000,41.000000,9.000000,43.000000,87.160000,119.840000,830.220000,4.490000,176.120000,22.120000 +17,2023-08-03 17:00:00,0.000000,22.800000,40.000000,11.000000,45.000000,87.550000,120.040000,830.800000,5.240000,176.370000,24.680000 +17,2023-08-03 18:00:00,0.000000,22.800000,40.000000,11.000000,45.000000,87.870000,120.250000,831.390000,5.490000,176.630000,25.500000 +17,2023-08-03 19:00:00,0.000000,22.800000,40.000000,11.000000,45.000000,88.140000,120.450000,831.970000,5.710000,176.880000,26.210000 +17,2023-08-03 20:00:00,0.000000,20.800000,48.000000,1.000000,32.000000,88.140000,120.610000,832.420000,3.450000,177.070000,18.300000 +17,2023-08-03 21:00:00,0.000000,20.800000,48.000000,1.000000,32.000000,88.140000,120.760000,832.870000,3.450000,177.270000,18.310000 +17,2023-08-03 22:00:00,0.000000,20.800000,48.000000,1.000000,32.000000,88.140000,120.760000,832.870000,3.450000,177.270000,18.310000 +17,2023-08-03 23:00:00,0.000000,16.400000,66.000000,3.000000,277.000000,87.860000,120.760000,832.870000,3.660000,177.270000,19.130000 +17,2023-08-04 00:00:00,0.000000,16.400000,66.000000,3.000000,277.000000,87.600000,120.760000,832.870000,3.530000,177.270000,18.630000 +17,2023-08-04 01:00:00,0.000000,16.400000,66.000000,3.000000,277.000000,87.380000,120.760000,832.870000,3.420000,177.270000,18.190000 +17,2023-08-04 02:00:00,0.000000,13.600000,82.000000,4.000000,239.000000,86.730000,120.760000,832.870000,3.280000,177.270000,17.630000 +17,2023-08-04 03:00:00,0.000000,13.600000,82.000000,4.000000,239.000000,86.160000,120.760000,832.870000,3.030000,177.270000,16.600000 +17,2023-08-04 04:00:00,0.000000,13.600000,82.000000,4.000000,239.000000,85.650000,120.760000,832.870000,2.820000,177.270000,15.740000 +17,2023-08-04 05:00:00,0.000000,12.000000,94.000000,5.000000,251.000000,84.610000,120.770000,832.890000,2.570000,177.280000,14.660000 +17,2023-08-04 06:00:00,0.000000,12.000000,94.000000,5.000000,251.000000,83.700000,120.780000,832.920000,2.270000,177.290000,13.340000 +17,2023-08-04 07:00:00,0.000000,12.000000,94.000000,5.000000,251.000000,82.910000,120.790000,832.950000,2.050000,177.300000,12.290000 +17,2023-08-04 08:00:00,0.000000,17.800000,70.000000,6.000000,264.000000,82.960000,120.860000,833.160000,2.170000,177.390000,12.860000 +17,2023-08-04 09:00:00,0.000000,17.800000,70.000000,6.000000,264.000000,83.010000,120.920000,833.370000,2.180000,177.470000,12.920000 +17,2023-08-04 10:00:00,0.000000,17.800000,70.000000,6.000000,264.000000,83.050000,120.990000,833.580000,2.200000,177.550000,12.980000 +17,2023-08-04 11:00:00,0.000000,22.000000,53.000000,8.000000,273.000000,83.580000,121.130000,834.010000,2.600000,177.730000,14.810000 +17,2023-08-04 12:00:00,0.000000,22.000000,53.000000,8.000000,273.000000,84.040000,121.270000,834.430000,2.770000,177.900000,15.530000 +17,2023-08-04 13:00:00,0.000000,22.000000,53.000000,8.000000,273.000000,84.440000,121.400000,834.860000,2.920000,178.070000,16.180000 +17,2023-08-04 14:00:00,0.000000,24.300000,41.000000,7.000000,301.000000,85.220000,121.600000,835.470000,3.090000,178.320000,16.880000 +17,2023-08-04 15:00:00,0.000000,24.300000,41.000000,7.000000,301.000000,85.890000,121.800000,836.090000,3.390000,178.570000,18.090000 +17,2023-08-04 16:00:00,0.000000,24.300000,41.000000,7.000000,301.000000,86.460000,122.000000,836.700000,3.670000,178.810000,19.190000 +17,2023-08-04 17:00:00,0.080000,24.600000,37.000000,8.000000,333.000000,87.090000,122.210000,837.370000,4.230000,179.080000,21.250000 +17,2023-08-04 18:00:00,0.000000,24.600000,37.000000,8.000000,333.000000,87.630000,122.430000,838.040000,4.560000,179.350000,22.460000 +17,2023-08-04 19:00:00,0.000000,24.600000,37.000000,8.000000,333.000000,88.090000,122.640000,838.710000,4.870000,179.620000,23.520000 +17,2023-08-04 20:00:00,0.000000,22.800000,41.000000,4.000000,340.000000,88.260000,122.820000,839.270000,4.090000,179.850000,20.760000 +17,2023-08-04 21:00:00,0.000000,22.800000,41.000000,4.000000,340.000000,88.420000,123.000000,839.830000,4.180000,180.070000,21.090000 +17,2023-08-04 22:00:00,0.000000,22.800000,41.000000,4.000000,340.000000,88.550000,123.000000,839.830000,4.260000,180.070000,21.390000 +17,2023-08-04 23:00:00,0.000000,17.700000,57.000000,5.000000,275.000000,88.410000,123.000000,839.830000,4.390000,180.070000,21.850000 +17,2023-08-05 00:00:00,0.000000,17.700000,57.000000,5.000000,275.000000,88.280000,123.000000,839.830000,4.310000,180.070000,21.570000 +17,2023-08-05 01:00:00,0.000000,17.700000,57.000000,5.000000,275.000000,88.170000,123.000000,839.830000,4.240000,180.070000,21.330000 +17,2023-08-05 02:00:00,0.000000,15.900000,69.000000,8.000000,273.000000,87.760000,123.000000,839.830000,4.650000,180.070000,22.770000 +17,2023-08-05 03:00:00,0.000000,15.900000,69.000000,8.000000,273.000000,87.400000,123.000000,839.830000,4.420000,180.070000,21.950000 +17,2023-08-05 04:00:00,0.000000,15.900000,69.000000,8.000000,273.000000,87.090000,123.000000,839.830000,4.220000,180.070000,21.270000 +17,2023-08-05 05:00:00,0.000000,16.000000,87.000000,8.000000,290.000000,86.170000,123.030000,839.920000,3.710000,180.110000,19.360000 +17,2023-08-05 06:00:00,0.000000,16.000000,87.000000,8.000000,290.000000,85.390000,123.060000,840.020000,3.320000,180.150000,17.860000 +17,2023-08-05 07:00:00,0.000000,16.000000,87.000000,8.000000,290.000000,84.720000,123.090000,840.110000,3.030000,180.180000,16.680000 +17,2023-08-05 08:00:00,0.000000,18.500000,72.000000,9.000000,300.000000,84.720000,123.160000,840.350000,3.190000,180.270000,17.320000 +17,2023-08-05 09:00:00,0.000000,18.500000,72.000000,9.000000,300.000000,84.720000,123.240000,840.590000,3.190000,180.370000,17.320000 +17,2023-08-05 10:00:00,0.000000,18.500000,72.000000,9.000000,300.000000,84.720000,123.310000,840.830000,3.190000,180.460000,17.320000 +17,2023-08-05 11:00:00,0.000000,21.800000,55.000000,8.000000,316.000000,84.980000,123.460000,841.300000,3.140000,180.640000,17.140000 +17,2023-08-05 12:00:00,0.000000,21.800000,55.000000,8.000000,316.000000,85.210000,123.600000,841.770000,3.240000,180.820000,17.550000 +17,2023-08-05 13:00:00,0.000000,21.800000,55.000000,8.000000,316.000000,85.410000,123.740000,842.240000,3.330000,181.000000,17.920000 +17,2023-08-05 14:00:00,0.000000,23.300000,47.000000,11.000000,357.000000,85.870000,123.930000,842.850000,4.130000,181.240000,20.960000 +17,2023-08-05 15:00:00,0.000000,23.300000,47.000000,11.000000,357.000000,86.250000,124.120000,843.460000,4.360000,181.470000,21.800000 +17,2023-08-05 16:00:00,0.000000,23.300000,47.000000,11.000000,357.000000,86.580000,124.300000,844.070000,4.570000,181.710000,22.540000 +17,2023-08-05 17:00:00,0.000000,22.200000,46.000000,12.000000,28.000000,86.860000,124.480000,844.640000,5.000000,181.930000,24.020000 +17,2023-08-05 18:00:00,0.000000,22.200000,46.000000,12.000000,28.000000,87.090000,124.660000,845.220000,5.170000,182.160000,24.590000 +17,2023-08-05 19:00:00,0.000000,22.200000,46.000000,12.000000,28.000000,87.290000,124.840000,845.800000,5.320000,182.380000,25.090000 +17,2023-08-05 20:00:00,0.000000,20.000000,49.000000,7.000000,45.000000,87.320000,124.980000,846.280000,4.150000,182.560000,21.060000 +17,2023-08-05 21:00:00,0.000000,20.000000,49.000000,7.000000,45.000000,87.350000,125.130000,846.760000,4.170000,182.750000,21.120000 +17,2023-08-05 22:00:00,0.000000,20.000000,49.000000,7.000000,45.000000,87.370000,125.130000,846.760000,4.180000,182.750000,21.170000 +17,2023-08-05 23:00:00,0.000000,15.200000,67.000000,1.000000,194.000000,87.160000,125.130000,846.760000,3.000000,182.750000,16.590000 +17,2023-08-06 00:00:00,0.000000,15.200000,67.000000,1.000000,194.000000,86.970000,125.130000,846.760000,2.920000,182.750000,16.260000 +17,2023-08-06 01:00:00,0.000000,15.200000,67.000000,1.000000,194.000000,86.800000,125.130000,846.760000,2.850000,182.750000,15.960000 +17,2023-08-06 02:00:00,0.000000,12.900000,77.000000,2.000000,252.000000,86.400000,125.130000,846.760000,2.830000,182.750000,15.890000 +17,2023-08-06 03:00:00,0.000000,12.900000,77.000000,2.000000,252.000000,86.050000,125.130000,846.760000,2.690000,182.750000,15.300000 +17,2023-08-06 04:00:00,0.000000,12.900000,77.000000,2.000000,252.000000,85.730000,125.130000,846.760000,2.580000,182.750000,14.780000 +17,2023-08-06 05:00:00,0.000000,11.600000,85.000000,3.000000,265.000000,85.190000,125.160000,846.820000,2.510000,182.780000,14.500000 +17,2023-08-06 06:00:00,0.000000,11.600000,85.000000,3.000000,265.000000,84.700000,125.190000,846.890000,2.350000,182.810000,13.770000 +17,2023-08-06 07:00:00,0.000000,11.600000,85.000000,3.000000,265.000000,84.270000,125.210000,846.950000,2.220000,182.850000,13.160000 +17,2023-08-06 08:00:00,0.000000,16.400000,63.000000,1.000000,276.000000,84.290000,125.300000,847.170000,2.010000,182.960000,12.180000 +17,2023-08-06 09:00:00,0.000000,16.400000,63.000000,1.000000,276.000000,84.310000,125.400000,847.380000,2.020000,183.070000,12.200000 +17,2023-08-06 10:00:00,0.000000,16.400000,63.000000,1.000000,276.000000,84.330000,125.490000,847.600000,2.020000,183.180000,12.230000 +17,2023-08-06 11:00:00,0.000000,22.000000,38.000000,5.000000,25.000000,85.060000,125.710000,848.110000,2.730000,183.440000,15.470000 +17,2023-08-06 12:00:00,0.000000,22.000000,38.000000,5.000000,25.000000,85.700000,125.920000,848.630000,2.980000,183.700000,16.550000 +17,2023-08-06 13:00:00,0.000000,22.000000,38.000000,5.000000,25.000000,86.260000,126.140000,849.140000,3.230000,183.960000,17.550000 +17,2023-08-06 14:00:00,0.000000,23.500000,30.000000,10.000000,38.000000,87.150000,126.410000,849.780000,4.710000,184.290000,23.080000 +17,2023-08-06 15:00:00,0.000000,23.500000,30.000000,10.000000,38.000000,87.890000,126.680000,850.410000,5.240000,184.610000,24.880000 +17,2023-08-06 16:00:00,0.000000,23.500000,30.000000,10.000000,38.000000,88.520000,126.950000,851.050000,5.730000,184.940000,26.490000 +17,2023-08-06 17:00:00,0.000000,22.400000,31.000000,12.000000,43.000000,88.980000,127.200000,851.640000,6.770000,185.240000,29.690000 +17,2023-08-06 18:00:00,0.000000,22.400000,31.000000,12.000000,43.000000,89.360000,127.450000,852.220000,7.150000,185.530000,30.820000 +17,2023-08-06 19:00:00,0.000000,22.400000,31.000000,12.000000,43.000000,89.680000,127.700000,852.810000,7.490000,185.830000,31.790000 +17,2023-08-06 20:00:00,0.000000,19.800000,37.000000,6.000000,43.000000,89.680000,127.890000,853.270000,5.540000,186.070000,25.880000 +17,2023-08-06 21:00:00,0.000000,19.800000,37.000000,6.000000,43.000000,89.680000,128.090000,853.720000,5.540000,186.300000,25.890000 +17,2023-08-06 22:00:00,0.000000,19.800000,37.000000,6.000000,43.000000,89.680000,128.090000,853.720000,5.540000,186.300000,25.890000 +17,2023-08-06 23:00:00,0.000000,13.900000,56.000000,3.000000,8.000000,89.410000,128.090000,853.720000,4.580000,186.300000,22.670000 +17,2023-08-07 00:00:00,0.000000,13.900000,56.000000,3.000000,8.000000,89.170000,128.090000,853.720000,4.430000,186.300000,22.130000 +17,2023-08-07 01:00:00,0.000000,13.900000,56.000000,3.000000,8.000000,88.960000,128.090000,853.720000,4.290000,186.300000,21.640000 +17,2023-08-07 02:00:00,0.000000,10.800000,69.000000,4.000000,324.000000,88.490000,128.090000,853.720000,4.220000,186.300000,21.370000 +17,2023-08-07 03:00:00,0.000000,10.800000,69.000000,4.000000,324.000000,88.060000,128.090000,853.720000,3.970000,186.300000,20.460000 +17,2023-08-07 04:00:00,0.000000,10.800000,69.000000,4.000000,324.000000,87.680000,128.090000,853.720000,3.760000,186.300000,19.660000 +17,2023-08-07 05:00:00,0.000000,8.900000,81.000000,5.000000,294.000000,87.040000,128.110000,853.790000,3.600000,186.330000,19.080000 +17,2023-08-07 06:00:00,0.000000,8.900000,81.000000,5.000000,294.000000,86.460000,128.140000,853.860000,3.320000,186.360000,17.960000 +17,2023-08-07 07:00:00,0.000000,8.900000,81.000000,5.000000,294.000000,85.940000,128.170000,853.930000,3.090000,186.400000,17.020000 +17,2023-08-07 08:00:00,0.000000,14.800000,64.000000,3.000000,357.000000,85.910000,128.240000,854.120000,2.780000,186.490000,15.730000 +17,2023-08-07 09:00:00,0.000000,14.800000,64.000000,3.000000,357.000000,85.890000,128.320000,854.310000,2.770000,186.580000,15.690000 +17,2023-08-07 10:00:00,0.000000,14.800000,64.000000,3.000000,357.000000,85.860000,128.400000,854.500000,2.760000,186.670000,15.650000 +17,2023-08-07 11:00:00,0.000000,21.600000,42.000000,11.000000,74.000000,86.330000,128.580000,854.980000,4.410000,186.900000,22.090000 +17,2023-08-07 12:00:00,0.000000,21.600000,42.000000,11.000000,74.000000,86.730000,128.770000,855.450000,4.670000,187.120000,23.000000 +17,2023-08-07 13:00:00,0.000000,21.600000,42.000000,11.000000,74.000000,87.080000,128.960000,855.920000,4.900000,187.350000,23.810000 +17,2023-08-07 14:00:00,0.000000,24.100000,32.000000,14.000000,66.000000,87.840000,129.210000,856.570000,6.360000,187.650000,28.510000 +17,2023-08-07 15:00:00,0.000000,24.100000,32.000000,14.000000,66.000000,88.470000,129.470000,857.220000,6.960000,187.960000,30.320000 +17,2023-08-07 16:00:00,0.000000,24.100000,32.000000,14.000000,66.000000,88.990000,129.720000,857.860000,7.500000,188.270000,31.880000 +17,2023-08-07 17:00:00,0.000000,23.400000,34.000000,21.000000,54.000000,89.340000,129.960000,858.460000,11.220000,188.550000,41.550000 +17,2023-08-07 18:00:00,0.000000,23.400000,34.000000,21.000000,54.000000,89.620000,130.190000,859.060000,11.700000,188.840000,42.680000 +17,2023-08-07 19:00:00,0.000000,23.400000,34.000000,21.000000,54.000000,89.860000,130.430000,859.670000,12.090000,189.130000,43.610000 +17,2023-08-07 20:00:00,0.000000,20.800000,39.000000,13.000000,53.000000,89.860000,130.620000,860.140000,8.080000,189.350000,33.550000 +17,2023-08-07 21:00:00,0.000000,20.800000,39.000000,13.000000,53.000000,89.860000,130.810000,860.610000,8.080000,189.580000,33.550000 +17,2023-08-07 22:00:00,0.000000,20.800000,39.000000,13.000000,53.000000,89.860000,130.810000,860.610000,8.080000,189.580000,33.550000 +17,2023-08-07 23:00:00,0.000000,16.400000,49.000000,8.000000,78.000000,89.700000,130.810000,860.610000,6.140000,189.580000,27.890000 +17,2023-08-08 00:00:00,0.000000,16.400000,49.000000,8.000000,78.000000,89.560000,130.810000,860.610000,6.020000,189.580000,27.510000 +17,2023-08-08 01:00:00,0.000000,16.400000,49.000000,8.000000,78.000000,89.440000,130.810000,860.610000,5.920000,189.580000,27.180000 +17,2023-08-08 02:00:00,0.000000,15.000000,47.000000,10.000000,100.000000,89.340000,130.810000,860.610000,6.450000,189.580000,28.850000 +17,2023-08-08 03:00:00,0.000000,15.000000,47.000000,10.000000,100.000000,89.260000,130.810000,860.610000,6.380000,189.580000,28.610000 +17,2023-08-08 04:00:00,0.000000,15.000000,47.000000,10.000000,100.000000,89.180000,130.810000,860.610000,6.310000,189.580000,28.400000 +17,2023-08-08 05:00:00,0.000000,13.000000,52.000000,9.000000,98.000000,89.000000,130.890000,860.820000,5.840000,189.680000,26.930000 +17,2023-08-08 06:00:00,0.000000,13.000000,52.000000,9.000000,98.000000,88.830000,130.980000,861.040000,5.700000,189.780000,26.490000 +17,2023-08-08 07:00:00,0.000000,13.000000,52.000000,9.000000,98.000000,88.680000,131.070000,861.250000,5.580000,189.890000,26.100000 +17,2023-08-08 08:00:00,0.000000,16.000000,45.000000,10.000000,103.000000,88.680000,131.190000,861.540000,5.870000,190.030000,27.030000 +17,2023-08-08 09:00:00,0.000000,16.000000,45.000000,10.000000,103.000000,88.680000,131.310000,861.830000,5.870000,190.180000,27.030000 +17,2023-08-08 10:00:00,0.000000,16.000000,45.000000,10.000000,103.000000,88.680000,131.430000,862.130000,5.870000,190.320000,27.040000 +17,2023-08-08 11:00:00,0.000000,19.700000,37.000000,12.000000,86.000000,88.820000,131.600000,862.550000,6.620000,190.530000,29.380000 +17,2023-08-08 12:00:00,0.000000,19.700000,37.000000,12.000000,86.000000,88.940000,131.780000,862.970000,6.740000,190.740000,29.730000 +17,2023-08-08 13:00:00,0.000000,19.700000,37.000000,12.000000,86.000000,89.050000,131.950000,863.400000,6.840000,190.950000,30.040000 +17,2023-08-08 14:00:00,0.000000,21.400000,33.000000,12.000000,73.000000,89.310000,132.160000,863.900000,7.110000,191.200000,30.830000 +17,2023-08-08 15:00:00,0.000000,21.400000,33.000000,12.000000,73.000000,89.540000,132.370000,864.400000,7.340000,191.440000,31.510000 +17,2023-08-08 16:00:00,0.000000,21.400000,33.000000,12.000000,73.000000,89.730000,132.570000,864.900000,7.540000,191.690000,32.090000 +17,2023-08-08 17:00:00,0.000000,21.400000,34.000000,13.000000,63.000000,89.850000,132.780000,865.390000,8.080000,191.930000,33.600000 +17,2023-08-08 18:00:00,0.000000,21.400000,34.000000,13.000000,63.000000,89.960000,132.980000,865.880000,8.200000,192.180000,33.950000 +17,2023-08-08 19:00:00,0.000000,21.400000,34.000000,13.000000,63.000000,90.050000,133.190000,866.380000,8.310000,192.420000,34.250000 +17,2023-08-08 20:00:00,0.000000,19.300000,40.000000,10.000000,56.000000,90.050000,133.350000,866.770000,7.140000,192.610000,30.970000 +17,2023-08-08 21:00:00,0.000000,19.300000,40.000000,10.000000,56.000000,90.050000,133.510000,867.160000,7.140000,192.810000,30.970000 +17,2023-08-08 22:00:00,0.000000,19.300000,40.000000,10.000000,56.000000,90.050000,133.510000,867.160000,7.140000,192.810000,30.970000 +17,2023-08-08 23:00:00,0.000000,13.800000,62.000000,6.000000,55.000000,89.590000,133.510000,867.160000,5.470000,192.810000,25.800000 +17,2023-08-09 00:00:00,0.000000,13.800000,62.000000,6.000000,55.000000,89.180000,133.510000,867.160000,5.150000,192.810000,24.770000 +17,2023-08-09 01:00:00,0.000000,13.800000,62.000000,6.000000,55.000000,88.820000,133.510000,867.160000,4.890000,192.810000,23.880000 +17,2023-08-09 02:00:00,0.000000,11.300000,69.000000,4.000000,118.000000,88.360000,133.510000,867.160000,4.140000,192.810000,21.220000 +17,2023-08-09 03:00:00,0.000000,11.300000,69.000000,4.000000,118.000000,87.950000,133.510000,867.160000,3.900000,192.810000,20.340000 +17,2023-08-09 04:00:00,0.000000,11.300000,69.000000,4.000000,118.000000,87.580000,133.510000,867.160000,3.700000,192.810000,19.570000 +17,2023-08-09 05:00:00,0.000000,9.400000,71.000000,5.000000,180.000000,87.190000,133.550000,867.250000,3.680000,192.860000,19.500000 +17,2023-08-09 06:00:00,0.000000,9.400000,71.000000,5.000000,180.000000,86.840000,133.600000,867.350000,3.500000,192.910000,18.800000 +17,2023-08-09 07:00:00,0.000000,9.400000,71.000000,5.000000,180.000000,86.520000,133.640000,867.440000,3.350000,192.960000,18.190000 +17,2023-08-09 08:00:00,0.000000,15.300000,47.000000,5.000000,169.000000,86.580000,133.750000,867.680000,3.380000,193.090000,18.300000 +17,2023-08-09 09:00:00,0.000000,15.300000,47.000000,5.000000,169.000000,86.630000,133.870000,867.930000,3.400000,193.230000,18.410000 +17,2023-08-09 10:00:00,0.000000,15.300000,47.000000,5.000000,169.000000,86.680000,133.990000,868.170000,3.430000,193.370000,18.500000 +17,2023-08-09 11:00:00,0.000000,21.900000,31.000000,5.000000,154.000000,87.310000,134.210000,868.650000,3.750000,193.630000,19.760000 +17,2023-08-09 12:00:00,0.000000,21.900000,31.000000,5.000000,154.000000,87.860000,134.440000,869.130000,4.050000,193.900000,20.910000 +17,2023-08-09 13:00:00,0.000000,21.900000,31.000000,5.000000,154.000000,88.330000,134.670000,869.620000,4.340000,194.160000,21.950000 +17,2023-08-09 14:00:00,0.000000,23.900000,26.000000,6.000000,145.000000,89.000000,134.940000,870.200000,5.020000,194.490000,24.360000 +17,2023-08-09 15:00:00,0.000000,23.900000,26.000000,6.000000,145.000000,89.570000,135.220000,870.780000,5.450000,194.810000,25.790000 +17,2023-08-09 16:00:00,0.000000,23.900000,26.000000,6.000000,145.000000,90.050000,135.490000,871.370000,5.840000,195.130000,27.050000 +17,2023-08-09 17:00:00,0.000000,24.300000,26.000000,6.000000,122.000000,90.470000,135.770000,871.960000,6.200000,195.460000,28.200000 +17,2023-08-09 18:00:00,0.000000,24.300000,26.000000,6.000000,122.000000,90.830000,136.060000,872.560000,6.520000,195.790000,29.190000 +17,2023-08-09 19:00:00,0.000000,24.300000,26.000000,6.000000,122.000000,91.120000,136.340000,873.160000,6.810000,196.120000,30.050000 +17,2023-08-09 20:00:00,0.000000,21.700000,31.000000,6.000000,80.000000,91.130000,136.560000,873.630000,6.810000,196.380000,30.080000 +17,2023-08-09 21:00:00,0.000000,21.700000,31.000000,6.000000,80.000000,91.140000,136.790000,874.110000,6.820000,196.640000,30.100000 +17,2023-08-09 22:00:00,0.000000,21.700000,31.000000,6.000000,80.000000,91.140000,136.790000,874.110000,6.820000,196.640000,30.120000 +17,2023-08-09 23:00:00,0.000000,15.600000,49.000000,4.000000,78.000000,90.870000,136.790000,874.110000,5.930000,196.640000,27.380000 +17,2023-08-10 00:00:00,0.000000,15.600000,49.000000,4.000000,78.000000,90.620000,136.790000,874.110000,5.730000,196.640000,26.720000 +17,2023-08-10 01:00:00,0.000000,15.600000,49.000000,4.000000,78.000000,90.400000,136.790000,874.110000,5.550000,196.640000,26.140000 +17,2023-08-10 02:00:00,0.000000,13.200000,58.000000,3.000000,224.000000,90.020000,136.790000,874.110000,5.000000,196.640000,24.320000 +17,2023-08-10 03:00:00,0.000000,13.200000,58.000000,3.000000,224.000000,89.680000,136.790000,874.110000,4.760000,196.640000,23.500000 +17,2023-08-10 04:00:00,0.000000,13.200000,58.000000,3.000000,224.000000,89.380000,136.790000,874.110000,4.560000,196.640000,22.780000 +17,2023-08-10 05:00:00,0.000000,11.400000,63.000000,5.000000,218.000000,88.970000,136.850000,874.250000,4.760000,196.720000,23.480000 +17,2023-08-10 06:00:00,0.000000,11.400000,63.000000,5.000000,218.000000,88.610000,136.910000,874.390000,4.510000,196.790000,22.630000 +17,2023-08-10 07:00:00,0.000000,11.400000,63.000000,5.000000,218.000000,88.280000,136.970000,874.530000,4.310000,196.860000,21.890000 +17,2023-08-10 08:00:00,0.000000,16.400000,45.000000,5.000000,186.000000,88.280000,137.100000,874.820000,4.310000,197.010000,21.900000 +17,2023-08-10 09:00:00,0.000000,16.400000,45.000000,5.000000,186.000000,88.280000,137.230000,875.110000,4.310000,197.160000,21.900000 +17,2023-08-10 10:00:00,0.000000,16.400000,45.000000,5.000000,186.000000,88.280000,137.360000,875.400000,4.310000,197.310000,21.900000 +17,2023-08-10 11:00:00,0.000000,22.400000,36.000000,7.000000,151.000000,88.580000,137.570000,875.890000,4.970000,197.570000,24.240000 +17,2023-08-10 12:00:00,0.000000,22.400000,36.000000,7.000000,151.000000,88.830000,137.790000,876.370000,5.160000,197.820000,24.860000 +17,2023-08-10 13:00:00,0.000000,22.400000,36.000000,7.000000,151.000000,89.050000,138.000000,876.860000,5.320000,198.070000,25.410000 +17,2023-08-10 14:00:00,0.000000,24.100000,30.000000,7.000000,147.000000,89.490000,138.260000,877.450000,5.660000,198.380000,26.550000 +17,2023-08-10 15:00:00,0.000000,24.100000,30.000000,7.000000,147.000000,89.860000,138.520000,878.050000,5.970000,198.680000,27.540000 +17,2023-08-10 16:00:00,0.000000,24.100000,30.000000,7.000000,147.000000,90.170000,138.780000,878.640000,6.240000,198.990000,28.400000 +17,2023-08-10 17:00:00,0.000000,24.600000,28.000000,6.000000,138.000000,90.510000,139.060000,879.260000,6.230000,199.320000,28.380000 +17,2023-08-10 18:00:00,0.000000,24.600000,28.000000,6.000000,138.000000,90.800000,139.340000,879.890000,6.500000,199.640000,29.190000 +17,2023-08-10 19:00:00,0.000000,24.600000,28.000000,6.000000,138.000000,91.040000,139.620000,880.520000,6.720000,199.960000,29.880000 +17,2023-08-10 20:00:00,0.000000,24.600000,28.000000,6.000000,138.000000,91.240000,139.890000,881.150000,6.920000,200.290000,30.480000 +17,2023-08-10 21:00:00,0.000000,24.600000,28.000000,6.000000,138.000000,91.410000,139.890000,881.150000,7.090000,200.290000,30.980000 +17,2023-08-10 22:00:00,0.000000,24.600000,28.000000,6.000000,138.000000,91.550000,139.890000,881.150000,7.240000,200.290000,31.400000 +17,2023-08-10 23:00:00,0.000000,18.000000,45.000000,3.000000,123.000000,91.350000,139.890000,881.150000,6.040000,200.290000,27.790000 +17,2023-08-11 00:00:00,0.000000,18.000000,45.000000,3.000000,123.000000,91.160000,139.890000,881.150000,5.880000,200.290000,27.290000 +17,2023-08-11 01:00:00,0.000000,18.000000,45.000000,3.000000,123.000000,90.990000,139.890000,881.150000,5.740000,200.290000,26.840000 +17,2023-08-11 02:00:00,0.000000,18.000000,45.000000,3.000000,123.000000,90.840000,139.890000,881.150000,5.620000,200.290000,26.440000 +17,2023-08-11 03:00:00,0.000000,18.000000,45.000000,3.000000,123.000000,90.700000,139.890000,881.150000,5.510000,200.290000,26.090000 +17,2023-08-11 04:00:00,0.000000,18.000000,45.000000,3.000000,123.000000,90.580000,139.890000,881.150000,5.410000,200.290000,25.770000 +17,2023-08-11 05:00:00,0.000000,13.600000,67.000000,5.000000,165.000000,89.960000,139.950000,881.360000,5.480000,200.370000,25.980000 +17,2023-08-11 06:00:00,0.000000,13.600000,67.000000,5.000000,165.000000,89.410000,140.010000,881.580000,5.060000,200.440000,24.590000 +17,2023-08-11 07:00:00,0.000000,13.600000,67.000000,5.000000,165.000000,88.920000,140.080000,881.790000,4.720000,200.520000,23.410000 +17,2023-08-11 08:00:00,0.000000,13.600000,67.000000,5.000000,165.000000,88.480000,140.140000,882.010000,4.430000,200.600000,22.400000 +17,2023-08-11 09:00:00,0.000000,13.600000,67.000000,5.000000,165.000000,88.100000,140.200000,882.230000,4.190000,200.670000,21.540000 +17,2023-08-11 10:00:00,0.000000,13.600000,67.000000,5.000000,165.000000,87.750000,140.260000,882.440000,3.990000,200.750000,20.790000 +17,2023-08-11 11:00:00,0.200000,19.900000,57.000000,10.000000,128.000000,87.740000,140.380000,882.860000,5.130000,200.900000,24.830000 +17,2023-08-11 12:00:00,0.000000,19.900000,57.000000,10.000000,128.000000,87.730000,140.500000,883.280000,5.120000,201.050000,24.810000 +17,2023-08-11 13:00:00,0.000000,19.900000,57.000000,10.000000,128.000000,87.730000,140.620000,883.700000,5.120000,201.200000,24.790000 +17,2023-08-11 14:00:00,0.000000,19.900000,57.000000,10.000000,128.000000,87.720000,140.730000,884.120000,5.110000,201.340000,24.780000 +17,2023-08-11 15:00:00,0.000000,19.900000,57.000000,10.000000,128.000000,87.720000,140.850000,884.540000,5.110000,201.490000,24.770000 +17,2023-08-11 16:00:00,0.000000,19.900000,57.000000,10.000000,128.000000,87.710000,140.970000,884.960000,5.110000,201.640000,24.760000 +17,2023-08-11 17:00:00,0.000000,22.900000,41.000000,6.000000,121.000000,87.950000,141.170000,885.650000,4.320000,201.890000,22.020000 +17,2023-08-11 18:00:00,0.000000,22.900000,41.000000,6.000000,121.000000,88.160000,141.360000,886.350000,4.450000,202.130000,22.500000 +17,2023-08-11 19:00:00,0.000000,22.900000,41.000000,6.000000,121.000000,88.340000,141.560000,887.040000,4.570000,202.380000,22.920000 +17,2023-08-11 20:00:00,0.000000,22.900000,41.000000,6.000000,121.000000,88.500000,141.760000,887.730000,4.670000,202.620000,23.290000 +17,2023-08-11 21:00:00,0.000000,22.900000,41.000000,6.000000,121.000000,88.630000,141.760000,887.730000,4.760000,202.620000,23.600000 +17,2023-08-11 22:00:00,0.000000,22.900000,41.000000,6.000000,121.000000,88.750000,141.760000,887.730000,4.840000,202.620000,23.870000 +17,2023-08-11 23:00:00,0.000000,18.900000,49.000000,6.000000,34.000000,88.750000,141.760000,887.730000,4.840000,202.620000,23.870000 +17,2023-08-12 00:00:00,0.000000,18.900000,49.000000,6.000000,34.000000,88.750000,141.760000,887.730000,4.840000,202.620000,23.870000 +17,2023-08-12 01:00:00,0.000000,18.900000,49.000000,6.000000,34.000000,88.750000,141.760000,887.730000,4.840000,202.620000,23.870000 +17,2023-08-12 02:00:00,0.000000,18.900000,49.000000,6.000000,34.000000,88.750000,141.760000,887.730000,4.840000,202.620000,23.870000 +17,2023-08-12 03:00:00,0.000000,18.900000,49.000000,6.000000,34.000000,88.750000,141.760000,887.730000,4.840000,202.620000,23.870000 +17,2023-08-12 04:00:00,0.000000,18.900000,49.000000,6.000000,34.000000,88.750000,141.760000,887.730000,4.840000,202.620000,23.870000 +17,2023-08-12 05:00:00,0.000000,16.100000,61.000000,4.000000,282.000000,88.490000,141.850000,887.940000,4.220000,202.730000,21.650000 +17,2023-08-12 06:00:00,0.000000,16.100000,61.000000,4.000000,282.000000,88.260000,141.940000,888.150000,4.080000,202.840000,21.150000 +17,2023-08-12 07:00:00,0.000000,16.100000,61.000000,4.000000,282.000000,88.050000,142.040000,888.370000,3.960000,202.950000,20.710000 +17,2023-08-12 08:00:00,0.000000,16.100000,61.000000,4.000000,282.000000,87.870000,142.130000,888.580000,3.860000,203.060000,20.320000 +17,2023-08-12 09:00:00,0.000000,16.100000,61.000000,4.000000,282.000000,87.710000,142.220000,888.790000,3.770000,203.170000,19.980000 +17,2023-08-12 10:00:00,0.000000,16.100000,61.000000,4.000000,282.000000,87.560000,142.310000,889.000000,3.690000,203.280000,19.690000 +17,2023-08-12 11:00:00,0.000000,23.200000,37.000000,6.000000,336.000000,87.950000,142.550000,889.530000,4.320000,203.550000,22.040000 +17,2023-08-12 12:00:00,0.000000,23.200000,37.000000,6.000000,336.000000,88.290000,142.780000,890.060000,4.530000,203.820000,22.810000 +17,2023-08-12 13:00:00,0.000000,23.200000,37.000000,6.000000,336.000000,88.570000,143.010000,890.590000,4.720000,204.090000,23.480000 +17,2023-08-12 14:00:00,0.000000,23.200000,37.000000,6.000000,336.000000,88.820000,143.250000,891.120000,4.890000,204.370000,24.070000 +17,2023-08-12 15:00:00,0.000000,23.200000,37.000000,6.000000,336.000000,89.030000,143.480000,891.650000,5.040000,204.640000,24.590000 +17,2023-08-12 16:00:00,0.000000,23.200000,37.000000,6.000000,336.000000,89.200000,143.720000,892.180000,5.170000,204.910000,25.030000 +17,2023-08-12 17:00:00,0.000000,25.400000,29.000000,11.000000,1.000000,89.750000,144.020000,892.870000,7.190000,205.260000,31.380000 +17,2023-08-12 18:00:00,0.000000,25.400000,29.000000,11.000000,1.000000,90.190000,144.320000,893.550000,7.670000,205.610000,32.760000 +17,2023-08-12 19:00:00,0.000000,25.400000,29.000000,11.000000,1.000000,90.560000,144.620000,894.230000,8.080000,205.960000,33.920000 +17,2023-08-12 20:00:00,0.000000,25.400000,29.000000,11.000000,1.000000,90.860000,144.920000,894.910000,8.440000,206.310000,34.910000 +17,2023-08-12 21:00:00,0.000000,25.400000,29.000000,11.000000,1.000000,91.110000,144.920000,894.910000,8.740000,206.310000,35.720000 +17,2023-08-12 22:00:00,0.000000,25.400000,29.000000,11.000000,1.000000,91.310000,144.920000,894.910000,8.990000,206.310000,36.400000 +17,2023-08-12 23:00:00,0.000000,17.000000,48.000000,3.000000,275.000000,91.060000,144.920000,894.910000,5.800000,206.310000,27.120000 +17,2023-08-13 00:00:00,0.000000,17.000000,48.000000,3.000000,275.000000,90.830000,144.920000,894.910000,5.610000,206.310000,26.530000 +17,2023-08-13 01:00:00,0.000000,17.000000,48.000000,3.000000,275.000000,90.630000,144.920000,894.910000,5.450000,206.310000,26.000000 +17,2023-08-13 02:00:00,0.000000,17.000000,48.000000,3.000000,275.000000,90.450000,144.920000,894.910000,5.310000,206.310000,25.530000 +17,2023-08-13 03:00:00,0.000000,17.000000,48.000000,3.000000,275.000000,90.280000,144.920000,894.910000,5.190000,206.310000,25.110000 +17,2023-08-13 04:00:00,0.000000,17.000000,48.000000,3.000000,275.000000,90.130000,144.920000,894.910000,5.080000,206.310000,24.740000 +17,2023-08-13 05:00:00,0.000000,14.400000,57.000000,7.000000,271.000000,89.760000,145.010000,895.120000,5.890000,206.420000,27.420000 +17,2023-08-13 06:00:00,0.000000,14.400000,57.000000,7.000000,271.000000,89.440000,145.100000,895.340000,5.620000,206.520000,26.550000 +17,2023-08-13 07:00:00,0.000000,14.400000,57.000000,7.000000,271.000000,89.140000,145.190000,895.550000,5.390000,206.630000,25.800000 +17,2023-08-13 08:00:00,0.000000,14.400000,57.000000,7.000000,271.000000,88.890000,145.280000,895.760000,5.190000,206.740000,25.140000 +17,2023-08-13 09:00:00,0.000000,14.400000,57.000000,7.000000,271.000000,88.660000,145.370000,895.970000,5.030000,206.840000,24.570000 +17,2023-08-13 10:00:00,0.000000,14.400000,57.000000,7.000000,271.000000,88.450000,145.460000,896.180000,4.880000,206.950000,24.070000 +17,2023-08-13 11:00:00,0.000000,23.500000,39.000000,4.000000,301.000000,88.650000,145.690000,896.720000,4.320000,207.210000,22.080000 +17,2023-08-13 12:00:00,0.000000,23.500000,39.000000,4.000000,301.000000,88.830000,145.920000,897.250000,4.430000,207.480000,22.480000 +17,2023-08-13 13:00:00,0.000000,23.500000,39.000000,4.000000,301.000000,88.980000,146.140000,897.780000,4.520000,207.740000,22.830000 +17,2023-08-13 14:00:00,0.000000,23.500000,39.000000,4.000000,301.000000,89.110000,146.370000,898.310000,4.610000,208.010000,23.140000 +17,2023-08-13 15:00:00,0.000000,23.500000,39.000000,4.000000,301.000000,89.220000,146.600000,898.840000,4.680000,208.280000,23.400000 +17,2023-08-13 16:00:00,0.000000,23.500000,39.000000,4.000000,301.000000,89.310000,146.830000,899.370000,4.750000,208.540000,23.640000 +17,2023-08-13 17:00:00,0.000000,26.400000,33.000000,1.000000,104.000000,89.620000,147.120000,900.070000,4.270000,208.890000,21.920000 +17,2023-08-13 18:00:00,0.000000,26.400000,33.000000,1.000000,104.000000,89.890000,147.420000,900.760000,4.430000,209.230000,22.530000 +17,2023-08-13 19:00:00,0.000000,26.400000,33.000000,1.000000,104.000000,90.120000,147.720000,901.450000,4.580000,209.580000,23.070000 +17,2023-08-13 20:00:00,0.000000,26.400000,33.000000,1.000000,104.000000,90.320000,148.010000,902.150000,4.720000,209.920000,23.540000 +17,2023-08-13 21:00:00,0.000000,26.400000,33.000000,1.000000,104.000000,90.490000,148.010000,902.150000,4.830000,209.920000,23.950000 +17,2023-08-13 22:00:00,0.000000,26.400000,33.000000,1.000000,104.000000,90.640000,148.010000,902.150000,4.940000,209.920000,24.310000 +17,2023-08-13 23:00:00,0.000000,18.600000,51.000000,8.000000,197.000000,90.370000,148.010000,902.150000,6.760000,209.920000,30.180000 +17,2023-08-14 00:00:00,0.000000,18.600000,51.000000,8.000000,197.000000,90.140000,148.010000,902.150000,6.540000,209.920000,29.510000 +17,2023-08-14 01:00:00,0.000000,18.600000,51.000000,8.000000,197.000000,89.940000,148.010000,902.150000,6.350000,209.920000,28.930000 +17,2023-08-14 02:00:00,0.000000,18.600000,51.000000,8.000000,197.000000,89.760000,148.010000,902.150000,6.190000,209.920000,28.430000 +17,2023-08-14 03:00:00,0.000000,18.600000,51.000000,8.000000,197.000000,89.600000,148.010000,902.150000,6.060000,209.920000,28.000000 +17,2023-08-14 04:00:00,0.000000,18.600000,51.000000,8.000000,197.000000,89.470000,148.010000,902.150000,5.940000,209.920000,27.620000 +17,2023-08-14 05:00:00,0.000000,16.800000,55.000000,12.000000,223.000000,89.210000,148.120000,902.390000,7.010000,210.050000,30.900000 +17,2023-08-14 06:00:00,0.000000,16.800000,55.000000,12.000000,223.000000,88.990000,148.230000,902.640000,6.790000,210.180000,30.260000 +17,2023-08-14 07:00:00,0.000000,16.800000,55.000000,12.000000,223.000000,88.800000,148.340000,902.890000,6.600000,210.310000,29.700000 +17,2023-08-14 08:00:00,0.000000,16.800000,55.000000,12.000000,223.000000,88.640000,148.450000,903.130000,6.450000,210.430000,29.220000 +17,2023-08-14 09:00:00,0.000000,16.800000,55.000000,12.000000,223.000000,88.490000,148.560000,903.380000,6.310000,210.560000,28.820000 +17,2023-08-14 10:00:00,0.000000,16.800000,55.000000,12.000000,223.000000,88.360000,148.670000,903.630000,6.200000,210.690000,28.470000 +17,2023-08-14 11:00:00,0.000000,23.800000,37.000000,25.000000,278.000000,88.750000,148.910000,904.160000,12.620000,210.960000,45.420000 +17,2023-08-14 12:00:00,0.000000,23.800000,37.000000,25.000000,278.000000,89.060000,149.150000,904.690000,13.200000,211.230000,46.730000 +17,2023-08-14 13:00:00,0.000000,23.800000,37.000000,25.000000,278.000000,89.310000,149.380000,905.230000,13.680000,211.510000,47.810000 +17,2023-08-14 14:00:00,0.000000,23.800000,37.000000,25.000000,278.000000,89.520000,149.620000,905.760000,14.080000,211.780000,48.700000 +17,2023-08-14 15:00:00,0.000000,23.800000,37.000000,25.000000,278.000000,89.680000,149.860000,906.290000,14.420000,212.060000,49.420000 +17,2023-08-14 16:00:00,0.000000,23.800000,37.000000,25.000000,278.000000,89.810000,150.090000,906.830000,14.690000,212.330000,50.010000 +17,2023-08-14 17:00:00,0.000000,25.400000,30.000000,24.000000,299.000000,90.270000,150.380000,907.480000,14.920000,212.660000,50.510000 +17,2023-08-14 18:00:00,0.000000,25.400000,30.000000,24.000000,299.000000,90.630000,150.670000,908.130000,15.720000,213.000000,52.190000 +17,2023-08-14 19:00:00,0.000000,25.400000,30.000000,24.000000,299.000000,90.920000,150.960000,908.780000,16.380000,213.330000,53.560000 +17,2023-08-14 20:00:00,0.000000,25.400000,30.000000,24.000000,299.000000,91.150000,151.250000,909.430000,16.930000,213.670000,54.660000 +17,2023-08-14 21:00:00,0.000000,25.400000,30.000000,24.000000,299.000000,91.330000,151.250000,909.430000,17.370000,213.670000,55.530000 +17,2023-08-14 22:00:00,0.000000,25.400000,30.000000,24.000000,299.000000,91.470000,151.250000,909.430000,17.720000,213.670000,56.230000 +17,2023-08-14 23:00:00,0.000000,17.400000,50.000000,6.000000,265.000000,91.140000,151.250000,909.430000,6.820000,213.670000,30.400000 +17,2023-08-15 00:00:00,0.000000,17.400000,50.000000,6.000000,265.000000,90.840000,151.250000,909.430000,6.530000,213.670000,29.540000 +17,2023-08-15 01:00:00,0.000000,17.400000,50.000000,6.000000,265.000000,90.570000,151.250000,909.430000,6.290000,213.670000,28.780000 +17,2023-08-15 02:00:00,0.000000,17.400000,50.000000,6.000000,265.000000,90.340000,151.250000,909.430000,6.080000,213.670000,28.130000 +17,2023-08-15 03:00:00,0.000000,17.400000,50.000000,6.000000,265.000000,90.130000,151.250000,909.430000,5.900000,213.670000,27.560000 +17,2023-08-15 04:00:00,0.000000,17.400000,50.000000,6.000000,265.000000,89.940000,151.250000,909.430000,5.750000,213.670000,27.060000 +17,2023-08-15 05:00:00,0.000000,14.700000,70.000000,9.000000,301.000000,89.260000,151.320000,909.590000,6.060000,213.740000,28.060000 +17,2023-08-15 06:00:00,0.000000,14.700000,70.000000,9.000000,301.000000,88.660000,151.380000,909.740000,5.560000,213.810000,26.470000 +17,2023-08-15 07:00:00,0.000000,14.700000,70.000000,9.000000,301.000000,88.140000,151.440000,909.890000,5.170000,213.890000,25.140000 +17,2023-08-15 08:00:00,0.000000,14.700000,70.000000,9.000000,301.000000,87.690000,151.500000,910.050000,4.840000,213.960000,24.030000 +17,2023-08-15 09:00:00,0.000000,14.700000,70.000000,9.000000,301.000000,87.300000,151.570000,910.200000,4.580000,214.030000,23.100000 +17,2023-08-15 10:00:00,0.000000,14.700000,70.000000,9.000000,301.000000,86.960000,151.630000,910.350000,4.360000,214.100000,22.320000 +17,2023-08-15 11:00:00,0.000000,21.700000,40.000000,5.000000,260.000000,87.280000,151.820000,910.830000,3.730000,214.330000,19.970000 +17,2023-08-15 12:00:00,0.000000,21.700000,40.000000,5.000000,260.000000,87.570000,152.020000,911.310000,3.890000,214.560000,20.560000 +17,2023-08-15 13:00:00,0.000000,21.700000,40.000000,5.000000,260.000000,87.810000,152.210000,911.780000,4.030000,214.780000,21.090000 +17,2023-08-15 14:00:00,0.000000,21.700000,40.000000,5.000000,260.000000,88.030000,152.410000,912.260000,4.150000,215.010000,21.560000 +17,2023-08-15 15:00:00,0.000000,21.700000,40.000000,5.000000,260.000000,88.210000,152.600000,912.730000,4.260000,215.240000,21.980000 +17,2023-08-15 16:00:00,0.000000,21.700000,40.000000,5.000000,260.000000,88.370000,152.800000,913.210000,4.360000,215.460000,22.350000 +17,2023-08-15 17:00:00,0.000000,27.000000,28.000000,18.000000,267.000000,89.270000,153.120000,913.990000,9.560000,215.840000,38.070000 +17,2023-08-15 18:00:00,0.000000,27.000000,28.000000,18.000000,267.000000,89.990000,153.440000,914.780000,10.590000,216.210000,40.690000 +17,2023-08-15 19:00:00,0.000000,27.000000,28.000000,18.000000,267.000000,90.550000,153.760000,915.560000,11.490000,216.580000,42.880000 +17,2023-08-15 20:00:00,0.000000,27.000000,28.000000,18.000000,267.000000,91.000000,154.080000,916.340000,12.250000,216.960000,44.680000 +17,2023-08-15 21:00:00,0.000000,27.000000,28.000000,18.000000,267.000000,91.360000,154.080000,916.340000,12.890000,216.960000,46.150000 +17,2023-08-15 22:00:00,0.000000,27.000000,28.000000,18.000000,267.000000,91.640000,154.080000,916.340000,13.410000,216.960000,47.330000 +17,2023-08-15 23:00:00,0.000000,22.200000,33.000000,20.000000,294.000000,91.640000,154.080000,916.340000,14.830000,216.960000,50.420000 +17,2023-08-16 00:00:00,0.000000,22.200000,33.000000,20.000000,294.000000,91.640000,154.080000,916.340000,14.830000,216.960000,50.420000 +17,2023-08-16 01:00:00,0.000000,22.200000,33.000000,20.000000,294.000000,91.640000,154.080000,916.340000,14.830000,216.960000,50.420000 +17,2023-08-16 02:00:00,0.000000,22.200000,33.000000,20.000000,294.000000,91.640000,154.080000,916.340000,14.830000,216.960000,50.420000 +17,2023-08-16 03:00:00,0.000000,22.200000,33.000000,20.000000,294.000000,91.640000,154.080000,916.340000,14.830000,216.960000,50.420000 +17,2023-08-16 04:00:00,0.000000,22.200000,33.000000,20.000000,294.000000,91.640000,154.080000,916.340000,14.830000,216.960000,50.420000 +17,2023-08-16 05:00:00,0.000000,18.700000,53.000000,27.000000,303.000000,91.070000,154.160000,916.760000,19.460000,217.070000,59.640000 +17,2023-08-16 06:00:00,0.000000,18.700000,53.000000,27.000000,303.000000,90.590000,154.240000,917.170000,18.180000,217.180000,57.200000 +17,2023-08-16 07:00:00,0.000000,18.700000,53.000000,27.000000,303.000000,90.200000,154.330000,917.580000,17.170000,217.290000,55.230000 +17,2023-08-16 08:00:00,0.000000,18.700000,53.000000,27.000000,303.000000,89.860000,154.410000,918.000000,16.380000,217.400000,53.630000 +17,2023-08-16 09:00:00,0.000000,18.700000,53.000000,27.000000,303.000000,89.590000,154.490000,918.410000,15.740000,217.510000,52.330000 +17,2023-08-16 10:00:00,0.000000,18.700000,53.000000,27.000000,303.000000,89.350000,154.580000,918.820000,15.220000,217.630000,51.260000 +17,2023-08-16 11:00:00,0.270000,16.800000,67.000000,24.000000,312.000000,88.720000,154.630000,919.080000,11.950000,217.700000,44.000000 +17,2023-08-16 12:00:00,0.000000,16.800000,67.000000,24.000000,312.000000,88.200000,154.680000,919.340000,11.080000,217.770000,41.920000 +17,2023-08-16 13:00:00,0.000000,16.800000,67.000000,24.000000,312.000000,87.750000,154.730000,919.590000,10.400000,217.830000,40.250000 +17,2023-08-16 14:00:00,0.000000,16.800000,67.000000,24.000000,312.000000,87.390000,154.790000,919.850000,9.870000,217.900000,38.900000 +17,2023-08-16 15:00:00,0.000000,16.800000,67.000000,24.000000,312.000000,87.080000,154.840000,920.110000,9.440000,217.970000,37.800000 +17,2023-08-16 16:00:00,0.000000,16.800000,67.000000,24.000000,312.000000,86.820000,154.890000,920.370000,9.100000,218.040000,36.900000 +17,2023-08-16 17:00:00,0.050000,19.300000,45.000000,21.000000,319.000000,87.020000,154.990000,920.870000,8.050000,218.180000,34.040000 +17,2023-08-16 18:00:00,0.000000,19.300000,45.000000,21.000000,319.000000,87.190000,155.090000,921.370000,8.250000,218.320000,34.590000 +17,2023-08-16 19:00:00,0.000000,19.300000,45.000000,21.000000,319.000000,87.330000,155.200000,921.870000,8.420000,218.450000,35.070000 +17,2023-08-16 20:00:00,0.000000,19.300000,45.000000,21.000000,319.000000,87.450000,155.300000,922.370000,8.570000,218.590000,35.480000 +17,2023-08-16 21:00:00,0.000000,19.300000,45.000000,21.000000,319.000000,87.560000,155.300000,922.370000,8.690000,218.590000,35.820000 +17,2023-08-16 22:00:00,0.000000,19.300000,45.000000,21.000000,319.000000,87.640000,155.300000,922.370000,8.800000,218.590000,36.110000 +17,2023-08-16 23:00:00,0.000000,16.500000,55.000000,11.000000,309.000000,87.620000,155.300000,922.370000,5.300000,218.590000,25.650000 +17,2023-08-17 00:00:00,0.000000,16.500000,55.000000,11.000000,309.000000,87.600000,155.300000,922.370000,5.290000,218.590000,25.600000 +17,2023-08-17 01:00:00,0.000000,16.500000,55.000000,11.000000,309.000000,87.580000,155.300000,922.370000,5.270000,218.590000,25.550000 +17,2023-08-17 02:00:00,0.000000,16.500000,55.000000,11.000000,309.000000,87.570000,155.300000,922.370000,5.260000,218.590000,25.510000 +17,2023-08-17 03:00:00,0.000000,16.500000,55.000000,11.000000,309.000000,87.550000,155.300000,922.370000,5.250000,218.590000,25.480000 +17,2023-08-17 04:00:00,0.000000,16.500000,55.000000,11.000000,309.000000,87.540000,155.300000,922.370000,5.240000,218.590000,25.450000 +17,2023-08-17 05:00:00,0.000000,11.700000,75.000000,6.000000,271.000000,87.060000,155.300000,922.370000,3.800000,218.590000,20.270000 +17,2023-08-17 06:00:00,0.000000,11.700000,75.000000,6.000000,271.000000,86.620000,155.340000,922.500000,3.570000,218.640000,19.390000 +17,2023-08-17 07:00:00,0.000000,11.700000,75.000000,6.000000,271.000000,86.240000,155.390000,922.640000,3.390000,218.700000,18.630000 +17,2023-08-17 08:00:00,0.000000,11.700000,75.000000,6.000000,271.000000,85.900000,155.440000,922.770000,3.230000,218.750000,17.990000 +17,2023-08-17 09:00:00,0.000000,11.700000,75.000000,6.000000,271.000000,85.600000,155.480000,922.900000,3.090000,218.810000,17.430000 +17,2023-08-17 10:00:00,0.000000,11.700000,75.000000,6.000000,271.000000,85.330000,155.530000,923.030000,2.980000,218.870000,16.950000 +17,2023-08-17 11:00:00,0.000000,19.200000,45.000000,4.000000,242.000000,85.640000,155.700000,923.500000,2.810000,219.060000,16.240000 +17,2023-08-17 12:00:00,0.000000,19.200000,45.000000,4.000000,242.000000,85.920000,155.870000,923.970000,2.930000,219.260000,16.720000 +17,2023-08-17 13:00:00,0.000000,19.200000,45.000000,4.000000,242.000000,86.160000,156.030000,924.440000,3.030000,219.460000,17.160000 +17,2023-08-17 14:00:00,0.000000,19.200000,45.000000,4.000000,242.000000,86.380000,156.200000,924.910000,3.120000,219.660000,17.560000 +17,2023-08-17 15:00:00,0.000000,19.200000,45.000000,4.000000,242.000000,86.580000,156.370000,925.370000,3.210000,219.860000,17.930000 +17,2023-08-17 16:00:00,0.000000,19.200000,45.000000,4.000000,242.000000,86.750000,156.540000,925.840000,3.290000,220.060000,18.260000 +17,2023-08-17 17:00:00,0.000000,23.100000,31.000000,9.000000,139.000000,87.490000,156.800000,926.590000,4.700000,220.370000,23.610000 +17,2023-08-17 18:00:00,0.000000,23.100000,31.000000,9.000000,139.000000,88.110000,157.070000,927.340000,5.140000,220.690000,25.140000 +17,2023-08-17 19:00:00,0.000000,23.100000,31.000000,9.000000,139.000000,88.640000,157.340000,928.080000,5.550000,221.000000,26.500000 +17,2023-08-17 20:00:00,0.000000,23.100000,31.000000,9.000000,139.000000,89.090000,157.600000,928.830000,5.910000,221.320000,27.690000 +17,2023-08-17 21:00:00,0.000000,23.100000,31.000000,9.000000,139.000000,89.460000,157.600000,928.830000,6.240000,221.320000,28.720000 +17,2023-08-17 22:00:00,0.000000,23.100000,31.000000,9.000000,139.000000,89.770000,157.600000,928.830000,6.530000,221.320000,29.620000 +17,2023-08-17 23:00:00,0.000000,18.000000,42.000000,10.000000,133.000000,89.770000,157.600000,928.830000,6.860000,221.320000,30.640000 +17,2023-08-18 00:00:00,0.000000,18.000000,42.000000,10.000000,133.000000,89.770000,157.600000,928.830000,6.860000,221.320000,30.640000 +17,2023-08-18 01:00:00,0.000000,18.000000,42.000000,10.000000,133.000000,89.770000,157.600000,928.830000,6.860000,221.320000,30.640000 +17,2023-08-18 02:00:00,0.000000,18.000000,42.000000,10.000000,133.000000,89.770000,157.600000,928.830000,6.860000,221.320000,30.640000 +17,2023-08-18 03:00:00,0.000000,18.000000,42.000000,10.000000,133.000000,89.770000,157.600000,928.830000,6.860000,221.320000,30.640000 +17,2023-08-18 04:00:00,0.000000,18.000000,42.000000,10.000000,133.000000,89.770000,157.600000,928.830000,6.860000,221.320000,30.640000 +17,2023-08-18 05:00:00,0.000000,16.800000,47.000000,11.000000,146.000000,89.670000,157.600000,928.830000,7.110000,221.320000,31.370000 +17,2023-08-18 06:00:00,0.000000,16.800000,47.000000,11.000000,146.000000,89.570000,157.780000,929.200000,7.010000,221.530000,31.090000 +17,2023-08-18 07:00:00,0.000000,16.800000,47.000000,11.000000,146.000000,89.490000,157.970000,929.580000,6.930000,221.730000,30.850000 +17,2023-08-18 08:00:00,0.000000,16.800000,47.000000,11.000000,146.000000,89.420000,158.150000,929.950000,6.860000,221.940000,30.630000 +17,2023-08-18 09:00:00,0.000000,16.800000,47.000000,11.000000,146.000000,89.350000,158.330000,930.320000,6.790000,222.140000,30.440000 +17,2023-08-18 10:00:00,0.000000,16.800000,47.000000,11.000000,146.000000,89.290000,158.510000,930.690000,6.740000,222.350000,30.280000 +17,2023-08-18 11:00:00,0.000000,25.100000,32.000000,17.000000,189.000000,89.730000,158.900000,931.490000,9.700000,222.790000,38.550000 +17,2023-08-18 12:00:00,0.000000,25.100000,32.000000,17.000000,189.000000,90.080000,159.290000,932.280000,10.200000,223.230000,39.830000 +17,2023-08-18 13:00:00,0.000000,25.100000,32.000000,17.000000,189.000000,90.360000,159.680000,933.080000,10.620000,223.660000,40.890000 +17,2023-08-18 14:00:00,0.000000,25.100000,32.000000,17.000000,189.000000,90.590000,160.070000,933.870000,10.980000,224.100000,41.770000 +17,2023-08-18 15:00:00,0.000000,25.100000,32.000000,17.000000,189.000000,90.770000,160.450000,934.670000,11.270000,224.540000,42.490000 +17,2023-08-18 16:00:00,0.000000,25.100000,32.000000,17.000000,189.000000,90.920000,160.840000,935.460000,11.510000,224.980000,43.080000 +17,2023-08-18 17:00:00,0.000000,26.600000,30.000000,8.000000,242.000000,91.150000,161.280000,936.350000,7.560000,225.470000,32.740000 +18,2023-08-03 00:00:00,0.000000,16.000000,86.000000,5.000000,326.000000,85.340000,118.400000,826.100000,2.840000,174.330000,15.760000 +18,2023-08-03 01:00:00,0.000000,16.000000,86.000000,5.000000,326.000000,84.760000,118.400000,826.100000,2.620000,174.330000,14.840000 +18,2023-08-03 02:00:00,0.000000,13.700000,99.000000,5.000000,299.000000,83.360000,118.400000,826.100000,2.170000,174.330000,12.820000 +18,2023-08-03 03:00:00,0.000000,13.700000,99.000000,5.000000,299.000000,82.150000,118.400000,826.100000,1.860000,174.330000,11.340000 +18,2023-08-03 04:00:00,0.000000,13.700000,99.000000,5.000000,299.000000,81.100000,118.400000,826.100000,1.650000,174.330000,10.240000 +18,2023-08-03 05:00:00,0.040000,13.600000,98.000000,5.000000,288.000000,80.280000,118.400000,826.110000,1.510000,174.340000,9.500000 +18,2023-08-03 06:00:00,0.000000,13.600000,98.000000,5.000000,288.000000,79.580000,118.410000,826.120000,1.400000,174.340000,8.920000 +18,2023-08-03 07:00:00,0.000000,13.600000,98.000000,5.000000,288.000000,78.960000,118.410000,826.130000,1.320000,174.350000,8.470000 +18,2023-08-03 08:00:00,0.050000,16.300000,86.000000,4.000000,320.000000,78.980000,118.440000,826.220000,1.260000,174.380000,8.120000 +18,2023-08-03 09:00:00,0.000000,16.300000,86.000000,4.000000,320.000000,78.990000,118.470000,826.310000,1.260000,174.420000,8.130000 +18,2023-08-03 10:00:00,0.000000,16.300000,86.000000,4.000000,320.000000,79.010000,118.500000,826.390000,1.260000,174.450000,8.140000 +18,2023-08-03 11:00:00,0.000000,22.500000,53.000000,8.000000,357.000000,80.060000,118.640000,826.820000,1.710000,174.630000,10.570000 +18,2023-08-03 12:00:00,0.000000,22.500000,53.000000,8.000000,357.000000,80.980000,118.770000,827.250000,1.890000,174.800000,11.480000 +18,2023-08-03 13:00:00,0.000000,22.500000,53.000000,8.000000,357.000000,81.790000,118.910000,827.690000,2.080000,174.980000,12.380000 +18,2023-08-03 14:00:00,0.000000,24.600000,37.000000,14.000000,360.000000,83.280000,119.130000,828.340000,3.380000,175.250000,18.000000 +18,2023-08-03 15:00:00,0.000000,24.600000,37.000000,14.000000,360.000000,84.520000,119.340000,829.000000,3.990000,175.510000,20.310000 +18,2023-08-03 16:00:00,0.000000,24.600000,37.000000,14.000000,360.000000,85.550000,119.550000,829.650000,4.600000,175.780000,22.500000 +18,2023-08-03 17:00:00,0.000000,25.200000,29.000000,6.000000,1.000000,86.610000,119.800000,830.420000,3.570000,176.090000,18.740000 +18,2023-08-03 18:00:00,0.000000,25.200000,29.000000,6.000000,1.000000,87.510000,120.050000,831.180000,4.050000,176.400000,20.560000 +18,2023-08-03 19:00:00,0.000000,25.200000,29.000000,6.000000,1.000000,88.260000,120.300000,831.950000,4.520000,176.710000,22.230000 +18,2023-08-03 20:00:00,0.000000,22.700000,35.000000,5.000000,346.000000,88.590000,120.490000,832.550000,4.500000,176.960000,22.170000 +18,2023-08-03 21:00:00,0.000000,22.700000,35.000000,5.000000,346.000000,88.860000,120.690000,833.150000,4.680000,177.210000,22.810000 +18,2023-08-03 22:00:00,0.000000,22.700000,35.000000,5.000000,346.000000,89.100000,120.690000,833.150000,4.850000,177.210000,23.370000 +18,2023-08-03 23:00:00,0.000000,15.900000,55.000000,5.000000,282.000000,88.920000,120.690000,833.150000,4.720000,177.210000,22.940000 +18,2023-08-04 00:00:00,0.000000,15.900000,55.000000,5.000000,282.000000,88.750000,120.690000,833.150000,4.610000,177.210000,22.550000 +18,2023-08-04 01:00:00,0.000000,15.900000,55.000000,5.000000,282.000000,88.600000,120.690000,833.150000,4.510000,177.210000,22.210000 +18,2023-08-04 02:00:00,0.000000,13.000000,68.000000,8.000000,263.000000,88.150000,120.690000,833.150000,4.910000,177.210000,23.600000 +18,2023-08-04 03:00:00,0.000000,13.000000,68.000000,8.000000,263.000000,87.750000,120.690000,833.150000,4.640000,177.210000,22.660000 +18,2023-08-04 04:00:00,0.000000,13.000000,68.000000,8.000000,263.000000,87.390000,120.690000,833.150000,4.410000,177.210000,21.860000 +18,2023-08-04 05:00:00,0.000000,12.700000,82.000000,8.000000,260.000000,86.680000,120.720000,833.240000,3.980000,177.240000,20.330000 +18,2023-08-04 06:00:00,0.000000,12.700000,82.000000,8.000000,260.000000,86.060000,120.750000,833.320000,3.650000,177.280000,19.080000 +18,2023-08-04 07:00:00,0.000000,12.700000,82.000000,8.000000,260.000000,85.520000,120.790000,833.400000,3.380000,177.320000,18.040000 +18,2023-08-04 08:00:00,0.000000,19.400000,64.000000,9.000000,274.000000,85.520000,120.880000,833.660000,3.560000,177.440000,18.730000 +18,2023-08-04 09:00:00,0.000000,19.400000,64.000000,9.000000,274.000000,85.520000,120.980000,833.910000,3.560000,177.560000,18.730000 +18,2023-08-04 10:00:00,0.000000,19.400000,64.000000,9.000000,274.000000,85.520000,121.080000,834.160000,3.560000,177.680000,18.730000 +18,2023-08-04 11:00:00,0.000000,25.000000,46.000000,12.000000,311.000000,86.070000,121.290000,834.700000,4.470000,177.940000,22.100000 +18,2023-08-04 12:00:00,0.000000,25.000000,46.000000,12.000000,311.000000,86.530000,121.500000,835.230000,4.770000,178.190000,23.150000 +18,2023-08-04 13:00:00,0.000000,25.000000,46.000000,12.000000,311.000000,86.920000,121.700000,835.770000,5.040000,178.450000,24.070000 +18,2023-08-04 14:00:00,0.000000,26.400000,41.000000,14.000000,327.000000,87.490000,121.950000,836.410000,6.050000,178.750000,27.320000 +18,2023-08-04 15:00:00,0.000000,26.400000,41.000000,14.000000,327.000000,87.950000,122.200000,837.040000,6.470000,179.050000,28.600000 +18,2023-08-04 16:00:00,0.000000,26.400000,41.000000,14.000000,327.000000,88.340000,122.440000,837.680000,6.830000,179.350000,29.700000 +18,2023-08-04 17:00:00,0.090000,26.600000,41.000000,12.000000,352.000000,88.650000,122.690000,838.320000,6.460000,179.650000,28.590000 +18,2023-08-04 18:00:00,0.000000,26.600000,41.000000,12.000000,352.000000,88.900000,122.940000,838.960000,6.700000,179.960000,29.320000 +18,2023-08-04 19:00:00,0.000000,26.600000,41.000000,12.000000,352.000000,89.110000,123.190000,839.610000,6.900000,180.260000,29.940000 +18,2023-08-04 20:00:00,0.000000,24.400000,45.000000,9.000000,34.000000,89.110000,123.400000,840.130000,5.930000,180.510000,27.010000 +18,2023-08-04 21:00:00,0.000000,24.400000,45.000000,9.000000,34.000000,89.110000,123.600000,840.660000,5.930000,180.760000,27.020000 +18,2023-08-04 22:00:00,0.000000,24.400000,45.000000,9.000000,34.000000,89.110000,123.600000,840.660000,5.930000,180.760000,27.020000 +18,2023-08-04 23:00:00,0.000000,18.900000,62.000000,4.000000,91.000000,88.810000,123.600000,840.660000,4.420000,180.760000,21.980000 +18,2023-08-05 00:00:00,0.000000,18.900000,62.000000,4.000000,91.000000,88.550000,123.600000,840.660000,4.260000,180.760000,21.400000 +18,2023-08-05 01:00:00,0.000000,18.900000,62.000000,4.000000,91.000000,88.320000,123.600000,840.660000,4.120000,180.760000,20.900000 +18,2023-08-05 02:00:00,0.000000,16.700000,69.000000,7.000000,40.000000,87.900000,123.600000,840.660000,4.510000,180.760000,22.310000 +18,2023-08-05 03:00:00,0.000000,16.700000,69.000000,7.000000,40.000000,87.540000,123.600000,840.660000,4.280000,180.760000,21.500000 +18,2023-08-05 04:00:00,0.000000,16.700000,69.000000,7.000000,40.000000,87.230000,123.600000,840.660000,4.090000,180.760000,20.810000 +18,2023-08-05 05:00:00,0.300000,16.300000,70.000000,10.000000,65.000000,86.900000,123.650000,840.910000,4.550000,180.820000,22.440000 +18,2023-08-05 06:00:00,0.000000,16.300000,70.000000,10.000000,65.000000,86.620000,123.700000,841.150000,4.370000,180.890000,21.820000 +18,2023-08-05 07:00:00,0.000000,16.300000,70.000000,10.000000,65.000000,86.380000,123.740000,841.400000,4.230000,180.960000,21.290000 +18,2023-08-05 08:00:00,0.020000,16.300000,71.000000,10.000000,52.000000,86.150000,123.790000,841.640000,4.090000,181.020000,20.790000 +18,2023-08-05 09:00:00,0.000000,16.300000,71.000000,10.000000,52.000000,85.940000,123.840000,841.880000,3.970000,181.080000,20.370000 +18,2023-08-05 10:00:00,0.000000,16.300000,71.000000,10.000000,52.000000,85.770000,123.880000,842.120000,3.880000,181.150000,20.010000 +18,2023-08-05 11:00:00,0.000000,17.700000,69.000000,11.000000,37.000000,85.690000,123.940000,842.400000,4.030000,181.220000,20.600000 +18,2023-08-05 12:00:00,0.000000,17.700000,69.000000,11.000000,37.000000,85.630000,123.990000,842.680000,4.000000,181.300000,20.460000 +18,2023-08-05 13:00:00,0.000000,17.700000,69.000000,11.000000,37.000000,85.570000,124.050000,842.960000,3.970000,181.370000,20.350000 +18,2023-08-05 14:00:00,0.010000,18.900000,64.000000,12.000000,40.000000,85.570000,124.120000,843.310000,4.170000,181.460000,21.100000 +18,2023-08-05 15:00:00,0.000000,18.900000,64.000000,12.000000,40.000000,85.570000,124.180000,843.660000,4.170000,181.560000,21.110000 +18,2023-08-05 16:00:00,0.000000,18.900000,64.000000,12.000000,40.000000,85.570000,124.250000,844.020000,4.170000,181.650000,21.110000 +18,2023-08-05 17:00:00,0.000000,20.900000,46.000000,13.000000,45.000000,85.950000,124.370000,844.610000,4.630000,181.810000,22.740000 +18,2023-08-05 18:00:00,0.000000,20.900000,46.000000,13.000000,45.000000,86.280000,124.480000,845.210000,4.850000,181.970000,23.490000 +18,2023-08-05 19:00:00,0.000000,20.900000,46.000000,13.000000,45.000000,86.560000,124.600000,845.800000,5.040000,182.120000,24.160000 +18,2023-08-05 20:00:00,0.000000,19.100000,47.000000,9.000000,39.000000,86.710000,124.700000,846.330000,4.210000,182.260000,21.260000 +18,2023-08-05 21:00:00,0.000000,19.100000,47.000000,9.000000,39.000000,86.840000,124.800000,846.850000,4.290000,182.400000,21.550000 +18,2023-08-05 22:00:00,0.000000,19.100000,47.000000,9.000000,39.000000,86.950000,124.800000,846.850000,4.360000,182.400000,21.800000 +18,2023-08-05 23:00:00,0.000000,13.800000,69.000000,3.000000,325.000000,86.710000,124.800000,846.850000,3.110000,182.400000,17.050000 +18,2023-08-06 00:00:00,0.000000,13.800000,69.000000,3.000000,325.000000,86.500000,124.800000,846.850000,3.020000,182.400000,16.660000 +18,2023-08-06 01:00:00,0.000000,13.800000,69.000000,3.000000,325.000000,86.300000,124.800000,846.850000,2.940000,182.400000,16.320000 +18,2023-08-06 02:00:00,0.000000,10.900000,83.000000,5.000000,281.000000,85.730000,124.800000,846.850000,3.000000,182.400000,16.590000 +18,2023-08-06 03:00:00,0.000000,10.900000,83.000000,5.000000,281.000000,85.230000,124.800000,846.850000,2.800000,182.400000,15.730000 +18,2023-08-06 04:00:00,0.000000,10.900000,83.000000,5.000000,281.000000,84.780000,124.800000,846.850000,2.630000,182.400000,15.010000 +18,2023-08-06 05:00:00,0.000000,9.700000,92.000000,6.000000,286.000000,83.990000,124.820000,846.880000,2.480000,182.420000,14.360000 +18,2023-08-06 06:00:00,0.000000,9.700000,92.000000,6.000000,286.000000,83.280000,124.830000,846.910000,2.260000,182.430000,13.370000 +18,2023-08-06 07:00:00,0.000000,9.700000,92.000000,6.000000,286.000000,82.660000,124.840000,846.940000,2.090000,182.450000,12.550000 +18,2023-08-06 08:00:00,0.000000,16.300000,69.000000,4.000000,317.000000,82.720000,124.920000,847.120000,1.900000,182.540000,11.650000 +18,2023-08-06 09:00:00,0.000000,16.300000,69.000000,4.000000,317.000000,82.780000,125.000000,847.300000,1.920000,182.640000,11.720000 +18,2023-08-06 10:00:00,0.000000,16.300000,69.000000,4.000000,317.000000,82.830000,125.080000,847.490000,1.930000,182.730000,11.790000 +18,2023-08-06 11:00:00,0.000000,22.600000,38.000000,7.000000,51.000000,83.840000,125.310000,848.030000,2.560000,183.010000,14.720000 +18,2023-08-06 12:00:00,0.000000,22.600000,38.000000,7.000000,51.000000,84.710000,125.540000,848.570000,2.880000,183.290000,16.100000 +18,2023-08-06 13:00:00,0.000000,22.600000,38.000000,7.000000,51.000000,85.460000,125.770000,849.110000,3.190000,183.570000,17.400000 +18,2023-08-06 14:00:00,0.000000,24.000000,32.000000,10.000000,59.000000,86.430000,126.050000,849.750000,4.250000,183.900000,21.460000 +18,2023-08-06 15:00:00,0.000000,24.000000,32.000000,10.000000,59.000000,87.250000,126.320000,850.390000,4.780000,184.230000,23.310000 +18,2023-08-06 16:00:00,0.000000,24.000000,32.000000,10.000000,59.000000,87.930000,126.600000,851.040000,5.270000,184.560000,24.970000 +18,2023-08-06 17:00:00,0.000000,23.600000,32.000000,12.000000,67.000000,88.500000,126.870000,851.670000,6.320000,184.880000,28.330000 +18,2023-08-06 18:00:00,0.000000,23.600000,32.000000,12.000000,67.000000,88.980000,127.140000,852.290000,6.770000,185.210000,29.690000 +18,2023-08-06 19:00:00,0.000000,23.600000,32.000000,12.000000,67.000000,89.370000,127.410000,852.920000,7.170000,185.530000,30.860000 +18,2023-08-06 20:00:00,0.000000,20.800000,36.000000,11.000000,79.000000,89.470000,127.620000,853.420000,6.910000,185.790000,30.130000 +18,2023-08-06 21:00:00,0.000000,20.800000,36.000000,11.000000,79.000000,89.560000,127.840000,853.920000,7.000000,186.040000,30.380000 +18,2023-08-06 22:00:00,0.000000,20.800000,36.000000,11.000000,79.000000,89.630000,127.840000,853.920000,7.070000,186.040000,30.590000 +18,2023-08-06 23:00:00,0.000000,16.000000,48.000000,7.000000,94.000000,89.520000,127.840000,853.920000,5.690000,186.040000,26.370000 +18,2023-08-07 00:00:00,0.000000,16.000000,48.000000,7.000000,94.000000,89.410000,127.840000,853.920000,5.600000,186.040000,26.100000 +18,2023-08-07 01:00:00,0.000000,16.000000,48.000000,7.000000,94.000000,89.320000,127.840000,853.920000,5.530000,186.040000,25.870000 +18,2023-08-07 02:00:00,0.000000,13.200000,56.000000,4.000000,129.000000,89.080000,127.840000,853.920000,4.590000,186.040000,22.700000 +18,2023-08-07 03:00:00,0.000000,13.200000,56.000000,4.000000,129.000000,88.860000,127.840000,853.920000,4.450000,186.040000,22.200000 +18,2023-08-07 04:00:00,0.000000,13.200000,56.000000,4.000000,129.000000,88.660000,127.840000,853.920000,4.320000,186.040000,21.740000 +18,2023-08-07 05:00:00,0.000000,11.700000,61.000000,2.000000,174.000000,88.400000,127.900000,854.050000,3.760000,186.120000,19.690000 +18,2023-08-07 06:00:00,0.000000,11.700000,61.000000,2.000000,174.000000,88.160000,127.960000,854.180000,3.640000,186.190000,19.210000 +18,2023-08-07 07:00:00,0.000000,11.700000,61.000000,2.000000,174.000000,87.940000,128.030000,854.310000,3.530000,186.270000,18.780000 +18,2023-08-07 08:00:00,0.000000,16.400000,46.000000,4.000000,156.000000,87.940000,128.150000,854.560000,3.900000,186.410000,20.210000 +18,2023-08-07 09:00:00,0.000000,16.400000,46.000000,4.000000,156.000000,87.940000,128.270000,854.810000,3.900000,186.550000,20.220000 +18,2023-08-07 10:00:00,0.000000,16.400000,46.000000,4.000000,156.000000,87.940000,128.390000,855.050000,3.900000,186.690000,20.220000 +18,2023-08-07 11:00:00,0.000000,23.500000,31.000000,7.000000,144.000000,88.490000,128.620000,855.540000,4.910000,186.970000,23.830000 +18,2023-08-07 12:00:00,0.000000,23.500000,31.000000,7.000000,144.000000,88.960000,128.860000,856.030000,5.250000,187.250000,24.970000 +18,2023-08-07 13:00:00,0.000000,23.500000,31.000000,7.000000,144.000000,89.350000,129.100000,856.520000,5.560000,187.530000,25.980000 +18,2023-08-07 14:00:00,0.000000,26.100000,27.000000,9.000000,146.000000,89.970000,129.390000,857.130000,6.710000,187.880000,29.570000 +18,2023-08-07 15:00:00,0.000000,26.100000,27.000000,9.000000,146.000000,90.470000,129.680000,857.730000,7.210000,188.220000,31.060000 +18,2023-08-07 16:00:00,0.000000,26.100000,27.000000,9.000000,146.000000,90.880000,129.970000,858.340000,7.650000,188.570000,32.320000 +18,2023-08-07 17:00:00,0.000000,26.400000,27.000000,9.000000,141.000000,91.240000,130.270000,858.950000,8.040000,188.920000,33.430000 +18,2023-08-07 18:00:00,0.000000,26.400000,27.000000,9.000000,141.000000,91.520000,130.570000,859.570000,8.380000,189.270000,34.360000 +18,2023-08-07 19:00:00,0.000000,26.400000,27.000000,9.000000,141.000000,91.760000,130.870000,860.180000,8.660000,189.620000,35.140000 +18,2023-08-07 20:00:00,0.000000,23.900000,33.000000,5.000000,117.000000,91.760000,131.100000,860.670000,7.080000,189.890000,30.730000 +18,2023-08-07 21:00:00,0.000000,23.900000,33.000000,5.000000,117.000000,91.760000,131.340000,861.150000,7.080000,190.170000,30.730000 +18,2023-08-07 22:00:00,0.000000,23.900000,33.000000,5.000000,117.000000,91.760000,131.340000,861.150000,7.080000,190.170000,30.730000 +18,2023-08-07 23:00:00,0.000000,17.200000,51.000000,4.000000,166.000000,91.390000,131.340000,861.150000,6.390000,190.170000,28.670000 +18,2023-08-08 00:00:00,0.000000,17.200000,51.000000,4.000000,166.000000,91.060000,131.340000,861.150000,6.100000,190.170000,27.760000 +18,2023-08-08 01:00:00,0.000000,17.200000,51.000000,4.000000,166.000000,90.760000,131.340000,861.150000,5.850000,190.170000,26.970000 +18,2023-08-08 02:00:00,0.000000,14.100000,63.000000,8.000000,204.000000,90.170000,131.340000,861.150000,6.570000,190.170000,29.210000 +18,2023-08-08 03:00:00,0.000000,14.100000,63.000000,8.000000,204.000000,89.650000,131.340000,861.150000,6.100000,190.170000,27.760000 +18,2023-08-08 04:00:00,0.000000,14.100000,63.000000,8.000000,204.000000,89.190000,131.340000,861.150000,5.710000,190.170000,26.530000 +18,2023-08-08 05:00:00,0.000000,12.700000,70.000000,7.000000,191.000000,88.630000,131.390000,861.270000,5.010000,190.230000,24.220000 +18,2023-08-08 06:00:00,0.000000,12.700000,70.000000,7.000000,191.000000,88.130000,131.450000,861.390000,4.660000,190.300000,23.040000 +18,2023-08-08 07:00:00,0.000000,12.700000,70.000000,7.000000,191.000000,87.690000,131.500000,861.510000,4.380000,190.360000,22.030000 +18,2023-08-08 08:00:00,0.000000,18.200000,48.000000,6.000000,170.000000,87.690000,131.640000,861.800000,4.160000,190.520000,21.260000 +18,2023-08-08 09:00:00,0.000000,18.200000,48.000000,6.000000,170.000000,87.690000,131.770000,862.090000,4.160000,190.680000,21.260000 +18,2023-08-08 10:00:00,0.000000,18.200000,48.000000,6.000000,170.000000,87.690000,131.900000,862.390000,4.160000,190.840000,21.260000 +18,2023-08-08 11:00:00,0.000000,24.800000,36.000000,7.000000,150.000000,88.170000,132.150000,862.920000,4.690000,191.130000,23.140000 +18,2023-08-08 12:00:00,0.000000,24.800000,36.000000,7.000000,150.000000,88.570000,132.400000,863.460000,4.970000,191.420000,24.110000 +18,2023-08-08 13:00:00,0.000000,24.800000,36.000000,7.000000,150.000000,88.910000,132.640000,864.000000,5.210000,191.710000,24.950000 +18,2023-08-08 14:00:00,0.000000,27.000000,35.000000,7.000000,166.000000,89.320000,132.930000,864.620000,5.530000,192.050000,25.990000 +18,2023-08-08 15:00:00,0.000000,27.000000,35.000000,7.000000,166.000000,89.650000,133.220000,865.250000,5.800000,192.380000,26.870000 +18,2023-08-08 16:00:00,0.000000,27.000000,35.000000,7.000000,166.000000,89.930000,133.500000,865.870000,6.040000,192.720000,27.630000 +18,2023-08-08 17:00:00,0.400000,27.500000,36.000000,10.000000,178.000000,87.190000,133.790000,866.500000,4.740000,193.060000,23.360000 +18,2023-08-08 18:00:00,0.000000,27.500000,36.000000,10.000000,178.000000,87.920000,134.080000,867.130000,5.260000,193.400000,25.130000 +18,2023-08-08 19:00:00,0.000000,27.500000,36.000000,10.000000,178.000000,88.510000,134.370000,867.760000,5.730000,193.740000,26.670000 +18,2023-08-08 20:00:00,0.370000,24.500000,48.000000,7.000000,157.000000,85.690000,134.570000,868.190000,3.300000,193.970000,17.990000 +18,2023-08-08 21:00:00,0.000000,24.500000,48.000000,7.000000,157.000000,86.090000,134.760000,868.620000,3.480000,194.200000,18.740000 +18,2023-08-08 22:00:00,0.000000,24.500000,48.000000,7.000000,157.000000,86.430000,134.760000,868.620000,3.660000,194.200000,19.410000 +18,2023-08-08 23:00:00,0.000000,20.400000,58.000000,9.000000,156.000000,86.430000,134.760000,868.620000,4.040000,194.200000,20.880000 +18,2023-08-09 00:00:00,0.000000,20.400000,58.000000,9.000000,156.000000,86.430000,134.760000,868.620000,4.040000,194.200000,20.880000 +18,2023-08-09 01:00:00,0.000000,20.400000,58.000000,9.000000,156.000000,86.430000,134.760000,868.620000,4.040000,194.200000,20.880000 +18,2023-08-09 02:00:00,0.000000,19.300000,59.000000,8.000000,151.000000,86.430000,134.760000,868.620000,3.840000,194.200000,20.130000 +18,2023-08-09 03:00:00,0.000000,19.300000,59.000000,8.000000,151.000000,86.430000,134.760000,868.620000,3.840000,194.200000,20.130000 +18,2023-08-09 04:00:00,0.000000,19.300000,59.000000,8.000000,151.000000,86.430000,134.760000,868.620000,3.840000,194.200000,20.130000 +18,2023-08-09 05:00:00,0.000000,19.100000,56.000000,9.000000,119.000000,86.430000,134.870000,868.840000,4.040000,194.320000,20.880000 +18,2023-08-09 06:00:00,0.000000,19.100000,56.000000,9.000000,119.000000,86.430000,134.970000,869.060000,4.040000,194.450000,20.880000 +18,2023-08-09 07:00:00,0.000000,19.100000,56.000000,9.000000,119.000000,86.430000,135.080000,869.280000,4.040000,194.570000,20.880000 +18,2023-08-09 08:00:00,0.000000,20.500000,44.000000,14.000000,111.000000,86.730000,135.220000,869.590000,5.430000,194.740000,25.730000 +18,2023-08-09 09:00:00,0.000000,20.500000,44.000000,14.000000,111.000000,86.990000,135.360000,869.890000,5.640000,194.910000,26.400000 +18,2023-08-09 10:00:00,0.000000,20.500000,44.000000,14.000000,111.000000,87.220000,135.510000,870.200000,5.820000,195.070000,26.990000 +18,2023-08-09 11:00:00,0.000000,23.900000,33.000000,18.000000,114.000000,87.940000,135.720000,870.650000,7.900000,195.320000,33.180000 +18,2023-08-09 12:00:00,0.000000,23.900000,33.000000,18.000000,114.000000,88.530000,135.930000,871.100000,8.600000,195.570000,35.110000 +18,2023-08-09 13:00:00,0.000000,23.900000,33.000000,18.000000,114.000000,89.020000,136.150000,871.550000,9.210000,195.820000,36.760000 +18,2023-08-09 14:00:00,0.000000,26.400000,27.000000,20.000000,106.000000,89.810000,136.420000,872.120000,11.420000,196.130000,42.250000 +18,2023-08-09 15:00:00,0.000000,26.400000,27.000000,20.000000,106.000000,90.440000,136.690000,872.680000,12.500000,196.450000,44.770000 +18,2023-08-09 16:00:00,0.000000,26.400000,27.000000,20.000000,106.000000,90.940000,136.950000,873.250000,13.420000,196.760000,46.850000 +18,2023-08-09 17:00:00,0.000000,26.200000,26.000000,21.000000,103.000000,91.380000,137.220000,873.820000,15.020000,197.080000,50.300000 +18,2023-08-09 18:00:00,0.000000,26.200000,26.000000,21.000000,103.000000,91.720000,137.490000,874.390000,15.770000,197.390000,51.860000 +18,2023-08-09 19:00:00,0.000000,26.200000,26.000000,21.000000,103.000000,91.990000,137.760000,874.960000,16.390000,197.700000,53.130000 +18,2023-08-09 20:00:00,0.000000,23.900000,28.000000,19.000000,98.000000,92.020000,137.990000,875.440000,14.890000,197.970000,50.050000 +18,2023-08-09 21:00:00,0.000000,23.900000,28.000000,19.000000,98.000000,92.050000,138.220000,875.930000,14.950000,198.240000,50.190000 +18,2023-08-09 22:00:00,0.000000,23.900000,28.000000,19.000000,98.000000,92.080000,138.220000,875.930000,15.000000,198.240000,50.290000 +18,2023-08-09 23:00:00,0.000000,20.400000,31.000000,17.000000,99.000000,92.080000,138.220000,875.930000,13.560000,198.240000,47.200000 +18,2023-08-10 00:00:00,0.000000,20.400000,31.000000,17.000000,99.000000,92.080000,138.220000,875.930000,13.560000,198.240000,47.200000 +18,2023-08-10 01:00:00,0.000000,20.400000,31.000000,17.000000,99.000000,92.080000,138.220000,875.930000,13.560000,198.240000,47.200000 +18,2023-08-10 02:00:00,0.000000,18.000000,32.000000,13.000000,106.000000,92.050000,138.220000,875.930000,11.040000,198.240000,41.400000 +18,2023-08-10 03:00:00,0.000000,18.000000,32.000000,13.000000,106.000000,92.020000,138.220000,875.930000,11.000000,198.240000,41.300000 +18,2023-08-10 04:00:00,0.000000,18.000000,32.000000,13.000000,106.000000,92.000000,138.220000,875.930000,10.960000,198.240000,41.210000 +18,2023-08-10 05:00:00,0.000000,16.200000,35.000000,8.000000,102.000000,91.890000,138.360000,876.230000,8.400000,198.400000,34.640000 +18,2023-08-10 06:00:00,0.000000,16.200000,35.000000,8.000000,102.000000,91.800000,138.490000,876.530000,8.290000,198.550000,34.340000 +18,2023-08-10 07:00:00,0.000000,16.200000,35.000000,8.000000,102.000000,91.720000,138.630000,876.820000,8.190000,198.710000,34.080000 +18,2023-08-10 08:00:00,0.000000,18.200000,33.000000,9.000000,116.000000,91.710000,138.790000,877.170000,8.610000,198.900000,35.210000 +18,2023-08-10 09:00:00,0.000000,18.200000,33.000000,9.000000,116.000000,91.700000,138.950000,877.520000,8.600000,199.090000,35.190000 +18,2023-08-10 10:00:00,0.000000,18.200000,33.000000,9.000000,116.000000,91.700000,139.110000,877.870000,8.590000,199.270000,35.180000 +18,2023-08-10 11:00:00,0.000000,22.400000,34.000000,9.000000,127.000000,91.700000,139.310000,878.320000,8.590000,199.510000,35.180000 +18,2023-08-10 12:00:00,0.000000,22.400000,34.000000,9.000000,127.000000,91.700000,139.510000,878.770000,8.590000,199.750000,35.190000 +18,2023-08-10 13:00:00,0.000000,22.400000,34.000000,9.000000,127.000000,91.700000,139.720000,879.210000,8.590000,199.980000,35.190000 +18,2023-08-10 14:00:00,0.000000,24.500000,28.000000,12.000000,135.000000,91.800000,139.970000,879.760000,10.140000,200.280000,39.230000 +18,2023-08-10 15:00:00,0.000000,24.500000,28.000000,12.000000,135.000000,91.890000,140.220000,880.320000,10.260000,200.570000,39.550000 +18,2023-08-10 16:00:00,0.000000,24.500000,28.000000,12.000000,135.000000,91.960000,140.470000,880.870000,10.360000,200.860000,39.810000 +18,2023-08-10 17:00:00,0.000000,23.600000,28.000000,11.000000,152.000000,91.980000,140.710000,881.390000,9.890000,201.140000,38.640000 +18,2023-08-10 18:00:00,0.000000,23.600000,28.000000,11.000000,152.000000,92.010000,140.950000,881.920000,9.930000,201.420000,38.730000 +18,2023-08-10 19:00:00,0.000000,23.600000,28.000000,11.000000,152.000000,92.030000,141.180000,882.440000,9.950000,201.690000,38.800000 +18,2023-08-10 20:00:00,0.000000,23.600000,28.000000,11.000000,152.000000,92.040000,141.420000,882.960000,9.980000,201.970000,38.870000 +18,2023-08-10 21:00:00,0.000000,23.600000,28.000000,11.000000,152.000000,92.060000,141.420000,882.960000,10.000000,201.970000,38.910000 +18,2023-08-10 22:00:00,0.000000,23.600000,28.000000,11.000000,152.000000,92.070000,141.420000,882.960000,10.010000,201.970000,38.950000 +18,2023-08-10 23:00:00,0.000000,18.300000,44.000000,6.000000,152.000000,91.800000,141.420000,882.960000,7.500000,201.970000,32.200000 +18,2023-08-11 00:00:00,0.000000,18.300000,44.000000,6.000000,152.000000,91.570000,141.420000,882.960000,7.250000,201.970000,31.490000 +18,2023-08-11 01:00:00,0.000000,18.300000,44.000000,6.000000,152.000000,91.360000,141.420000,882.960000,7.040000,201.970000,30.870000 +18,2023-08-11 02:00:00,0.000000,18.300000,44.000000,6.000000,152.000000,91.180000,141.420000,882.960000,6.860000,201.970000,30.320000 +18,2023-08-11 03:00:00,0.000000,18.300000,44.000000,6.000000,152.000000,91.010000,141.420000,882.960000,6.700000,201.970000,29.850000 +18,2023-08-11 04:00:00,0.000000,18.300000,44.000000,6.000000,152.000000,90.860000,141.420000,882.960000,6.560000,201.970000,29.420000 +18,2023-08-11 05:00:00,0.000000,15.800000,57.000000,6.000000,163.000000,90.430000,141.510000,883.190000,6.160000,202.080000,28.210000 +18,2023-08-11 06:00:00,0.000000,15.800000,57.000000,6.000000,163.000000,90.040000,141.600000,883.420000,5.830000,202.180000,27.160000 +18,2023-08-11 07:00:00,0.000000,15.800000,57.000000,6.000000,163.000000,89.700000,141.690000,883.650000,5.550000,202.290000,26.260000 +18,2023-08-11 08:00:00,0.000000,15.800000,57.000000,6.000000,163.000000,89.400000,141.780000,883.880000,5.320000,202.400000,25.490000 +18,2023-08-11 09:00:00,0.000000,15.800000,57.000000,6.000000,163.000000,89.130000,141.870000,884.110000,5.120000,202.500000,24.820000 +18,2023-08-11 10:00:00,0.000000,15.800000,57.000000,6.000000,163.000000,88.890000,141.960000,884.330000,4.950000,202.610000,24.230000 +18,2023-08-11 11:00:00,0.000000,23.100000,44.000000,6.000000,189.000000,88.900000,142.140000,884.800000,4.950000,202.820000,24.250000 +18,2023-08-11 12:00:00,0.000000,23.100000,44.000000,6.000000,189.000000,88.900000,142.320000,885.270000,4.950000,203.040000,24.260000 +18,2023-08-11 13:00:00,0.000000,23.100000,44.000000,6.000000,189.000000,88.900000,142.510000,885.740000,4.950000,203.260000,24.270000 +18,2023-08-11 14:00:00,0.000000,23.100000,44.000000,6.000000,189.000000,88.910000,142.690000,886.210000,4.950000,203.480000,24.280000 +18,2023-08-11 15:00:00,0.000000,23.100000,44.000000,6.000000,189.000000,88.910000,142.870000,886.680000,4.960000,203.690000,24.290000 +18,2023-08-11 16:00:00,0.000000,23.100000,44.000000,6.000000,189.000000,88.910000,143.060000,887.150000,4.960000,203.910000,24.290000 +18,2023-08-11 17:00:00,0.000000,26.200000,26.000000,6.000000,222.000000,89.600000,143.350000,887.890000,5.480000,204.250000,26.040000 +18,2023-08-11 18:00:00,0.000000,26.200000,26.000000,6.000000,222.000000,90.180000,143.640000,888.640000,5.950000,204.600000,27.570000 +18,2023-08-11 19:00:00,0.000000,26.200000,26.000000,6.000000,222.000000,90.660000,143.930000,889.380000,6.370000,204.940000,28.910000 +18,2023-08-11 20:00:00,0.000000,26.200000,26.000000,6.000000,222.000000,91.060000,144.220000,890.130000,6.750000,205.290000,30.050000 +18,2023-08-11 21:00:00,0.000000,26.200000,26.000000,6.000000,222.000000,91.390000,144.220000,890.130000,7.070000,205.290000,31.020000 +18,2023-08-11 22:00:00,0.000000,26.200000,26.000000,6.000000,222.000000,91.670000,144.220000,890.130000,7.350000,205.290000,31.840000 +18,2023-08-11 23:00:00,0.000000,19.500000,42.000000,4.000000,204.000000,91.520000,144.220000,890.130000,6.510000,205.290000,29.330000 +18,2023-08-12 00:00:00,0.000000,19.500000,42.000000,4.000000,204.000000,91.380000,144.220000,890.130000,6.380000,205.290000,28.950000 +18,2023-08-12 01:00:00,0.000000,19.500000,42.000000,4.000000,204.000000,91.260000,144.220000,890.130000,6.280000,205.290000,28.610000 +18,2023-08-12 02:00:00,0.000000,19.500000,42.000000,4.000000,204.000000,91.150000,144.220000,890.130000,6.180000,205.290000,28.310000 +18,2023-08-12 03:00:00,0.000000,19.500000,42.000000,4.000000,204.000000,91.060000,144.220000,890.130000,6.090000,205.290000,28.050000 +18,2023-08-12 04:00:00,0.000000,19.500000,42.000000,4.000000,204.000000,90.970000,144.220000,890.130000,6.020000,205.290000,27.810000 +18,2023-08-12 05:00:00,0.000000,15.700000,61.000000,6.000000,223.000000,90.430000,144.310000,890.410000,6.160000,205.400000,28.260000 +18,2023-08-12 06:00:00,0.000000,15.700000,61.000000,6.000000,223.000000,89.950000,144.400000,890.700000,5.750000,205.510000,26.970000 +18,2023-08-12 07:00:00,0.000000,15.700000,61.000000,6.000000,223.000000,89.530000,144.490000,890.990000,5.420000,205.610000,25.870000 +18,2023-08-12 08:00:00,0.000000,15.700000,61.000000,6.000000,223.000000,89.160000,144.580000,891.280000,5.140000,205.720000,24.930000 +18,2023-08-12 09:00:00,0.000000,15.700000,61.000000,6.000000,223.000000,88.830000,144.660000,891.570000,4.900000,205.830000,24.130000 +18,2023-08-12 10:00:00,0.000000,15.700000,61.000000,6.000000,223.000000,88.540000,144.750000,891.860000,4.700000,205.940000,23.430000 +18,2023-08-12 11:00:00,0.000000,20.700000,54.000000,8.000000,281.000000,88.510000,144.900000,892.320000,5.180000,206.120000,25.080000 +18,2023-08-12 12:00:00,0.000000,20.700000,54.000000,8.000000,281.000000,88.490000,145.040000,892.790000,5.160000,206.290000,25.010000 +18,2023-08-12 13:00:00,0.000000,20.700000,54.000000,8.000000,281.000000,88.460000,145.180000,893.260000,5.140000,206.470000,24.960000 +18,2023-08-12 14:00:00,0.000000,20.700000,54.000000,8.000000,281.000000,88.450000,145.330000,893.720000,5.130000,206.650000,24.920000 +18,2023-08-12 15:00:00,0.000000,20.700000,54.000000,8.000000,281.000000,88.430000,145.470000,894.190000,5.120000,206.820000,24.880000 +18,2023-08-12 16:00:00,0.000000,20.700000,54.000000,8.000000,281.000000,88.410000,145.610000,894.650000,5.110000,207.000000,24.840000 +18,2023-08-12 17:00:00,0.000000,22.400000,51.000000,12.000000,293.000000,88.410000,145.780000,895.200000,6.250000,207.210000,28.550000 +18,2023-08-12 18:00:00,0.000000,22.400000,51.000000,12.000000,293.000000,88.410000,145.950000,895.750000,6.250000,207.410000,28.550000 +18,2023-08-12 19:00:00,0.000000,22.400000,51.000000,12.000000,293.000000,88.410000,146.120000,896.310000,6.250000,207.620000,28.560000 +18,2023-08-12 20:00:00,0.000000,22.400000,51.000000,12.000000,293.000000,88.410000,146.290000,896.860000,6.250000,207.830000,28.560000 +18,2023-08-12 21:00:00,0.000000,22.400000,51.000000,12.000000,293.000000,88.410000,146.290000,896.860000,6.250000,207.830000,28.560000 +18,2023-08-12 22:00:00,0.000000,22.400000,51.000000,12.000000,293.000000,88.410000,146.290000,896.860000,6.250000,207.830000,28.560000 +18,2023-08-12 23:00:00,0.000000,18.000000,69.000000,15.000000,285.000000,87.930000,146.290000,896.860000,6.780000,207.830000,30.200000 +18,2023-08-13 00:00:00,0.000000,18.000000,69.000000,15.000000,285.000000,87.530000,146.290000,896.860000,6.400000,207.830000,29.030000 +18,2023-08-13 01:00:00,0.000000,18.000000,69.000000,15.000000,285.000000,87.180000,146.290000,896.860000,6.090000,207.830000,28.080000 +18,2023-08-13 02:00:00,0.000000,18.000000,69.000000,15.000000,285.000000,86.890000,146.290000,896.860000,5.850000,207.830000,27.290000 +18,2023-08-13 03:00:00,0.000000,18.000000,69.000000,15.000000,285.000000,86.650000,146.290000,896.860000,5.650000,207.830000,26.650000 +18,2023-08-13 04:00:00,0.000000,18.000000,69.000000,15.000000,285.000000,86.440000,146.290000,896.860000,5.480000,207.830000,26.110000 +18,2023-08-13 05:00:00,0.000000,16.400000,73.000000,10.000000,268.000000,86.140000,146.360000,897.020000,4.080000,207.910000,21.230000 +18,2023-08-13 06:00:00,0.000000,16.400000,73.000000,10.000000,268.000000,85.880000,146.430000,897.180000,3.940000,207.990000,20.690000 +18,2023-08-13 07:00:00,0.000000,16.400000,73.000000,10.000000,268.000000,85.660000,146.490000,897.350000,3.820000,208.070000,20.230000 +18,2023-08-13 08:00:00,0.000000,16.400000,73.000000,10.000000,268.000000,85.470000,146.560000,897.510000,3.720000,208.150000,19.840000 +18,2023-08-13 09:00:00,0.000000,16.400000,73.000000,10.000000,268.000000,85.310000,146.630000,897.670000,3.630000,208.230000,19.520000 +18,2023-08-13 10:00:00,0.000000,16.400000,73.000000,10.000000,268.000000,85.160000,146.700000,897.840000,3.560000,208.310000,19.240000 +18,2023-08-13 11:00:00,0.000000,22.300000,40.000000,12.000000,248.000000,85.840000,146.910000,898.360000,4.330000,208.560000,22.140000 +18,2023-08-13 12:00:00,0.000000,22.300000,40.000000,12.000000,248.000000,86.410000,147.130000,898.890000,4.690000,208.810000,23.440000 +18,2023-08-13 13:00:00,0.000000,22.300000,40.000000,12.000000,248.000000,86.900000,147.350000,899.410000,5.030000,209.070000,24.610000 +18,2023-08-13 14:00:00,0.000000,22.300000,40.000000,12.000000,248.000000,87.310000,147.560000,899.940000,5.330000,209.320000,25.630000 +18,2023-08-13 15:00:00,0.000000,22.300000,40.000000,12.000000,248.000000,87.660000,147.780000,900.460000,5.600000,209.580000,26.530000 +18,2023-08-13 16:00:00,0.000000,22.300000,40.000000,12.000000,248.000000,87.950000,148.000000,900.990000,5.840000,209.830000,27.310000 +18,2023-08-13 17:00:00,0.000000,24.300000,27.000000,13.000000,255.000000,88.760000,148.300000,901.710000,6.900000,210.180000,30.590000 +18,2023-08-13 18:00:00,0.000000,24.300000,27.000000,13.000000,255.000000,89.420000,148.590000,902.430000,7.590000,210.520000,32.630000 +18,2023-08-13 19:00:00,0.000000,24.300000,27.000000,13.000000,255.000000,89.970000,148.890000,903.150000,8.210000,210.870000,34.380000 +18,2023-08-13 20:00:00,0.000000,24.300000,27.000000,13.000000,255.000000,90.420000,149.190000,903.870000,8.760000,211.220000,35.880000 +18,2023-08-13 21:00:00,0.000000,24.300000,27.000000,13.000000,255.000000,90.790000,149.190000,903.870000,9.240000,211.220000,37.140000 +18,2023-08-13 22:00:00,0.000000,24.300000,27.000000,13.000000,255.000000,91.090000,149.190000,903.870000,9.640000,211.220000,38.210000 +18,2023-08-13 23:00:00,0.000000,17.900000,32.000000,10.000000,239.000000,91.090000,149.190000,903.870000,8.290000,211.220000,34.600000 +18,2023-08-14 00:00:00,0.000000,17.900000,32.000000,10.000000,239.000000,91.090000,149.190000,903.870000,8.290000,211.220000,34.600000 +18,2023-08-14 01:00:00,0.000000,17.900000,32.000000,10.000000,239.000000,91.090000,149.190000,903.870000,8.290000,211.220000,34.600000 +18,2023-08-14 02:00:00,0.000000,17.900000,32.000000,10.000000,239.000000,91.090000,149.190000,903.870000,8.290000,211.220000,34.600000 +18,2023-08-14 03:00:00,0.000000,17.900000,32.000000,10.000000,239.000000,91.090000,149.190000,903.870000,8.290000,211.220000,34.600000 +18,2023-08-14 04:00:00,0.000000,17.900000,32.000000,10.000000,239.000000,91.090000,149.190000,903.870000,8.290000,211.220000,34.600000 +18,2023-08-14 05:00:00,0.000000,15.800000,43.000000,11.000000,232.000000,90.910000,149.320000,904.150000,8.490000,211.370000,35.150000 +18,2023-08-14 06:00:00,0.000000,15.800000,43.000000,11.000000,232.000000,90.740000,149.460000,904.420000,8.290000,211.530000,34.600000 +18,2023-08-14 07:00:00,0.000000,15.800000,43.000000,11.000000,232.000000,90.590000,149.590000,904.700000,8.120000,211.680000,34.120000 +18,2023-08-14 08:00:00,0.000000,15.800000,43.000000,11.000000,232.000000,90.460000,149.730000,904.970000,7.960000,211.840000,33.700000 +18,2023-08-14 09:00:00,0.000000,15.800000,43.000000,11.000000,232.000000,90.340000,149.860000,905.240000,7.830000,211.990000,33.330000 +18,2023-08-14 10:00:00,0.000000,15.800000,43.000000,11.000000,232.000000,90.240000,150.000000,905.520000,7.720000,212.150000,33.010000 +18,2023-08-14 11:00:00,0.000000,22.000000,28.000000,18.000000,282.000000,90.530000,150.250000,906.030000,11.440000,212.430000,42.700000 +18,2023-08-14 12:00:00,0.000000,22.000000,28.000000,18.000000,282.000000,90.760000,150.500000,906.540000,11.840000,212.720000,43.640000 +18,2023-08-14 13:00:00,0.000000,22.000000,28.000000,18.000000,282.000000,90.960000,150.750000,907.050000,12.170000,213.000000,44.430000 +18,2023-08-14 14:00:00,0.000000,22.000000,28.000000,18.000000,282.000000,91.120000,151.010000,907.560000,12.450000,213.290000,45.080000 +18,2023-08-14 15:00:00,0.000000,22.000000,28.000000,18.000000,282.000000,91.250000,151.260000,908.070000,12.690000,213.580000,45.630000 +18,2023-08-14 16:00:00,0.000000,22.000000,28.000000,18.000000,282.000000,91.360000,151.510000,908.580000,12.880000,213.860000,46.080000 +18,2023-08-14 17:00:00,0.000000,23.000000,25.000000,16.000000,301.000000,91.600000,151.790000,909.140000,12.050000,214.180000,44.170000 +18,2023-08-14 18:00:00,0.000000,23.000000,25.000000,16.000000,301.000000,91.800000,152.070000,909.710000,12.390000,214.490000,44.970000 +18,2023-08-14 19:00:00,0.000000,23.000000,25.000000,16.000000,301.000000,91.960000,152.340000,910.270000,12.680000,214.810000,45.630000 +18,2023-08-14 20:00:00,0.000000,23.000000,25.000000,16.000000,301.000000,92.090000,152.620000,910.840000,12.920000,215.130000,46.180000 +18,2023-08-14 21:00:00,0.000000,23.000000,25.000000,16.000000,301.000000,92.190000,152.620000,910.840000,13.110000,215.130000,46.620000 +18,2023-08-14 22:00:00,0.000000,23.000000,25.000000,16.000000,301.000000,92.280000,152.620000,910.840000,13.280000,215.130000,46.990000 +18,2023-08-14 23:00:00,0.000000,18.000000,35.000000,10.000000,299.000000,92.170000,152.620000,910.840000,9.660000,215.130000,38.310000 +18,2023-08-15 00:00:00,0.000000,18.000000,35.000000,10.000000,299.000000,92.070000,152.620000,910.840000,9.520000,215.130000,37.960000 +18,2023-08-15 01:00:00,0.000000,18.000000,35.000000,10.000000,299.000000,91.980000,152.620000,910.840000,9.400000,215.130000,37.650000 +18,2023-08-15 02:00:00,0.000000,18.000000,35.000000,10.000000,299.000000,91.900000,152.620000,910.840000,9.300000,215.130000,37.370000 +18,2023-08-15 03:00:00,0.000000,18.000000,35.000000,10.000000,299.000000,91.830000,152.620000,910.840000,9.200000,215.130000,37.130000 +18,2023-08-15 04:00:00,0.000000,18.000000,35.000000,10.000000,299.000000,91.770000,152.620000,910.840000,9.120000,215.130000,36.910000 +18,2023-08-15 05:00:00,0.020000,14.200000,48.000000,8.000000,279.000000,91.400000,152.730000,911.100000,7.830000,215.260000,33.380000 +18,2023-08-15 06:00:00,0.000000,14.200000,48.000000,8.000000,279.000000,91.080000,152.850000,911.360000,7.480000,215.390000,32.370000 +18,2023-08-15 07:00:00,0.000000,14.200000,48.000000,8.000000,279.000000,90.780000,152.960000,911.620000,7.170000,215.510000,31.480000 +18,2023-08-15 08:00:00,0.000000,14.200000,48.000000,8.000000,279.000000,90.520000,153.070000,911.880000,6.910000,215.640000,30.710000 +18,2023-08-15 09:00:00,0.000000,14.200000,48.000000,8.000000,279.000000,90.290000,153.180000,912.150000,6.680000,215.770000,30.020000 +18,2023-08-15 10:00:00,0.000000,14.200000,48.000000,8.000000,279.000000,90.080000,153.290000,912.410000,6.490000,215.900000,29.420000 +18,2023-08-15 11:00:00,0.000000,20.500000,36.000000,12.000000,309.000000,90.080000,153.500000,912.890000,7.930000,216.140000,33.690000 +18,2023-08-15 12:00:00,0.000000,20.500000,36.000000,12.000000,309.000000,90.080000,153.700000,913.370000,7.930000,216.370000,33.690000 +18,2023-08-15 13:00:00,0.000000,20.500000,36.000000,12.000000,309.000000,90.080000,153.910000,913.850000,7.930000,216.610000,33.690000 +18,2023-08-15 14:00:00,0.000000,20.500000,36.000000,12.000000,309.000000,90.080000,154.110000,914.330000,7.930000,216.850000,33.700000 +18,2023-08-15 15:00:00,0.000000,20.500000,36.000000,12.000000,309.000000,90.080000,154.310000,914.810000,7.930000,217.080000,33.700000 +18,2023-08-15 16:00:00,0.000000,20.500000,36.000000,12.000000,309.000000,90.080000,154.520000,915.290000,7.930000,217.320000,33.700000 +18,2023-08-15 17:00:00,0.000000,21.600000,30.000000,16.000000,317.000000,90.300000,154.760000,915.850000,10.020000,217.590000,39.280000 +18,2023-08-15 18:00:00,0.000000,21.600000,30.000000,16.000000,317.000000,90.480000,155.000000,916.410000,10.280000,217.870000,39.950000 +18,2023-08-15 19:00:00,0.000000,21.600000,30.000000,16.000000,317.000000,90.640000,155.240000,916.970000,10.510000,218.150000,40.520000 +18,2023-08-15 20:00:00,0.000000,21.600000,30.000000,16.000000,317.000000,90.760000,155.480000,917.530000,10.700000,218.420000,40.990000 +18,2023-08-15 21:00:00,0.000000,21.600000,30.000000,16.000000,317.000000,90.860000,155.480000,917.530000,10.860000,218.420000,41.390000 +18,2023-08-15 22:00:00,0.000000,21.600000,30.000000,16.000000,317.000000,90.950000,155.480000,917.530000,10.990000,218.420000,41.710000 +18,2023-08-15 23:00:00,0.000000,14.900000,54.000000,4.000000,313.000000,90.590000,155.480000,917.530000,5.700000,218.420000,26.980000 +18,2023-08-16 00:00:00,0.000000,14.900000,54.000000,4.000000,313.000000,90.270000,155.480000,917.530000,5.450000,218.420000,26.130000 +18,2023-08-16 01:00:00,0.000000,14.900000,54.000000,4.000000,313.000000,89.980000,155.480000,917.530000,5.220000,218.420000,25.390000 +18,2023-08-16 02:00:00,0.000000,14.900000,54.000000,4.000000,313.000000,89.720000,155.480000,917.530000,5.030000,218.420000,24.740000 +18,2023-08-16 03:00:00,0.000000,14.900000,54.000000,4.000000,313.000000,89.480000,155.480000,917.530000,4.870000,218.420000,24.170000 +18,2023-08-16 04:00:00,0.000000,14.900000,54.000000,4.000000,313.000000,89.270000,155.480000,917.530000,4.720000,218.420000,23.660000 +18,2023-08-16 05:00:00,0.000000,10.100000,76.000000,5.000000,245.000000,88.590000,155.520000,917.620000,4.500000,218.470000,22.880000 +18,2023-08-16 06:00:00,0.000000,10.100000,76.000000,5.000000,245.000000,87.980000,155.560000,917.710000,4.120000,218.520000,21.490000 +18,2023-08-16 07:00:00,0.000000,10.100000,76.000000,5.000000,245.000000,87.440000,155.600000,917.800000,3.810000,218.560000,20.320000 +18,2023-08-16 08:00:00,0.000000,10.100000,76.000000,5.000000,245.000000,86.950000,155.640000,917.900000,3.560000,218.610000,19.320000 +18,2023-08-16 09:00:00,0.000000,10.100000,76.000000,5.000000,245.000000,86.510000,155.680000,917.990000,3.340000,218.660000,18.470000 +18,2023-08-16 10:00:00,0.000000,10.100000,76.000000,5.000000,245.000000,86.120000,155.720000,918.080000,3.160000,218.700000,17.730000 +18,2023-08-16 11:00:00,0.000000,21.500000,34.000000,5.000000,172.000000,86.720000,155.950000,918.600000,3.440000,218.970000,18.870000 +18,2023-08-16 12:00:00,0.000000,21.500000,34.000000,5.000000,172.000000,87.240000,156.190000,919.110000,3.710000,219.230000,19.910000 +18,2023-08-16 13:00:00,0.000000,21.500000,34.000000,5.000000,172.000000,87.690000,156.420000,919.630000,3.950000,219.500000,20.860000 +18,2023-08-16 14:00:00,0.000000,21.500000,34.000000,5.000000,172.000000,88.070000,156.650000,920.150000,4.180000,219.770000,21.720000 +18,2023-08-16 15:00:00,0.000000,21.500000,34.000000,5.000000,172.000000,88.410000,156.880000,920.670000,4.390000,220.030000,22.480000 +18,2023-08-16 16:00:00,0.000000,21.500000,34.000000,5.000000,172.000000,88.700000,157.110000,921.190000,4.580000,220.300000,23.160000 +18,2023-08-16 17:00:00,0.000000,25.600000,20.000000,3.000000,113.000000,89.570000,157.470000,921.990000,4.680000,220.710000,23.540000 +18,2023-08-16 18:00:00,0.000000,25.600000,20.000000,3.000000,113.000000,90.300000,157.840000,922.800000,5.200000,221.120000,25.340000 +18,2023-08-16 19:00:00,0.000000,25.600000,20.000000,3.000000,113.000000,90.920000,158.200000,923.600000,5.680000,221.530000,26.950000 +18,2023-08-16 20:00:00,0.000000,25.600000,20.000000,3.000000,113.000000,91.440000,158.560000,924.410000,6.120000,221.940000,28.370000 +18,2023-08-16 21:00:00,0.000000,25.600000,20.000000,3.000000,113.000000,91.890000,158.560000,924.410000,6.520000,221.940000,29.600000 +18,2023-08-16 22:00:00,0.000000,25.600000,20.000000,3.000000,113.000000,92.260000,158.560000,924.410000,6.870000,221.940000,30.680000 +18,2023-08-16 23:00:00,0.000000,16.000000,45.000000,5.000000,91.000000,91.950000,158.560000,924.410000,7.270000,221.940000,31.870000 +18,2023-08-17 00:00:00,0.000000,16.000000,45.000000,5.000000,91.000000,91.670000,158.560000,924.410000,6.990000,221.940000,31.030000 +18,2023-08-17 01:00:00,0.000000,16.000000,45.000000,5.000000,91.000000,91.410000,158.560000,924.410000,6.740000,221.940000,30.280000 +18,2023-08-17 02:00:00,0.000000,16.000000,45.000000,5.000000,91.000000,91.180000,158.560000,924.410000,6.530000,221.940000,29.630000 +18,2023-08-17 03:00:00,0.000000,16.000000,45.000000,5.000000,91.000000,90.980000,158.560000,924.410000,6.340000,221.940000,29.040000 +18,2023-08-17 04:00:00,0.000000,16.000000,45.000000,5.000000,91.000000,90.790000,158.560000,924.410000,6.170000,221.940000,28.530000 +18,2023-08-17 05:00:00,0.000000,10.800000,60.000000,5.000000,175.000000,90.310000,158.560000,924.410000,5.760000,221.940000,27.200000 +18,2023-08-17 06:00:00,0.000000,10.800000,60.000000,5.000000,175.000000,89.870000,158.630000,924.540000,5.410000,222.020000,26.050000 +18,2023-08-17 07:00:00,0.000000,10.800000,60.000000,5.000000,175.000000,89.470000,158.700000,924.670000,5.110000,222.100000,25.050000 +18,2023-08-17 08:00:00,0.000000,10.800000,60.000000,5.000000,175.000000,89.120000,158.770000,924.790000,4.860000,222.180000,24.170000 +18,2023-08-17 09:00:00,0.000000,10.800000,60.000000,5.000000,175.000000,88.800000,158.840000,924.920000,4.640000,222.260000,23.390000 +18,2023-08-17 10:00:00,0.000000,10.800000,60.000000,5.000000,175.000000,88.500000,158.910000,925.050000,4.450000,222.330000,22.710000 +18,2023-08-17 11:00:00,0.000000,24.900000,24.000000,9.000000,136.000000,89.320000,159.240000,925.650000,6.120000,222.700000,28.360000 +18,2023-08-17 12:00:00,0.000000,24.900000,24.000000,9.000000,136.000000,90.000000,159.560000,926.250000,6.740000,223.060000,30.300000 +18,2023-08-17 13:00:00,0.000000,24.900000,24.000000,9.000000,136.000000,90.560000,159.890000,926.850000,7.310000,223.420000,31.990000 +18,2023-08-17 14:00:00,0.000000,24.900000,24.000000,9.000000,136.000000,91.030000,160.210000,927.450000,7.810000,223.780000,33.440000 +18,2023-08-17 15:00:00,0.000000,24.900000,24.000000,9.000000,136.000000,91.410000,160.540000,928.050000,8.250000,224.140000,34.680000 +18,2023-08-17 16:00:00,0.000000,24.900000,24.000000,9.000000,136.000000,91.730000,160.870000,928.650000,8.630000,224.510000,35.730000 +18,2023-08-17 17:00:00,0.000000,29.000000,19.000000,11.000000,107.000000,92.430000,161.310000,929.460000,10.530000,225.000000,40.680000 +18,2023-08-17 18:00:00,0.000000,29.000000,19.000000,11.000000,107.000000,92.980000,161.750000,930.270000,11.380000,225.490000,42.770000 +18,2023-08-17 19:00:00,0.000000,29.000000,19.000000,11.000000,107.000000,93.410000,162.190000,931.080000,12.090000,225.970000,44.470000 +18,2023-08-17 20:00:00,0.000000,29.000000,19.000000,11.000000,107.000000,93.750000,162.640000,931.890000,12.680000,226.460000,45.850000 +18,2023-08-17 21:00:00,0.000000,29.000000,19.000000,11.000000,107.000000,94.020000,162.640000,931.890000,13.170000,226.460000,46.950000 +18,2023-08-17 22:00:00,0.000000,29.000000,19.000000,11.000000,107.000000,94.240000,162.640000,931.890000,13.560000,226.460000,47.830000 +18,2023-08-17 23:00:00,0.000000,18.500000,44.000000,5.000000,95.000000,93.750000,162.640000,931.890000,9.370000,226.460000,37.730000 +18,2023-08-18 00:00:00,0.000000,18.500000,44.000000,5.000000,95.000000,93.320000,162.640000,931.890000,8.820000,226.460000,36.270000 +18,2023-08-18 01:00:00,0.000000,18.500000,44.000000,5.000000,95.000000,92.930000,162.640000,931.890000,8.350000,226.460000,35.000000 +18,2023-08-18 02:00:00,0.000000,18.500000,44.000000,5.000000,95.000000,92.580000,162.640000,931.890000,7.960000,226.460000,33.890000 +18,2023-08-18 03:00:00,0.000000,18.500000,44.000000,5.000000,95.000000,92.280000,162.640000,931.890000,7.620000,226.460000,32.930000 +18,2023-08-18 04:00:00,0.000000,18.500000,44.000000,5.000000,95.000000,92.000000,162.640000,931.890000,7.330000,226.460000,32.090000 +18,2023-08-18 05:00:00,0.000000,13.100000,63.000000,6.000000,187.000000,91.300000,162.640000,931.890000,6.980000,226.460000,31.040000 +18,2023-08-18 06:00:00,0.000000,13.100000,63.000000,6.000000,187.000000,90.670000,162.740000,932.100000,6.380000,226.580000,29.230000 +18,2023-08-18 07:00:00,0.000000,13.100000,63.000000,6.000000,187.000000,90.120000,162.850000,932.310000,5.900000,226.700000,27.700000 +18,2023-08-18 08:00:00,0.000000,13.100000,63.000000,6.000000,187.000000,89.630000,162.960000,932.520000,5.490000,226.830000,26.380000 +18,2023-08-18 09:00:00,0.000000,13.100000,63.000000,6.000000,187.000000,89.190000,163.070000,932.730000,5.160000,226.950000,25.260000 +18,2023-08-18 10:00:00,0.000000,13.100000,63.000000,6.000000,187.000000,88.800000,163.180000,932.940000,4.880000,227.070000,24.290000 +18,2023-08-18 11:00:00,0.000000,27.100000,30.000000,9.000000,155.000000,89.440000,163.660000,933.880000,6.220000,227.610000,28.740000 +18,2023-08-18 12:00:00,0.000000,27.100000,30.000000,9.000000,155.000000,89.970000,164.150000,934.830000,6.710000,228.150000,30.250000 +18,2023-08-18 13:00:00,0.000000,27.100000,30.000000,9.000000,155.000000,90.400000,164.640000,935.770000,7.130000,228.690000,31.540000 +18,2023-08-18 14:00:00,0.000000,27.100000,30.000000,9.000000,155.000000,90.750000,165.130000,936.710000,7.500000,229.230000,32.620000 +18,2023-08-18 15:00:00,0.000000,27.100000,30.000000,9.000000,155.000000,91.030000,165.620000,937.660000,7.820000,229.770000,33.520000 +18,2023-08-18 16:00:00,0.000000,27.100000,30.000000,9.000000,155.000000,91.270000,166.100000,938.600000,8.080000,230.310000,34.280000 +18,2023-08-18 17:00:00,0.150000,30.400000,28.000000,9.000000,161.000000,91.680000,166.710000,939.770000,8.570000,230.980000,35.650000 +19,2023-08-03 00:00:00,0.000000,15.700000,55.000000,6.000000,62.000000,86.000000,118.400000,826.100000,3.270000,174.330000,17.540000 +19,2023-08-03 01:00:00,0.000000,15.700000,55.000000,6.000000,62.000000,86.000000,118.400000,826.100000,3.270000,174.330000,17.540000 +19,2023-08-03 02:00:00,0.000000,13.400000,62.000000,3.000000,70.000000,85.980000,118.400000,826.100000,2.810000,174.330000,15.620000 +19,2023-08-03 03:00:00,0.000000,13.400000,62.000000,3.000000,70.000000,85.960000,118.400000,826.100000,2.800000,174.330000,15.590000 +19,2023-08-03 04:00:00,0.000000,13.400000,62.000000,3.000000,70.000000,85.940000,118.400000,826.100000,2.790000,174.330000,15.560000 +19,2023-08-03 05:00:00,0.000000,11.700000,68.000000,2.000000,9.000000,85.810000,118.460000,826.220000,2.600000,174.400000,14.760000 +19,2023-08-03 06:00:00,0.000000,11.700000,68.000000,2.000000,9.000000,85.690000,118.510000,826.350000,2.560000,174.470000,14.570000 +19,2023-08-03 07:00:00,0.000000,11.700000,68.000000,2.000000,9.000000,85.570000,118.570000,826.470000,2.520000,174.540000,14.400000 +19,2023-08-03 08:00:00,0.000000,17.400000,49.000000,4.000000,40.000000,85.730000,118.700000,826.760000,2.850000,174.700000,15.820000 +19,2023-08-03 09:00:00,0.000000,17.400000,49.000000,4.000000,40.000000,85.870000,118.830000,827.050000,2.910000,174.860000,16.060000 +19,2023-08-03 10:00:00,0.000000,17.400000,49.000000,4.000000,40.000000,86.000000,118.960000,827.340000,2.960000,175.020000,16.280000 +19,2023-08-03 11:00:00,0.000000,22.600000,34.000000,11.000000,54.000000,86.750000,119.200000,827.850000,4.680000,175.300000,22.760000 +19,2023-08-03 12:00:00,0.000000,22.600000,34.000000,11.000000,54.000000,87.380000,119.430000,828.360000,5.120000,175.580000,24.270000 +19,2023-08-03 13:00:00,0.000000,22.600000,34.000000,11.000000,54.000000,87.920000,119.670000,828.880000,5.530000,175.860000,25.610000 +19,2023-08-03 14:00:00,0.000000,24.000000,33.000000,14.000000,42.000000,88.490000,119.930000,829.440000,6.990000,176.170000,30.050000 +19,2023-08-03 15:00:00,0.000000,24.000000,33.000000,14.000000,42.000000,88.960000,120.190000,830.010000,7.480000,176.480000,31.460000 +19,2023-08-03 16:00:00,0.000000,24.000000,33.000000,14.000000,42.000000,89.350000,120.440000,830.580000,7.910000,176.800000,32.680000 +19,2023-08-03 17:00:00,0.000000,23.800000,33.000000,14.000000,42.000000,89.670000,120.700000,831.140000,8.270000,177.100000,33.680000 +19,2023-08-03 18:00:00,0.000000,23.800000,33.000000,14.000000,42.000000,89.930000,120.960000,831.700000,8.580000,177.410000,34.530000 +19,2023-08-03 19:00:00,0.000000,23.800000,33.000000,14.000000,42.000000,90.140000,121.210000,832.260000,8.850000,177.720000,35.240000 +19,2023-08-03 20:00:00,0.000000,21.700000,38.000000,9.000000,52.000000,90.140000,121.420000,832.720000,6.880000,177.970000,29.790000 +19,2023-08-03 21:00:00,0.000000,21.700000,38.000000,9.000000,52.000000,90.140000,121.630000,833.170000,6.880000,178.220000,29.800000 +19,2023-08-03 22:00:00,0.000000,21.700000,38.000000,9.000000,52.000000,90.140000,121.630000,833.170000,6.880000,178.220000,29.800000 +19,2023-08-03 23:00:00,0.000000,15.700000,57.000000,3.000000,103.000000,89.820000,121.630000,833.170000,4.860000,178.220000,23.430000 +19,2023-08-04 00:00:00,0.000000,15.700000,57.000000,3.000000,103.000000,89.530000,121.630000,833.170000,4.660000,178.220000,22.760000 +19,2023-08-04 01:00:00,0.000000,15.700000,57.000000,3.000000,103.000000,89.280000,121.630000,833.170000,4.490000,178.220000,22.180000 +19,2023-08-04 02:00:00,0.000000,13.300000,64.000000,4.000000,219.000000,88.880000,121.630000,833.170000,4.460000,178.220000,22.070000 +19,2023-08-04 03:00:00,0.000000,13.300000,64.000000,4.000000,219.000000,88.520000,121.630000,833.170000,4.240000,178.220000,21.280000 +19,2023-08-04 04:00:00,0.000000,13.300000,64.000000,4.000000,219.000000,88.210000,121.630000,833.170000,4.050000,178.220000,20.600000 +19,2023-08-04 05:00:00,0.000000,13.300000,64.000000,6.000000,254.000000,87.910000,121.700000,833.340000,4.290000,178.300000,21.470000 +19,2023-08-04 06:00:00,0.000000,13.300000,64.000000,6.000000,254.000000,87.640000,121.770000,833.520000,4.130000,178.390000,20.890000 +19,2023-08-04 07:00:00,0.000000,13.300000,64.000000,6.000000,254.000000,87.400000,121.840000,833.690000,3.990000,178.480000,20.380000 +19,2023-08-04 08:00:00,0.000000,19.100000,52.000000,4.000000,268.000000,87.400000,121.980000,834.020000,3.610000,178.640000,18.940000 +19,2023-08-04 09:00:00,0.000000,19.100000,52.000000,4.000000,268.000000,87.400000,122.120000,834.350000,3.610000,178.810000,18.950000 +19,2023-08-04 10:00:00,0.000000,19.100000,52.000000,4.000000,268.000000,87.400000,122.260000,834.690000,3.610000,178.980000,18.950000 +19,2023-08-04 11:00:00,0.000000,23.400000,41.000000,4.000000,274.000000,87.680000,122.480000,835.220000,3.760000,179.240000,19.530000 +19,2023-08-04 12:00:00,0.000000,23.400000,41.000000,4.000000,274.000000,87.930000,122.700000,835.750000,3.900000,179.510000,20.050000 +19,2023-08-04 13:00:00,0.000000,23.400000,41.000000,4.000000,274.000000,88.150000,122.920000,836.280000,4.020000,179.770000,20.510000 +19,2023-08-04 14:00:00,0.000000,25.700000,38.000000,6.000000,328.000000,88.510000,123.180000,836.920000,4.680000,180.090000,22.890000 +19,2023-08-04 15:00:00,0.000000,25.700000,38.000000,6.000000,328.000000,88.820000,123.450000,837.570000,4.900000,180.420000,23.630000 +19,2023-08-04 16:00:00,0.000000,25.700000,38.000000,6.000000,328.000000,89.090000,123.710000,838.210000,5.080000,180.740000,24.260000 +19,2023-08-04 17:00:00,0.000000,25.400000,42.000000,12.000000,329.000000,89.190000,123.960000,838.800000,6.980000,181.030000,30.180000 +19,2023-08-04 18:00:00,0.000000,25.400000,42.000000,12.000000,329.000000,89.270000,124.200000,839.390000,7.060000,181.320000,30.440000 +19,2023-08-04 19:00:00,0.000000,25.400000,42.000000,12.000000,329.000000,89.340000,124.440000,839.980000,7.130000,181.620000,30.650000 +19,2023-08-04 20:00:00,1.720000,21.300000,74.000000,7.000000,3.000000,61.500000,99.270000,829.680000,0.640000,152.820000,4.000000 +19,2023-08-04 21:00:00,0.000000,21.300000,74.000000,7.000000,3.000000,63.250000,99.350000,829.890000,0.700000,152.930000,4.400000 +19,2023-08-04 22:00:00,0.000000,21.300000,74.000000,7.000000,3.000000,64.870000,99.350000,829.890000,0.750000,152.930000,4.740000 +19,2023-08-04 23:00:00,1.200000,17.900000,82.000000,4.000000,312.000000,51.250000,87.620000,822.560000,0.230000,138.390000,0.790000 +19,2023-08-05 00:00:00,0.000000,17.900000,82.000000,4.000000,312.000000,52.620000,87.620000,822.560000,0.270000,138.390000,0.910000 +19,2023-08-05 01:00:00,0.000000,17.900000,82.000000,4.000000,312.000000,53.930000,87.620000,822.560000,0.310000,138.390000,1.230000 +19,2023-08-05 02:00:00,0.000000,15.600000,88.000000,5.000000,346.000000,54.790000,87.620000,822.560000,0.350000,138.390000,1.670000 +19,2023-08-05 03:00:00,0.000000,15.600000,88.000000,5.000000,346.000000,55.620000,87.620000,822.560000,0.380000,138.390000,1.910000 +19,2023-08-05 04:00:00,0.000000,15.600000,88.000000,5.000000,346.000000,56.430000,87.620000,822.560000,0.410000,138.390000,2.130000 +19,2023-08-05 05:00:00,0.000000,13.700000,88.000000,4.000000,59.000000,57.110000,87.660000,822.830000,0.410000,138.450000,2.150000 +19,2023-08-05 06:00:00,0.000000,13.700000,88.000000,4.000000,59.000000,57.780000,87.700000,823.100000,0.430000,138.510000,2.320000 +19,2023-08-05 07:00:00,0.000000,13.700000,88.000000,4.000000,59.000000,58.430000,87.740000,823.370000,0.450000,138.560000,2.480000 +19,2023-08-05 08:00:00,0.000000,16.600000,67.000000,8.000000,42.000000,60.400000,87.870000,824.260000,0.630000,138.760000,3.750000 +19,2023-08-05 09:00:00,0.000000,16.600000,67.000000,8.000000,42.000000,62.240000,88.010000,825.160000,0.700000,138.960000,4.210000 +19,2023-08-05 10:00:00,0.000000,16.600000,67.000000,8.000000,42.000000,63.970000,88.140000,826.050000,0.760000,139.160000,4.600000 +19,2023-08-05 11:00:00,0.270000,15.700000,75.000000,15.000000,33.000000,61.750000,85.660000,824.460000,0.960000,136.000000,5.810000 +19,2023-08-05 12:00:00,0.000000,15.700000,75.000000,15.000000,33.000000,63.380000,85.750000,825.100000,1.050000,136.140000,6.290000 +19,2023-08-05 13:00:00,0.000000,15.700000,75.000000,15.000000,33.000000,64.890000,85.850000,825.740000,1.120000,136.280000,6.690000 +19,2023-08-05 14:00:00,1.730000,13.600000,97.000000,12.000000,45.000000,43.520000,72.520000,811.540000,0.120000,118.550000,0.370000 +19,2023-08-05 15:00:00,0.000000,13.600000,97.000000,12.000000,45.000000,43.890000,72.530000,811.600000,0.130000,118.570000,0.390000 +19,2023-08-05 16:00:00,0.000000,13.600000,97.000000,12.000000,45.000000,44.260000,72.540000,811.670000,0.130000,118.580000,0.420000 +19,2023-08-05 17:00:00,0.870000,13.600000,98.000000,8.000000,23.000000,36.760000,67.080000,804.540000,0.030000,111.020000,0.080000 +19,2023-08-05 18:00:00,0.000000,13.600000,98.000000,8.000000,23.000000,37.010000,67.090000,804.580000,0.030000,111.030000,0.080000 +19,2023-08-05 19:00:00,0.000000,13.600000,98.000000,8.000000,23.000000,37.250000,67.090000,804.630000,0.030000,111.040000,0.090000 +19,2023-08-05 20:00:00,1.740000,13.400000,98.000000,5.000000,338.000000,25.630000,57.930000,790.320000,0.000000,97.910000,0.000000 +19,2023-08-05 21:00:00,0.000000,13.400000,98.000000,5.000000,338.000000,25.880000,57.940000,790.360000,0.000000,97.920000,0.000000 +19,2023-08-05 22:00:00,0.000000,13.400000,98.000000,5.000000,338.000000,26.120000,57.940000,790.360000,0.000000,97.920000,0.000000 +19,2023-08-05 23:00:00,0.150000,13.300000,98.000000,7.000000,301.000000,25.620000,57.170000,789.130000,0.000000,96.810000,0.000000 +19,2023-08-06 00:00:00,0.000000,13.300000,98.000000,7.000000,301.000000,25.900000,57.170000,789.130000,0.000000,96.810000,0.000000 +19,2023-08-06 01:00:00,0.000000,13.300000,98.000000,7.000000,301.000000,26.170000,57.170000,789.130000,0.000000,96.810000,0.000000 +19,2023-08-06 02:00:00,0.000000,12.800000,98.000000,7.000000,296.000000,26.440000,57.170000,789.130000,0.000000,96.810000,0.000000 +19,2023-08-06 03:00:00,0.000000,12.800000,98.000000,7.000000,296.000000,26.700000,57.170000,789.130000,0.000000,96.810000,0.010000 +19,2023-08-06 04:00:00,0.000000,12.800000,98.000000,7.000000,296.000000,26.970000,57.170000,789.130000,0.000000,96.810000,0.010000 +19,2023-08-06 05:00:00,0.000000,10.800000,99.000000,7.000000,303.000000,27.090000,57.170000,789.130000,0.000000,96.810000,0.010000 +19,2023-08-06 06:00:00,0.000000,10.800000,99.000000,7.000000,303.000000,27.220000,57.170000,789.140000,0.000000,96.810000,0.010000 +19,2023-08-06 07:00:00,0.000000,10.800000,99.000000,7.000000,303.000000,27.340000,57.180000,789.150000,0.000000,96.810000,0.010000 +19,2023-08-06 08:00:00,0.010000,13.500000,92.000000,6.000000,320.000000,28.290000,57.190000,789.210000,0.000000,96.840000,0.010000 +19,2023-08-06 09:00:00,0.000000,13.500000,92.000000,6.000000,320.000000,29.220000,57.210000,789.280000,0.000000,96.870000,0.010000 +19,2023-08-06 10:00:00,0.000000,13.500000,92.000000,6.000000,320.000000,30.150000,57.230000,789.340000,0.000000,96.890000,0.010000 +19,2023-08-06 11:00:00,0.000000,18.700000,60.000000,7.000000,29.000000,33.950000,57.340000,789.800000,0.010000,97.070000,0.040000 +19,2023-08-06 12:00:00,0.000000,18.700000,60.000000,7.000000,29.000000,37.620000,57.460000,790.260000,0.030000,97.240000,0.080000 +19,2023-08-06 13:00:00,0.000000,18.700000,60.000000,7.000000,29.000000,41.150000,57.580000,790.710000,0.060000,97.420000,0.170000 +19,2023-08-06 14:00:00,0.000000,20.100000,49.000000,14.000000,38.000000,45.920000,57.740000,791.350000,0.190000,97.670000,0.520000 +19,2023-08-06 15:00:00,0.000000,20.100000,49.000000,14.000000,38.000000,50.370000,57.900000,791.990000,0.350000,97.910000,0.950000 +19,2023-08-06 16:00:00,0.000000,20.100000,49.000000,14.000000,38.000000,54.500000,58.070000,792.620000,0.540000,98.160000,2.380000 +19,2023-08-06 17:00:00,0.000000,19.500000,47.000000,15.000000,58.000000,58.350000,58.230000,793.260000,0.780000,98.400000,3.790000 +19,2023-08-06 18:00:00,0.000000,19.500000,47.000000,15.000000,58.000000,61.860000,58.390000,793.890000,0.970000,98.650000,4.800000 +19,2023-08-06 19:00:00,0.000000,19.500000,47.000000,15.000000,58.000000,65.020000,58.560000,794.530000,1.120000,98.890000,5.580000 +19,2023-08-06 20:00:00,0.000000,16.700000,52.000000,9.000000,72.000000,67.140000,58.680000,795.010000,0.900000,99.080000,4.440000 +19,2023-08-06 21:00:00,0.000000,16.700000,52.000000,9.000000,72.000000,69.070000,58.810000,795.500000,0.960000,99.270000,4.750000 +19,2023-08-06 22:00:00,0.000000,16.700000,52.000000,9.000000,72.000000,70.840000,58.810000,795.500000,1.010000,99.270000,5.030000 +19,2023-08-06 23:00:00,0.000000,11.600000,70.000000,1.000000,302.000000,71.390000,58.810000,795.500000,0.690000,99.270000,3.300000 +19,2023-08-07 00:00:00,0.000000,11.600000,70.000000,1.000000,302.000000,71.920000,58.810000,795.500000,0.700000,99.270000,3.380000 +19,2023-08-07 01:00:00,0.000000,11.600000,70.000000,1.000000,302.000000,72.420000,58.810000,795.500000,0.720000,99.270000,3.460000 +19,2023-08-07 02:00:00,0.000000,9.300000,79.000000,4.000000,279.000000,72.780000,58.810000,795.500000,0.840000,99.270000,4.160000 +19,2023-08-07 03:00:00,0.000000,9.300000,79.000000,4.000000,279.000000,73.110000,58.810000,795.500000,0.860000,99.270000,4.220000 +19,2023-08-07 04:00:00,0.000000,9.300000,79.000000,4.000000,279.000000,73.440000,58.810000,795.500000,0.870000,99.270000,4.290000 +19,2023-08-07 05:00:00,0.000000,7.900000,84.000000,2.000000,288.000000,73.600000,58.830000,795.560000,0.790000,99.300000,3.870000 +19,2023-08-07 06:00:00,0.000000,7.900000,84.000000,2.000000,288.000000,73.760000,58.850000,795.630000,0.800000,99.330000,3.900000 +19,2023-08-07 07:00:00,0.000000,7.900000,84.000000,2.000000,288.000000,73.910000,58.870000,795.700000,0.800000,99.370000,3.940000 +19,2023-08-07 08:00:00,0.000000,13.000000,63.000000,0.000000,149.000000,74.370000,58.950000,795.920000,0.740000,99.480000,3.600000 +19,2023-08-07 09:00:00,0.000000,13.000000,63.000000,0.000000,149.000000,74.800000,59.020000,796.140000,0.760000,99.590000,3.700000 +19,2023-08-07 10:00:00,0.000000,13.000000,63.000000,0.000000,149.000000,75.220000,59.100000,796.350000,0.780000,99.700000,3.800000 +19,2023-08-07 11:00:00,0.000000,17.800000,46.000000,5.000000,86.000000,76.510000,59.240000,796.790000,1.080000,99.910000,5.410000 +19,2023-08-07 12:00:00,0.000000,17.800000,46.000000,5.000000,86.000000,77.680000,59.390000,797.220000,1.180000,100.130000,5.900000 +19,2023-08-07 13:00:00,0.000000,17.800000,46.000000,5.000000,86.000000,78.730000,59.540000,797.660000,1.290000,100.350000,6.440000 +19,2023-08-07 14:00:00,0.000000,19.400000,39.000000,7.000000,62.000000,80.030000,59.720000,798.200000,1.620000,100.620000,7.940000 +19,2023-08-07 15:00:00,0.000000,19.400000,39.000000,7.000000,62.000000,81.180000,59.910000,798.740000,1.840000,100.890000,8.870000 +19,2023-08-07 16:00:00,0.000000,19.400000,39.000000,7.000000,62.000000,82.190000,60.090000,799.280000,2.070000,101.170000,9.840000 +19,2023-08-07 17:00:00,0.000000,19.400000,39.000000,10.000000,54.000000,83.130000,60.270000,799.830000,2.720000,101.440000,12.290000 +19,2023-08-07 18:00:00,0.000000,19.400000,39.000000,10.000000,54.000000,83.960000,60.460000,800.370000,3.020000,101.710000,13.400000 +19,2023-08-07 19:00:00,0.000000,19.400000,39.000000,10.000000,54.000000,84.670000,60.640000,800.910000,3.330000,101.980000,14.470000 +19,2023-08-07 20:00:00,0.000000,17.000000,48.000000,10.000000,55.000000,84.970000,60.780000,801.310000,3.470000,102.180000,14.950000 +19,2023-08-07 21:00:00,0.000000,17.000000,48.000000,10.000000,55.000000,85.240000,60.910000,801.700000,3.600000,102.380000,15.390000 +19,2023-08-07 22:00:00,0.000000,17.000000,48.000000,10.000000,55.000000,85.480000,60.910000,801.700000,3.720000,102.380000,15.780000 +19,2023-08-07 23:00:00,0.000000,11.600000,68.000000,6.000000,59.000000,85.370000,60.910000,801.700000,3.000000,102.380000,13.360000 +19,2023-08-08 00:00:00,0.000000,11.600000,68.000000,6.000000,59.000000,85.270000,60.910000,801.700000,2.960000,102.380000,13.220000 +19,2023-08-08 01:00:00,0.000000,11.600000,68.000000,6.000000,59.000000,85.190000,60.910000,801.700000,2.920000,102.380000,13.100000 +19,2023-08-08 02:00:00,0.000000,9.100000,78.000000,5.000000,71.000000,84.880000,60.910000,801.700000,2.660000,102.380000,12.170000 +19,2023-08-08 03:00:00,0.000000,9.100000,78.000000,5.000000,71.000000,84.600000,60.910000,801.700000,2.570000,102.380000,11.800000 +19,2023-08-08 04:00:00,0.000000,9.100000,78.000000,5.000000,71.000000,84.350000,60.910000,801.700000,2.480000,102.380000,11.480000 +19,2023-08-08 05:00:00,0.000000,7.500000,80.000000,4.000000,104.000000,84.080000,60.940000,801.770000,2.270000,102.420000,10.700000 +19,2023-08-08 06:00:00,0.000000,7.500000,80.000000,4.000000,104.000000,83.830000,60.970000,801.840000,2.200000,102.460000,10.410000 +19,2023-08-08 07:00:00,0.000000,7.500000,80.000000,4.000000,104.000000,83.600000,60.990000,801.900000,2.130000,102.490000,10.160000 +19,2023-08-08 08:00:00,0.000000,12.500000,57.000000,7.000000,131.000000,83.720000,61.070000,802.100000,2.520000,102.610000,11.650000 +19,2023-08-08 09:00:00,0.000000,12.500000,57.000000,7.000000,131.000000,83.830000,61.150000,802.300000,2.560000,102.730000,11.800000 +19,2023-08-08 10:00:00,0.000000,12.500000,57.000000,7.000000,131.000000,83.930000,61.230000,802.500000,2.590000,102.840000,11.930000 +19,2023-08-08 11:00:00,0.000000,19.900000,39.000000,8.000000,127.000000,84.640000,61.410000,802.950000,3.000000,103.110000,13.420000 +19,2023-08-08 12:00:00,0.000000,19.900000,39.000000,8.000000,127.000000,85.270000,61.590000,803.400000,3.270000,103.370000,14.360000 +19,2023-08-08 13:00:00,0.000000,19.900000,39.000000,8.000000,127.000000,85.810000,61.770000,803.850000,3.520000,103.640000,15.230000 +19,2023-08-08 14:00:00,0.000000,22.300000,31.000000,14.000000,97.000000,86.720000,62.010000,804.440000,5.420000,103.980000,20.990000 +19,2023-08-08 15:00:00,0.000000,22.300000,31.000000,14.000000,97.000000,87.480000,62.250000,805.040000,6.040000,104.330000,22.710000 +19,2023-08-08 16:00:00,0.000000,22.300000,31.000000,14.000000,97.000000,88.120000,62.490000,805.630000,6.620000,104.680000,24.260000 +19,2023-08-08 17:00:00,0.000000,22.500000,32.000000,18.000000,87.000000,88.650000,62.720000,806.220000,8.740000,105.020000,29.420000 +19,2023-08-08 18:00:00,0.000000,22.500000,32.000000,18.000000,87.000000,89.090000,62.960000,806.810000,9.310000,105.370000,30.750000 +19,2023-08-08 19:00:00,0.000000,22.500000,32.000000,18.000000,87.000000,89.450000,63.200000,807.400000,9.800000,105.710000,31.880000 +19,2023-08-08 20:00:00,0.000000,20.000000,40.000000,12.000000,84.000000,89.450000,63.380000,807.840000,7.240000,105.970000,25.980000 +19,2023-08-08 21:00:00,0.000000,20.000000,40.000000,12.000000,84.000000,89.450000,63.560000,808.290000,7.240000,106.230000,26.010000 +19,2023-08-08 22:00:00,0.000000,20.000000,40.000000,12.000000,84.000000,89.450000,63.560000,808.290000,7.240000,106.230000,26.010000 +19,2023-08-08 23:00:00,0.000000,14.600000,54.000000,8.000000,110.000000,89.210000,63.560000,808.290000,5.730000,106.230000,22.050000 +19,2023-08-09 00:00:00,0.000000,14.600000,54.000000,8.000000,110.000000,89.000000,63.560000,808.290000,5.560000,106.230000,21.590000 +19,2023-08-09 01:00:00,0.000000,14.600000,54.000000,8.000000,110.000000,88.820000,63.560000,808.290000,5.410000,106.230000,21.180000 +19,2023-08-09 02:00:00,0.000000,12.500000,55.000000,8.000000,157.000000,88.610000,63.560000,808.290000,5.250000,106.230000,20.730000 +19,2023-08-09 03:00:00,0.000000,12.500000,55.000000,8.000000,157.000000,88.420000,63.560000,808.290000,5.110000,106.230000,20.330000 +19,2023-08-09 04:00:00,0.000000,12.500000,55.000000,8.000000,157.000000,88.260000,63.560000,808.290000,4.990000,106.230000,19.980000 +19,2023-08-09 05:00:00,0.000000,10.200000,64.000000,7.000000,198.000000,87.920000,63.610000,808.410000,4.530000,106.310000,18.610000 +19,2023-08-09 06:00:00,0.000000,10.200000,64.000000,7.000000,198.000000,87.630000,63.670000,808.530000,4.340000,106.390000,18.040000 +19,2023-08-09 07:00:00,0.000000,10.200000,64.000000,7.000000,198.000000,87.360000,63.720000,808.650000,4.170000,106.470000,17.540000 +19,2023-08-09 08:00:00,0.000000,15.700000,49.000000,5.000000,184.000000,87.360000,63.830000,808.890000,3.770000,106.630000,16.280000 +19,2023-08-09 09:00:00,0.000000,15.700000,49.000000,5.000000,184.000000,87.360000,63.940000,809.130000,3.770000,106.790000,16.290000 +19,2023-08-09 10:00:00,0.000000,15.700000,49.000000,5.000000,184.000000,87.360000,64.050000,809.380000,3.770000,106.940000,16.300000 +19,2023-08-09 11:00:00,0.000000,22.400000,34.000000,5.000000,148.000000,87.820000,64.270000,809.850000,4.030000,107.260000,17.160000 +19,2023-08-09 12:00:00,0.000000,22.400000,34.000000,5.000000,148.000000,88.230000,64.480000,810.330000,4.270000,107.570000,17.940000 +19,2023-08-09 13:00:00,0.000000,22.400000,34.000000,5.000000,148.000000,88.570000,64.700000,810.810000,4.490000,107.880000,18.640000 +19,2023-08-09 14:00:00,0.000000,24.100000,27.000000,7.000000,136.000000,89.200000,64.970000,811.390000,5.430000,108.260000,21.430000 +19,2023-08-09 15:00:00,0.000000,24.100000,27.000000,7.000000,136.000000,89.720000,65.230000,811.980000,5.850000,108.650000,22.640000 +19,2023-08-09 16:00:00,0.000000,24.100000,27.000000,7.000000,136.000000,90.160000,65.500000,812.560000,6.230000,109.030000,23.710000 +19,2023-08-09 17:00:00,0.000000,24.500000,26.000000,7.000000,118.000000,90.580000,65.780000,813.170000,6.620000,109.420000,24.770000 +19,2023-08-09 18:00:00,0.000000,24.500000,26.000000,7.000000,118.000000,90.930000,66.050000,813.770000,6.960000,109.820000,25.700000 +19,2023-08-09 19:00:00,0.000000,24.500000,26.000000,7.000000,118.000000,91.230000,66.330000,814.380000,7.260000,110.210000,26.500000 +19,2023-08-09 20:00:00,0.000000,21.800000,32.000000,7.000000,96.000000,91.230000,66.540000,814.850000,7.260000,110.520000,26.530000 +19,2023-08-09 21:00:00,0.000000,21.800000,32.000000,7.000000,96.000000,91.230000,66.760000,815.330000,7.260000,110.830000,26.560000 +19,2023-08-09 22:00:00,0.000000,21.800000,32.000000,7.000000,96.000000,91.230000,66.760000,815.330000,7.260000,110.830000,26.560000 +19,2023-08-09 23:00:00,0.000000,15.900000,47.000000,5.000000,151.000000,90.980000,66.760000,815.330000,6.340000,110.830000,24.160000 +19,2023-08-10 00:00:00,0.000000,15.900000,47.000000,5.000000,151.000000,90.750000,66.760000,815.330000,6.140000,110.830000,23.620000 +19,2023-08-10 01:00:00,0.000000,15.900000,47.000000,5.000000,151.000000,90.550000,66.760000,815.330000,5.960000,110.830000,23.150000 +19,2023-08-10 02:00:00,0.010000,15.700000,51.000000,9.000000,229.000000,90.260000,66.760000,815.330000,7.000000,110.830000,25.880000 +19,2023-08-10 03:00:00,0.000000,15.700000,51.000000,9.000000,229.000000,90.000000,66.760000,815.330000,6.740000,110.830000,25.230000 +19,2023-08-10 04:00:00,0.000000,15.700000,51.000000,9.000000,229.000000,89.770000,66.760000,815.330000,6.530000,110.830000,24.660000 +19,2023-08-10 05:00:00,0.000000,16.900000,50.000000,8.000000,233.000000,89.610000,66.880000,815.560000,6.060000,111.000000,23.440000 +19,2023-08-10 06:00:00,0.000000,16.900000,50.000000,8.000000,233.000000,89.470000,66.990000,815.800000,5.940000,111.170000,23.120000 +19,2023-08-10 07:00:00,0.000000,16.900000,50.000000,8.000000,233.000000,89.340000,67.110000,816.030000,5.830000,111.330000,22.840000 +19,2023-08-10 08:00:00,0.000000,19.200000,43.000000,8.000000,221.000000,89.340000,67.270000,816.340000,5.830000,111.560000,22.860000 +19,2023-08-10 09:00:00,0.000000,19.200000,43.000000,8.000000,221.000000,89.340000,67.420000,816.650000,5.830000,111.780000,22.880000 +19,2023-08-10 10:00:00,0.000000,19.200000,43.000000,8.000000,221.000000,89.340000,67.580000,816.960000,5.830000,112.000000,22.900000 +19,2023-08-10 11:00:00,0.000000,23.800000,29.000000,8.000000,223.000000,89.770000,67.840000,817.480000,6.200000,112.360000,23.940000 +19,2023-08-10 12:00:00,0.000000,23.800000,29.000000,8.000000,223.000000,90.120000,68.090000,817.990000,6.520000,112.720000,24.850000 +19,2023-08-10 13:00:00,0.000000,23.800000,29.000000,8.000000,223.000000,90.420000,68.350000,818.500000,6.810000,113.090000,25.630000 +19,2023-08-10 14:00:00,0.000000,25.400000,27.000000,10.000000,191.000000,90.820000,68.640000,819.080000,7.970000,113.500000,28.610000 +19,2023-08-10 15:00:00,0.000000,25.400000,27.000000,10.000000,191.000000,91.150000,68.930000,819.660000,8.350000,113.910000,29.580000 +19,2023-08-10 16:00:00,0.000000,25.400000,27.000000,10.000000,191.000000,91.420000,69.220000,820.240000,8.680000,114.320000,30.400000 +19,2023-08-10 17:00:00,0.000000,25.600000,26.000000,10.000000,194.000000,91.680000,69.520000,820.830000,9.020000,114.740000,31.240000 +19,2023-08-10 18:00:00,0.000000,25.600000,26.000000,10.000000,194.000000,91.900000,69.810000,821.430000,9.300000,115.160000,31.950000 +19,2023-08-10 19:00:00,0.000000,25.600000,26.000000,10.000000,194.000000,92.080000,70.110000,822.020000,9.540000,115.580000,32.550000 +19,2023-08-10 20:00:00,0.000000,25.600000,26.000000,10.000000,194.000000,92.230000,70.410000,822.610000,9.740000,116.000000,33.050000 +19,2023-08-10 21:00:00,0.000000,25.600000,26.000000,10.000000,194.000000,92.350000,70.410000,822.610000,9.910000,116.000000,33.420000 +19,2023-08-10 22:00:00,0.000000,25.600000,26.000000,10.000000,194.000000,92.450000,70.410000,822.610000,10.050000,116.000000,33.730000 +19,2023-08-10 23:00:00,0.000000,18.400000,45.000000,11.000000,203.000000,92.080000,70.410000,822.610000,10.030000,116.000000,33.700000 +19,2023-08-11 00:00:00,0.000000,18.400000,45.000000,11.000000,203.000000,91.760000,70.410000,822.610000,9.580000,116.000000,32.690000 +19,2023-08-11 01:00:00,0.000000,18.400000,45.000000,11.000000,203.000000,91.480000,70.410000,822.610000,9.210000,116.000000,31.830000 +19,2023-08-11 02:00:00,0.000000,18.400000,45.000000,11.000000,203.000000,91.230000,70.410000,822.610000,8.890000,116.000000,31.090000 +19,2023-08-11 03:00:00,0.000000,18.400000,45.000000,11.000000,203.000000,91.020000,70.410000,822.610000,8.620000,116.000000,30.450000 +19,2023-08-11 04:00:00,0.000000,18.400000,45.000000,11.000000,203.000000,90.830000,70.410000,822.610000,8.390000,116.000000,29.910000 +19,2023-08-11 05:00:00,0.000000,14.700000,70.000000,9.000000,158.000000,90.030000,70.510000,822.960000,6.770000,116.140000,25.820000 +19,2023-08-11 06:00:00,0.000000,14.700000,70.000000,9.000000,158.000000,89.330000,70.610000,823.300000,6.120000,116.280000,24.100000 +19,2023-08-11 07:00:00,0.000000,14.700000,70.000000,9.000000,158.000000,88.730000,70.710000,823.650000,5.620000,116.430000,22.680000 +19,2023-08-11 08:00:00,0.000000,14.700000,70.000000,9.000000,158.000000,88.200000,70.810000,823.990000,5.210000,116.570000,21.510000 +19,2023-08-11 09:00:00,0.000000,14.700000,70.000000,9.000000,158.000000,87.740000,70.910000,824.330000,4.880000,116.720000,20.530000 +19,2023-08-11 10:00:00,0.000000,14.700000,70.000000,9.000000,158.000000,87.340000,71.010000,824.680000,4.610000,116.860000,19.710000 +19,2023-08-11 11:00:00,0.000000,20.000000,56.000000,13.000000,167.000000,87.340000,71.210000,825.380000,5.630000,117.150000,22.800000 +19,2023-08-11 12:00:00,0.000000,20.000000,56.000000,13.000000,167.000000,87.340000,71.420000,826.090000,5.630000,117.450000,22.820000 +19,2023-08-11 13:00:00,0.000000,20.000000,56.000000,13.000000,167.000000,87.340000,71.620000,826.790000,5.630000,117.740000,22.850000 +19,2023-08-11 14:00:00,0.000000,20.000000,56.000000,13.000000,167.000000,87.340000,71.830000,827.500000,5.630000,118.040000,22.870000 +19,2023-08-11 15:00:00,0.000000,20.000000,56.000000,13.000000,167.000000,87.340000,72.030000,828.200000,5.630000,118.330000,22.900000 +19,2023-08-11 16:00:00,0.000000,20.000000,56.000000,13.000000,167.000000,87.340000,72.240000,828.910000,5.630000,118.630000,22.920000 +19,2023-08-11 17:00:00,7.700000,16.500000,94.000000,9.000000,150.000000,23.840000,49.910000,756.360000,0.000000,85.680000,0.000000 +19,2023-08-11 18:00:00,0.000000,16.500000,94.000000,9.000000,150.000000,24.800000,49.930000,756.440000,0.000000,85.720000,0.000000 +19,2023-08-11 19:00:00,0.000000,16.500000,94.000000,9.000000,150.000000,25.760000,49.950000,756.510000,0.000000,85.750000,0.000000 +19,2023-08-11 20:00:00,0.000000,16.500000,94.000000,9.000000,150.000000,26.700000,49.970000,756.590000,0.000000,85.780000,0.010000 +19,2023-08-11 21:00:00,0.000000,16.500000,94.000000,9.000000,150.000000,27.640000,49.970000,756.590000,0.000000,85.780000,0.010000 +19,2023-08-11 22:00:00,0.000000,16.500000,94.000000,9.000000,150.000000,28.570000,49.970000,756.590000,0.000000,85.780000,0.010000 +19,2023-08-11 23:00:00,9.580000,15.200000,98.000000,7.000000,94.000000,5.660000,32.320000,666.230000,0.000000,57.650000,0.000000 +19,2023-08-12 00:00:00,0.000000,15.200000,98.000000,7.000000,94.000000,5.980000,32.320000,666.230000,0.000000,57.650000,0.000000 +19,2023-08-12 01:00:00,0.000000,15.200000,98.000000,7.000000,94.000000,6.300000,32.320000,666.230000,0.000000,57.650000,0.000000 +19,2023-08-12 02:00:00,0.000000,15.200000,98.000000,7.000000,94.000000,6.620000,32.320000,666.230000,0.000000,57.650000,0.000000 +19,2023-08-12 03:00:00,0.000000,15.200000,98.000000,7.000000,94.000000,6.940000,32.320000,666.230000,0.000000,57.650000,0.000000 +19,2023-08-12 04:00:00,0.000000,15.200000,98.000000,7.000000,94.000000,7.260000,32.320000,666.230000,0.000000,57.650000,0.000000 +19,2023-08-12 05:00:00,2.350000,14.700000,97.000000,6.000000,98.000000,4.880000,26.360000,654.550000,0.000000,47.900000,0.000000 +19,2023-08-12 06:00:00,0.000000,14.700000,97.000000,6.000000,98.000000,5.320000,26.370000,654.610000,0.000000,47.910000,0.000000 +19,2023-08-12 07:00:00,0.000000,14.700000,97.000000,6.000000,98.000000,5.760000,26.370000,654.670000,0.000000,47.920000,0.000000 +19,2023-08-12 08:00:00,0.000000,14.700000,97.000000,6.000000,98.000000,6.210000,26.380000,654.720000,0.000000,47.920000,0.000000 +19,2023-08-12 09:00:00,0.000000,14.700000,97.000000,6.000000,98.000000,6.650000,26.380000,654.780000,0.000000,47.930000,0.000000 +19,2023-08-12 10:00:00,0.000000,14.700000,97.000000,6.000000,98.000000,7.090000,26.380000,654.840000,0.000000,47.940000,0.000000 +19,2023-08-12 11:00:00,0.900000,17.400000,89.000000,8.000000,129.000000,7.360000,24.300000,650.600000,0.000000,44.450000,0.000000 +19,2023-08-12 12:00:00,0.000000,17.400000,89.000000,8.000000,129.000000,9.060000,24.320000,650.850000,0.000000,44.480000,0.000000 +19,2023-08-12 13:00:00,0.000000,17.400000,89.000000,8.000000,129.000000,10.750000,24.330000,651.110000,0.000000,44.510000,0.000000 +19,2023-08-12 14:00:00,0.000000,17.400000,89.000000,8.000000,129.000000,12.440000,24.350000,651.360000,0.000000,44.540000,0.000000 +19,2023-08-12 15:00:00,0.000000,17.400000,89.000000,8.000000,129.000000,14.130000,24.370000,651.620000,0.000000,44.570000,0.000000 +19,2023-08-12 16:00:00,0.000000,17.400000,89.000000,8.000000,129.000000,15.810000,24.390000,651.870000,0.000000,44.600000,0.000000 +19,2023-08-12 17:00:00,0.120000,21.800000,65.000000,9.000000,131.000000,19.940000,24.160000,652.340000,0.000000,44.230000,0.000000 +19,2023-08-12 18:00:00,0.000000,21.800000,65.000000,9.000000,131.000000,24.360000,24.240000,653.400000,0.000000,44.360000,0.000000 +19,2023-08-12 19:00:00,0.000000,21.800000,65.000000,9.000000,131.000000,28.700000,24.310000,654.470000,0.000000,44.490000,0.010000 +19,2023-08-12 20:00:00,0.000000,21.800000,65.000000,9.000000,131.000000,32.920000,24.380000,655.530000,0.010000,44.620000,0.020000 +19,2023-08-12 21:00:00,0.000000,21.800000,65.000000,9.000000,131.000000,37.000000,24.380000,655.530000,0.030000,44.620000,0.050000 +19,2023-08-12 22:00:00,0.000000,21.800000,65.000000,9.000000,131.000000,40.910000,24.380000,655.530000,0.060000,44.620000,0.100000 +19,2023-08-12 23:00:00,0.380000,16.900000,89.000000,11.000000,136.000000,39.290000,23.510000,653.630000,0.050000,43.140000,0.080000 +19,2023-08-13 00:00:00,0.000000,16.900000,89.000000,11.000000,136.000000,40.760000,23.510000,653.630000,0.070000,43.140000,0.110000 +19,2023-08-13 01:00:00,0.000000,16.900000,89.000000,11.000000,136.000000,42.200000,23.510000,653.630000,0.090000,43.140000,0.140000 +19,2023-08-13 02:00:00,0.000000,16.900000,89.000000,11.000000,136.000000,43.600000,23.510000,653.630000,0.110000,43.140000,0.170000 +19,2023-08-13 03:00:00,0.000000,16.900000,89.000000,11.000000,136.000000,44.960000,23.510000,653.630000,0.140000,43.140000,0.220000 +19,2023-08-13 04:00:00,0.000000,16.900000,89.000000,11.000000,136.000000,46.290000,23.510000,653.630000,0.170000,43.140000,0.260000 +19,2023-08-13 05:00:00,1.870000,13.200000,95.000000,10.000000,152.000000,30.920000,20.130000,642.990000,0.010000,37.340000,0.010000 +19,2023-08-13 06:00:00,0.000000,13.200000,95.000000,10.000000,152.000000,31.610000,20.140000,643.150000,0.010000,37.350000,0.010000 +19,2023-08-13 07:00:00,0.000000,13.200000,95.000000,10.000000,152.000000,32.300000,20.140000,643.320000,0.010000,37.350000,0.010000 +19,2023-08-13 08:00:00,0.000000,13.200000,95.000000,10.000000,152.000000,32.980000,20.140000,643.480000,0.010000,37.360000,0.020000 +19,2023-08-13 09:00:00,0.000000,13.200000,95.000000,10.000000,152.000000,33.650000,20.140000,643.640000,0.010000,37.360000,0.020000 +19,2023-08-13 10:00:00,0.000000,13.200000,95.000000,10.000000,152.000000,34.320000,20.150000,643.810000,0.020000,37.370000,0.020000 +19,2023-08-13 11:00:00,3.230000,14.900000,97.000000,10.000000,149.000000,17.530000,14.880000,625.260000,0.000000,28.100000,0.000000 +19,2023-08-13 12:00:00,0.000000,14.900000,97.000000,10.000000,149.000000,18.040000,14.890000,625.360000,0.000000,28.100000,0.000000 +19,2023-08-13 13:00:00,0.000000,14.900000,97.000000,10.000000,149.000000,18.550000,14.890000,625.470000,0.000000,28.100000,0.000000 +19,2023-08-13 14:00:00,0.000000,14.900000,97.000000,10.000000,149.000000,19.060000,14.890000,625.580000,0.000000,28.110000,0.000000 +19,2023-08-13 15:00:00,0.000000,14.900000,97.000000,10.000000,149.000000,19.570000,14.890000,625.690000,0.000000,28.110000,0.000000 +19,2023-08-13 16:00:00,0.000000,14.900000,97.000000,10.000000,149.000000,20.080000,14.890000,625.800000,0.000000,28.110000,0.000000 +19,2023-08-13 17:00:00,0.300000,18.600000,78.000000,9.000000,263.000000,21.910000,14.440000,625.080000,0.000000,27.300000,0.000000 +19,2023-08-13 18:00:00,0.000000,18.600000,78.000000,9.000000,263.000000,24.850000,14.460000,626.090000,0.000000,27.330000,0.000000 +19,2023-08-13 19:00:00,0.000000,18.600000,78.000000,9.000000,263.000000,27.740000,14.470000,627.110000,0.000000,27.370000,0.000000 +19,2023-08-13 20:00:00,0.000000,18.600000,78.000000,9.000000,263.000000,30.580000,14.490000,628.120000,0.010000,27.400000,0.010000 +19,2023-08-13 21:00:00,0.000000,18.600000,78.000000,9.000000,263.000000,33.340000,14.490000,628.120000,0.010000,27.400000,0.010000 +19,2023-08-13 22:00:00,0.000000,18.600000,78.000000,9.000000,263.000000,36.040000,14.490000,628.120000,0.020000,27.400000,0.030000 +19,2023-08-13 23:00:00,0.020000,13.700000,99.000000,3.000000,252.000000,35.980000,14.450000,628.010000,0.020000,27.320000,0.020000 +19,2023-08-14 00:00:00,0.000000,13.700000,99.000000,3.000000,252.000000,36.080000,14.450000,628.010000,0.020000,27.320000,0.020000 +19,2023-08-14 01:00:00,0.000000,13.700000,99.000000,3.000000,252.000000,36.170000,14.450000,628.010000,0.020000,27.320000,0.020000 +19,2023-08-14 02:00:00,0.000000,13.700000,99.000000,3.000000,252.000000,36.260000,14.450000,628.010000,0.020000,27.320000,0.020000 +19,2023-08-14 03:00:00,0.000000,13.700000,99.000000,3.000000,252.000000,36.360000,14.450000,628.010000,0.020000,27.320000,0.020000 +19,2023-08-14 04:00:00,0.000000,13.700000,99.000000,3.000000,252.000000,36.450000,14.450000,628.010000,0.020000,27.320000,0.020000 +19,2023-08-14 05:00:00,0.000000,11.200000,98.000000,5.000000,259.000000,36.650000,14.450000,628.030000,0.020000,27.320000,0.020000 +19,2023-08-14 06:00:00,0.000000,11.200000,98.000000,5.000000,259.000000,36.840000,14.450000,628.060000,0.020000,27.330000,0.030000 +19,2023-08-14 07:00:00,0.000000,11.200000,98.000000,5.000000,259.000000,37.040000,14.450000,628.090000,0.020000,27.330000,0.030000 +19,2023-08-14 08:00:00,0.000000,11.200000,98.000000,5.000000,259.000000,37.230000,14.450000,628.120000,0.030000,27.330000,0.030000 +19,2023-08-14 09:00:00,0.000000,11.200000,98.000000,5.000000,259.000000,37.430000,14.450000,628.150000,0.030000,27.340000,0.030000 +19,2023-08-14 10:00:00,0.000000,11.200000,98.000000,5.000000,259.000000,37.620000,14.460000,628.180000,0.030000,27.340000,0.030000 +19,2023-08-14 11:00:00,0.930000,15.500000,89.000000,10.000000,341.000000,32.640000,13.210000,624.690000,0.010000,25.100000,0.010000 +19,2023-08-14 12:00:00,0.000000,15.500000,89.000000,10.000000,341.000000,34.120000,13.230000,624.900000,0.020000,25.120000,0.020000 +19,2023-08-14 13:00:00,0.000000,15.500000,89.000000,10.000000,341.000000,35.570000,13.240000,625.100000,0.020000,25.150000,0.020000 +19,2023-08-14 14:00:00,0.000000,15.500000,89.000000,10.000000,341.000000,37.000000,13.250000,625.310000,0.030000,25.170000,0.030000 +19,2023-08-14 15:00:00,0.000000,15.500000,89.000000,10.000000,341.000000,38.410000,13.270000,625.520000,0.040000,25.200000,0.040000 +19,2023-08-14 16:00:00,0.000000,15.500000,89.000000,10.000000,341.000000,39.780000,13.280000,625.730000,0.050000,25.220000,0.060000 +19,2023-08-14 17:00:00,2.220000,18.100000,51.000000,16.000000,351.000000,30.190000,10.500000,618.000000,0.010000,20.150000,0.010000 +19,2023-08-14 18:00:00,0.000000,18.100000,51.000000,16.000000,351.000000,35.170000,10.570000,619.090000,0.030000,20.280000,0.030000 +19,2023-08-14 19:00:00,0.000000,18.100000,51.000000,16.000000,351.000000,39.940000,10.640000,620.180000,0.080000,20.410000,0.070000 +19,2023-08-14 20:00:00,0.000000,18.100000,51.000000,16.000000,351.000000,44.470000,10.710000,621.280000,0.170000,20.540000,0.160000 +19,2023-08-14 21:00:00,0.000000,18.100000,51.000000,16.000000,351.000000,48.720000,10.710000,621.280000,0.310000,20.540000,0.290000 +19,2023-08-14 22:00:00,0.000000,18.100000,51.000000,16.000000,351.000000,52.690000,10.710000,621.280000,0.500000,20.540000,0.460000 +19,2023-08-14 23:00:00,0.000000,12.600000,69.000000,12.000000,295.000000,54.780000,10.710000,621.280000,0.500000,20.540000,0.460000 +19,2023-08-15 00:00:00,0.000000,12.600000,69.000000,12.000000,295.000000,56.760000,10.710000,621.280000,0.590000,20.540000,0.550000 +19,2023-08-15 01:00:00,0.000000,12.600000,69.000000,12.000000,295.000000,58.620000,10.710000,621.280000,0.680000,20.540000,0.630000 +19,2023-08-15 02:00:00,0.000000,12.600000,69.000000,12.000000,295.000000,60.380000,10.710000,621.280000,0.770000,20.540000,0.710000 +19,2023-08-15 03:00:00,0.000000,12.600000,69.000000,12.000000,295.000000,62.040000,10.710000,621.280000,0.840000,20.540000,0.780000 +19,2023-08-15 04:00:00,0.000000,12.600000,69.000000,12.000000,295.000000,63.590000,10.710000,621.280000,0.910000,20.540000,0.840000 +19,2023-08-15 05:00:00,0.000000,9.800000,81.000000,10.000000,289.000000,64.410000,10.750000,621.370000,0.850000,20.610000,0.790000 +19,2023-08-15 06:00:00,0.000000,9.800000,81.000000,10.000000,289.000000,65.200000,10.780000,621.460000,0.880000,20.670000,0.810000 +19,2023-08-15 07:00:00,0.000000,9.800000,81.000000,10.000000,289.000000,65.950000,10.820000,621.550000,0.900000,20.730000,0.840000 +19,2023-08-15 08:00:00,0.000000,9.800000,81.000000,10.000000,289.000000,66.670000,10.850000,621.640000,0.930000,20.790000,0.860000 +19,2023-08-15 09:00:00,0.000000,9.800000,81.000000,10.000000,289.000000,67.350000,10.880000,621.730000,0.950000,20.860000,0.880000 +19,2023-08-15 10:00:00,0.000000,9.800000,81.000000,10.000000,289.000000,68.000000,10.920000,621.820000,0.970000,20.920000,0.910000 +19,2023-08-15 11:00:00,0.000000,18.900000,42.000000,6.000000,323.000000,70.230000,11.100000,622.320000,0.850000,21.260000,0.800000 +19,2023-08-15 12:00:00,0.000000,18.900000,42.000000,6.000000,323.000000,72.250000,11.290000,622.820000,0.910000,21.600000,0.870000 +19,2023-08-15 13:00:00,0.000000,18.900000,42.000000,6.000000,323.000000,74.070000,11.480000,623.320000,0.990000,21.950000,0.950000 +19,2023-08-15 14:00:00,0.000000,18.900000,42.000000,6.000000,323.000000,75.710000,11.660000,623.820000,1.080000,22.290000,1.250000 +19,2023-08-15 15:00:00,0.000000,18.900000,42.000000,6.000000,323.000000,77.180000,11.850000,624.320000,1.190000,22.630000,1.610000 +19,2023-08-15 16:00:00,0.000000,18.900000,42.000000,6.000000,323.000000,78.500000,12.040000,624.810000,1.330000,22.970000,1.990000 +19,2023-08-15 17:00:00,0.000000,22.200000,32.000000,6.000000,91.000000,80.220000,12.310000,625.530000,1.570000,23.460000,2.600000 +19,2023-08-15 18:00:00,0.000000,22.200000,32.000000,6.000000,91.000000,81.720000,12.570000,626.250000,1.860000,23.950000,3.280000 +19,2023-08-15 19:00:00,0.000000,22.200000,32.000000,6.000000,91.000000,83.020000,12.840000,626.960000,2.190000,24.430000,4.000000 +19,2023-08-15 20:00:00,0.000000,22.200000,32.000000,6.000000,91.000000,84.150000,13.110000,627.680000,2.540000,24.920000,4.760000 +19,2023-08-15 21:00:00,0.000000,22.200000,32.000000,6.000000,91.000000,85.130000,13.110000,627.680000,2.900000,24.920000,5.440000 +19,2023-08-15 22:00:00,0.000000,22.200000,32.000000,6.000000,91.000000,85.980000,13.110000,627.680000,3.260000,24.920000,6.100000 +19,2023-08-15 23:00:00,0.000000,16.200000,55.000000,8.000000,126.000000,85.980000,13.110000,627.680000,3.610000,24.920000,6.710000 +19,2023-08-16 00:00:00,0.000000,16.200000,55.000000,8.000000,126.000000,85.980000,13.110000,627.680000,3.610000,24.920000,6.710000 +19,2023-08-16 01:00:00,0.000000,16.200000,55.000000,8.000000,126.000000,85.980000,13.110000,627.680000,3.610000,24.920000,6.710000 +19,2023-08-16 02:00:00,0.000000,16.200000,55.000000,8.000000,126.000000,85.980000,13.110000,627.680000,3.610000,24.920000,6.710000 +19,2023-08-16 03:00:00,0.000000,16.200000,55.000000,8.000000,126.000000,85.980000,13.110000,627.680000,3.610000,24.920000,6.710000 +19,2023-08-16 04:00:00,0.000000,16.200000,55.000000,8.000000,126.000000,85.980000,13.110000,627.680000,3.610000,24.920000,6.710000 +19,2023-08-16 05:00:00,0.000000,12.400000,73.000000,9.000000,203.000000,85.700000,13.170000,627.810000,3.650000,25.030000,6.800000 +19,2023-08-16 06:00:00,0.000000,12.400000,73.000000,9.000000,203.000000,85.460000,13.230000,627.950000,3.530000,25.130000,6.600000 +19,2023-08-16 07:00:00,0.000000,12.400000,73.000000,9.000000,203.000000,85.250000,13.290000,628.080000,3.430000,25.240000,6.440000 +19,2023-08-16 08:00:00,0.000000,12.400000,73.000000,9.000000,203.000000,85.060000,13.350000,628.210000,3.340000,25.350000,6.300000 +19,2023-08-16 09:00:00,0.000000,12.400000,73.000000,9.000000,203.000000,84.890000,13.410000,628.350000,3.260000,25.460000,6.180000 +19,2023-08-16 10:00:00,0.000000,12.400000,73.000000,9.000000,203.000000,84.740000,13.470000,628.480000,3.200000,25.560000,6.080000 +19,2023-08-16 11:00:00,0.000000,22.400000,35.000000,14.000000,243.000000,85.680000,13.740000,629.080000,4.690000,26.050000,8.700000 +19,2023-08-16 12:00:00,0.000000,22.400000,35.000000,14.000000,243.000000,86.470000,14.010000,629.680000,5.240000,26.540000,9.660000 +19,2023-08-16 13:00:00,0.000000,22.400000,35.000000,14.000000,243.000000,87.140000,14.270000,630.280000,5.750000,27.020000,10.560000 +19,2023-08-16 14:00:00,0.000000,22.400000,35.000000,14.000000,243.000000,87.690000,14.540000,630.880000,6.230000,27.500000,11.380000 +19,2023-08-16 15:00:00,0.000000,22.400000,35.000000,14.000000,243.000000,88.160000,14.810000,631.480000,6.660000,27.990000,12.120000 +19,2023-08-16 16:00:00,0.000000,22.400000,35.000000,14.000000,243.000000,88.550000,15.080000,632.090000,7.040000,28.470000,12.780000 +19,2023-08-16 17:00:00,0.000000,23.900000,35.000000,16.000000,301.000000,88.940000,15.380000,632.740000,8.240000,28.990000,14.590000 +19,2023-08-16 18:00:00,0.000000,23.900000,35.000000,16.000000,301.000000,89.270000,15.670000,633.400000,8.640000,29.520000,15.260000 +19,2023-08-16 19:00:00,0.000000,23.900000,35.000000,16.000000,301.000000,89.530000,15.970000,634.060000,8.970000,30.040000,15.860000 +19,2023-08-16 20:00:00,0.000000,23.900000,35.000000,16.000000,301.000000,89.750000,16.260000,634.720000,9.260000,30.570000,16.380000 +19,2023-08-16 21:00:00,0.000000,23.900000,35.000000,16.000000,301.000000,89.930000,16.260000,634.720000,9.500000,30.570000,16.700000 +19,2023-08-16 22:00:00,0.000000,23.900000,35.000000,16.000000,301.000000,90.080000,16.260000,634.720000,9.700000,30.570000,16.970000 +19,2023-08-16 23:00:00,0.000000,15.000000,62.000000,4.000000,259.000000,89.650000,16.260000,634.720000,4.980000,30.570000,10.030000 +19,2023-08-17 00:00:00,0.000000,15.000000,62.000000,4.000000,259.000000,89.260000,16.260000,634.720000,4.710000,30.570000,9.570000 +19,2023-08-17 01:00:00,0.000000,15.000000,62.000000,4.000000,259.000000,88.910000,16.260000,634.720000,4.480000,30.570000,9.180000 +19,2023-08-17 02:00:00,0.000000,15.000000,62.000000,4.000000,259.000000,88.610000,16.260000,634.720000,4.290000,30.570000,8.830000 +19,2023-08-17 03:00:00,0.000000,15.000000,62.000000,4.000000,259.000000,88.330000,16.260000,634.720000,4.120000,30.570000,8.540000 +19,2023-08-17 04:00:00,0.000000,15.000000,62.000000,4.000000,259.000000,88.090000,16.260000,634.720000,3.980000,30.570000,8.280000 +19,2023-08-17 05:00:00,0.000000,10.500000,71.000000,7.000000,235.000000,87.620000,16.260000,634.720000,4.340000,30.570000,8.910000 +19,2023-08-17 06:00:00,0.000000,10.500000,71.000000,7.000000,235.000000,87.210000,16.340000,634.880000,4.090000,30.700000,8.490000 +19,2023-08-17 07:00:00,0.000000,10.500000,71.000000,7.000000,235.000000,86.850000,16.410000,635.040000,3.880000,30.830000,8.130000 +19,2023-08-17 08:00:00,0.000000,10.500000,71.000000,7.000000,235.000000,86.520000,16.480000,635.200000,3.700000,30.950000,7.820000 +19,2023-08-17 09:00:00,0.000000,10.500000,71.000000,7.000000,235.000000,86.220000,16.550000,635.360000,3.550000,31.080000,7.560000 +19,2023-08-17 10:00:00,0.000000,10.500000,71.000000,7.000000,235.000000,85.960000,16.630000,635.520000,3.420000,31.210000,7.330000 +19,2023-08-17 11:00:00,0.000000,22.500000,34.000000,8.000000,317.000000,86.670000,16.980000,636.300000,3.980000,31.840000,8.480000 +19,2023-08-17 12:00:00,0.000000,22.500000,34.000000,8.000000,317.000000,87.280000,17.340000,637.070000,4.340000,32.470000,9.240000 +19,2023-08-17 13:00:00,0.000000,22.500000,34.000000,8.000000,317.000000,87.800000,17.690000,637.850000,4.670000,33.090000,9.950000 +19,2023-08-17 14:00:00,0.000000,22.500000,34.000000,8.000000,317.000000,88.240000,18.050000,638.630000,4.980000,33.710000,10.590000 +19,2023-08-17 15:00:00,0.000000,22.500000,34.000000,8.000000,317.000000,88.610000,18.400000,639.410000,5.250000,34.340000,11.190000 +19,2023-08-17 16:00:00,0.000000,22.500000,34.000000,8.000000,317.000000,88.930000,18.760000,640.190000,5.500000,34.960000,11.720000 +19,2023-08-17 17:00:00,1.200000,18.800000,58.000000,15.000000,305.000000,69.150000,17.120000,636.240000,1.300000,32.080000,2.650000 +19,2023-08-17 18:00:00,0.000000,18.800000,58.000000,15.000000,305.000000,71.080000,17.300000,636.640000,1.380000,32.400000,2.900000 +19,2023-08-17 19:00:00,0.000000,18.800000,58.000000,15.000000,305.000000,72.800000,17.480000,637.030000,1.470000,32.720000,3.160000 +19,2023-08-17 20:00:00,0.000000,18.800000,58.000000,15.000000,305.000000,74.350000,17.660000,637.430000,1.580000,33.030000,3.460000 +19,2023-08-17 21:00:00,0.000000,18.800000,58.000000,15.000000,305.000000,75.720000,17.660000,637.430000,1.700000,33.030000,3.780000 +19,2023-08-17 22:00:00,0.000000,18.800000,58.000000,15.000000,305.000000,76.940000,17.660000,637.430000,1.840000,33.030000,4.140000 +19,2023-08-17 23:00:00,1.630000,13.100000,90.000000,11.000000,290.000000,54.110000,15.280000,631.520000,0.450000,28.810000,0.510000 +19,2023-08-18 00:00:00,0.000000,13.100000,90.000000,11.000000,290.000000,54.930000,15.280000,631.520000,0.480000,28.810000,0.550000 +19,2023-08-18 01:00:00,0.000000,13.100000,90.000000,11.000000,290.000000,55.730000,15.280000,631.520000,0.520000,28.810000,0.590000 +19,2023-08-18 02:00:00,0.000000,13.100000,90.000000,11.000000,290.000000,56.500000,15.280000,631.520000,0.550000,28.810000,0.630000 +19,2023-08-18 03:00:00,0.000000,13.100000,90.000000,11.000000,290.000000,57.250000,15.280000,631.520000,0.590000,28.810000,0.670000 +19,2023-08-18 04:00:00,0.000000,13.100000,90.000000,11.000000,290.000000,57.980000,15.280000,631.520000,0.620000,28.810000,0.710000 +19,2023-08-18 05:00:00,1.650000,12.000000,95.000000,11.000000,304.000000,41.160000,13.000000,625.170000,0.070000,24.720000,0.080000 +19,2023-08-18 06:00:00,0.000000,12.000000,95.000000,11.000000,304.000000,41.740000,13.020000,625.290000,0.080000,24.750000,0.090000 +19,2023-08-18 07:00:00,0.000000,12.000000,95.000000,11.000000,304.000000,42.320000,13.040000,625.410000,0.090000,24.780000,0.100000 +19,2023-08-18 08:00:00,0.000000,12.000000,95.000000,11.000000,304.000000,42.880000,13.050000,625.530000,0.100000,24.810000,0.110000 +19,2023-08-18 09:00:00,0.000000,12.000000,95.000000,11.000000,304.000000,43.450000,13.070000,625.650000,0.110000,24.840000,0.120000 +19,2023-08-18 10:00:00,0.000000,12.000000,95.000000,11.000000,304.000000,44.000000,13.080000,625.770000,0.120000,24.870000,0.130000 +19,2023-08-18 11:00:00,0.570000,14.600000,77.000000,21.000000,307.000000,42.000000,12.400000,624.240000,0.140000,23.630000,0.150000 +19,2023-08-18 12:00:00,0.000000,14.600000,77.000000,21.000000,307.000000,44.730000,12.490000,624.900000,0.230000,23.790000,0.230000 +19,2023-08-18 13:00:00,0.000000,14.600000,77.000000,21.000000,307.000000,47.330000,12.580000,625.560000,0.330000,23.950000,0.340000 +19,2023-08-18 14:00:00,0.000000,14.600000,77.000000,21.000000,307.000000,49.800000,12.660000,626.220000,0.460000,24.110000,0.470000 +19,2023-08-18 15:00:00,0.000000,14.600000,77.000000,21.000000,307.000000,52.150000,12.750000,626.880000,0.600000,24.270000,0.620000 +19,2023-08-18 16:00:00,0.000000,14.600000,77.000000,21.000000,307.000000,54.360000,12.840000,627.540000,0.760000,24.430000,0.780000 +19,2023-08-18 17:00:00,0.800000,14.700000,63.000000,27.000000,300.000000,49.460000,11.920000,625.520000,0.600000,22.750000,0.590000 +20,2023-08-03 00:00:00,0.000000,14.700000,94.000000,2.000000,321.000000,84.970000,118.400000,826.100000,2.320000,174.330000,13.490000 +20,2023-08-03 01:00:00,0.000000,14.700000,94.000000,2.000000,321.000000,84.070000,118.400000,826.100000,2.050000,174.330000,12.250000 +20,2023-08-03 02:00:00,0.000000,12.700000,96.000000,2.000000,40.000000,83.160000,118.400000,826.100000,1.820000,174.330000,11.120000 +20,2023-08-03 03:00:00,0.000000,12.700000,96.000000,2.000000,40.000000,82.350000,118.400000,826.100000,1.640000,174.330000,10.230000 +20,2023-08-03 04:00:00,0.000000,12.700000,96.000000,2.000000,40.000000,81.640000,118.400000,826.100000,1.510000,174.330000,9.510000 +20,2023-08-03 05:00:00,0.000000,12.300000,95.000000,0.000000,360.000000,81.180000,118.410000,826.130000,1.290000,174.350000,8.330000 +20,2023-08-03 06:00:00,0.000000,12.300000,95.000000,0.000000,360.000000,80.760000,118.420000,826.160000,1.230000,174.360000,7.990000 +20,2023-08-03 07:00:00,0.000000,12.300000,95.000000,0.000000,360.000000,80.380000,118.430000,826.180000,1.180000,174.370000,7.700000 +20,2023-08-03 08:00:00,0.000000,16.200000,77.000000,2.000000,14.000000,80.460000,118.490000,826.350000,1.320000,174.440000,8.480000 +20,2023-08-03 09:00:00,0.000000,16.200000,77.000000,2.000000,14.000000,80.530000,118.550000,826.520000,1.330000,174.520000,8.540000 +20,2023-08-03 10:00:00,0.000000,16.200000,77.000000,2.000000,14.000000,80.610000,118.610000,826.690000,1.340000,174.590000,8.600000 +20,2023-08-03 11:00:00,0.000000,21.400000,48.000000,5.000000,37.000000,81.480000,118.790000,827.210000,1.720000,174.820000,10.630000 +20,2023-08-03 12:00:00,0.000000,21.400000,48.000000,5.000000,37.000000,82.250000,118.980000,827.730000,1.890000,175.050000,11.470000 +20,2023-08-03 13:00:00,0.000000,21.400000,48.000000,5.000000,37.000000,82.930000,119.160000,828.260000,2.060000,175.280000,12.290000 +20,2023-08-03 14:00:00,0.000000,23.200000,43.000000,9.000000,37.000000,83.840000,119.390000,828.900000,2.830000,175.560000,15.770000 +20,2023-08-03 15:00:00,0.000000,23.200000,43.000000,9.000000,37.000000,84.620000,119.610000,829.540000,3.150000,175.840000,17.060000 +20,2023-08-03 16:00:00,0.000000,23.200000,43.000000,9.000000,37.000000,85.290000,119.840000,830.180000,3.450000,176.120000,18.270000 +20,2023-08-03 17:00:00,0.000000,22.900000,45.000000,10.000000,45.000000,85.800000,120.050000,830.790000,3.890000,176.380000,19.960000 +20,2023-08-03 18:00:00,0.000000,22.900000,45.000000,10.000000,45.000000,86.230000,120.260000,831.390000,4.140000,176.650000,20.870000 +20,2023-08-03 19:00:00,0.000000,22.900000,45.000000,10.000000,45.000000,86.600000,120.480000,832.000000,4.360000,176.910000,21.670000 +20,2023-08-03 20:00:00,0.000000,20.900000,51.000000,7.000000,67.000000,86.690000,120.650000,832.480000,3.800000,177.120000,19.620000 +20,2023-08-03 21:00:00,0.000000,20.900000,51.000000,7.000000,67.000000,86.770000,120.820000,832.960000,3.840000,177.330000,19.790000 +20,2023-08-03 22:00:00,0.000000,20.900000,51.000000,7.000000,67.000000,86.840000,120.820000,832.960000,3.880000,177.330000,19.930000 +20,2023-08-03 23:00:00,0.000000,15.700000,72.000000,1.000000,189.000000,86.590000,120.820000,832.960000,2.760000,177.330000,15.510000 +20,2023-08-04 00:00:00,0.000000,15.700000,72.000000,1.000000,189.000000,86.360000,120.820000,832.960000,2.680000,177.330000,15.130000 +20,2023-08-04 01:00:00,0.000000,15.700000,72.000000,1.000000,189.000000,86.160000,120.820000,832.960000,2.600000,177.330000,14.800000 +20,2023-08-04 02:00:00,0.000000,13.500000,83.000000,5.000000,255.000000,85.600000,120.820000,832.960000,2.940000,177.330000,16.260000 +20,2023-08-04 03:00:00,0.000000,13.500000,83.000000,5.000000,255.000000,85.120000,120.820000,832.960000,2.750000,177.330000,15.450000 +20,2023-08-04 04:00:00,0.000000,13.500000,83.000000,5.000000,255.000000,84.690000,120.820000,832.960000,2.590000,177.330000,14.770000 +20,2023-08-04 05:00:00,0.000000,12.900000,92.000000,6.000000,267.000000,83.870000,120.830000,832.990000,2.440000,177.350000,14.110000 +20,2023-08-04 06:00:00,0.000000,12.900000,92.000000,6.000000,267.000000,83.160000,120.840000,833.030000,2.230000,177.370000,13.120000 +20,2023-08-04 07:00:00,0.000000,12.900000,92.000000,6.000000,267.000000,82.530000,120.860000,833.070000,2.060000,177.380000,12.320000 +20,2023-08-04 08:00:00,0.000000,18.100000,70.000000,7.000000,288.000000,82.630000,120.940000,833.260000,2.190000,177.480000,12.950000 +20,2023-08-04 09:00:00,0.000000,18.100000,70.000000,7.000000,288.000000,82.710000,121.010000,833.450000,2.210000,177.570000,13.060000 +20,2023-08-04 10:00:00,0.000000,18.100000,70.000000,7.000000,288.000000,82.790000,121.090000,833.640000,2.230000,177.660000,13.160000 +20,2023-08-04 11:00:00,0.000000,23.600000,43.000000,9.000000,329.000000,83.740000,121.290000,834.150000,2.790000,177.910000,15.650000 +20,2023-08-04 12:00:00,0.000000,23.600000,43.000000,9.000000,329.000000,84.550000,121.500000,834.660000,3.120000,178.160000,16.990000 +20,2023-08-04 13:00:00,0.000000,23.600000,43.000000,9.000000,329.000000,85.250000,121.700000,835.170000,3.430000,178.410000,18.240000 +20,2023-08-04 14:00:00,0.000000,25.300000,32.000000,13.000000,355.000000,86.390000,121.970000,835.850000,4.920000,178.740000,23.660000 +20,2023-08-04 15:00:00,0.000000,25.300000,32.000000,13.000000,355.000000,87.320000,122.250000,836.520000,5.620000,179.070000,25.970000 +20,2023-08-04 16:00:00,0.000000,25.300000,32.000000,13.000000,355.000000,88.100000,122.520000,837.200000,6.280000,179.400000,28.040000 +20,2023-08-04 17:00:00,0.000000,25.300000,34.000000,14.000000,18.000000,88.660000,122.780000,837.850000,7.160000,179.720000,30.670000 +20,2023-08-04 18:00:00,0.000000,25.300000,34.000000,14.000000,18.000000,89.130000,123.040000,838.510000,7.650000,180.040000,32.080000 +20,2023-08-04 19:00:00,0.000000,25.300000,34.000000,14.000000,18.000000,89.510000,123.300000,839.160000,8.080000,180.360000,33.270000 +20,2023-08-04 20:00:00,0.000000,23.100000,40.000000,8.000000,33.000000,89.530000,123.510000,839.690000,5.990000,180.610000,27.190000 +20,2023-08-04 21:00:00,0.000000,23.100000,40.000000,8.000000,33.000000,89.550000,123.720000,840.210000,6.010000,180.860000,27.250000 +20,2023-08-04 22:00:00,0.000000,23.100000,40.000000,8.000000,33.000000,89.560000,123.720000,840.210000,6.020000,180.860000,27.290000 +20,2023-08-04 23:00:00,0.000000,17.300000,59.000000,1.000000,272.000000,89.310000,123.720000,840.210000,4.080000,180.860000,20.760000 +20,2023-08-05 00:00:00,0.000000,17.300000,59.000000,1.000000,272.000000,89.080000,123.720000,840.210000,3.950000,180.860000,20.270000 +20,2023-08-05 01:00:00,0.000000,17.300000,59.000000,1.000000,272.000000,88.870000,123.720000,840.210000,3.830000,180.860000,19.830000 +20,2023-08-05 02:00:00,0.000000,15.200000,71.000000,6.000000,287.000000,88.330000,123.720000,840.210000,4.560000,180.860000,22.480000 +20,2023-08-05 03:00:00,0.000000,15.200000,71.000000,6.000000,287.000000,87.860000,123.720000,840.210000,4.260000,180.860000,21.430000 +20,2023-08-05 04:00:00,0.000000,15.200000,71.000000,6.000000,287.000000,87.450000,123.720000,840.210000,4.020000,180.860000,20.550000 +20,2023-08-05 05:00:00,0.000000,14.900000,83.000000,8.000000,302.000000,86.680000,123.750000,840.300000,3.990000,180.900000,20.420000 +20,2023-08-05 06:00:00,0.000000,14.900000,83.000000,8.000000,302.000000,86.020000,123.790000,840.390000,3.630000,180.940000,19.070000 +20,2023-08-05 07:00:00,0.000000,14.900000,83.000000,8.000000,302.000000,85.440000,123.820000,840.480000,3.350000,180.980000,17.980000 +20,2023-08-05 08:00:00,0.000000,18.800000,66.000000,13.000000,341.000000,85.440000,123.900000,840.720000,4.310000,181.080000,21.600000 +20,2023-08-05 09:00:00,0.000000,18.800000,66.000000,13.000000,341.000000,85.440000,123.980000,840.950000,4.310000,181.180000,21.600000 +20,2023-08-05 10:00:00,0.000000,18.800000,66.000000,13.000000,341.000000,85.440000,124.060000,841.190000,4.310000,181.280000,21.600000 +20,2023-08-05 11:00:00,0.000000,22.000000,49.000000,13.000000,353.000000,85.800000,124.210000,841.610000,4.530000,181.470000,22.390000 +20,2023-08-05 12:00:00,0.000000,22.000000,49.000000,13.000000,353.000000,86.110000,124.360000,842.040000,4.730000,181.650000,23.080000 +20,2023-08-05 13:00:00,0.000000,22.000000,49.000000,13.000000,353.000000,86.370000,124.510000,842.470000,4.900000,181.840000,23.690000 +20,2023-08-05 14:00:00,0.000000,23.600000,39.000000,14.000000,2.000000,86.970000,124.710000,843.040000,5.620000,182.080000,26.040000 +20,2023-08-05 15:00:00,0.000000,23.600000,39.000000,14.000000,2.000000,87.470000,124.910000,843.600000,6.030000,182.320000,27.360000 +20,2023-08-05 16:00:00,0.000000,23.600000,39.000000,14.000000,2.000000,87.880000,125.100000,844.170000,6.400000,182.570000,28.510000 +20,2023-08-05 17:00:00,0.000000,24.200000,32.000000,16.000000,6.000000,88.530000,125.330000,844.820000,7.760000,182.850000,32.480000 +20,2023-08-05 18:00:00,0.000000,24.200000,32.000000,16.000000,6.000000,89.050000,125.560000,845.470000,8.370000,183.130000,34.160000 +20,2023-08-05 19:00:00,0.000000,24.200000,32.000000,16.000000,6.000000,89.480000,125.790000,846.120000,8.910000,183.410000,35.600000 +20,2023-08-05 20:00:00,0.000000,21.600000,36.000000,14.000000,15.000000,89.590000,125.970000,846.650000,8.180000,183.640000,33.660000 +20,2023-08-05 21:00:00,0.000000,21.600000,36.000000,14.000000,15.000000,89.690000,126.150000,847.170000,8.290000,183.860000,33.970000 +20,2023-08-05 22:00:00,0.000000,21.600000,36.000000,14.000000,15.000000,89.760000,126.150000,847.170000,8.390000,183.860000,34.220000 +20,2023-08-05 23:00:00,0.000000,16.200000,49.000000,7.000000,356.000000,89.620000,126.150000,847.170000,5.770000,183.860000,26.590000 +20,2023-08-06 00:00:00,0.000000,16.200000,49.000000,7.000000,356.000000,89.490000,126.150000,847.170000,5.670000,183.860000,26.250000 +20,2023-08-06 01:00:00,0.000000,16.200000,49.000000,7.000000,356.000000,89.380000,126.150000,847.170000,5.570000,183.860000,25.950000 +20,2023-08-06 02:00:00,0.000000,13.100000,61.000000,8.000000,331.000000,88.990000,126.150000,847.170000,5.550000,183.860000,25.860000 +20,2023-08-06 03:00:00,0.000000,13.100000,61.000000,8.000000,331.000000,88.650000,126.150000,847.170000,5.280000,183.860000,24.990000 +20,2023-08-06 04:00:00,0.000000,13.100000,61.000000,8.000000,331.000000,88.340000,126.150000,847.170000,5.050000,183.860000,24.240000 +20,2023-08-06 05:00:00,0.000000,11.500000,70.000000,8.000000,307.000000,87.870000,126.210000,847.320000,4.720000,183.930000,23.110000 +20,2023-08-06 06:00:00,0.000000,11.500000,70.000000,8.000000,307.000000,87.450000,126.270000,847.460000,4.440000,184.000000,22.140000 +20,2023-08-06 07:00:00,0.000000,11.500000,70.000000,8.000000,307.000000,87.070000,126.320000,847.600000,4.210000,184.070000,21.320000 +20,2023-08-06 08:00:00,0.000000,16.400000,52.000000,9.000000,325.000000,87.070000,126.450000,847.920000,4.430000,184.210000,22.100000 +20,2023-08-06 09:00:00,0.000000,16.400000,52.000000,9.000000,325.000000,87.070000,126.570000,848.230000,4.430000,184.360000,22.100000 +20,2023-08-06 10:00:00,0.000000,16.400000,52.000000,9.000000,325.000000,87.070000,126.690000,848.550000,4.430000,184.510000,22.110000 +20,2023-08-06 11:00:00,0.000000,20.500000,41.000000,10.000000,11.000000,87.350000,126.890000,849.050000,4.850000,184.750000,23.570000 +20,2023-08-06 12:00:00,0.000000,20.500000,41.000000,10.000000,11.000000,87.590000,127.090000,849.550000,5.020000,184.990000,24.150000 +20,2023-08-06 13:00:00,0.000000,20.500000,41.000000,10.000000,11.000000,87.800000,127.280000,850.050000,5.170000,185.230000,24.660000 +20,2023-08-06 14:00:00,0.000000,21.700000,42.000000,11.000000,36.000000,87.980000,127.490000,850.580000,5.580000,185.480000,26.020000 +20,2023-08-06 15:00:00,0.000000,21.700000,42.000000,11.000000,36.000000,88.150000,127.700000,851.110000,5.710000,185.730000,26.450000 +20,2023-08-06 16:00:00,0.000000,21.700000,42.000000,11.000000,36.000000,88.280000,127.910000,851.630000,5.830000,185.980000,26.810000 +20,2023-08-06 17:00:00,0.000000,21.400000,44.000000,13.000000,45.000000,88.340000,128.110000,852.140000,6.500000,186.220000,28.890000 +20,2023-08-06 18:00:00,0.000000,21.400000,44.000000,13.000000,45.000000,88.380000,128.300000,852.640000,6.540000,186.460000,29.020000 +20,2023-08-06 19:00:00,0.000000,21.400000,44.000000,13.000000,45.000000,88.420000,128.500000,853.140000,6.580000,186.700000,29.140000 +20,2023-08-06 20:00:00,0.000000,19.000000,53.000000,12.000000,52.000000,88.390000,128.640000,853.500000,6.230000,186.870000,28.080000 +20,2023-08-06 21:00:00,0.000000,19.000000,53.000000,12.000000,52.000000,88.370000,128.790000,853.870000,6.200000,187.040000,28.020000 +20,2023-08-06 22:00:00,0.000000,19.000000,53.000000,12.000000,52.000000,88.350000,128.790000,853.870000,6.190000,187.040000,27.960000 +20,2023-08-06 23:00:00,0.000000,14.300000,72.000000,6.000000,45.000000,87.850000,128.790000,853.870000,4.260000,187.040000,21.530000 +20,2023-08-07 00:00:00,0.000000,14.300000,72.000000,6.000000,45.000000,87.410000,128.790000,853.870000,4.000000,187.040000,20.580000 +20,2023-08-07 01:00:00,0.000000,14.300000,72.000000,6.000000,45.000000,87.020000,128.790000,853.870000,3.780000,187.040000,19.780000 +20,2023-08-07 02:00:00,0.000000,12.100000,76.000000,5.000000,104.000000,86.580000,128.790000,853.870000,3.380000,187.040000,18.200000 +20,2023-08-07 03:00:00,0.000000,12.100000,76.000000,5.000000,104.000000,86.190000,128.790000,853.870000,3.200000,187.040000,17.470000 +20,2023-08-07 04:00:00,0.000000,12.100000,76.000000,5.000000,104.000000,85.840000,128.790000,853.870000,3.040000,187.040000,16.850000 +20,2023-08-07 05:00:00,0.000000,11.700000,70.000000,7.000000,115.000000,85.650000,128.830000,854.000000,3.280000,187.100000,17.810000 +20,2023-08-07 06:00:00,0.000000,11.700000,70.000000,7.000000,115.000000,85.480000,128.880000,854.130000,3.200000,187.160000,17.500000 +20,2023-08-07 07:00:00,0.000000,11.700000,70.000000,7.000000,115.000000,85.330000,128.930000,854.260000,3.140000,187.220000,17.230000 +20,2023-08-07 08:00:00,0.000000,15.500000,53.000000,10.000000,120.000000,85.420000,129.030000,854.530000,3.690000,187.340000,19.430000 +20,2023-08-07 09:00:00,0.000000,15.500000,53.000000,10.000000,120.000000,85.490000,129.130000,854.790000,3.730000,187.460000,19.590000 +20,2023-08-07 10:00:00,0.000000,15.500000,53.000000,10.000000,120.000000,85.560000,129.230000,855.060000,3.770000,187.580000,19.720000 +20,2023-08-07 11:00:00,0.000000,19.200000,43.000000,15.000000,117.000000,85.980000,129.380000,855.460000,5.140000,187.760000,24.610000 +20,2023-08-07 12:00:00,0.000000,19.200000,43.000000,15.000000,117.000000,86.340000,129.530000,855.870000,5.400000,187.940000,25.490000 +20,2023-08-07 13:00:00,0.000000,19.200000,43.000000,15.000000,117.000000,86.650000,129.680000,856.280000,5.640000,188.130000,26.270000 +20,2023-08-07 14:00:00,0.000000,21.300000,38.000000,15.000000,106.000000,87.140000,129.860000,856.780000,6.050000,188.350000,27.580000 +20,2023-08-07 15:00:00,0.000000,21.300000,38.000000,15.000000,106.000000,87.550000,130.050000,857.280000,6.420000,188.580000,28.720000 +20,2023-08-07 16:00:00,0.000000,21.300000,38.000000,15.000000,106.000000,87.900000,130.230000,857.790000,6.750000,188.810000,29.720000 +20,2023-08-07 17:00:00,0.000000,21.300000,34.000000,16.000000,97.000000,88.330000,130.430000,858.320000,7.550000,189.050000,32.050000 +20,2023-08-07 18:00:00,0.000000,21.300000,34.000000,16.000000,97.000000,88.690000,130.630000,858.860000,7.950000,189.290000,33.190000 +20,2023-08-07 19:00:00,0.000000,21.300000,34.000000,16.000000,97.000000,88.990000,130.830000,859.390000,8.300000,189.530000,34.160000 +20,2023-08-07 20:00:00,0.000000,19.300000,35.000000,12.000000,100.000000,89.140000,131.000000,859.860000,6.930000,189.740000,30.270000 +20,2023-08-07 21:00:00,0.000000,19.300000,35.000000,12.000000,100.000000,89.260000,131.170000,860.330000,7.050000,189.950000,30.640000 +20,2023-08-07 22:00:00,0.000000,19.300000,35.000000,12.000000,100.000000,89.370000,131.170000,860.330000,7.160000,189.950000,30.950000 +20,2023-08-07 23:00:00,0.000000,14.800000,42.000000,9.000000,114.000000,89.370000,131.170000,860.330000,6.160000,189.950000,27.940000 +20,2023-08-08 00:00:00,0.000000,14.800000,42.000000,9.000000,114.000000,89.370000,131.170000,860.330000,6.160000,189.950000,27.940000 +20,2023-08-08 01:00:00,0.000000,14.800000,42.000000,9.000000,114.000000,89.370000,131.170000,860.330000,6.160000,189.950000,27.940000 +20,2023-08-08 02:00:00,0.000000,12.400000,49.000000,7.000000,148.000000,89.220000,131.170000,860.330000,5.450000,189.950000,25.680000 +20,2023-08-08 03:00:00,0.000000,12.400000,49.000000,7.000000,148.000000,89.080000,131.170000,860.330000,5.340000,189.950000,25.340000 +20,2023-08-08 04:00:00,0.000000,12.400000,49.000000,7.000000,148.000000,88.960000,131.170000,860.330000,5.250000,189.950000,25.030000 +20,2023-08-08 05:00:00,0.000000,11.000000,64.000000,8.000000,174.000000,88.550000,131.230000,860.450000,5.200000,190.010000,24.880000 +20,2023-08-08 06:00:00,0.000000,11.000000,64.000000,8.000000,174.000000,88.180000,131.290000,860.570000,4.940000,190.080000,23.980000 +20,2023-08-08 07:00:00,0.000000,11.000000,64.000000,8.000000,174.000000,87.850000,131.340000,860.690000,4.710000,190.150000,23.200000 +20,2023-08-08 08:00:00,0.000000,15.900000,48.000000,10.000000,163.000000,87.850000,131.460000,860.930000,5.210000,190.280000,24.900000 +20,2023-08-08 09:00:00,0.000000,15.900000,48.000000,10.000000,163.000000,87.850000,131.570000,861.170000,5.210000,190.410000,24.900000 +20,2023-08-08 10:00:00,0.000000,15.900000,48.000000,10.000000,163.000000,87.850000,131.680000,861.410000,5.210000,190.540000,24.910000 +20,2023-08-08 11:00:00,0.000000,20.700000,30.000000,11.000000,149.000000,88.370000,131.890000,861.850000,5.900000,190.780000,27.150000 +20,2023-08-08 12:00:00,0.000000,20.700000,30.000000,11.000000,149.000000,88.800000,132.090000,862.280000,6.280000,191.020000,28.350000 +20,2023-08-08 13:00:00,0.000000,20.700000,30.000000,11.000000,149.000000,89.180000,132.300000,862.720000,6.630000,191.270000,29.410000 +20,2023-08-08 14:00:00,0.000000,23.000000,25.000000,11.000000,141.000000,89.770000,132.550000,863.260000,7.210000,191.560000,31.150000 +20,2023-08-08 15:00:00,0.000000,23.000000,25.000000,11.000000,141.000000,90.260000,132.800000,863.800000,7.740000,191.860000,32.660000 +20,2023-08-08 16:00:00,0.000000,23.000000,25.000000,11.000000,141.000000,90.670000,133.050000,864.340000,8.210000,192.160000,33.970000 +20,2023-08-08 17:00:00,0.000000,23.800000,22.000000,9.000000,148.000000,91.150000,133.330000,864.930000,7.950000,192.480000,33.260000 +20,2023-08-08 18:00:00,0.000000,23.800000,22.000000,9.000000,148.000000,91.550000,133.600000,865.520000,8.410000,192.800000,34.540000 +20,2023-08-08 19:00:00,0.000000,23.800000,22.000000,9.000000,148.000000,91.880000,133.880000,866.100000,8.820000,193.130000,35.640000 +20,2023-08-08 20:00:00,0.000000,21.400000,27.000000,5.000000,154.000000,91.890000,134.100000,866.580000,7.220000,193.390000,31.210000 +20,2023-08-08 21:00:00,0.000000,21.400000,27.000000,5.000000,154.000000,91.900000,134.320000,867.060000,7.230000,193.650000,31.240000 +20,2023-08-08 22:00:00,0.000000,21.400000,27.000000,5.000000,154.000000,91.910000,134.320000,867.060000,7.240000,193.650000,31.270000 +20,2023-08-08 23:00:00,0.000000,14.900000,40.000000,6.000000,190.000000,91.720000,134.320000,867.060000,7.400000,193.650000,31.750000 +20,2023-08-09 00:00:00,0.000000,14.900000,40.000000,6.000000,190.000000,91.540000,134.320000,867.060000,7.220000,193.650000,31.220000 +20,2023-08-09 01:00:00,0.000000,14.900000,40.000000,6.000000,190.000000,91.380000,134.320000,867.060000,7.060000,193.650000,30.740000 +20,2023-08-09 02:00:00,0.000000,11.800000,51.000000,4.000000,169.000000,91.030000,134.320000,867.060000,6.070000,193.650000,27.750000 +20,2023-08-09 03:00:00,0.000000,11.800000,51.000000,4.000000,169.000000,90.710000,134.320000,867.060000,5.800000,193.650000,26.890000 +20,2023-08-09 04:00:00,0.000000,11.800000,51.000000,4.000000,169.000000,90.410000,134.320000,867.060000,5.560000,193.650000,26.130000 +20,2023-08-09 05:00:00,0.000000,9.600000,61.000000,5.000000,146.000000,89.950000,134.380000,867.170000,5.470000,193.710000,25.830000 +20,2023-08-09 06:00:00,0.000000,9.600000,61.000000,5.000000,146.000000,89.520000,134.430000,867.280000,5.150000,193.770000,24.760000 +20,2023-08-09 07:00:00,0.000000,9.600000,61.000000,5.000000,146.000000,89.140000,134.480000,867.390000,4.870000,193.830000,23.830000 +20,2023-08-09 08:00:00,0.000000,15.300000,46.000000,5.000000,145.000000,89.110000,134.580000,867.620000,4.850000,193.950000,23.750000 +20,2023-08-09 09:00:00,0.000000,15.300000,46.000000,5.000000,145.000000,89.080000,134.690000,867.840000,4.830000,194.080000,23.680000 +20,2023-08-09 10:00:00,0.000000,15.300000,46.000000,5.000000,145.000000,89.050000,134.790000,868.070000,4.810000,194.200000,23.620000 +20,2023-08-09 11:00:00,0.000000,22.300000,33.000000,11.000000,155.000000,89.340000,134.990000,868.500000,6.790000,194.430000,29.960000 +20,2023-08-09 12:00:00,0.000000,22.300000,33.000000,11.000000,155.000000,89.590000,135.190000,868.940000,7.030000,194.670000,30.680000 +20,2023-08-09 13:00:00,0.000000,22.300000,33.000000,11.000000,155.000000,89.800000,135.390000,869.370000,7.240000,194.900000,31.310000 +20,2023-08-09 14:00:00,0.000000,25.400000,26.000000,12.000000,152.000000,90.360000,135.660000,869.950000,8.260000,195.210000,34.190000 +20,2023-08-09 15:00:00,0.000000,25.400000,26.000000,12.000000,152.000000,90.830000,135.920000,870.530000,8.830000,195.530000,35.730000 +20,2023-08-09 16:00:00,0.000000,25.400000,26.000000,12.000000,152.000000,91.210000,136.190000,871.100000,9.320000,195.840000,37.020000 +20,2023-08-09 17:00:00,0.000000,26.400000,22.000000,13.000000,163.000000,91.740000,136.490000,871.750000,10.570000,196.190000,40.200000 +20,2023-08-09 18:00:00,0.000000,26.400000,22.000000,13.000000,163.000000,92.170000,136.790000,872.390000,11.240000,196.530000,41.820000 +20,2023-08-09 19:00:00,0.000000,26.400000,22.000000,13.000000,163.000000,92.520000,137.080000,873.040000,11.800000,196.880000,43.160000 +20,2023-08-09 20:00:00,0.000000,23.800000,27.000000,11.000000,176.000000,92.520000,137.320000,873.560000,10.670000,197.160000,40.460000 +20,2023-08-09 21:00:00,0.000000,23.800000,27.000000,11.000000,176.000000,92.520000,137.560000,874.070000,10.670000,197.440000,40.470000 +20,2023-08-09 22:00:00,0.000000,23.800000,27.000000,11.000000,176.000000,92.520000,137.560000,874.070000,10.670000,197.440000,40.470000 +20,2023-08-09 23:00:00,0.000000,17.900000,41.000000,8.000000,161.000000,92.250000,137.560000,874.070000,8.840000,197.440000,35.800000 +20,2023-08-10 00:00:00,0.000000,17.900000,41.000000,8.000000,161.000000,92.020000,137.560000,874.070000,8.550000,197.440000,35.020000 +20,2023-08-10 01:00:00,0.000000,17.900000,41.000000,8.000000,161.000000,91.810000,137.560000,874.070000,8.300000,197.440000,34.350000 +20,2023-08-10 02:00:00,0.000000,14.800000,52.000000,7.000000,124.000000,91.370000,137.560000,874.070000,7.410000,197.440000,31.850000 +20,2023-08-10 03:00:00,0.000000,14.800000,52.000000,7.000000,124.000000,90.970000,137.560000,874.070000,7.000000,197.440000,30.670000 +20,2023-08-10 04:00:00,0.000000,14.800000,52.000000,7.000000,124.000000,90.620000,137.560000,874.070000,6.660000,197.440000,29.640000 +20,2023-08-10 05:00:00,0.000000,14.600000,56.000000,7.000000,117.000000,90.220000,137.680000,874.340000,6.290000,197.580000,28.510000 +20,2023-08-10 06:00:00,0.000000,14.600000,56.000000,7.000000,117.000000,89.860000,137.790000,874.600000,5.980000,197.710000,27.540000 +20,2023-08-10 07:00:00,0.000000,14.600000,56.000000,7.000000,117.000000,89.550000,137.910000,874.870000,5.710000,197.850000,26.690000 +20,2023-08-10 08:00:00,0.000000,18.600000,47.000000,11.000000,132.000000,89.500000,138.090000,875.280000,6.940000,198.060000,30.490000 +20,2023-08-10 09:00:00,0.000000,18.600000,47.000000,11.000000,132.000000,89.460000,138.270000,875.690000,6.900000,198.270000,30.370000 +20,2023-08-10 10:00:00,0.000000,18.600000,47.000000,11.000000,132.000000,89.420000,138.440000,876.100000,6.860000,198.480000,30.270000 +20,2023-08-10 11:00:00,0.000000,23.700000,38.000000,15.000000,159.000000,89.550000,138.730000,876.750000,8.550000,198.810000,35.050000 +20,2023-08-10 12:00:00,0.000000,23.700000,38.000000,15.000000,159.000000,89.650000,139.020000,877.410000,8.670000,199.150000,35.400000 +20,2023-08-10 13:00:00,0.000000,23.700000,38.000000,15.000000,159.000000,89.730000,139.300000,878.070000,8.780000,199.490000,35.700000 +20,2023-08-10 14:00:00,0.030000,22.400000,52.000000,19.000000,171.000000,89.600000,139.510000,878.540000,10.540000,199.730000,40.220000 +20,2023-08-10 15:00:00,0.000000,22.400000,52.000000,19.000000,171.000000,89.490000,139.710000,879.010000,10.380000,199.970000,39.820000 +20,2023-08-10 16:00:00,0.000000,22.400000,52.000000,19.000000,171.000000,89.400000,139.920000,879.480000,10.240000,200.210000,39.490000 +20,2023-08-10 17:00:00,0.010000,22.300000,52.000000,19.000000,173.000000,89.320000,140.120000,879.940000,10.130000,200.450000,39.200000 +20,2023-08-10 18:00:00,0.000000,22.300000,52.000000,19.000000,173.000000,89.260000,140.330000,880.410000,10.030000,200.690000,38.970000 +20,2023-08-10 19:00:00,0.000000,22.300000,52.000000,19.000000,173.000000,89.200000,140.530000,880.880000,9.950000,200.930000,38.780000 +20,2023-08-10 20:00:00,0.000000,22.300000,52.000000,19.000000,173.000000,89.160000,140.740000,881.340000,9.890000,201.160000,38.620000 +20,2023-08-10 21:00:00,0.000000,22.300000,52.000000,19.000000,173.000000,89.120000,140.740000,881.340000,9.830000,201.160000,38.490000 +20,2023-08-10 22:00:00,0.000000,22.300000,52.000000,19.000000,173.000000,89.090000,140.740000,881.340000,9.790000,201.160000,38.370000 +20,2023-08-10 23:00:00,0.000000,19.100000,61.000000,12.000000,179.000000,88.770000,140.740000,881.340000,6.570000,201.160000,29.440000 +20,2023-08-11 00:00:00,0.000000,19.100000,61.000000,12.000000,179.000000,88.490000,140.740000,881.340000,6.310000,201.160000,28.660000 +20,2023-08-11 01:00:00,0.000000,19.100000,61.000000,12.000000,179.000000,88.260000,140.740000,881.340000,6.100000,201.160000,28.010000 +20,2023-08-11 02:00:00,0.000000,19.100000,61.000000,12.000000,179.000000,88.050000,140.740000,881.340000,5.930000,201.160000,27.460000 +20,2023-08-11 03:00:00,0.000000,19.100000,61.000000,12.000000,179.000000,87.880000,140.740000,881.340000,5.790000,201.160000,27.000000 +20,2023-08-11 04:00:00,0.000000,19.100000,61.000000,12.000000,179.000000,87.740000,140.740000,881.340000,5.670000,201.160000,26.610000 +20,2023-08-11 05:00:00,0.000000,16.700000,79.000000,11.000000,185.000000,87.040000,140.790000,881.470000,4.880000,201.230000,23.990000 +20,2023-08-11 06:00:00,0.000000,16.700000,79.000000,11.000000,185.000000,86.460000,140.850000,881.600000,4.490000,201.290000,22.620000 +20,2023-08-11 07:00:00,0.000000,16.700000,79.000000,11.000000,185.000000,85.950000,140.900000,881.720000,4.180000,201.360000,21.510000 +20,2023-08-11 08:00:00,0.000000,16.700000,79.000000,11.000000,185.000000,85.530000,140.960000,881.850000,3.940000,201.420000,20.610000 +20,2023-08-11 09:00:00,0.000000,16.700000,79.000000,11.000000,185.000000,85.160000,141.010000,881.980000,3.750000,201.490000,19.870000 +20,2023-08-11 10:00:00,0.000000,16.700000,79.000000,11.000000,185.000000,84.850000,141.070000,882.100000,3.590000,201.550000,19.260000 +20,2023-08-11 11:00:00,0.000000,23.900000,38.000000,14.000000,214.000000,85.750000,141.320000,882.690000,4.730000,201.850000,23.480000 +20,2023-08-11 12:00:00,0.000000,23.900000,38.000000,14.000000,214.000000,86.500000,141.580000,883.270000,5.260000,202.150000,25.290000 +20,2023-08-11 13:00:00,0.000000,23.900000,38.000000,14.000000,214.000000,87.130000,141.830000,883.850000,5.750000,202.450000,26.900000 +20,2023-08-11 14:00:00,0.000000,23.900000,38.000000,14.000000,214.000000,87.650000,142.090000,884.440000,6.190000,202.750000,28.310000 +20,2023-08-11 15:00:00,0.000000,23.900000,38.000000,14.000000,214.000000,88.080000,142.350000,885.020000,6.590000,203.050000,29.540000 +20,2023-08-11 16:00:00,0.000000,23.900000,38.000000,14.000000,214.000000,88.440000,142.600000,885.600000,6.940000,203.340000,30.590000 +20,2023-08-11 17:00:00,0.000000,25.400000,26.000000,15.000000,230.000000,89.290000,142.930000,886.370000,8.240000,203.730000,34.320000 +20,2023-08-11 18:00:00,0.000000,25.400000,26.000000,15.000000,230.000000,89.980000,143.270000,887.130000,9.090000,204.120000,36.630000 +20,2023-08-11 19:00:00,0.000000,25.400000,26.000000,15.000000,230.000000,90.530000,143.600000,887.890000,9.850000,204.510000,38.590000 +20,2023-08-11 20:00:00,0.000000,25.400000,26.000000,15.000000,230.000000,90.980000,143.940000,888.650000,10.500000,204.900000,40.240000 +20,2023-08-11 21:00:00,0.000000,25.400000,26.000000,15.000000,230.000000,91.350000,143.940000,888.650000,11.060000,204.900000,41.610000 +20,2023-08-11 22:00:00,0.000000,25.400000,26.000000,15.000000,230.000000,91.640000,143.940000,888.650000,11.530000,204.900000,42.730000 +20,2023-08-11 23:00:00,0.000000,18.100000,42.000000,9.000000,219.000000,91.450000,143.940000,888.650000,8.290000,204.900000,34.490000 +20,2023-08-12 00:00:00,0.000000,18.100000,42.000000,9.000000,219.000000,91.280000,143.940000,888.650000,8.100000,204.900000,33.950000 +20,2023-08-12 01:00:00,0.000000,18.100000,42.000000,9.000000,219.000000,91.130000,143.940000,888.650000,7.930000,204.900000,33.470000 +20,2023-08-12 02:00:00,0.000000,18.100000,42.000000,9.000000,219.000000,91.000000,143.940000,888.650000,7.780000,204.900000,33.050000 +20,2023-08-12 03:00:00,0.000000,18.100000,42.000000,9.000000,219.000000,90.880000,143.940000,888.650000,7.650000,204.900000,32.690000 +20,2023-08-12 04:00:00,0.000000,18.100000,42.000000,9.000000,219.000000,90.780000,143.940000,888.650000,7.540000,204.900000,32.360000 +20,2023-08-12 05:00:00,0.000000,15.900000,47.000000,12.000000,209.000000,90.540000,144.050000,888.910000,8.470000,205.040000,34.970000 +20,2023-08-12 06:00:00,0.000000,15.900000,47.000000,12.000000,209.000000,90.320000,144.170000,889.180000,8.210000,205.170000,34.270000 +20,2023-08-12 07:00:00,0.000000,15.900000,47.000000,12.000000,209.000000,90.130000,144.280000,889.440000,7.990000,205.310000,33.670000 +20,2023-08-12 08:00:00,0.000000,15.900000,47.000000,12.000000,209.000000,89.970000,144.400000,889.700000,7.810000,205.440000,33.140000 +20,2023-08-12 09:00:00,0.000000,15.900000,47.000000,12.000000,209.000000,89.820000,144.520000,889.960000,7.640000,205.580000,32.690000 +20,2023-08-12 10:00:00,0.000000,15.900000,47.000000,12.000000,209.000000,89.690000,144.630000,890.230000,7.500000,205.710000,32.290000 +20,2023-08-12 11:00:00,0.000000,20.800000,34.000000,15.000000,246.000000,89.810000,144.830000,890.670000,8.880000,205.940000,36.100000 +20,2023-08-12 12:00:00,0.000000,20.800000,34.000000,15.000000,246.000000,89.910000,145.030000,891.120000,9.000000,206.170000,36.440000 +20,2023-08-12 13:00:00,0.000000,20.800000,34.000000,15.000000,246.000000,89.990000,145.220000,891.560000,9.110000,206.400000,36.730000 +20,2023-08-12 14:00:00,0.000000,20.800000,34.000000,15.000000,246.000000,90.060000,145.420000,892.010000,9.200000,206.630000,36.970000 +20,2023-08-12 15:00:00,0.000000,20.800000,34.000000,15.000000,246.000000,90.120000,145.620000,892.450000,9.280000,206.860000,37.180000 +20,2023-08-12 16:00:00,0.000000,20.800000,34.000000,15.000000,246.000000,90.170000,145.810000,892.900000,9.350000,207.080000,37.350000 +20,2023-08-12 17:00:00,0.000000,24.500000,26.000000,16.000000,287.000000,90.650000,146.090000,893.520000,10.530000,207.400000,40.370000 +20,2023-08-12 18:00:00,0.000000,24.500000,26.000000,16.000000,287.000000,91.040000,146.370000,894.150000,11.140000,207.720000,41.860000 +20,2023-08-12 19:00:00,0.000000,24.500000,26.000000,16.000000,287.000000,91.360000,146.640000,894.770000,11.650000,208.050000,43.100000 +20,2023-08-12 20:00:00,0.000000,24.500000,26.000000,16.000000,287.000000,91.620000,146.920000,895.400000,12.080000,208.370000,44.120000 +20,2023-08-12 21:00:00,0.000000,24.500000,26.000000,16.000000,287.000000,91.830000,146.920000,895.400000,12.450000,208.370000,44.960000 +20,2023-08-12 22:00:00,0.000000,24.500000,26.000000,16.000000,287.000000,91.990000,146.920000,895.400000,12.750000,208.370000,45.640000 +20,2023-08-12 23:00:00,0.000000,19.000000,38.000000,6.000000,259.000000,91.880000,146.920000,895.400000,7.570000,208.370000,32.530000 +20,2023-08-13 00:00:00,0.000000,19.000000,38.000000,6.000000,259.000000,91.770000,146.920000,895.400000,7.460000,208.370000,32.210000 +20,2023-08-13 01:00:00,0.000000,19.000000,38.000000,6.000000,259.000000,91.670000,146.920000,895.400000,7.360000,208.370000,31.920000 +20,2023-08-13 02:00:00,0.000000,19.000000,38.000000,6.000000,259.000000,91.590000,146.920000,895.400000,7.270000,208.370000,31.660000 +20,2023-08-13 03:00:00,0.000000,19.000000,38.000000,6.000000,259.000000,91.510000,146.920000,895.400000,7.190000,208.370000,31.430000 +20,2023-08-13 04:00:00,0.000000,19.000000,38.000000,6.000000,259.000000,91.440000,146.920000,895.400000,7.120000,208.370000,31.220000 +20,2023-08-13 05:00:00,0.000000,18.200000,41.000000,10.000000,255.000000,91.290000,147.070000,895.730000,8.530000,208.540000,35.210000 +20,2023-08-13 06:00:00,0.000000,18.200000,41.000000,10.000000,255.000000,91.160000,147.210000,896.060000,8.370000,208.710000,34.790000 +20,2023-08-13 07:00:00,0.000000,18.200000,41.000000,10.000000,255.000000,91.050000,147.360000,896.390000,8.240000,208.880000,34.410000 +20,2023-08-13 08:00:00,0.000000,18.200000,41.000000,10.000000,255.000000,90.950000,147.510000,896.730000,8.120000,209.050000,34.080000 +20,2023-08-13 09:00:00,0.000000,18.200000,41.000000,10.000000,255.000000,90.860000,147.660000,897.060000,8.010000,209.220000,33.800000 +20,2023-08-13 10:00:00,0.000000,18.200000,41.000000,10.000000,255.000000,90.780000,147.800000,897.390000,7.920000,209.390000,33.550000 +20,2023-08-13 11:00:00,0.000000,22.700000,36.000000,15.000000,332.000000,90.780000,148.010000,897.870000,10.190000,209.630000,39.580000 +20,2023-08-13 12:00:00,0.000000,22.700000,36.000000,15.000000,332.000000,90.780000,148.220000,898.340000,10.190000,209.880000,39.580000 +20,2023-08-13 13:00:00,0.000000,22.700000,36.000000,15.000000,332.000000,90.780000,148.440000,898.820000,10.190000,210.120000,39.590000 +20,2023-08-13 14:00:00,0.000000,22.700000,36.000000,15.000000,332.000000,90.780000,148.650000,899.290000,10.190000,210.360000,39.590000 +20,2023-08-13 15:00:00,0.000000,22.700000,36.000000,15.000000,332.000000,90.780000,148.860000,899.770000,10.190000,210.610000,39.600000 +20,2023-08-13 16:00:00,0.000000,22.700000,36.000000,15.000000,332.000000,90.780000,149.070000,900.240000,10.190000,210.850000,39.600000 +20,2023-08-13 17:00:00,0.000000,24.200000,31.000000,13.000000,344.000000,90.920000,149.320000,900.800000,9.410000,211.140000,37.600000 +20,2023-08-13 18:00:00,0.000000,24.200000,31.000000,13.000000,344.000000,91.040000,149.570000,901.370000,9.580000,211.430000,38.030000 +20,2023-08-13 19:00:00,0.000000,24.200000,31.000000,13.000000,344.000000,91.140000,149.810000,901.930000,9.710000,211.710000,38.390000 +20,2023-08-13 20:00:00,0.000000,24.200000,31.000000,13.000000,344.000000,91.220000,150.060000,902.490000,9.820000,212.000000,38.690000 +20,2023-08-13 21:00:00,0.000000,24.200000,31.000000,13.000000,344.000000,91.290000,150.060000,902.490000,9.920000,212.000000,38.930000 +20,2023-08-13 22:00:00,0.000000,24.200000,31.000000,13.000000,344.000000,91.350000,150.060000,902.490000,10.000000,212.000000,39.120000 +20,2023-08-13 23:00:00,0.010000,16.600000,53.000000,7.000000,268.000000,90.940000,150.060000,902.490000,6.970000,212.000000,30.840000 +20,2023-08-14 00:00:00,0.000000,16.600000,53.000000,7.000000,268.000000,90.580000,150.060000,902.490000,6.620000,212.000000,29.790000 +20,2023-08-14 01:00:00,0.000000,16.600000,53.000000,7.000000,268.000000,90.260000,150.060000,902.490000,6.330000,212.000000,28.880000 +20,2023-08-14 02:00:00,0.000000,16.600000,53.000000,7.000000,268.000000,89.980000,150.060000,902.490000,6.080000,212.000000,28.100000 +20,2023-08-14 03:00:00,0.000000,16.600000,53.000000,7.000000,268.000000,89.730000,150.060000,902.490000,5.870000,212.000000,27.430000 +20,2023-08-14 04:00:00,0.000000,16.600000,53.000000,7.000000,268.000000,89.520000,150.060000,902.490000,5.690000,212.000000,26.840000 +20,2023-08-14 05:00:00,0.000000,13.200000,70.000000,7.000000,271.000000,88.910000,150.130000,902.630000,5.220000,212.070000,25.280000 +20,2023-08-14 06:00:00,0.000000,13.200000,70.000000,7.000000,271.000000,88.380000,150.190000,902.770000,4.830000,212.140000,23.980000 +20,2023-08-14 07:00:00,0.000000,13.200000,70.000000,7.000000,271.000000,87.920000,150.250000,902.910000,4.520000,212.220000,22.870000 +20,2023-08-14 08:00:00,0.000000,13.200000,70.000000,7.000000,271.000000,87.500000,150.320000,903.040000,4.260000,212.290000,21.930000 +20,2023-08-14 09:00:00,0.000000,13.200000,70.000000,7.000000,271.000000,87.140000,150.380000,903.180000,4.050000,212.360000,21.140000 +20,2023-08-14 10:00:00,0.000000,13.200000,70.000000,7.000000,271.000000,86.820000,150.440000,903.320000,3.860000,212.430000,20.450000 +20,2023-08-14 11:00:00,0.000000,23.800000,36.000000,7.000000,340.000000,87.390000,150.700000,903.900000,4.190000,212.730000,21.680000 +20,2023-08-14 12:00:00,0.000000,23.800000,36.000000,7.000000,340.000000,87.870000,150.960000,904.480000,4.490000,213.030000,22.770000 +20,2023-08-14 13:00:00,0.000000,23.800000,36.000000,7.000000,340.000000,88.280000,151.220000,905.050000,4.760000,213.330000,23.730000 +20,2023-08-14 14:00:00,0.000000,23.800000,36.000000,7.000000,340.000000,88.620000,151.480000,905.630000,5.000000,213.630000,24.580000 +20,2023-08-14 15:00:00,0.000000,23.800000,36.000000,7.000000,340.000000,88.920000,151.740000,906.210000,5.220000,213.930000,25.320000 +20,2023-08-14 16:00:00,0.000000,23.800000,36.000000,7.000000,340.000000,89.170000,152.000000,906.790000,5.410000,214.230000,25.960000 +20,2023-08-14 17:00:00,0.000000,25.700000,26.000000,9.000000,36.000000,89.830000,152.340000,907.530000,6.580000,214.620000,29.700000 +20,2023-08-14 18:00:00,0.000000,25.700000,26.000000,9.000000,36.000000,90.380000,152.680000,908.280000,7.120000,215.000000,31.320000 +20,2023-08-14 19:00:00,0.000000,25.700000,26.000000,9.000000,36.000000,90.830000,153.020000,909.030000,7.600000,215.390000,32.710000 +20,2023-08-14 20:00:00,0.000000,25.700000,26.000000,9.000000,36.000000,91.210000,153.350000,909.780000,8.010000,215.780000,33.890000 +20,2023-08-14 21:00:00,0.000000,25.700000,26.000000,9.000000,36.000000,91.510000,153.350000,909.780000,8.360000,215.780000,34.880000 +20,2023-08-14 22:00:00,0.000000,25.700000,26.000000,9.000000,36.000000,91.760000,153.350000,909.780000,8.670000,215.780000,35.710000 +20,2023-08-14 23:00:00,0.000000,16.900000,43.000000,8.000000,149.000000,91.530000,153.350000,909.780000,7.970000,215.780000,33.790000 +20,2023-08-15 00:00:00,0.000000,16.900000,43.000000,8.000000,149.000000,91.320000,153.350000,909.780000,7.740000,215.780000,33.130000 +20,2023-08-15 01:00:00,0.000000,16.900000,43.000000,8.000000,149.000000,91.130000,153.350000,909.780000,7.540000,215.780000,32.540000 +20,2023-08-15 02:00:00,0.000000,16.900000,43.000000,8.000000,149.000000,90.970000,153.350000,909.780000,7.360000,215.780000,32.030000 +20,2023-08-15 03:00:00,0.000000,16.900000,43.000000,8.000000,149.000000,90.820000,153.350000,909.780000,7.210000,215.780000,31.580000 +20,2023-08-15 04:00:00,0.000000,16.900000,43.000000,8.000000,149.000000,90.680000,153.350000,909.780000,7.070000,215.780000,31.190000 +20,2023-08-15 05:00:00,0.000000,12.600000,55.000000,7.000000,179.000000,90.290000,153.440000,909.940000,6.350000,215.870000,29.010000 +20,2023-08-15 06:00:00,0.000000,12.600000,55.000000,7.000000,179.000000,89.940000,153.520000,910.110000,6.040000,215.960000,28.030000 +20,2023-08-15 07:00:00,0.000000,12.600000,55.000000,7.000000,179.000000,89.620000,153.600000,910.270000,5.770000,216.060000,27.170000 +20,2023-08-15 08:00:00,0.000000,12.600000,55.000000,7.000000,179.000000,89.340000,153.690000,910.430000,5.540000,216.150000,26.420000 +20,2023-08-15 09:00:00,0.000000,12.600000,55.000000,7.000000,179.000000,89.080000,153.770000,910.600000,5.340000,216.250000,25.760000 +20,2023-08-15 10:00:00,0.000000,12.600000,55.000000,7.000000,179.000000,88.850000,153.850000,910.760000,5.170000,216.340000,25.180000 +20,2023-08-15 11:00:00,0.000000,25.100000,30.000000,11.000000,161.000000,89.400000,154.130000,911.320000,6.850000,216.660000,30.530000 +20,2023-08-15 12:00:00,0.000000,25.100000,30.000000,11.000000,161.000000,89.860000,154.410000,911.880000,7.310000,216.970000,31.900000 +20,2023-08-15 13:00:00,0.000000,25.100000,30.000000,11.000000,161.000000,90.230000,154.700000,912.440000,7.710000,217.290000,33.070000 +20,2023-08-15 14:00:00,0.000000,25.100000,30.000000,11.000000,161.000000,90.540000,154.980000,913.000000,8.060000,217.610000,34.060000 +20,2023-08-15 15:00:00,0.000000,25.100000,30.000000,11.000000,161.000000,90.800000,155.260000,913.560000,8.360000,217.930000,34.890000 +20,2023-08-15 16:00:00,0.000000,25.100000,30.000000,11.000000,161.000000,91.000000,155.540000,914.120000,8.610000,218.240000,35.580000 +20,2023-08-15 17:00:00,0.000000,29.700000,24.000000,11.000000,173.000000,91.640000,155.940000,914.910000,9.430000,218.690000,37.770000 +20,2023-08-15 18:00:00,0.000000,29.700000,24.000000,11.000000,173.000000,92.150000,156.340000,915.710000,10.120000,219.140000,39.580000 +20,2023-08-15 19:00:00,0.000000,29.700000,24.000000,11.000000,173.000000,92.550000,156.740000,916.500000,10.710000,219.590000,41.040000 +20,2023-08-15 20:00:00,0.000000,29.700000,24.000000,11.000000,173.000000,92.860000,157.140000,917.300000,11.190000,220.040000,42.230000 +20,2023-08-15 21:00:00,0.000000,29.700000,24.000000,11.000000,173.000000,93.110000,157.140000,917.300000,11.590000,220.040000,43.180000 +20,2023-08-15 22:00:00,0.000000,29.700000,24.000000,11.000000,173.000000,93.300000,157.140000,917.300000,11.910000,220.040000,43.930000 +20,2023-08-15 23:00:00,0.000000,20.300000,51.000000,8.000000,181.000000,92.700000,157.140000,917.300000,9.410000,220.040000,37.750000 +20,2023-08-16 00:00:00,0.000000,20.300000,51.000000,8.000000,181.000000,92.180000,157.140000,917.300000,8.750000,220.040000,35.980000 +20,2023-08-16 01:00:00,0.000000,20.300000,51.000000,8.000000,181.000000,91.730000,157.140000,917.300000,8.210000,220.040000,34.510000 +20,2023-08-16 02:00:00,0.000000,20.300000,51.000000,8.000000,181.000000,91.340000,157.140000,917.300000,7.770000,220.040000,33.260000 +20,2023-08-16 03:00:00,0.000000,20.300000,51.000000,8.000000,181.000000,91.010000,157.140000,917.300000,7.400000,220.040000,32.220000 +20,2023-08-16 04:00:00,0.000000,20.300000,51.000000,8.000000,181.000000,90.710000,157.140000,917.300000,7.100000,220.040000,31.330000 +20,2023-08-16 05:00:00,0.000000,16.700000,71.000000,7.000000,191.000000,89.920000,157.210000,917.430000,6.020000,220.120000,28.030000 +20,2023-08-16 06:00:00,0.000000,16.700000,71.000000,7.000000,191.000000,89.230000,157.270000,917.570000,5.460000,220.190000,26.200000 +20,2023-08-16 07:00:00,0.000000,16.700000,71.000000,7.000000,191.000000,88.640000,157.340000,917.710000,5.010000,220.270000,24.690000 +20,2023-08-16 08:00:00,0.000000,16.700000,71.000000,7.000000,191.000000,88.120000,157.410000,917.850000,4.660000,220.350000,23.450000 +20,2023-08-16 09:00:00,0.000000,16.700000,71.000000,7.000000,191.000000,87.680000,157.480000,917.980000,4.370000,220.420000,22.410000 +20,2023-08-16 10:00:00,0.000000,16.700000,71.000000,7.000000,191.000000,87.290000,157.540000,918.120000,4.130000,220.500000,21.550000 +20,2023-08-16 11:00:00,0.000000,27.800000,34.000000,9.000000,184.000000,88.080000,157.850000,918.730000,5.120000,220.840000,25.060000 +20,2023-08-16 12:00:00,0.000000,27.800000,34.000000,9.000000,184.000000,88.730000,158.150000,919.340000,5.620000,221.180000,26.730000 +20,2023-08-16 13:00:00,0.000000,27.800000,34.000000,9.000000,184.000000,89.260000,158.450000,919.960000,6.060000,221.510000,28.170000 +20,2023-08-16 14:00:00,0.000000,27.800000,34.000000,9.000000,184.000000,89.690000,158.750000,920.570000,6.450000,221.850000,29.390000 +20,2023-08-16 15:00:00,0.000000,27.800000,34.000000,9.000000,184.000000,90.050000,159.050000,921.180000,6.790000,222.190000,30.420000 +20,2023-08-16 16:00:00,0.000000,27.800000,34.000000,9.000000,184.000000,90.340000,159.350000,921.800000,7.070000,222.530000,31.290000 +20,2023-08-16 17:00:00,0.000000,30.700000,20.000000,15.000000,186.000000,91.440000,159.780000,922.670000,11.200000,223.010000,42.300000 +20,2023-08-16 18:00:00,0.000000,30.700000,20.000000,15.000000,186.000000,92.290000,160.210000,923.550000,12.630000,223.500000,45.680000 +20,2023-08-16 19:00:00,0.000000,30.700000,20.000000,15.000000,186.000000,92.940000,160.650000,924.430000,13.850000,223.980000,48.420000 +20,2023-08-16 20:00:00,0.000000,30.700000,20.000000,15.000000,186.000000,93.440000,161.080000,925.310000,14.850000,224.470000,50.610000 +20,2023-08-16 21:00:00,0.000000,30.700000,20.000000,15.000000,186.000000,93.830000,161.080000,925.310000,15.670000,224.470000,52.330000 +20,2023-08-16 22:00:00,0.000000,30.700000,20.000000,15.000000,186.000000,94.120000,161.080000,925.310000,16.320000,224.470000,53.670000 +20,2023-08-16 23:00:00,0.000000,23.200000,36.000000,10.000000,184.000000,93.840000,161.080000,925.310000,12.200000,224.470000,44.700000 +20,2023-08-17 00:00:00,0.000000,23.200000,36.000000,10.000000,184.000000,93.590000,161.080000,925.310000,11.790000,224.470000,43.730000 +20,2023-08-17 01:00:00,0.000000,23.200000,36.000000,10.000000,184.000000,93.380000,161.080000,925.310000,11.440000,224.470000,42.900000 +20,2023-08-17 02:00:00,0.000000,23.200000,36.000000,10.000000,184.000000,93.190000,161.080000,925.310000,11.150000,224.470000,42.190000 +20,2023-08-17 03:00:00,0.000000,23.200000,36.000000,10.000000,184.000000,93.030000,161.080000,925.310000,10.900000,224.470000,41.580000 +20,2023-08-17 04:00:00,0.000000,23.200000,36.000000,10.000000,184.000000,92.890000,161.080000,925.310000,10.680000,224.470000,41.050000 +20,2023-08-17 05:00:00,0.000000,20.600000,43.000000,13.000000,188.000000,92.520000,161.080000,925.310000,11.810000,224.470000,43.770000 +20,2023-08-17 06:00:00,0.000000,20.600000,43.000000,13.000000,188.000000,92.210000,161.250000,925.620000,11.290000,224.650000,42.550000 +20,2023-08-17 07:00:00,0.000000,20.600000,43.000000,13.000000,188.000000,91.940000,161.410000,925.930000,10.870000,224.840000,41.520000 +20,2023-08-17 08:00:00,0.000000,20.600000,43.000000,13.000000,188.000000,91.700000,161.580000,926.240000,10.520000,225.020000,40.650000 +20,2023-08-17 09:00:00,0.000000,20.600000,43.000000,13.000000,188.000000,91.500000,161.750000,926.550000,10.220000,225.210000,39.900000 +20,2023-08-17 10:00:00,0.000000,20.600000,43.000000,13.000000,188.000000,91.330000,161.920000,926.860000,9.970000,225.400000,39.270000 +20,2023-08-17 11:00:00,0.000000,28.500000,28.000000,15.000000,210.000000,91.670000,162.260000,927.490000,11.580000,225.770000,43.260000 +20,2023-08-17 12:00:00,0.000000,28.500000,28.000000,15.000000,210.000000,91.950000,162.600000,928.110000,12.040000,226.150000,44.350000 +20,2023-08-17 13:00:00,0.000000,28.500000,28.000000,15.000000,210.000000,92.160000,162.940000,928.740000,12.410000,226.520000,45.220000 +20,2023-08-17 14:00:00,0.000000,28.500000,28.000000,15.000000,210.000000,92.330000,163.280000,929.370000,12.710000,226.900000,45.910000 +20,2023-08-17 15:00:00,0.000000,28.500000,28.000000,15.000000,210.000000,92.460000,163.620000,930.000000,12.950000,227.270000,46.470000 +20,2023-08-17 16:00:00,0.000000,28.500000,28.000000,15.000000,210.000000,92.570000,163.960000,930.630000,13.140000,227.650000,46.910000 +20,2023-08-17 17:00:00,0.000000,31.700000,33.000000,9.000000,325.000000,92.570000,164.340000,931.330000,9.710000,228.070000,38.650000 +20,2023-08-17 18:00:00,0.000000,31.700000,33.000000,9.000000,325.000000,92.570000,164.720000,932.030000,9.710000,228.480000,38.650000 +20,2023-08-17 19:00:00,0.000000,31.700000,33.000000,9.000000,325.000000,92.570000,165.100000,932.740000,9.710000,228.900000,38.660000 +20,2023-08-17 20:00:00,0.000000,31.700000,33.000000,9.000000,325.000000,92.570000,165.480000,933.440000,9.710000,229.320000,38.660000 +20,2023-08-17 21:00:00,0.000000,31.700000,33.000000,9.000000,325.000000,92.570000,165.480000,933.440000,9.710000,229.320000,38.660000 +20,2023-08-17 22:00:00,0.000000,31.700000,33.000000,9.000000,325.000000,92.570000,165.480000,933.440000,9.710000,229.320000,38.660000 +20,2023-08-17 23:00:00,3.300000,19.200000,90.000000,6.000000,348.000000,45.470000,96.890000,905.230000,0.120000,152.870000,0.420000 +20,2023-08-18 00:00:00,0.000000,19.200000,90.000000,6.000000,348.000000,46.570000,96.890000,905.230000,0.140000,152.870000,0.500000 +20,2023-08-18 01:00:00,0.000000,19.200000,90.000000,6.000000,348.000000,47.640000,96.890000,905.230000,0.160000,152.870000,0.580000 +20,2023-08-18 02:00:00,0.000000,19.200000,90.000000,6.000000,348.000000,48.690000,96.890000,905.230000,0.190000,152.870000,0.670000 +20,2023-08-18 03:00:00,0.000000,19.200000,90.000000,6.000000,348.000000,49.720000,96.890000,905.230000,0.210000,152.870000,0.760000 +20,2023-08-18 04:00:00,0.000000,19.200000,90.000000,6.000000,348.000000,50.710000,96.890000,905.230000,0.240000,152.870000,0.850000 +20,2023-08-18 05:00:00,0.000000,16.000000,84.000000,5.000000,17.000000,51.940000,96.890000,905.230000,0.260000,152.870000,0.930000 +20,2023-08-18 06:00:00,0.000000,16.000000,84.000000,5.000000,17.000000,53.130000,96.950000,905.390000,0.300000,152.950000,1.290000 +20,2023-08-18 07:00:00,0.000000,16.000000,84.000000,5.000000,17.000000,54.280000,97.010000,905.550000,0.340000,153.030000,1.660000 +20,2023-08-18 08:00:00,0.000000,16.000000,84.000000,5.000000,17.000000,55.390000,97.060000,905.710000,0.370000,153.110000,1.990000 +20,2023-08-18 09:00:00,0.000000,16.000000,84.000000,5.000000,17.000000,56.460000,97.120000,905.860000,0.410000,153.190000,2.290000 +20,2023-08-18 10:00:00,0.000000,16.000000,84.000000,5.000000,17.000000,57.490000,97.180000,906.020000,0.440000,153.260000,2.570000 +20,2023-08-18 11:00:00,0.000000,23.800000,48.000000,7.000000,64.000000,61.090000,97.490000,906.860000,0.620000,153.670000,3.900000 +20,2023-08-18 12:00:00,0.000000,23.800000,48.000000,7.000000,64.000000,64.350000,97.790000,907.690000,0.730000,154.080000,4.650000 +20,2023-08-18 13:00:00,0.000000,23.800000,48.000000,7.000000,64.000000,67.290000,98.100000,908.520000,0.820000,154.490000,5.210000 +20,2023-08-18 14:00:00,0.000000,23.800000,48.000000,7.000000,64.000000,69.920000,98.400000,909.360000,0.890000,154.900000,5.670000 +20,2023-08-18 15:00:00,0.000000,23.800000,48.000000,7.000000,64.000000,72.270000,98.710000,910.190000,0.960000,155.310000,6.140000 +20,2023-08-18 16:00:00,0.000000,23.800000,48.000000,7.000000,64.000000,74.350000,99.020000,911.030000,1.050000,155.720000,6.690000 +20,2023-08-18 17:00:00,0.000000,29.900000,35.000000,7.000000,120.000000,77.370000,99.560000,912.520000,1.270000,156.450000,7.960000 From d1f84c1942cb10712ae49e081c5348091a056c1d Mon Sep 17 00:00:00 2001 From: Jordan Evens Date: Mon, 8 Apr 2024 10:44:07 -0400 Subject: [PATCH 05/17] reduced precision comparison for FWI inputs matching cacluations and tied to DEBUG_FWI_WEATHER flag --- tbd/src/cpp/FWI.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tbd/src/cpp/FWI.cpp b/tbd/src/cpp/FWI.cpp index 28c0ec42d..6311a58c7 100644 --- a/tbd/src/cpp/FWI.cpp +++ b/tbd/src/cpp/FWI.cpp @@ -6,8 +6,10 @@ #include "FWI.h" #include "Log.h" #define CHECK_CALCULATION 1 +#ifndef DEBUG_FWI_WEATHER #undef CHECK_CALCULATION -#define CHECK_EPSILON 0.001 +#endif +#define CHECK_EPSILON 0.1 // adapted from http://www.columbia.edu/~rf2426/index_files/FWI.vba //****************************************************************************************** // From cd5447f73beb87c39a21cd1199b312137b9ec432 Mon Sep 17 00:00:00 2001 From: Jordan Evens Date: Mon, 8 Apr 2024 10:56:44 -0400 Subject: [PATCH 06/17] use given ISI, BUI & FWI values instead of recalculating for FwiWeather unless USE_GIVEN is not defined --- tbd/src/cpp/FWI.cpp | 28 +++++++++++++++++++++++++--- 1 file changed, 25 insertions(+), 3 deletions(-) diff --git a/tbd/src/cpp/FWI.cpp b/tbd/src/cpp/FWI.cpp index 6311a58c7..847aadf01 100644 --- a/tbd/src/cpp/FWI.cpp +++ b/tbd/src/cpp/FWI.cpp @@ -9,6 +9,7 @@ #ifndef DEBUG_FWI_WEATHER #undef CHECK_CALCULATION #endif +#define USE_GIVEN #define CHECK_EPSILON 0.1 // adapted from http://www.columbia.edu/~rf2426/index_files/FWI.vba //****************************************************************************************** @@ -416,10 +417,17 @@ Isi::Isi(double , const Speed& wind, const Ffmc& ffmc) noexcept +#ifdef USE_GIVEN + : Isi(value) +{ + const auto cmp = Isi(wind, ffmc).asDouble(); +#else : Isi(wind, ffmc) { + const auto cmp = value; +#endif #ifdef CHECK_CALCULATION - logging::check_fatal(abs((*this - Isi(value)).asDouble()) >= CHECK_EPSILON, + logging::check_fatal(abs(asDouble() - cmp) >= CHECK_EPSILON, "ISI is incorrect %f, %f => %f not %f", wind.asDouble(), ffmc.asDouble(), @@ -458,10 +466,17 @@ Bui::Bui(double , const Dmc& dmc, const Dc& dc) noexcept +#ifdef USE_GIVEN + : Bui(value) +{ + const auto cmp = Bui(dmc, dc).asDouble(); +#else : Bui(dmc, dc) { + const auto cmp = value; +#endif #ifdef CHECK_CALCULATION - logging::check_fatal(abs((*this - Bui(value)).asDouble()) >= CHECK_EPSILON, + logging::check_fatal(abs(asDouble() - cmp) >= CHECK_EPSILON, "BUI is incorrect %f, %f => %f not %f", dmc.asDouble(), dc.asDouble(), @@ -504,10 +519,17 @@ Fwi::Fwi(double , const Isi& isi, const Bui& bui) noexcept +#ifdef USE_GIVEN + : Fwi(value) +{ + const auto cmp = Fwi(isi, bui).asDouble(); +#else : Fwi(isi, bui) { + const auto cmp = value; +#endif #ifdef CHECK_CALCULATION - logging::check_fatal(abs((*this - Fwi(value)).asDouble()) >= CHECK_EPSILON, + logging::check_fatal(abs(asDouble() - cmp) >= CHECK_EPSILON, "FWI is incorrect %f, %f => %f not %f", isi.asDouble(), bui.asDouble(), From 0eb3eb4ee7d691664026a4f7aacb1ac71ab7ba3a Mon Sep 17 00:00:00 2001 From: Jordan Evens Date: Mon, 8 Apr 2024 12:21:41 -0400 Subject: [PATCH 07/17] started R script for comparing to cffdrs library --- tbd/validate/calc_fbp.R | 92 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 tbd/validate/calc_fbp.R diff --git a/tbd/validate/calc_fbp.R b/tbd/validate/calc_fbp.R new file mode 100644 index 000000000..dbbd3627f --- /dev/null +++ b/tbd/validate/calc_fbp.R @@ -0,0 +1,92 @@ +library("cffdrs") +library("data.table") +library("jsonlite") +library("testthat") + +# precision to ensure to consider things a match +TOLERANCE <- 0.001 + +DIR <- normalizePath("example") +FILE_JSON <- sprintf("%s/fire.geojson", DIR) +FILE_WX_OUTPUT <- sprintf("%s/output/wx_hourly_out.csv", DIR) + +fire <- fromJSON(FILE_JSON)$features$properties +# fire <- unlist(fromJSON(FILE_JSON)$features$properties) +cols <- c("lat", "lon", "ffmc_old", "dmc_old", "dc_old") +init <- as.data.table(lapply(fire[cols], as.double), + names = cols +) + + +read_wx <- function(path) { + df <- fread(path) + setnames(df, c("Scenario"), c("ID")) + names(df) <- toupper(names(df)) + df[, `:=`( + YR = year(DATE), + MON = month(DATE), + DAY = mday(DATE), + HR = hour(DATE), + MIN = minute(DATE) + )] + df[, `:=`( + LAT = init$lat, + LONG = init$lon + )] + setorder(df, "DATE", "ID") + return(df) +} + + +# # don't worry about input csv hourly calculations for now +# df_fwi <- NULL +# for (id in unique(df_wx$ID)) { +# df_fwi <- rbind( +# df_fwi, +# fwi(df_wx[ID == id], init = init) +# ) +# } +# setorder(df_fwi, "ID", "DATE") +# cols_cmp <- names(df) +# df_cmp <- df_fwi[, ..cols_cmp] +# df_cmp - df + +# fwi() +df_wx_out <- read_wx(FILE_WX_OUTPUT) +df_wx <- df_wx_out[, -c("FFMC", "DMC", "DC", "ISI", "BUI", "FWI")] + +cols_derived <- c("ISI", "BUI", "FWI") +# compare calcuation of dependent variabls +df_fwi <- df_wx_out[, -..cols_derived] +df_fwi[, `:=`( + ISI = cffdrs:::initial_spread_index(FFMC, WS), + BUI = cffdrs:::buildup_index(DMC, DC) +)] +df_fwi[, FWI := cffdrs:::fire_weather_index(ISI, BUI)] + +check_diff <- function(a) { + cols <- names(a) + b <- df_fwi[, ..cols] + testthat::expect_equal(a, b, tolerance = TOLERANCE) +} +check_diff(df_wx_out) +check_diff(df_wx_out[, ..cols_derived]) + +df_wx_out[, FWI := cffdrs:::fire_weather_index(ISI, BUI)] +check_diff(df_wx_out[, ..cols_derived]) + +# df_fbp <- fbp(df_wx_out, output = "ALL") +# TODO: FIX +# Error in slope_values[["WSV"]] : subscript out of bounds +# when no FUELTYPE defined + +df_wx_out[, `:=`( + GS = 0, + DJ = yday(DATE), + ASPECT = 0, + SLOPE = 0, + FUELTYPE = "C2" +)] + + +df_fbp <- fbp(df_wx_out, output = "ALL") From 6daf0b386425a2e93344fce706a74cacbb476467 Mon Sep 17 00:00:00 2001 From: Jordan Evens Date: Tue, 9 Apr 2024 13:48:16 -0400 Subject: [PATCH 08/17] fixed index types comparing to values with different flags --- tbd/src/cpp/FWI.cpp | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/tbd/src/cpp/FWI.cpp b/tbd/src/cpp/FWI.cpp index 847aadf01..efc277459 100644 --- a/tbd/src/cpp/FWI.cpp +++ b/tbd/src/cpp/FWI.cpp @@ -411,7 +411,7 @@ Isi::Isi(const Speed& wind, const Ffmc& ffmc) noexcept { } Isi::Isi(double -#ifdef CHECK_CALCULATION +#if defined(CHECK_CALCULATION) | defined(USE_GIVEN) value #endif , @@ -420,19 +420,23 @@ Isi::Isi(double #ifdef USE_GIVEN : Isi(value) { +#ifdef CHECK_CALCULATION const auto cmp = Isi(wind, ffmc).asDouble(); +#endif #else : Isi(wind, ffmc) { +#ifdef CHECK_CALCULATION const auto cmp = value; #endif +#endif #ifdef CHECK_CALCULATION logging::check_fatal(abs(asDouble() - cmp) >= CHECK_EPSILON, "ISI is incorrect %f, %f => %f not %f", wind.asDouble(), ffmc.asDouble(), asDouble(), - Isi(value).asDouble()); + cmp); #endif } //****************************************************************************************** @@ -460,7 +464,7 @@ static double calculate_bui(const Dmc& dmc, const Dc& dc) noexcept dmc.asDouble() - (1.0 - 0.8 * dc.asDouble() / (dmc.asDouble() + 0.4 * dc.asDouble())) * (0.92 + pow(0.0114 * dmc.asDouble(), 1.7))); } Bui::Bui(double -#ifdef CHECK_CALCULATION +#if defined(CHECK_CALCULATION) | defined(USE_GIVEN) value #endif , @@ -469,19 +473,23 @@ Bui::Bui(double #ifdef USE_GIVEN : Bui(value) { +#ifdef CHECK_CALCULATION const auto cmp = Bui(dmc, dc).asDouble(); +#endif #else : Bui(dmc, dc) { +#ifdef CHECK_CALCULATION const auto cmp = value; #endif +#endif #ifdef CHECK_CALCULATION logging::check_fatal(abs(asDouble() - cmp) >= CHECK_EPSILON, "BUI is incorrect %f, %f => %f not %f", dmc.asDouble(), dc.asDouble(), asDouble(), - Bui(value).asDouble()); + cmp); #endif } Bui::Bui(const Dmc& dmc, const Dc& dc) noexcept @@ -513,7 +521,7 @@ static double calculate_fwi(const Isi& isi, const Bui& bui) noexcept return b; } Fwi::Fwi(double -#ifdef CHECK_CALCULATION +#if defined(CHECK_CALCULATION) | defined(USE_GIVEN) value #endif , @@ -522,19 +530,23 @@ Fwi::Fwi(double #ifdef USE_GIVEN : Fwi(value) { +#ifdef CHECK_CALCULATION const auto cmp = Fwi(isi, bui).asDouble(); +#endif #else : Fwi(isi, bui) { +#ifdef CHECK_CALCULATION const auto cmp = value; #endif +#endif #ifdef CHECK_CALCULATION logging::check_fatal(abs(asDouble() - cmp) >= CHECK_EPSILON, "FWI is incorrect %f, %f => %f not %f", isi.asDouble(), bui.asDouble(), asDouble(), - Fwi(value).asDouble()); + cmp); #endif } Fwi::Fwi(const Isi& isi, const Bui& bui) noexcept From b977fbbd098bdd1d8cb7424f9c2e594903bfd000 Mon Sep 17 00:00:00 2001 From: Jordan Evens Date: Thu, 11 Apr 2024 08:13:27 -0400 Subject: [PATCH 09/17] WIP: added current state of files so they can be pushed to github instead of only on local pc --- .gitignore | 2 +- cmp_grid.sh | 11 + pts_to_shp.py | 164 + tbd/CMakeLists.txt | 1 + tbd/mk_test.sh | 3 + tbd/prep.sh | 27 + tbd/scripts/mk.sh | 10 + tbd/src/cpp/ConvexHull.cpp | 130 + tbd/src/cpp/FWI.cpp | 48 +- tbd/src/cpp/FWI.h | 17 + tbd/src/cpp/FireSpread.cpp | 665 ++- tbd/src/cpp/FireSpread.h | 81 +- tbd/src/cpp/FireWeatherDaily.cpp | 4 - tbd/src/cpp/Index.h | 19 +- tbd/src/cpp/Main.cpp | 1 + tbd/src/cpp/Model.cpp | 131 +- tbd/src/cpp/Model.h | 2 + tbd/src/cpp/ProbabilityMap.cpp | 2 +- tbd/src/cpp/Scenario.cpp | 175 +- tbd/src/cpp/Scenario.h | 9 +- tbd/src/cpp/Settings.cpp | 20 +- tbd/src/cpp/Settings.h | 12 + tbd/src/cpp/StandardFuel.h | 2 +- tbd/src/cpp/Test.cpp | 80 +- tbd/src/cpp/Util.cpp | 29 + tbd/src/cpp/Util.h | 40 + tbd/src/cpp/debug_settings.cpp | 10 +- tbd/src/cpp/debug_settings.h | 10 +- tbd/test_fire.sh | 43 + tbd/test_hull.sh | 126 + tbd/to_fix.md | 2 + tbd/validate/calc_fbp.R | 55 +- tbd/validate/example/sim.sh | 9 + tbd/validate/example/wx.csv | 7560 ------------------------------ tbd/validate/test_fbp.R | 492 ++ test_pts.sh | 7 + 36 files changed, 2312 insertions(+), 7687 deletions(-) create mode 100755 cmp_grid.sh create mode 100644 pts_to_shp.py create mode 100755 tbd/mk_test.sh create mode 100755 tbd/prep.sh create mode 100755 tbd/scripts/mk.sh create mode 100755 tbd/test_fire.sh create mode 100755 tbd/test_hull.sh create mode 100644 tbd/to_fix.md create mode 100644 tbd/validate/test_fbp.R create mode 100755 test_pts.sh diff --git a/.gitignore b/.gitignore index 5c946bb8f..b9b008b15 100644 --- a/.gitignore +++ b/.gitignore @@ -15,4 +15,4 @@ pyfire/venv **/logs **/build **/private - +**/output* \ No newline at end of file diff --git a/cmp_grid.sh b/cmp_grid.sh new file mode 100755 index 000000000..57eedea3d --- /dev/null +++ b/cmp_grid.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +fire="11N_54669" +# file="probability_215_2023-08-03.tif" +# file="007_000001_215_arrival.tif" +file="020_000030_215_.tif" + +docker run -it -v /mnt/data/data/tmp/:/home/out \ + ghcr.io/osgeo/gdal:ubuntu-full-latest gdalcompare.py -skip_binary \ + /home/out/${fire}/${file} \ + /home/out/${fire}.orig/${file} diff --git a/pts_to_shp.py b/pts_to_shp.py new file mode 100644 index 000000000..3ca4df46b --- /dev/null +++ b/pts_to_shp.py @@ -0,0 +1,164 @@ +import math +import os +import re +import shutil + +import geopandas as gpd +import pandas as pd + +CRS_WGS84 = 4326 + +DIR = "../data/test_output" +DIR_SIMS = f"{DIR}/sims" +DIR_OUT = f"{DIR}/gis" + +os.makedirs(DIR_OUT, exist_ok=True) + + +def to_gdf(df, crs=CRS_WGS84): + geometry = df["geometry"] if "geometry" in df else gpd.points_from_xy(df["x"], df["y"], crs=crs) + return gpd.GeoDataFrame(df, crs=crs, geometry=geometry) + + +STAGES = {"N": 0, "S": 1, "C": 2} + + +def find_groups(s): + g = re.fullmatch("(\d*)(.)(\d)*", s).groups() + return [int(g[0]), STAGES[g[1]], int(g[2])] + + +def find_id(s): + scenario, stage, step = find_groups(s) + return step * 10 + stage + + +def to_shp(file, force=False, dir_to=DIR_OUT): + d = os.path.dirname(file) + name = os.path.basename(d) + save_to = f"{dir_to}/{name}.shp" + if not (force or not os.path.exists(save_to)): + return + df = pd.read_csv(file) + print(f"Converting {len(df)} points from {file}") + # df[["scenario", "stage", "step"]] = list(df["step_id"].apply(find_groups)) + df["id"] = df["step_id"].apply(find_id) + gdf = to_gdf(df, crs=None) + # gdf["id"] = gdf.apply(lambda x: x["step"] * 10 + x["stage"], axis=1) + # del gdf["scenario"] + del gdf["step_id"] + del gdf["x"] + del gdf["y"] + gdf.to_file( + save_to, + # schema=schema, + layer=name, + ) + + +def to_gpkg(file, force=False, dir_to=DIR_OUT): + d = os.path.dirname(file) + name = os.path.basename(d) + save_to = f"{dir_to}/{name}.gpkg" + if not (force or not os.path.exists(save_to)): + return + df = pd.read_csv(file) + print(f"Converting {len(df)} points from {file}") + df[["scenario", "stage", "step"]] = list(df["step_id"].apply(find_groups)) + gdf = to_gdf(df, crs=None) + del gdf["step_id"] + del gdf["x"] + del gdf["y"] + gdf.to_file( + save_to, + driver="GPKG", + layer=name, + ) + shutil.make_archive(save_to, "zip", dir_to, os.path.basename(save_to)) + + +def to_parquet(file, force=False, dir_to=DIR_OUT): + d = os.path.dirname(file) + name = os.path.basename(d) + save_to = f"{dir_to}/{name}.parquet" + if not (force or not os.path.exists(save_to)): + df = gpd.read_parquet(save_to) + print(f"Already converted {len(df)} points from {name}") + return + df = pd.read_csv(file) + print(f"Converting {len(df)} points from {name}") + df[["scenario", "stage", "step"]] = list(df["step_id"].apply(find_groups)) + # df = df.loc[(df["step"] < 2) | (df["step"] == df["step"].max())] + df = df.loc[(df["step"] < 1)] + gdf = to_gdf(df, crs=None) + del gdf["step_id"] + del gdf["x"] + del gdf["y"] + gdf.to_parquet(save_to, index=False) + + +angles = [] + + +def add_offsets_calc_ros(theta): + d = math.degrees(theta) + print(d) + angles.append(d) + return True + + +def real_angle(l_b, rads): + # return rads + rx = 1.0 + ry = l_b + x = math.cos(rads) + y = math.sin(rads) + aa = rx * rx + bb = ry * ry + t = aa * bb / ((x * x * bb) + (y * y * aa)) + x *= t + y *= t + y *= rx / ry + return math.atan2(y, x) + + +# angles = [] +# # head_ros +# l_b = 5.0 +# theta = 0 +# cur_x = 0 +# step_x = 0.1 +# added = True +# while added and cur_x < 1: +# theta = abs(math.acos(cur_x) - math.radians(90)) +# added = add_offsets_calc_ros(real_angle(l_b, theta)) +# # added = add_offsets_calc_ros(theta) +# cur_x += step_x + +# if added: +# # added = add_offsets(math.radians(90), flank_ros * math.sqrt(a_sq_sub_c_sq) / a) +# added = add_offsets_calc_ros(math.radians(90)) +# cur_x -= step_x + +# while added and cur_x > 0: +# # theta = math.acos(1.0 - cur_x) +# theta = math.radians(90) + math.acos(cur_x) +# added = add_offsets_calc_ros(real_angle(l_b, theta)) +# # added = add_offsets_calc_ros(theta) +# cur_x -= step_x + +# if added: +# add_offsets_calc_ros(math.radians(180)) + +# angles = [180 - x for x in angles] + + +to_convert = [] +for root, dirs, files in os.walk(DIR_SIMS): + for f in files: + if "_points.txt" in f: + to_convert.append(os.path.join(root, f)) + +to_convert = sorted(to_convert) +for f in to_convert: + to_parquet(f) diff --git a/tbd/CMakeLists.txt b/tbd/CMakeLists.txt index cad459a0b..fefea6104 100644 --- a/tbd/CMakeLists.txt +++ b/tbd/CMakeLists.txt @@ -11,6 +11,7 @@ message("CMAKE_BUILD_TYPE = ${CMAKE_BUILD_TYPE}") # set(CMAKE_CXX_FLAGS "-Wall -Wextra -std=c++23") set(CMAKE_CXX_FLAGS "-Wall -Wextra") +# set(CMAKE_CXX_FLAGS "-Wall -Wextra -Wfatal-errors") add_compile_options( "$<$:-O3;>" "$<$:-O0;-fno-omit-frame-pointer;-g;>" diff --git a/tbd/mk_test.sh b/tbd/mk_test.sh new file mode 100755 index 000000000..5dc8d63d6 --- /dev/null +++ b/tbd/mk_test.sh @@ -0,0 +1,3 @@ +#!/bin/bash +scripts/mk_clean.sh Release +./tbd test ../data/test_output all diff --git a/tbd/prep.sh b/tbd/prep.sh new file mode 100755 index 000000000..20b19745a --- /dev/null +++ b/tbd/prep.sh @@ -0,0 +1,27 @@ +#!/bin/bash +set -x + +d="collected" +g="11N_47610" +r="m3_202308021910" + +scripts/mk_clean.sh + +rm -rf /appl/data/${d} + +dir_to="/appl/data/${d}/${g}/${r}" +pushd /appl/data/sims/${r}/sims/${g} +mkdir -p ${dir_to} +cp * ${dir_to}/ +popd + +./get_grids.sh 00_pc_or_pdf_is_nonfuel +./get_grids.sh 00_pc_or_pdf_is_d1 +./get_grids.sh 00_pc_or_pdf_is_d2 +./get_grids.sh normal + +pushd /appl/data/${d} +FILE_7Z="${g}.7z" +rm -rf ${FILE_7Z} +7za a ${FILE_7Z} ${g}/* +popd diff --git a/tbd/scripts/mk.sh b/tbd/scripts/mk.sh new file mode 100755 index 000000000..15b7b789b --- /dev/null +++ b/tbd/scripts/mk.sh @@ -0,0 +1,10 @@ +#!/bin/bash +# didn't figure out how to do this with cmake yet but this works for now +DIR_BUILD=/appl/tbd/build +VARIANT="$*" +if [ -z "${VARIANT}" ]; then + VARIANT=Release +fi +echo Set VARIANT=${VARIANT} +/usr/bin/cmake --no-warn-unused-cli -DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE -DCMAKE_BUILD_TYPE:STRING=${VARIANT} -S/appl/tbd -B${DIR_BUILD} -G "Unix Makefiles" \ + && /usr/bin/cmake --build ${DIR_BUILD} --config ${VARIANT} --target all -j 50 -- diff --git a/tbd/src/cpp/ConvexHull.cpp b/tbd/src/cpp/ConvexHull.cpp index 031bb3041..d7477d645 100644 --- a/tbd/src/cpp/ConvexHull.cpp +++ b/tbd/src/cpp/ConvexHull.cpp @@ -5,6 +5,25 @@ #include "ConvexHull.h" #include +// hull to condense points +#define DO_HULL +// use quick hull instead of regular if hulling +#define QUICK_HULL + +#ifdef QUICK_HULL +/** + * Implementation of the quickhull algorithm to find a convex hull. + * @param a Points to find hull for + * @param hullPoints Points already in the hull + * @param n1 First point + * @param n2 Second point + */ +void quickHull(const vector& a, + vector& hullPoints, + const tbd::sim::InnerPos& n1, + const tbd::sim::InnerPos& n2) noexcept; +#endif + constexpr double MIN_X = std::numeric_limits::min(); constexpr double MAX_X = std::numeric_limits::max(); // const double TAN_PI_8 = std::tan(std::numbers::pi / 8); @@ -17,6 +36,14 @@ inline constexpr double distPtPt(const tbd::sim::InnerPos& a, const tbd::sim::In { return (std::pow((b.x - a.x), 2) + std::pow((b.y - a.y), 2)); } + +#ifndef DO_HULL +void hull(vector&) noexcept +{ + return; +} +#else +#ifndef QUICK_HULL void hull(vector& a) noexcept { if (a.size() > MAX_BEFORE_CONDENSE) @@ -198,3 +225,106 @@ void hull(vector& a) noexcept tbd::logging::note("Called when shouldn't have"); } } +#else +void hull(vector& a) noexcept +{ + vector hullPoints{}; + tbd::sim::InnerPos maxPos{MIN_X, MIN_X}; + tbd::sim::InnerPos minPos{MAX_X, MAX_X}; + + for (const auto p : a) + { + if (p.x > maxPos.x) + { + maxPos = p; + } + // don't use else if because first point should be set for both + if (p.x < minPos.x) + { + minPos = p; + } + } + + // get rid of max & min nodes & call quickhull + if (maxPos != minPos) + { + a.erase(std::remove(a.begin(), a.end(), maxPos), a.end()); + a.erase(std::remove(a.begin(), a.end(), minPos), a.end()); + quickHull(a, hullPoints, minPos, maxPos); + quickHull(a, hullPoints, maxPos, minPos); + // make sure we have unique points + std::sort(hullPoints.begin(), hullPoints.end()); + hullPoints.erase(std::unique(hullPoints.begin(), hullPoints.end()), hullPoints.end()); + std::swap(a, hullPoints); + } +} + +void quickHull(const vector& a, + vector& hullPoints, + const tbd::sim::InnerPos& n1, + const tbd::sim::InnerPos& n2) noexcept +{ + // printf("Running quick hull\n"); + // exit(-1); + double maxD = -1.0; // just make sure it's not >= 0 + tbd::sim::InnerPos maxPos{MIN_X, MIN_X}; + vector usePoints{}; + // worst case scenario + usePoints.reserve(a.size()); + + // since we do distLinePt so often, calculate the parts that are always the same + const auto abX = (n2.x - n1.x); + const auto abY = (n2.y - n1.y); + /* so instead of: + * return ( (b->x - a->x)*(a->y - p->y) - (a->x - p->x)*(b->y - a->y) ); + * we can do the equivalent of: + * return ( abX*(a->y - p->y) - (a->x - p->x)*abY ); + * for distance from the line n1n2 to the current point + */ + + for (const auto p : a) + { + // loop through points, looking for furthest + const auto d = (abX * (n1.y - p.y) - (n1.x - p.x) * abY); + if (d >= 0) + { + if (d > maxD) + { + // if further away + if (maxD >= 0) + { + // already have one, so add old one to the list + // NOTE: delayed add instead of erasing maxPos later + usePoints.emplace_back(maxPos); + } + // update max dist + maxD = d; + maxPos = p; + } + else + { + // only use in next step if on positive side of line + usePoints.emplace_back(p); + } + } + } + if (maxD > 0 + || (0 == maxD + // we have co-linear points + // if either of these isn't true then this must be an edge + && (distPtPt(n1, maxPos) < distPtPt(n1, n2)) + && (distPtPt(maxPos, n2) < distPtPt(n1, n2)))) + { + // this is not an edge, so recurse on the lines between n1, n2, & maxPos + quickHull(usePoints, hullPoints, n1, maxPos); + quickHull(usePoints, hullPoints, maxPos, n2); + } + else + { + // n1 -> n2 must be an edge + hullPoints.emplace_back(n1); + // Must add n2 as the first point of a different line + } +} +#endif +#endif diff --git a/tbd/src/cpp/FWI.cpp b/tbd/src/cpp/FWI.cpp index efc277459..4b9be92de 100644 --- a/tbd/src/cpp/FWI.cpp +++ b/tbd/src/cpp/FWI.cpp @@ -252,7 +252,7 @@ static double calculate_ffmc(const Temperature& temperature, const Ffmc& ffmc_previous) noexcept { //'''/* 1 '*/ - auto mo = 147.2 * (101.0 - ffmc_previous.asDouble()) / (59.5 + ffmc_previous.asDouble()); + auto mo = ffmc_to_moisture(ffmc_previous); if (rain.asDouble() > 0.5) { //'''/* 2 '*/ @@ -272,7 +272,7 @@ static double calculate_ffmc(const Temperature& temperature, } const auto m = find_m(temperature, rh, wind, mo); //'''/* 10 '*/ - return (59.5 * (250.0 - m) / (147.2 + m)); + return moisture_to_ffmc(m); } Ffmc::Ffmc(const Temperature& temperature, const RelativeHumidity& rh, @@ -400,7 +400,7 @@ static double calculate_isi(const Speed& wind, const Ffmc& ffmc) noexcept //'''/* 24 '*/ const auto f_wind = exp(0.05039 * wind.asDouble()); //'''/* 1 '*/ - const auto m = 147.2 * (101 - ffmc.asDouble()) / (59.5 + ffmc.asDouble()); + const auto m = ffmc_to_moisture(ffmc); //'''/* 25 '*/ const auto f_f = 91.9 * exp(-0.1386 * m) * (1.0 + pow(m, 5.31) / 49300000.0); //'''/* 26 '*/ @@ -415,8 +415,16 @@ Isi::Isi(double value #endif , - const Speed& wind, - const Ffmc& ffmc) noexcept + const Speed& +#if defined(CHECK_CALCULATION) | !defined(USE_GIVEN) + wind +#endif + , + const Ffmc& +#if defined(CHECK_CALCULATION) | !defined(USE_GIVEN) + ffmc +#endif + ) noexcept #ifdef USE_GIVEN : Isi(value) { @@ -468,8 +476,16 @@ Bui::Bui(double value #endif , - const Dmc& dmc, - const Dc& dc) noexcept + const Dmc& +#if defined(CHECK_CALCULATION) | !defined(USE_GIVEN) + dmc +#endif + , + const Dc& +#if defined(CHECK_CALCULATION) | !defined(USE_GIVEN) + dc +#endif + ) noexcept #ifdef USE_GIVEN : Bui(value) { @@ -525,8 +541,16 @@ Fwi::Fwi(double value #endif , - const Isi& isi, - const Bui& bui) noexcept + const Isi& +#if defined(CHECK_CALCULATION) | !defined(USE_GIVEN) + isi +#endif + , + const Bui& +#if defined(CHECK_CALCULATION) | !defined(USE_GIVEN) + bui +#endif + ) noexcept #ifdef USE_GIVEN : Fwi(value) { @@ -624,9 +648,7 @@ FwiWeather::FwiWeather(istringstream* iss, } double ffmc_effect(const Ffmc& ffmc) noexcept { - const auto v = ffmc.asDouble(); - // FIX: use higher precision constant - const auto mc = 147.2 * (101.0 - v) / (59.5 + v); + const auto mc = ffmc_to_moisture(ffmc); return 91.9 * exp(-0.1386 * mc) * (1 + pow(mc, 5.31) / 49300000.0); } FwiWeather::FwiWeather(const Temperature& temp, @@ -648,7 +670,7 @@ FwiWeather::FwiWeather(const Temperature& temp, bui_(Bui(bui.asDouble(), dmc, dc)), fwi_(Fwi(fwi.asDouble(), isi, bui)), // FIX: this is duplicated in ffmc_effect - mc_ffmc_pct_(147.2 * (101 - ffmc.asDouble()) / (59.5 + ffmc.asDouble())), + mc_ffmc_pct_(ffmc_to_moisture(ffmc)), mc_dmc_pct_(exp((dmc.asDouble() - 244.72) / -43.43) + 20), ffmc_effect_(ffmc_effect(ffmc)) { diff --git a/tbd/src/cpp/FWI.h b/tbd/src/cpp/FWI.h index cb160b36f..70f140848 100644 --- a/tbd/src/cpp/FWI.h +++ b/tbd/src/cpp/FWI.h @@ -521,4 +521,21 @@ class FwiWeather { return !(lhs != rhs); } +constexpr auto FFMC_MOISTURE_CONSTANT = 147.27723; +constexpr double ffmc_to_moisture(const double ffmc) noexcept +{ + return FFMC_MOISTURE_CONSTANT * (101.0 - ffmc) / (59.5 + ffmc); +} +constexpr double ffmc_to_moisture(const Ffmc& ffmc) noexcept +{ + return ffmc_to_moisture(ffmc.asDouble()); +} +constexpr double moisture_to_ffmc(const double m) noexcept +{ + return (59.5 * (250.0 - m) / (FFMC_MOISTURE_CONSTANT + m)); +} +constexpr Ffmc ffmc_from_moisture(const double m) noexcept +{ + return Ffmc(moisture_to_ffmc(m)); +} } diff --git a/tbd/src/cpp/FireSpread.cpp b/tbd/src/cpp/FireSpread.cpp index 8c0777308..969ef4c34 100644 --- a/tbd/src/cpp/FireSpread.cpp +++ b/tbd/src/cpp/FireSpread.cpp @@ -11,6 +11,14 @@ #include "unstable.h" namespace tbd::sim { +// hull to condesnse points +#define DO_HULL +// use quick hull instead of regular if hulling +// #define QUICK_HULL +// number of degrees between spread directions +// if not defined then use variable step degrees +// #define STEP + SlopeTableArray make_slope_table() noexcept { // HACK: slope can be infinite, but anything > max is the same as max @@ -27,13 +35,19 @@ SlopeTableArray make_slope_table() noexcept return result; } const SlopeTableArray SpreadInfo::SlopeTable = make_slope_table(); -int calculate_nd_for_point(const int elevation, const topo::Point& point) noexcept +int calculate_nd_ref_for_point(const int elevation, const topo::Point& point) noexcept { + // NOTE: cffdrs R package store longitude West as a positive, so this would be `- long` + const auto latn = elevation <= 0 + ? (46.0 + 23.4 * exp(-0.0360 * (150 + point.longitude()))) + : (43.0 + 33.7 * exp(-0.0351 * (150 + point.longitude()))); + // add 0.5 to round by truncating return static_cast(truncl( - elevation < 0 - ? 0.5 + 151.0 * point.latitude() / (23.4 * exp(-0.0360 * (150 - point.longitude())) + 46.0) - : 0.5 + 142.1 * point.latitude() / (33.7 * exp(-0.0351 * (150 - point.longitude())) + 43.0) - + 0.0172 * elevation)); + 0.5 + (elevation <= 0 ? 151.0 * (point.latitude() / latn) : 142.1 * (point.latitude() / latn) + 0.0172 * elevation))); +} +int calculate_nd_for_point(const Day day, const int elevation, const topo::Point& point) +{ + return static_cast(abs(day - calculate_nd_ref_for_point(elevation, point))); } static double calculate_standard_back_isi_wsv(const double v) noexcept { @@ -59,8 +73,6 @@ double SpreadInfo::initial(SpreadInfo& spread, const wx::FwiWeather& weather, double& ffmc_effect, double& wsv, - bool& is_crown, - double& sfc, double& rso, double& raz, const fuel::FuelType* const fuel, @@ -109,11 +121,12 @@ double SpreadInfo::initial(SpreadInfo& spread, } else { - sfc = fuel->surfaceFuelConsumption(spread); - rso = fuel::FuelType::criticalRos(sfc, critical_surface_intensity); - is_crown = fuel::FuelType::isCrown(critical_surface_intensity, - fuel::fire_intensity(sfc, spread.head_ros_)); - if (is_crown) + spread.sfc_ = fuel->surfaceFuelConsumption(spread); + rso = fuel::FuelType::criticalRos(spread.sfc_, critical_surface_intensity); + const auto sfi = fuel::fire_intensity(spread.sfc_, spread.head_ros_); + spread.is_crown_ = fuel::FuelType::isCrown(critical_surface_intensity, + sfi); + if (spread.is_crown_) { spread.head_ros_ = fuel->finalRos(spread, isi, @@ -123,12 +136,114 @@ double SpreadInfo::initial(SpreadInfo& spread, } return spread.head_ros_; } +static double find_min_ros(const Scenario& scenario, const double time) +{ + return Settings::deterministic() + ? Settings::minimumRos() + : std::max(scenario.spreadThresholdByRos(time), + Settings::minimumRos()); +} SpreadInfo::SpreadInfo(const Scenario& scenario, const double time, const topo::SpreadKey& key, const int nd, const wx::FwiWeather* weather, const wx::FwiWeather* weather_daily) + : SpreadInfo(time, + find_min_ros(scenario, time), + scenario.cellSize(), + key, + nd, + weather, + weather_daily) +{ +} +static topo::SpreadKey make_key(const SlopeSize slope, + const AspectSize aspect, + const char* fuel_name) +{ + const auto lookup = tbd::sim::Settings::fuelLookup(); + const auto key = topo::Cell::key(topo::Cell::hashCell(slope, + aspect, + fuel::FuelType::safeCode(lookup.byName(fuel_name)))); + const auto a = topo::Cell::aspect(key); + const auto s = topo::Cell::slope(key); + const auto fuel = fuel::fuel_by_code(topo::Cell::fuelCode(key)); + logging::check_fatal(s != slope, "Expected slope to be %d but got %d", slope, s); + const auto aspect_expected = 0 == slope ? 0 : aspect; + logging::check_fatal(a != aspect_expected, "Expected aspect to be %d but got %d", aspect_expected, a); + logging::check_fatal(0 != strcmp(fuel->name(), fuel_name), "Expected fuel to be %s but got %s", fuel_name, fuel->name()); + return key; +} +SpreadInfo::SpreadInfo( + const int year, + const int month, + const int day, + const int hour, + const int minute, + const double latitude, + const double longitude, + const ElevationSize elevation, + const SlopeSize slope, + const AspectSize aspect, + const char* fuel_name, + const wx::FwiWeather* weather) + : SpreadInfo(util::to_tm(year, month, day, hour, minute), + latitude, + longitude, + elevation, + slope, + aspect, + fuel_name, + weather) +{ +} +SpreadInfo::SpreadInfo( + const tm& start_date, + const double latitude, + const double longitude, + const ElevationSize elevation, + const SlopeSize slope, + const AspectSize aspect, + const char* fuel_name, + const wx::FwiWeather* weather) + : SpreadInfo(util::to_time(start_date), + 0.0, + 100.0, + slope, + aspect, + fuel_name, + calculate_nd_for_point(start_date.tm_yday, elevation, tbd::topo::Point(latitude, longitude)), + weather) +{ +} +SpreadInfo::SpreadInfo(const double time, + const double min_ros, + const double cell_size, + const SlopeSize slope, + const AspectSize aspect, + const char* fuel_name, + const int nd, + const wx::FwiWeather* weather) + : SpreadInfo(time, min_ros, cell_size, make_key(slope, aspect, fuel_name), nd, weather, weather) +{ +} +SpreadInfo::SpreadInfo(const double time, + const double min_ros, + const double cell_size, + const topo::SpreadKey& key, + const int nd, + const wx::FwiWeather* weather) + : SpreadInfo(time, min_ros, cell_size, key, nd, weather, weather) +{ +} +SpreadInfo::SpreadInfo(const double time, + const double min_ros, + const double cell_size, + const topo::SpreadKey& key, + const int nd, + const wx::FwiWeather* weather, + const wx::FwiWeather* weather_daily) : key_(key), weather_(weather), time_(time), @@ -149,17 +264,12 @@ SpreadInfo::SpreadInfo(const Scenario& scenario, heading_cos = _cos(heading); } // HACK: only use BUI from hourly weather for both calculations - const auto bui_eff = fuel->buiEffect(bui().asDouble()); - const auto min_ros = Settings::deterministic() - ? Settings::minimumRos() - : std::max(scenario.spreadThresholdByRos(time_), - Settings::minimumRos()); + const auto _bui = bui().asDouble(); + const auto bui_eff = fuel->buiEffect(_bui); // FIX: gets calculated when not necessary sometimes const auto critical_surface_intensity = fuel->criticalSurfaceIntensity(*this); double ffmc_effect; double wsv; - bool is_crown; - double sfc; double rso; double raz; if (min_ros > SpreadInfo::initial( @@ -167,8 +277,6 @@ SpreadInfo::SpreadInfo(const Scenario& scenario, *weather_daily, ffmc_effect, wsv, - is_crown, - sfc, rso, raz, fuel, @@ -178,38 +286,40 @@ SpreadInfo::SpreadInfo(const Scenario& scenario, bui_eff, min_ros, critical_surface_intensity) - || sfc < COMPARE_LIMIT) + || sfc_ < COMPARE_LIMIT) { return; } // Now use hourly weather for actual spread calculations - if (min_ros > SpreadInfo::initial(*this, - *weather, - ffmc_effect, - wsv, - is_crown, - sfc, - rso, - raz, - fuel, - has_no_slope, - heading_sin, - heading_cos, - bui_eff, - min_ros, - critical_surface_intensity) - || sfc < COMPARE_LIMIT) + // don't check again if pointing at same weather + if (weather != weather_daily) { - // no spread with hourly weather - // NOTE: only would happen if FFMC hourly is lower than FFMC daily? - return; + if ((min_ros > SpreadInfo::initial(*this, + *weather, + ffmc_effect, + wsv, + rso, + raz, + fuel, + has_no_slope, + heading_sin, + heading_cos, + bui_eff, + min_ros, + critical_surface_intensity) + || sfc_ < COMPARE_LIMIT)) + { + // no spread with hourly weather + // NOTE: only would happen if FFMC hourly is lower than FFMC daily? + return; + } } const auto back_isi = ffmc_effect * STANDARD_BACK_ISI_WSV(wsv); auto back_ros = fuel->calculateRos(nd, *weather, back_isi) * bui_eff; - if (is_crown) + if (is_crown_) { back_ros = fuel->finalRos(*this, back_isi, @@ -239,7 +349,6 @@ SpreadInfo::SpreadInfo(const Scenario& scenario, const auto correction_factor = has_no_slope ? std::function(no_correction) : std::function(do_correction); - const auto cell_size = scenario.cellSize(); const auto add_offset = [this, cell_size, min_ros](const double direction, const double ros) { if (ros < min_ros) @@ -261,18 +370,21 @@ SpreadInfo::SpreadInfo(const Scenario& scenario, head_ros_ = -1; return; } - auto fc = sfc; - // don't need to re-evaluate if crown with new head_ros_ because it would only go up if is_crown - if (fuel->canCrown() && is_crown) + tfc_ = sfc_; + // don't need to re-evaluate if crown with new head_ros_ because it would only go up if is_crown_ + if (fuel->canCrown() && is_crown_) { // wouldn't be crowning if ros is 0 so that's why this is in an else - fc += fuel->crownConsumption(fuel->crownFractionBurned(head_ros_, rso)); + cfb_ = fuel->crownFractionBurned(head_ros_, rso); + cfc_ = fuel->crownConsumption(cfb_); + tfc_ += cfc_; } // max intensity should always be at the head - max_intensity_ = fuel::fire_intensity(fc, ros); + max_intensity_ = fuel::fire_intensity(tfc_, ros); const auto a = (head_ros_ + back_ros) / 2.0; const auto c = a - back_ros; - const auto flank_ros = a / fuel->lengthToBreadth(wsv); + const auto l_b = fuel->lengthToBreadth(wsv); + const auto flank_ros = a / l_b; const auto a_sq = a * a; const auto flank_ros_sq = flank_ros * flank_ros; const auto a_sq_sub_c_sq = a_sq - (c * c); @@ -306,23 +418,456 @@ SpreadInfo::SpreadInfo(const Scenario& scenario, }; const auto add_offsets_calc_ros = [&add_offsets, &calculate_ros](const double angle_radians) { return add_offsets(angle_radians, calculate_ros(angle_radians)); }; - bool added = add_offset(raz, head_ros_); - constexpr size_t STEP = 10; - size_t i = STEP; - while (added && i < 90) + // bool added = add_offset(raz, head_ros_); + bool added = true; + // #ifdef STEP + // constexpr auto step = STEP; + // #else + // // double step = 0; + // // constexpr double step_size = 1; + // // step according to eccentricity of ellipse + // // double step_size = 10.0 / pow(l_b, 6); + // // double step_mult = pow(l_b, 0.25); + // // #define STEP_ANGLE 1 + // // #define STEP_MULT 10 + // // double step = STEP_ANGLE; + // // #define STEP_POWER 4 + // // #define STEP_MULT_POWER 0.25 + // // double step = 10.0 / pow(l_b, STEP_POWER); + // // double step_mult = pow(l_b, STEP_MULT_POWER); + // double step_x = 0.1; + // #endif + // double theta = 0; + // double cur_x = 0; + // // double step = 1; + // // double last_step = 0; + // while (added && theta < 90) + // { + // theta = acos(cur_x) - util::to_radians(90); + // // added = add_offsets_calc_ros(util::to_radians(theta)); + // added = add_offsets_calc_ros(ellipse_angle(l_b, theta)); + // // #ifndef STEP + // // // step += step_size; + // // // step_size *= step_mult; + // // step *= step_mult; + // // #endif + // cur_x += step_x; + // // theta += step; + // // double tmp = last_step; + // // last_step = step; + // // step = last_step + tmp; + // } + // if (added) + // { + // // CHECK: is this using flank ros wrong? + // // this is fine but trying to use epsilon with WS of 40 somehow makes points to sides + // // regardless of ratio, 90 is always the same direction + // added = add_offsets(util::to_radians(90), flank_ros * sqrt(a_sq_sub_c_sq) / a); + // // constexpr auto epsilon = numeric_limits::epsilon(); + // // added = add_offsets_calc_ros(util::to_radians(90) + epsilon); + // // don't worry so much about the back of the fire + // // step *= STEP_MULT; + // // step /= step_mult; + // // theta = 90 + step; + // // step = 10; + // while (added && theta < 180) + // { + // theta = acos(1.0 - cur_x); + // cur_x -= step_x; + + // added = add_offsets_calc_ros(ellipse_angle(l_b, theta)); + // // added = add_offsets_calc_ros(util::to_radians(theta)); + // #ifndef STEP + // // step += step_size; + // // step_size *= step_mult; + // // step *= step_mult; + // // // actually want to return to the same angles we used on the head for the rear + // // step /= step_mult; + // #endif + // // double tmp = last_step; + // // last_step = step; + // // step = last_step + tmp; + // // theta += step; + // } + // if (added) + // { + // // only use back ros if every other angle is spreading since this should be lowest + // // 180 + // if (back_ros < min_ros) + // { + // return; + // } + // const auto direction = util::fix_radians(util::RAD_180 + raz); + // static_cast(!add_offset(direction, back_ros * correction_factor(direction))); + // } + // } + // // static bool showed = false; + // // if (!showed) + // // { + // // logging::note("Generated %ld points for offsets", offsets_.size()); + // // exit(-1); + // // showed = true; + // // } + //////////////////////////////////////// + // #define STEP_X 0.1 + // double step_x = STEP_X; + // // double step_x = STEP_X / l_b; + // double theta = 0; + // double last_theta = 0; + // double cur_x = 0; + // double last_angle = 0; + // // double step = 1; + // // double last_step = 0; + // size_t num_angles = 0; + // while (added && cur_x <= 1.0) + // { + // ++num_angles; + // // theta = abs(acos(cur_x) - util::RAD_090); + // theta = asin(cur_x); + // last_theta = theta; + // last_angle = ellipse_angle(l_b, theta); + // added = add_offsets_calc_ros(last_angle); + // // added = add_offsets_calc_ros(ellipse_angle(l_b, theta)); + // // added = add_offsets_calc_ros(theta); + // cur_x += step_x; + // } + // // at the widest point, but not at the 90 degrees, so need to taper in again + // // we know we're going between last_angle and 90 now + // double angle_step = (util::RAD_090 - last_angle) / num_angles; + // // probably overkill since not worrying about ratio? + // last_angle += angle_step; + // while (added && last_angle < util::RAD_090) + // { + // // last_angle = ellipse_angle(l_b, last_theta); + // added = add_offsets_calc_ros(last_angle); + // // last_theta += angle_step; + // last_angle += angle_step; + // } + // if (added) + // { + // // HACK: pick mid between 90 and last angle because there's a weird gap + // // last_angle = (last_angle + util::RAD_090) / 2.0; + // // added = add_offsets_calc_ros(last_angle); + // // move back half a step + // cur_x -= (step_x / 2.0); + // theta = abs(acos(cur_x) - util::RAD_090); + // added = add_offsets_calc_ros(ellipse_angle(l_b, theta)); + // } + // if (added) + // { + // added = add_offsets(util::RAD_090, flank_ros * sqrt(a_sq_sub_c_sq) / a); + // } + // if (added) + // { + // // // HACK: pick mid after 90 based on last angle because there's a weird gap + // // added = add_offsets_calc_ros((util::RAD_090 + (util::RAD_090 - last_angle)) / 2.0); + // // step_x = STEP_X * pow(l_b, 4); + // // step_x = STEP_X * pow(l_b, 2); + // // step_x = STEP_X * pow(l_b, 1); + // // cur_x = 1.0 - step_x; + // // const auto a = (head_ros_ + back_ros) / 2.0; + // // const auto c = a - back_ros; + // // const auto l_b = fuel->lengthToBreadth(wsv); + // // const auto flank_ros = a / l_b; + // // const auto l_bb = ((head_ros_ + back_ros) / 2.0) / flank_ros; + // const auto l_bb = back_ros / flank_ros; + // // // this is a bit much + // // step_x = STEP_X * l_b; + // // // seems okay + // // step_x = STEP_X / l_bb; + // // also seems pretty good (but probably basically same as STEP_X * l_b) + // step_x = STEP_X * (head_ros_ / flank_ros); + // // step_x = STEP_X * (1.0 / pow(l_bb, 1.5)); + // // step_x = STEP_X * (1.0 / pow(l_bb, 2)); + // // cur_x -= step_x; + // cur_x -= (step_x / 2.0); + // while (added && cur_x >= STEP_X) + // { + // theta = util::RAD_090 + acos(cur_x); + // // added = add_offsets_calc_ros(ellipse_angle(l_b, theta)); + // added = add_offsets_calc_ros(ellipse_angle(l_bb, theta)); + // cur_x -= step_x; + // // added = add_offsets_calc_ros(ellipse_angle(l_b * l_b, theta)); + // // added = add_offsets_calc_ros(theta); + // } + // if (added) + // { + // // only use back ros if every other angle is spreading since this should be lowest + // // 180 + // if (back_ros < min_ros) + // { + // return; + // } + // const auto direction = util::fix_radians(util::RAD_180 + raz); + // static_cast(!add_offset(direction, back_ros * correction_factor(direction))); + // } + // } + ///////////////////////// + // double theta = 0; + // double step = 10; + // double last_angle = 0; + // while (added && theta < 90) + // { + // last_angle = ellipse_angle(l_b, util::to_radians(theta)); + // added = add_offsets_calc_ros(last_angle); + // theta += step; + // } + // if (added) + // { + // added = add_offsets(util::RAD_090, flank_ros * sqrt(a_sq_sub_c_sq) / a); + // } + // while (added && theta < 180) + // { + // last_angle = ellipse_angle(l_b, util::to_radians(theta)); + // added = add_offsets_calc_ros(last_angle); + // theta += step; + // } + // if (added) + // { + // // only use back ros if every other angle is spreading since this should be lowest + // // 180 + // if (back_ros < min_ros) + // { + // return; + // } + // const auto direction = util::fix_radians(util::RAD_180 + raz); + // static_cast(!add_offset(direction, back_ros * correction_factor(direction))); + // } +////////////////////////////////////////////// +#define STEP_X 0.1 +#define STEP_MAX_DEGREES 10.0 +#define STEP_MAX util::to_radians(STEP_MAX_DEGREES) + double step_x = STEP_X; + // double step_x = STEP_X / l_b; + double theta = 0; + double angle = 0; + double last_theta = 0; + double cur_x = 0; + double last_angle = 0; + // double step = 1; + // double last_step = 0; + size_t num_angles = 0; + while (added && cur_x < 1.0) { - added = add_offsets_calc_ros(util::to_radians(i)); - i += STEP; + ++num_angles; + // theta = abs(acos(cur_x) - util::RAD_090); + theta = asin(cur_x); + if ((theta - last_theta) > STEP_MAX) + { + break; + } + angle = ellipse_angle(l_b, theta); + added = add_offsets_calc_ros(angle); + // added = add_offsets_calc_ros(ellipse_angle(l_b, theta)); + // added = add_offsets_calc_ros(theta); + printf("cur_x = %f, theta = %f, angle = %f, last_theta = %f, last_angle = %f\n", + cur_x, + util::to_degrees(theta), + util::to_degrees(angle), + util::to_degrees(last_theta), + util::to_degrees(last_angle)); + last_theta = theta; + last_angle = angle; + cur_x += step_x; + } + // HACK: want to keep things further from 90 degrees so round down to last multiple of max step + last_theta = util::to_radians(static_cast(util::to_degrees(last_theta) / STEP_MAX_DEGREES) * STEP_MAX_DEGREES); + while (added && theta < (util::RAD_090 - STEP_MAX)) + { + theta = last_theta + STEP_MAX; + ++num_angles; + angle = ellipse_angle(l_b, theta); + added = add_offsets_calc_ros(angle); + // added = add_offsets_calc_ros(ellipse_angle(l_b, theta)); + // added = add_offsets_calc_ros(theta); + cur_x = sin(theta); + printf("cur_x = %f, theta = %f, angle = %f, last_theta = %f, last_angle = %f\n", + cur_x, + util::to_degrees(theta), + util::to_degrees(angle), + util::to_degrees(last_theta), + util::to_degrees(last_angle)); + last_theta = theta; + last_angle = angle; } if (added) { - added = add_offsets(util::to_radians(90), flank_ros * sqrt(a_sq_sub_c_sq) / a); - i = 90 + STEP; - while (added && i < 180) + theta = util::RAD_090; + ++num_angles; + angle = ellipse_angle(l_b, theta); + added = add_offsets(util::RAD_090, flank_ros * sqrt(a_sq_sub_c_sq) / a); + cur_x = sin(theta); + printf("cur_x = %f, theta = %f, angle = %f, last_theta = %f, last_angle = %f\n", + cur_x, + util::to_degrees(theta), + util::to_degrees(angle), + util::to_degrees(last_theta), + util::to_degrees(last_angle)); + last_theta = theta; + last_angle = angle; + cur_x = 1.0; + } + if (added) + { + cur_x -= (step_x / 2.0); + // this doesn't work? + // while (added && theta < 180) + // { + // theta = last_theta + STEP_MAX; + // double next_x = sin(theta); + // // if (abs(next_x - cur_x) > step_x) + // // { + // // break; + // // } + // angle = ellipse_angle(l_b, theta); + // added = add_offsets_calc_ros(angle); + // cur_x = sin(theta); + // printf("cur_x = %f, theta = %f, angle = %f, last_theta = %f, last_angle = %f\n", + // cur_x, + // util::to_degrees(theta), + // util::to_degrees(angle), + // util::to_degrees(last_theta), + // util::to_degrees(last_angle)); + // last_theta = theta; + // last_angle = angle; + // // added = add_offsets_calc_ros(ellipse_angle(l_b * l_b, theta)); + // // added = add_offsets_calc_ros(theta); + // } + // double step_min = l_b * STEP_MAX; + // while (added && cur_x > 0 && (theta + step_min) < util::RAD_180) + // { + // theta = max(util::RAD_180 - asin(cur_x), + // last_theta + step_min); + // angle = ellipse_angle(l_b, theta); + // added = add_offsets_calc_ros(angle); + // cur_x = sin(theta); + // printf("cur_x = %f, theta = %f, angle = %f, last_theta = %f, last_angle = %f\n", + // cur_x, + // util::to_degrees(theta), + // util::to_degrees(angle), + // util::to_degrees(last_theta), + // util::to_degrees(last_angle)); + // cur_x -= step_x; + // last_theta = theta; + // last_angle = angle; + // } + double step_min = STEP_MAX; + while (added && cur_x > 0 && (theta + step_min) < util::RAD_180) { - added = add_offsets_calc_ros(util::to_radians(i)); - i += STEP; + theta = max(util::RAD_180 - asin(cur_x), + last_theta + step_min); + angle = ellipse_angle(l_b, theta); + if (abs(angle - last_angle) > step_min) + { + added = add_offsets_calc_ros(angle); + cur_x = sin(theta); + printf("cur_x = %f, theta = %f, angle = %f, last_theta = %f, last_angle = %f\n", + cur_x, + util::to_degrees(theta), + util::to_degrees(angle), + util::to_degrees(last_theta), + util::to_degrees(last_angle)); + last_theta = theta; + last_angle = angle; + } + cur_x -= step_x; } + // double step_min = pow(l_b, 0.5) * STEP_MAX; + // // double x_min = sin(util::RAD_180 - step_min); + // step_x *= pow(l_b, 0.5); + // double x_min = step_x; + // while (added && cur_x > x_min) + // { + // theta = max(util::RAD_180 - asin(cur_x), + // last_theta + step_min); + // angle = ellipse_angle(l_b, theta); + // added = add_offsets_calc_ros(angle); + // cur_x = sin(theta); + // printf("cur_x = %f, theta = %f, angle = %f, last_theta = %f, last_angle = %f\n", + // cur_x, + // util::to_degrees(theta), + // util::to_degrees(angle), + // util::to_degrees(last_theta), + // util::to_degrees(last_angle)); + // cur_x -= step_x; + // last_theta = theta; + // last_angle = angle; + // } + // while (added && theta < 180) + // { + // theta = last_theta + STEP_MAX; + // double next_x = sin(theta); + // if (abs(next_x - cur_x) > step_x) + // { + // break; + // } + // angle = ellipse_angle(l_b, theta); + // added = add_offsets_calc_ros(angle); + // cur_x = sin(theta); + // printf("cur_x = %f, theta = %f, angle = %f, last_theta = %f, last_angle = %f\n", + // cur_x, + // util::to_degrees(theta), + // util::to_degrees(angle), + // util::to_degrees(last_theta), + // util::to_degrees(last_angle)); + // last_theta = theta; + // last_angle = angle; + // // added = add_offsets_calc_ros(ellipse_angle(l_b * l_b, theta)); + // // added = add_offsets_calc_ros(theta); + // } + // const auto l_bb = back_ros / flank_ros; + // // // this is a bit much + // // step_x = STEP_X * l_b; + // // // seems okay + // // step_x = STEP_X / l_bb; + // // double step_min = pow(l_b, 0.5) * STEP_MAX; + // // double x_min = sin(util::RAD_180 - step_min); + // // step_x *= pow(l_b, 0.5); + // // double x_min = step_x; + // // projecting backwards is the same as projecting forward with inverse l_b? + // while (added && cur_x > 0) + // { + // theta = max(util::RAD_180 - asin(cur_x), + // last_theta + step_min); + // angle = ellipse_angle(l_bb, theta); + // added = add_offsets_calc_ros(angle); + // cur_x = sin(theta); + // printf("cur_x = %f, theta = %f, angle = %f, last_theta = %f, last_angle = %f\n", + // cur_x, + // util::to_degrees(theta), + // util::to_degrees(angle), + // util::to_degrees(last_theta), + // util::to_degrees(last_angle)); + // cur_x -= step_x; + // last_theta = theta; + // last_angle = angle; + // } + // double step_min = STEP_MAX; + // double x_min = step_x; + // while (added && cur_x > x_min) + // { + // theta = util::RAD_180 - asin(cur_x); + // angle = ellipse_angle(l_b, theta); + // added = add_offsets_calc_ros(angle); + // cur_x = sin(theta); + // printf("cur_x = %f, theta = %f, angle = %f, last_theta = %f, last_angle = %f\n", + // cur_x, + // util::to_degrees(theta), + // util::to_degrees(angle), + // util::to_degrees(last_theta), + // util::to_degrees(last_angle)); + // // if (abs(angle - last_angle) < STEP_MAX) + // // { + // // break; + // // } + // if (abs(theta - last_theta) < STEP_MAX) + // { + // break; + // } + // cur_x -= step_x; + // last_theta = theta; + // last_angle = angle; + // } if (added) { // only use back ros if every other angle is spreading since this should be lowest diff --git a/tbd/src/cpp/FireSpread.h b/tbd/src/cpp/FireSpread.h index 5a10f691e..3041ff54d 100644 --- a/tbd/src/cpp/FireSpread.h +++ b/tbd/src/cpp/FireSpread.h @@ -15,7 +15,8 @@ class Scenario; /** * \brief Possible results of an attempt to spread. */ -int calculate_nd_for_point(int elevation, const topo::Point& point) noexcept; +int calculate_nd_ref_for_point(const int elevation, const topo::Point& point) noexcept; +int calculate_nd_for_point(const Day day, const int elevation, const topo::Point& point); /** * \brief Information regarding spread within a Cell for a specific Scenario and time. */ @@ -50,7 +51,7 @@ class SpreadInfo * \param threshold Probability of spread threshold * \return Rate of spread at given threshold (m/min) */ - [[nodiscard]] static constexpr double calculateRosFromThreshold(const double threshold) + [[nodiscard]] static constexpr double calculateRosFromThreshold(double threshold) { // for some reason it returns -nan instead of nan if it's 1, so return this instead if (1.0 == threshold) @@ -201,9 +202,10 @@ class SpreadInfo */ [[nodiscard]] constexpr double foliarMoisture() const { + // don't need to check `&& nd_ < 50` in second part because of reordering return nd_ >= 50 ? 120.0 - : nd_ >= 30 && nd_ < 50 + : nd_ >= 30 ? 32.9 + 3.17 * nd_ - 0.0288 * nd_ * nd_ : 85.0 + 0.0189 * nd_ * nd_; } @@ -226,6 +228,48 @@ class SpreadInfo head_ros_ = -1; nd_ = -1; }; + SpreadInfo( + const int year, + const int month, + const int day, + const int hour, + const int minute, + const double latitude, + const double longitude, + const ElevationSize elevation, + const SlopeSize slope, + const AspectSize aspect, + const char* fuel_name, + const wx::FwiWeather* weather); + SpreadInfo( + const tm& start_date, + const double latitude, + const double longitude, + const ElevationSize elevation, + const SlopeSize slope, + const AspectSize aspect, + const char* fuel_name, + const wx::FwiWeather* weather); + double crownFractionBurned() const + { + return cfb_; + } + double crownFuelConsumption() const + { + return cfc_; + } + char fireDescription() const + { + return cfb_ >= 0.9 ? 'C' : (cfb_ < 0.1 ? 'S' : 'I'); + } + double surfaceFuelConsumption() const + { + return sfc_; + } + double totalFuelConsumption() const + { + return tfc_; + } private: // HACK: have private constructor so is_spreading() can short-circuit the calculation, // but nothing else can get a partially constructed SpreadInfo object @@ -244,6 +288,30 @@ class SpreadInfo int nd, const wx::FwiWeather* weather, const wx::FwiWeather* weather_daily); + /** + * Actual fire spread calculation without needing to worry about settings or scenarios + */ + SpreadInfo(double time, + double min_ros, + double cell_size, + const SlopeSize slope, + const AspectSize aspect, + const char* fuel_name, + int nd, + const wx::FwiWeather* weather); + SpreadInfo(double time, + double min_ros, + double cell_size, + const topo::SpreadKey& key, + int nd, + const wx::FwiWeather* weather); + SpreadInfo(double time, + double min_ros, + double cell_size, + const topo::SpreadKey& key, + int nd, + const wx::FwiWeather* weather, + const wx::FwiWeather* weather_daily); /** * Do initial spread calculations * \return Initial head ros calculation (-1 for none) @@ -252,8 +320,6 @@ class SpreadInfo const wx::FwiWeather& weather, double& ffmc_effect, double& wsv, - bool& is_crown, - double& sfc, double& rso, double& raz, const fuel::FuelType* const fuel, @@ -287,6 +353,11 @@ class SpreadInfo * \brief Head fire rate of spread (m/min) */ double head_ros_; + double cfb_; + double cfc_; + double tfc_; + double sfc_; + bool is_crown_; /** * \brief Head fire spread direction */ diff --git a/tbd/src/cpp/FireWeatherDaily.cpp b/tbd/src/cpp/FireWeatherDaily.cpp index 3bfd392bb..b5897b2bf 100644 --- a/tbd/src/cpp/FireWeatherDaily.cpp +++ b/tbd/src/cpp/FireWeatherDaily.cpp @@ -49,10 +49,6 @@ inline double wind_speed_adjustment(const int hour) noexcept { return BY_HOUR.at(static_cast(hour)); } -constexpr Ffmc ffmc_from_moisture(const double x) noexcept -{ - return Ffmc(59.5 * (250 - x) / (147.2 + x)); -} inline Ffmc ffmc_1200(const double x, const double x_sq, const double x_cu, diff --git a/tbd/src/cpp/Index.h b/tbd/src/cpp/Index.h index 35cdb079b..0e612e1fd 100644 --- a/tbd/src/cpp/Index.h +++ b/tbd/src/cpp/Index.h @@ -170,10 +170,17 @@ class LogValue using Index::Index; //! @endcond }; -static constexpr LogValue LOG_0_7{-0.15490195998574316928778374140736}; -static constexpr LogValue LOG_0_75{-0.12493873660829995313244988619387}; -static constexpr LogValue LOG_0_8{-0.09691001300805641435878331582652}; -static constexpr LogValue LOG_0_85{-0.07058107428570726667356900039616}; -static constexpr LogValue LOG_0_9{-0.04575749056067512540994419348977}; -static constexpr LogValue LOG_1_0{0}; +// FIX: why is this log10 and not just log????? +// static constexpr LogValue LOG_0_7{-0.15490195998574316928778374140736}; +// static constexpr LogValue LOG_0_75{-0.12493873660829995313244988619387}; +// static constexpr LogValue LOG_0_8{-0.09691001300805641435878331582652}; +// static constexpr LogValue LOG_0_85{-0.07058107428570726667356900039616}; +// static constexpr LogValue LOG_0_9{-0.04575749056067512540994419348977}; +// static constexpr LogValue LOG_1_0{0}; +static constexpr LogValue LOG_0_7{log(0.7)}; +static constexpr LogValue LOG_0_75{log(0.75)}; +static constexpr LogValue LOG_0_8{log(0.8)}; +static constexpr LogValue LOG_0_85{log(0.85)}; +static constexpr LogValue LOG_0_9{log(0.9)}; +static constexpr LogValue LOG_1_0{log(1.0)}; } diff --git a/tbd/src/cpp/Main.cpp b/tbd/src/cpp/Main.cpp index 2b255b5a4..fa802bf0e 100644 --- a/tbd/src/cpp/Main.cpp +++ b/tbd/src/cpp/Main.cpp @@ -209,6 +209,7 @@ int main(const int argc, const char* const argv[]) register_flag(&Settings::setRunAsync, false, "-s", "Run in synchronous mode"); register_flag(&Settings::setDeterministic, true, "--deterministic", "Run deterministically (100% chance of spread & survival)"); register_flag(&Settings::setSaveAsAscii, true, "--ascii", "Save grids as .asc"); + register_flag(&Settings::setSavePoints, true, "--points", "Save simulation points to file"); register_flag(&Settings::setSaveIntensity, false, "--no-intensity", "Do not output intensity grids"); register_flag(&Settings::setSaveProbability, false, "--no-probability", "Do not output probability grids"); register_flag(&Settings::setSaveOccurrence, true, "--occurrence", "Output occurrence grids"); diff --git a/tbd/src/cpp/Model.cpp b/tbd/src/cpp/Model.cpp index ee3424b0f..7c200016a 100644 --- a/tbd/src/cpp/Model.cpp +++ b/tbd/src/cpp/Model.cpp @@ -70,14 +70,16 @@ Model::Model(const topo::StartPoint& start_point, : start_time_(tm()), running_since_(Clock::now()), time_limit_(Settings::maximumTimeSeconds()), - env_(env) + env_(env), + latitude_(start_point.latitude()), + longitude_(start_point.longitude()) { logging::debug("Calculating for (%f, %f)", start_point.latitude(), start_point.longitude()); const auto nd_for_point = - calculate_nd_for_point(env->elevation(), start_point); + calculate_nd_ref_for_point(env->elevation(), start_point); for (auto day = 0; day < MAX_DAYS; ++day) { - nd_.at(static_cast(day)) = static_cast(day - nd_for_point); + nd_.at(static_cast(day)) = static_cast(abs(day - nd_for_point)); logging::verbose("Day %d has nd %d, is%s green, %d%% curing", day, nd_.at(static_cast(day)), @@ -1088,9 +1090,15 @@ void Model::outputWeather( const char* file_name) { const auto file_out = string(Settings::outputDirectory()) + file_name; + const auto file_out_fbp = string(Settings::outputDirectory()) + string("fbp_") + file_name; FILE* out = fopen(file_out.c_str(), "w"); + FILE* out_fbp = fopen(file_out_fbp.c_str(), "w"); logging::check_fatal(nullptr == out, "Cannot open file %s for output", file_out.c_str()); - fprintf(out, "Scenario,Date,PREC,TEMP,RH,WS,WD,FFMC,DMC,DC,ISI,BUI,FWI\r\n"); + constexpr auto HEADER_FWI = "Scenario,Date,PREC,TEMP,RH,WS,WD,FFMC,DMC,DC,ISI,BUI,FWI"; + constexpr auto HEADER_FBP_PRIMARY = "CFB,CFC,FD,HFI,RAZ,ROS,SFC,TFC"; + // constexpr auto HEADER_FBP_SECONDARY = "BE,SF,ISI,FFMC,FMC,D0,RSO,CSI,FROS,BROS,HROSt,FROSt,BROSt,FCFB,BCFB,FFI,BFI,FTFC,BTFC,TI,FTI,BTI,LB,LBt,WSV,DH,DB,DF,TROS,TROSt,TCFB,TFI,TTFC,TTI"; + fprintf(out, "%s\r\n", HEADER_FWI); + fprintf(out_fbp, "%s,%s\r\n", HEADER_FWI, HEADER_FBP_PRIMARY); size_t i = 0; for (auto& kv : weather) { @@ -1131,12 +1139,127 @@ void Model::outputWeather( w->bui().asDouble(), w->fwi().asDouble(), "\r\n"); + // printf(FMT_OUT, + // i, + // year_, + // static_cast(month), + // static_cast(day_of_month), + // static_cast(hour - day * DAY_HOURS), + // 0, + // 0, + // w->prec().asDouble(), + // w->temp().asDouble(), + // w->rh().asDouble(), + // w->wind().speed().asDouble(), + // w->wind().direction().asDouble(), + // w->ffmc().asDouble(), + // w->dmc().asDouble(), + // w->dc().asDouble(), + // w->isi().asDouble(), + // w->bui().asDouble(), + // w->fwi().asDouble(), + // "\r\n"); + // SlopeSize SLOPE_MAX = 300; + SlopeSize SLOPE_MAX = MAX_SLOPE_FOR_DISTANCE; + SlopeSize SLOPE_INCREMENT = 200; + AspectSize ASPECT_MAX = 360; + AspectSize ASPECT_INCREMENT = 450; + const auto lookup = tbd::sim::Settings::fuelLookup(); + const auto fuel = lookup.byName("C-2"); + for (SlopeSize slope = 0; slope < SLOPE_MAX; slope += SLOPE_INCREMENT) + { + for (AspectSize aspect = 0; aspect < ASPECT_MAX; aspect += ASPECT_INCREMENT) + { + // for (auto f : lookup.usedFuels()) + // const auto FUELS = {"C-1", "C-2", "C-3", "C-4", "C-5", "C-6", "C-7"}; + // for (auto fuel_name : FUELS) + { + const auto fuel_name = fuel->name(); + + // calculate and output fbp + // const auto spread = tbd::sim::SpreadInfo(year_, + const tbd::sim::SpreadInfo spread(year_, + month, + day_of_month, + hour, + 0, + latitude_, + longitude_, + env_->elevation(), + slope, + aspect, + fuel_name, + w); + // constexpr auto HEADER_FBP_PRIMARY = "CFB,CFC,FD,HFI,RAZ,ROS,SFC,TFC"; + constexpr auto FMT_FBP_OUT = "%ld,%d-%02d-%02d %02d:%02d:%02d,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g,%c,%1.6g,%1.6g,%1.6g,%1.6g,%1.6g%s"; + printf(FMT_FBP_OUT, + i, + year_, + static_cast(month), + static_cast(day_of_month), + static_cast(hour - day * DAY_HOURS), + 0, + 0, + w->prec().asDouble(), + w->temp().asDouble(), + w->rh().asDouble(), + w->wind().speed().asDouble(), + w->wind().direction().asDouble(), + w->ffmc().asDouble(), + w->dmc().asDouble(), + w->dc().asDouble(), + w->isi().asDouble(), + w->bui().asDouble(), + w->fwi().asDouble(), + spread.crownFractionBurned(), + spread.crownFuelConsumption(), + spread.fireDescription(), + spread.maxIntensity(), + spread.headDirection().asDegrees(), + spread.headRos(), + spread.surfaceFuelConsumption(), + spread.totalFuelConsumption(), + "\r\n"); + fprintf(out_fbp, + FMT_FBP_OUT, + i, + year_, + static_cast(month), + static_cast(day_of_month), + static_cast(hour - day * DAY_HOURS), + 0, + 0, + w->prec().asDouble(), + w->temp().asDouble(), + w->rh().asDouble(), + w->wind().speed().asDouble(), + w->wind().direction().asDouble(), + w->ffmc().asDouble(), + w->dmc().asDouble(), + w->dc().asDouble(), + w->isi().asDouble(), + w->bui().asDouble(), + w->fwi().asDouble(), + spread.crownFractionBurned(), + spread.crownFuelConsumption(), + spread.fireDescription(), + spread.maxIntensity(), + spread.headDirection().asDegrees(), + spread.headRos(), + spread.surfaceFuelConsumption(), + spread.totalFuelConsumption(), + "\r\n"); + } + } + } } ++hour; } ++i; } logging::check_fatal(0 != fclose(out), "Could not close file %s", file_out.c_str()); + logging::check_fatal(0 != fclose(out_fbp), "Could not close file %s", file_out_fbp.c_str()); + exit(-1); } #endif } diff --git a/tbd/src/cpp/Model.h b/tbd/src/cpp/Model.h index 98dd8bebe..b4e6399bb 100644 --- a/tbd/src/cpp/Model.h +++ b/tbd/src/cpp/Model.h @@ -444,6 +444,8 @@ class Model // * // */ std::chrono::steady_clock::time_point last_checked_; + double latitude_; + double longitude_; }; } } diff --git a/tbd/src/cpp/ProbabilityMap.cpp b/tbd/src/cpp/ProbabilityMap.cpp index ac59bc77e..02b69a6bc 100644 --- a/tbd/src/cpp/ProbabilityMap.cpp +++ b/tbd/src/cpp/ProbabilityMap.cpp @@ -45,7 +45,7 @@ void ProbabilityMap::setPerimeter(const topo::Perimeter* const perimeter) } void ProbabilityMap::addProbabilities(const ProbabilityMap& rhs) { -#ifndef DEBUG_PROBAILITY +#ifndef DEBUG_PROBABILITY logging::check_fatal(rhs.time_ != time_, "Wrong time"); logging::check_fatal(rhs.start_time_ != start_time_, "Wrong start time"); logging::check_fatal(rhs.min_value_ != min_value_, "Wrong min value"); diff --git a/tbd/src/cpp/Scenario.cpp b/tbd/src/cpp/Scenario.cpp index 1c14a1330..405b98dbc 100644 --- a/tbd/src/cpp/Scenario.cpp +++ b/tbd/src/cpp/Scenario.cpp @@ -2,6 +2,11 @@ /* SPDX-License-Identifier: AGPL-3.0-or-later */ +#define LOG_POINTS_RELATIVE +// #undef LOG_POINTS_RELATIVE +#define LOG_POINTS_CELL +#undef LOG_POINTS_CELL + #include "stdafx.h" #include "Scenario.h" #include "Observer.h" @@ -19,6 +24,159 @@ static atomic COMPLETED = 0; static atomic TOTAL_STEPS = 0; static std::mutex MUTEX_SIM_COUNTS; static map SIM_COUNTS{}; + +constexpr auto STAGE_CONDENSE = 'C'; +constexpr auto STAGE_NEW = 'N'; +constexpr auto STAGE_SPREAD = 'S'; +constexpr auto STAGE_INVALID = 'X'; +class LogPoints +{ +public: + ~LogPoints(); + LogPoints(bool do_log, size_t id, double start_time); + void log_point(size_t step, + const char stage, + double time, + double x, + double y); + bool isLogging() const; + template + void log_points(size_t step, + const char stage, + double time, + V points) + { + // don't loop if not logging + if (isLogging()) + { + for (const auto p : points) + { + log_point(step, stage, time, p.x, p.y); + } + } + }; +private: + size_t id_; + double start_time_; + char last_stage_; + size_t last_step_; +#ifdef DEBUG_POINTS + double last_time_; +#endif + char stage_id_[1024]; + /** + * \brief FILE to write logging information about points to + */ + FILE* log_points_; + FILE* log_stages_; +}; +LogPoints::~LogPoints() +{ + if (NULL != log_points_) + { + fclose(log_points_); + fclose(log_stages_); + } +} +LogPoints::LogPoints(bool do_log, size_t id, double start_time) + : id_(id), + start_time_(start_time), + last_stage_(STAGE_INVALID), + last_step_(std::numeric_limits::max()), + stage_id_() +{ + if (do_log) + { + constexpr auto HEADER_STAGES = "step_id,scenario,stage,step,time"; +#ifdef LOG_POINTS_CELL + constexpr auto HEADER_POINTS = "step_id,column,row,x,y\n"; +#else + constexpr auto HEADER_POINTS = "step_id,x,y\n"; +#endif + char log_name[2048]; + sprintf(log_name, "%s/scenario_%05ld_points.txt", Settings::outputDirectory(), id); + log_points_ = fopen(log_name, "w"); + sprintf(log_name, "%s/scenario_%05ld_stages.txt", Settings::outputDirectory(), id); + log_stages_ = fopen(log_name, "w"); + fprintf(log_points_, HEADER_POINTS); + fprintf(log_stages_, HEADER_STAGES); + } + else + { + static_assert(NULL == nullptr); + log_points_ = nullptr; + log_stages_ = nullptr; + } +} +void LogPoints::log_point(size_t step, + const char stage, + double time, + double x, + double y) +{ + if (!isLogging()) + { + return; + } + static const auto FMT_LOG_STAGE = "%s,%ld,%c,%ld,%f\n"; +#ifdef LOG_POINTS_CELL + static const auto FMT_LOG_POINT = "%s,%d,%d,%f,%f\n"; + const auto column = static_cast(x); + const auto row = static_cast(y); +#else + static const auto FMT_LOG_POINT = "%s,%f,%f\n"; +#endif +#ifdef LOG_POINTS_RELATIVE + constexpr auto MID = MAX_COLUMNS / 2; + const auto p_x = x - MID; + const auto p_y = y - MID; + const auto t = time - start_time_; +#else + const auto p_x = x; + const auto p_y = y; + const auto t = time; +#endif + // time should always be the same for each step, regardless of stage + if (last_step_ != step || last_stage_ != stage) + { + sprintf(stage_id_, "%ld%c%ld", id_, stage, step); + last_stage_ = stage; + last_step_ = step; + last_time_ = t; + fprintf(log_stages_, + FMT_LOG_STAGE, + stage_id_, + id_, + stage, + step, + t); +#ifdef DEBUG_POINTS + } + else + { + logging::check_fatal(t != last_time_, + "Expected %s to have time %f but got %f", + stage_id_, + last_time_, + t); +#endif + } + fprintf(log_points_, + FMT_LOG_POINT, + stage_id_, +#ifdef LOG_POINTS_CELL + column, + row, +#endif + p_x, + p_y); +} + +bool LogPoints::isLogging() const +{ + return nullptr != log_points_; +} + void IObserver_deleter::operator()(IObserver* ptr) const { delete ptr; @@ -247,6 +405,13 @@ void Scenario::evaluate(const Event& event) { case Event::FIRE_SPREAD: ++step_; +#ifdef DEBUG_POINTS + // if (tbd::logging::Log::getLogLevel() >= tbd::logging::LOG_VERBOSE) + { + const auto ymd = tbd::make_timestamp(model().year(), event.time()); + log_note("Handling spread event for time %f representing %s with %ld points", event.time(), ymd.c_str(), points_.size()); + } +#endif scheduleFireSpread(event); break; case Event::SAVE: @@ -254,6 +419,7 @@ void Scenario::evaluate(const Event& event) saveStats(event.time()); break; case Event::NEW_FIRE: + log_points_->log_point(step_, STAGE_NEW, event.time(), p.column() + CELL_CENTER, p.row() + CELL_CENTER); // HACK: don't do this in constructor because scenario creates this in its constructor points_[p].emplace_back(p.column() + CELL_CENTER, p.row() + CELL_CENTER); if (fuel::is_null_fuel(event.cell())) @@ -331,6 +497,9 @@ Scenario::Scenario(Model* model, logging::check_fatal(last_save > weather_->maxDate(), "No weather for last save time %s", make_timestamp(model->year(), last_save).c_str()); + log_points_ = make_shared(Settings::savePoints(), + id_, + start_time_); } void Scenario::saveStats(const double time) const { @@ -440,7 +609,7 @@ Scenario& Scenario::operator=(Scenario&& rhs) noexcept } return *this; } -void Scenario::burn(const Event& event, const IntensitySize burn_intensity) +void Scenario::burn(const Event& event, const IntensitySize) { #ifdef DEBUG_SIMULATION log_check_fatal(intensity_->hasBurned(event.cell()), "Re-burning cell"); @@ -470,7 +639,7 @@ string Scenario::add_log(const char* format) const noexcept iss << buffer << format; return iss.str(); } -#ifdef DEBUG_PROBABILITIES +#ifdef DEBUG_PROBABILITY void saveProbabilities(const string& dir, const string& base_name, vector& thresholds) @@ -763,6 +932,7 @@ void Scenario::scheduleFireSpread(const Event& event) for (auto& p : kv.second) { const InnerPos pos = p.add(offset); + log_points_->log_point(step_, STAGE_SPREAD, new_time, pos.x, pos.y); const auto for_cell = cell(pos); const auto source = relativeIndex(for_cell, location); sources[for_cell] |= source; @@ -818,6 +988,7 @@ void Scenario::scheduleFireSpread(const Event& event) // 3 points should just be a triangle usually (could be co-linear, but that's fine hull(kv.second); } + log_points_->log_points(step_, STAGE_CONDENSE, new_time, kv.second); std::swap(points_[for_cell], kv.second); } else diff --git a/tbd/src/cpp/Scenario.h b/tbd/src/cpp/Scenario.h index 8d3782cda..5102ea6b9 100644 --- a/tbd/src/cpp/Scenario.h +++ b/tbd/src/cpp/Scenario.h @@ -3,12 +3,7 @@ /* SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once -#include -#include -#include -#include -#include -#include +#include "stdafx.h" #include "EventCompare.h" #include "FireWeather.h" #include "IntensityMap.h" @@ -19,6 +14,7 @@ #include "FireSpread.h" namespace tbd::sim { +class LogPoints; class IObserver; class Event; using PointSet = vector; @@ -633,6 +629,7 @@ class Scenario * \brief Whether this has been cancelled. */ bool cancelled_ = false; + shared_ptr log_points_; /** * \brief How many times point spread event has happened */ diff --git a/tbd/src/cpp/Settings.cpp b/tbd/src/cpp/Settings.cpp index 51e06cb33..59ff4d6cc 100644 --- a/tbd/src/cpp/Settings.cpp +++ b/tbd/src/cpp/Settings.cpp @@ -86,10 +86,14 @@ class SettingsImplementation * \brief Minimum rate of spread before fire is considered to be spreading (m/min) * \return Minimum rate of spread before fire is considered to be spreading (m/min) */ - [[nodiscard]] constexpr double minimumRos() const noexcept + [[nodiscard]] double minimumRos() const noexcept { return minimum_ros_; } + void setMinimumRos(const double value) noexcept + { + minimum_ros_ = value; + } /** * \brief Maximum distance that the fire is allowed to spread in one step (# of cells) * \return Maximum distance that the fire is allowed to spread in one step (# of cells) @@ -275,7 +279,7 @@ class SettingsImplementation /** * \brief Minimum rate of spread before fire is considered to be spreading (m/min) */ - double minimum_ros_; + atomic minimum_ros_; /** * \brief Maximum distance that the fire is allowed to spread in one step (# of cells) */ @@ -552,6 +556,14 @@ void Settings::setSaveAsAscii(const bool value) noexcept { SettingsImplementation::instance().save_as_ascii = value; } +bool Settings::savePoints() noexcept +{ + return SettingsImplementation::instance().save_points; +} +void Settings::setSavePoints(const bool value) noexcept +{ + SettingsImplementation::instance().save_points = value; +} bool Settings::saveIntensity() noexcept { return SettingsImplementation::instance().save_intensity; @@ -588,6 +600,10 @@ double Settings::minimumRos() noexcept { return SettingsImplementation::instance().minimumRos(); } +void Settings::setMinimumRos(const double value) noexcept +{ + SettingsImplementation::instance().setMinimumRos(value); +} double Settings::maximumSpreadDistance() noexcept { return SettingsImplementation::instance().maximumSpreadDistance(); diff --git a/tbd/src/cpp/Settings.h b/tbd/src/cpp/Settings.h index 3d401e28c..8afcab7f7 100644 --- a/tbd/src/cpp/Settings.h +++ b/tbd/src/cpp/Settings.h @@ -79,6 +79,17 @@ class Settings * \return None */ static void setSaveAsAscii(bool value) noexcept; + /** + * \brief Whether or not to save points used for spread + * \return Whether or not to save points used for spread + */ + [[nodiscard]] static bool savePoints() noexcept; + /** + * \brief Set whether or not to save points used for spread + * \param value Whether or not to save points used for spread + * \return None + */ + static void setSavePoints(bool value) noexcept; /** * \brief Whether or not to save intensity grids * \return Whether or not to save intensity grids @@ -128,6 +139,7 @@ class Settings * \return Minimum rate of spread before fire is considered to be spreading (m/min) */ [[nodiscard]] static double minimumRos() noexcept; + static void setMinimumRos(double value) noexcept; /** * \brief Maximum distance that the fire is allowed to spread in one step (# of cells) * \return Maximum distance that the fire is allowed to spread in one step (# of cells) diff --git a/tbd/src/cpp/StandardFuel.h b/tbd/src/cpp/StandardFuel.h index d7c4486bd..3182504b0 100644 --- a/tbd/src/cpp/StandardFuel.h +++ b/tbd/src/cpp/StandardFuel.h @@ -163,7 +163,7 @@ class StandardFuel [[nodiscard]] double criticalSurfaceIntensity(const SpreadInfo& spread) const noexcept override { - return 0.001 * pow(cbh() * (460.0 + 25.9 * spread.foliarMoisture()), 1.5); + return 0.001 * pow(cbh(), 1.5) * pow(460.0 + 25.9 * spread.foliarMoisture(), 1.5); } /** * \brief Length to Breadth ratio [ST-X-3 eq 79] diff --git a/tbd/src/cpp/Test.cpp b/tbd/src/cpp/Test.cpp index 159e630bc..259fcfaac 100644 --- a/tbd/src/cpp/Test.cpp +++ b/tbd/src/cpp/Test.cpp @@ -136,21 +136,61 @@ class TestScenario final static_cast(reset(nullptr, nullptr, reinterpret_cast(&final_sizes_))); } }; +void showSpread(const SpreadInfo& spread, const wx::FwiWeather* w, const fuel::FuelType* fuel) +{ + constexpr auto FMT_FBP_OUT = "%8.2f%8.1f%8g%8.1f%8g%8.1f%8.1f%8g%8.1f%8.1f%8.1f%8s%8.3f%8.3f%8c%8ld%8g%8.4g%8.4g%8.4g%s"; + static const vector HEADERS{"PREC", "TEMP", "RH", "WS", "WD", "FFMC", "DMC", "DC", "ISI", "BUI", "FWI", "FUEL", "CFB", "CFC", "FD", "HFI", "RAZ", "ROS", "SFC", "TFC"}; + printf("Calculated spread is:\n"); + for (auto h : HEADERS) + { + printf("%8s", h); + } + printf("\n"); + printf(FMT_FBP_OUT, + w->prec().asDouble(), + w->temp().asDouble(), + w->rh().asDouble(), + w->wind().speed().asDouble(), + w->wind().direction().asDouble(), + w->ffmc().asDouble(), + w->dmc().asDouble(), + w->dc().asDouble(), + w->isi().asDouble(), + w->bui().asDouble(), + w->fwi().asDouble(), + fuel->name(), + spread.crownFractionBurned(), + spread.crownFuelConsumption(), + spread.fireDescription(), + static_cast(spread.maxIntensity()), + spread.headDirection().asDegrees(), + spread.headRos(), + spread.surfaceFuelConsumption(), + spread.totalFuelConsumption(), + "\r\n"); +} int run_test(const char* output_directory, const string& fuel_name, const SlopeSize slope, const AspectSize aspect, - const int num_hours, + const double num_hours, const wx::Dc& dc, const wx::Bui& bui, const wx::Dmc& dmc, const wx::Ffmc& ffmc, const wx::Wind& wind) { + const auto year = 2020; + const auto month = 6; + const auto day = 15; + const auto hour = 12; + const auto minute = 0; + const auto t = util::to_tm(year, month, day, hour, minute); + printf("DJ = %d\n", t.tm_yday); static const auto Latitude = 49.3911; static const auto Longitude = -84.7395; static const topo::StartPoint ForPoint(Latitude, Longitude); - const auto start_date = 123; + const auto start_date = t.tm_yday; const auto end_date = start_date + static_cast(num_hours) / DAY_HOURS; util::make_directory_recursive(output_directory); const auto fuel = Settings::fuelLookup().byName(fuel_name); @@ -182,19 +222,34 @@ int run_test(const char* output_directory, const auto start_cell = make_shared(model.cell(start_location)); TestWeather weather(fuel, start_date, dc, bui, dmc, ffmc, wind); TestScenario scenario(&model, start_cell, ForPoint, start_date, end_date, &weather); + const auto w = weather.at(start_date); auto info = SpreadInfo(scenario, start_date, start_cell->key(), model.nd(start_date), - weather.at(start_date)); + w); + showSpread(info, w, fuel); map probabilities{}; + const tbd::sim::SpreadInfo spread(year, + month, + day, + hour, + minute, + Latitude, + Longitude, + env.elevation(), + slope, + aspect, + fuel_name.c_str(), + w); + showSpread(spread, w, fuel); logging::debug("Starting simulation"); // NOTE: don't want to reset first because TestScenario handles what that does scenario.run(&probabilities); scenario.saveObservers(""); logging::note("Final Size: %0.0f, ROS: %0.2f", scenario.currentFireSize(), - info.headRos()); + spread.headRos()); return 0; } const AspectSize ASPECT_INCREMENT = 90; @@ -202,20 +257,29 @@ const SlopeSize SLOPE_INCREMENT = 60; const int WS_INCREMENT = 5; const int WD_INCREMENT = 45; const int MAX_WIND = 50; -const int DEFAULT_HOURS = 10; +const double DEFAULT_HOURS = 10.0; const vector FUEL_NAMES{"C-2", "O-1a", "M-1/M-2 (25 PC)", "S-1", "C-3"}; int test(const int argc, const char* const argv[]) { + // FIX: I think this does a lot of the same things as the test code is doing because it was + // derived from this code + Settings::setDeterministic(true); + Settings::setMinimumRos(0.0); + Settings::setSavePoints(false); const wx::Dc dc(275); const wx::Dmc dmc(35.5); - const wx::Bui bui(54, dmc, dc); + const wx::Bui bui(dmc, dc); const wx::Ffmc ffmc(90); + static const wx::Temperature TEMP(20.0); + static const wx::RelativeHumidity RH(30.0); + static const wx::Precipitation PREC(0.0); assert(argc > 1 && 0 == strcmp(argv[1], "test")); try { // increase logging level because there's no way to on command line right now logging::Log::increaseLogLevel(); - logging::Log::increaseLogLevel(); + // logging::Log::increaseLogLevel(); + // logging::Log::increaseLogLevel(); auto result = 0; // HACK: use a variable and ++ so in case arg indices change auto i = 1; @@ -300,7 +364,7 @@ int test(const int argc, const char* const argv[]) } else { - const auto num_hours = argc > i ? stoi(argv[i++]) : DEFAULT_HOURS; + const auto num_hours = argc > i ? stod(argv[i++]) : DEFAULT_HOURS; const auto slope = static_cast(argc > i ? stoi(argv[i++]) : 0); const auto aspect = static_cast(argc > i ? stoi(argv[i++]) : 0); const wx::Speed wind_speed(argc > i ? stoi(argv[i++]) : 20); diff --git a/tbd/src/cpp/Util.cpp b/tbd/src/cpp/Util.cpp index a38a9cb03..f926b9d1c 100644 --- a/tbd/src/cpp/Util.cpp +++ b/tbd/src/cpp/Util.cpp @@ -110,6 +110,35 @@ void make_directory_recursive(const char* dir) noexcept } make_directory(tmp); } +tm to_tm(const int year, + const int month, + const int day, + const int hour, + const int minute) +{ + // do this to calculate yday + tm t{}; + t.tm_year = year - 1900; + t.tm_mon = month - 1; + t.tm_mday = day; + t.tm_hour = hour; + t.tm_min = minute; + mktime(&t); + return t; +} +double to_time(const tm& t) +{ + return t.tm_yday + + ((t.tm_hour + (static_cast(t.tm_min) / HOUR_MINUTES)) / DAY_HOURS); +} +double to_time(const int year, + const int month, + const int day, + const int hour, + const int minute) +{ + return to_time(to_tm(year, month, day, hour, minute)); +} void read_date(istringstream* iss, string* str, tm* t) { *t = {}; diff --git a/tbd/src/cpp/Util.h b/tbd/src/cpp/Util.h index 5c5dd8e66..bb2d22c39 100644 --- a/tbd/src/cpp/Util.h +++ b/tbd/src/cpp/Util.h @@ -134,10 +134,18 @@ template * \brief 360 degrees in radians */ static constexpr double RAD_360 = to_radians(360); +/** + * \brief 270 degrees in radians + */ +static constexpr double RAD_270 = to_radians(270); /** * \brief 180 degrees in radians */ static constexpr double RAD_180 = to_radians(180); +/** + * \brief 90 degrees in radians + */ +static constexpr double RAD_090 = to_radians(90); /** * \brief Convert radians to degrees * \param radians Value in radians @@ -258,6 +266,25 @@ template static const auto b = pow_int(10); return round(value * b) / b; } +/** + * \brief Convert date and time into internal represenation + * \param year year + * \param month month + * \param day day of month + * \param hour hour + * \param minute minute + */ +tm to_tm(const int year, + const int month, + const int day, + const int hour, + const int minute); +double to_time(const tm& t); +double to_time(const int year, + const int month, + const int day, + const int hour, + const int minute); /** * \brief Read a date from the given stream * \param iss Stream to read from @@ -400,4 +427,17 @@ void month_and_day(const int year, const size_t day_of_year, size_t* month, size * @return YYYY-mm-dd HH:00 time string for given time */ [[nodiscard]] string make_timestamp(const int year, const double time); +/** + * Convert circle angle to the angle that would be on an ellipse with + * given length-to-breadth ratio + * @param length_to_breadth length-to-breadth ratio + * @param theta direction to convert to ellipse direction (radians) + */ +[[nodiscard]] inline double ellipse_angle(const double length_to_breadth, + const double theta) +{ + return (util::fix_radians( + atan2(sin(theta) / length_to_breadth, + cos(theta)))); +} } diff --git a/tbd/src/cpp/debug_settings.cpp b/tbd/src/cpp/debug_settings.cpp index 1d1adcc55..03b49a91b 100644 --- a/tbd/src/cpp/debug_settings.cpp +++ b/tbd/src/cpp/debug_settings.cpp @@ -32,6 +32,9 @@ void show_debug_settings() #ifdef NDEBUG printf_centered("NDEBUG"); #endif +#ifdef DEBUG_FBP + printf_centered("DEBUG_FBP"); +#endif #ifdef DEBUG_FUEL_VARIABLE printf_centered("DEBUG_FUEL_VARIABLE"); #endif @@ -41,8 +44,11 @@ void show_debug_settings() #ifdef DEBUG_GRIDS printf_centered("DEBUG_GRIDS"); #endif -#ifdef DEBUG_PROBAILITY - printf_centered("DEBUG_PROBAILITY"); +#ifdef DEBUG_POINTS + printf_centered("DEBUG_POINTS"); +#endif +#ifdef DEBUG_PROBABILITY + printf_centered("DEBUG_PROBABILITY"); #endif #ifdef DEBUG_SIMULATION printf_centered("DEBUG_SIMULATION"); diff --git a/tbd/src/cpp/debug_settings.h b/tbd/src/cpp/debug_settings.h index e3ce29797..90291aee8 100644 --- a/tbd/src/cpp/debug_settings.h +++ b/tbd/src/cpp/debug_settings.h @@ -5,27 +5,31 @@ #pragma once // if in debug mode then set everything, otherwise uncomment turning things off if trying to debug specific things +#define DEBUG_FBP #define DEBUG_FUEL_VARIABLE #define DEBUG_FWI_WEATHER #define DEBUG_GRIDS -#define DEBUG_PROBAILITY +#define DEBUG_POINTS +#define DEBUG_PROBABILITY #define DEBUG_SIMULATION #define DEBUG_STATISTICS #define DEBUG_WEATHER #ifdef NDEBUG +#undef DEBUG_FBP #undef DEBUG_FUEL_VARIABLE #undef DEBUG_FWI_WEATHER #undef DEBUG_GRIDS -#undef DEBUG_PROBAILITY +// #undef DEBUG_POINTS +#undef DEBUG_PROBABILITY #undef DEBUG_SIMULATION #undef DEBUG_STATISTICS #undef DEBUG_WEATHER #endif -#if defined(NDEBUG) || defined(DEBUG_FUEL_VARIABLE) || defined(DEBUG_FWI_WEATHER) || defined(DEBUG_GRIDS) || defined(DEBUG_PROBABILITY) || defined(DEBUG_FWI_WEATHER) || defined(DEBUG_FWI_WEATHER) || defined(DEBUG_FWI_WEATHER) +#if defined(NDEBUG) || defined(DEBUG_FBP) || defined(DEBUG_FUEL_VARIABLE) || defined(DEBUG_FWI_WEATHER) || defined(DEBUG_GRIDS) || defined(DEBUG_POINTS) || defined(DEBUG_PROBABILITY) || defined(DEBUG_FWI_WEATHER) || defined(DEBUG_FWI_WEATHER) || defined(DEBUG_FWI_WEATHER) #define DEBUG_ANY #endif diff --git a/tbd/test_fire.sh b/tbd/test_fire.sh new file mode 100755 index 000000000..79352d0e7 --- /dev/null +++ b/tbd/test_fire.sh @@ -0,0 +1,43 @@ +#!/bin/bash + +############## +# ./scripts/mk_clean.sh Release + +set -e + +DIR_BUILD=/appl/tbd/build +# VARIANT="$*" +# if [ -z "${VARIANT}" ]; then + VARIANT=Release +# VARIANT=Debug +# fi +echo Set VARIANT=${VARIANT} +rm -rf ${DIR_BUILD} \ + && /usr/bin/cmake --no-warn-unused-cli -DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE -DCMAKE_BUILD_TYPE:STRING=${VARIANT} -S/appl/tbd -B${DIR_BUILD} -G "Unix Makefiles" \ + && /usr/bin/cmake --build ${DIR_BUILD} --config ${VARIANT} --target all -j 50 -- + +################# + +dir="/appl/data/tmp/11N_54669" +# intensity="" +intensity="-i" +# intensity="--no-intensity" +dates="--output_date_offsets [1,2,3]" +# dates="--output_date_offsets {1,2,3}" +opts="--sim-area" +pushd ${dir} +set +e + +rm probability* +rm intensity* +rm 0*.tif +rm *out* +rm sizes* +rm dem* +rm fuel* +rm simulation_area* +set -e + +/appl/tbd/tbd . 2023-08-03 60.38716700000001 -116.272017 01:00 ${intensity} ${opts} --ffmc 86.0 --dmc 118.4 --dc 826.1 --apcp_prev 0 -v ${dates} --wx firestarr_11N_54669_wx.csv --perim 11N_54669.tif $* +popd +diff -rq ${dir}.orig ${dir} diff --git a/tbd/test_hull.sh b/tbd/test_hull.sh new file mode 100755 index 000000000..8f8d24e32 --- /dev/null +++ b/tbd/test_hull.sh @@ -0,0 +1,126 @@ +#!/bin/bash +set -e + +DIR="../data/test_output" +DIR_SIMS="${DIR}/sims" +DIR_LOGS="${DIR}/logs" +DURATION=0.1 +MAX_DIR=359 + +# MAX_SPEED=50 +# MAX_SLOPE=200 +# STEP_SPEED=5 +# STEP_DIR=5 +# STEP_SLOPE=10 + +MAX_SPEED=50 +MAX_SLOPE=60 +STEP_SPEED=5 +STEP_DIR=15 +STEP_SLOPE=30 + +SPEEDS=(`seq -s ' ' 0 ${STEP_SPEED} ${MAX_SPEED}`) +DIRECTIONS=(`seq -s ' ' 0 ${STEP_DIR} ${MAX_DIR}`) +SLOPES=(`seq -s ' ' 0 ${STEP_SLOPE} ${MAX_SLOPE}`) +SPREAD_STEPS=( 20 15 10 5 1 0 ) +HULLS=( quick normal off ) + +# SPEEDS=( 10 ) +# SPEEDS=( 40 ) +DIRECTIONS=( 0 ) +SLOPES=( 0 ) +SPREAD_STEPS=( 0 ) +# HULLS=( quick normal ) +HULLS=( quick ) + +# # STEP_POWER_STEPS=1 +# STEP_POWER_STEPS=2 +# MAX_STEP_POWER=10 +# STEP_POWERS=(`seq -s ' ' ${STEP_POWER_STEPS} ${STEP_POWER_STEPS} ${MAX_STEP_POWER}`) + + +# # STEP_MULT_POWER_STEPS=0.05 +# STEP_MULT_POWER_STEPS=0.25 +# MAX_STEP_MULT_POWER=0.99 +# STEP_MULT_POWERS=(`seq -s ' ' ${STEP_MULT_POWER_STEPS} ${STEP_MULT_POWER_STEPS} ${MAX_STEP_MULT_POWER}`) + + +mkdir -p ${DIR_LOGS} +mkdir -p ${DIR_SIMS} +DIR_BUILD=/appl/tbd/build +VARIANT="$*" +if [ -z "${VARIANT}" ]; then + VARIANT=Release +fi +echo Set VARIANT=${VARIANT} +/usr/bin/cmake --no-warn-unused-cli -DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE -DCMAKE_BUILD_TYPE:STRING=${VARIANT} -S/appl/tbd -B${DIR_BUILD} -G "Unix Makefiles" \ + +function run_with_settings() { + # echo "${*}" + algo="nohull" + spread_step="${1}" + step_pad=`printf "%03g" ${spread_step}` + if [ "${2}" == "off" ]; then + do_hull="\/\/ " + else + do_hull="" + if [ "${2}" == "quick" ]; then + algo="quickhull" + quick_hull="" + else + algo="condense16" + quick_hull="\/\/ " + fi + fi + # for step in "${STEP_POWERS[@]}" ; do + # for step_mult in "${STEP_MULT_POWERS[@]}" ; do + # test="${algo}_${step_pad}" + # echo "Running test for ${test}" + sed -i "s/.*#define DO_HULL/${do_hull}#define DO_HULL/" src/cpp/ConvexHull.cpp + sed -i "s/.*#define QUICK_HULL/${quick_hull}#define QUICK_HULL/" src/cpp/ConvexHull.cpp + if [ "${spread_step}" == 0 ]; then + sed -i "s/^.*#define STEP[^_\\n\\r]*$/\/\/ #define STEP/" src/cpp/FireSpread.cpp + else + sed -i "s/^.*#define STEP[^_\\n\\r]*$/#define STEP ${spread_step}/" src/cpp/FireSpread.cpp + fi + # sed -i "s/.*#define STEP_POWER.*/#define STEP_POWER ${step}/" src/cpp/FireSpread.cpp + # sed -i "s/.*#define STEP_MULT_POWER.*/#define STEP_MULT_POWER ${step_mult}/" src/cpp/FireSpread.cpp + /usr/bin/cmake --build ${DIR_BUILD} --config ${VARIANT} --target all -j 50 -- + for ws in "${SPEEDS[@]}" ; do + for wd in "${DIRECTIONS[@]}" ; do + for slope in "${SLOPES[@]}" ; do + for aspect in "${DIRECTIONS[@]}" ; do + # C2_S000_A000_WD000_WS000 + # f_step=`printf '%03g' ${step}` + # f_mult=`printf '%03g' ${step_mult}` + f_slope=`printf '%03d' ${slope}` + f_aspect=`printf '%03d' ${aspect}` + f_wd=`printf '%03d' ${wd}` + f_ws=`printf '%03d' ${ws}` + test="${algo}_${step_pad}_C2_S${f_slope}_A${f_aspect}_WD${f_wd}_WS${f_ws}" + # test="S${f_step}_P${f_mult}_${test}" + dir_path="${DIR_SIMS}/${test}" + if [ -d ${dir_path} ]; then + echo "Already ran test for ${dir_path}" + else + mkdir -p ${dir_path} + echo "Running test for ${test}" + ./tbd test ${dir_path} ${DURATION} ${slope} ${aspect} ${ws} ${wd} > ${DIR_LOGS}/${test}.log + fi + done + done + done + done + # done + # done +} + +# rm -rf ${DIR} +for hull in "${HULLS[@]}" ; do + # echo "${hull}" + for spread_step in "${SPREAD_STEPS[@]}" ; do + # echo "${spread_step}" + run_with_settings "${spread_step}" "${hull}" + done +done + diff --git a/tbd/to_fix.md b/tbd/to_fix.md new file mode 100644 index 000000000..fbfac56c5 --- /dev/null +++ b/tbd/to_fix.md @@ -0,0 +1,2 @@ +for some reason defining this crashes things: +400,400,Boreal Mixedwood - Leafless (00% Conifer),M-1,255,211,127,28,255,191 diff --git a/tbd/validate/calc_fbp.R b/tbd/validate/calc_fbp.R index dbbd3627f..97a167e07 100644 --- a/tbd/validate/calc_fbp.R +++ b/tbd/validate/calc_fbp.R @@ -9,6 +9,7 @@ TOLERANCE <- 0.001 DIR <- normalizePath("example") FILE_JSON <- sprintf("%s/fire.geojson", DIR) FILE_WX_OUTPUT <- sprintf("%s/output/wx_hourly_out.csv", DIR) +FILE_FBP_OUTPUT <- sprintf("%s/output/fbp_wx_hourly_out.csv", DIR) fire <- fromJSON(FILE_JSON)$features$properties # fire <- unlist(fromJSON(FILE_JSON)$features$properties) @@ -20,14 +21,15 @@ init <- as.data.table(lapply(fire[cols], as.double), read_wx <- function(path) { df <- fread(path) - setnames(df, c("Scenario"), c("ID")) + # setnames(df, c("Scenario"), c("ID")) names(df) <- toupper(names(df)) df[, `:=`( YR = year(DATE), MON = month(DATE), DAY = mday(DATE), HR = hour(DATE), - MIN = minute(DATE) + MIN = minute(DATE), + ID = .I )] df[, `:=`( LAT = init$lat, @@ -64,16 +66,17 @@ df_fwi[, `:=`( )] df_fwi[, FWI := cffdrs:::fire_weather_index(ISI, BUI)] -check_diff <- function(a) { - cols <- names(a) - b <- df_fwi[, ..cols] +check_diff <- function(a, b) { + cols <- intersect(names(a), names(b)) + a <- as.data.table(a)[, ..cols] + b <- as.data.table(b)[, ..cols] testthat::expect_equal(a, b, tolerance = TOLERANCE) } -check_diff(df_wx_out) -check_diff(df_wx_out[, ..cols_derived]) +check_diff(df_wx_out, df_fwi) +check_diff(df_wx_out[, ..cols_derived], df_fwi) df_wx_out[, FWI := cffdrs:::fire_weather_index(ISI, BUI)] -check_diff(df_wx_out[, ..cols_derived]) +check_diff(df_wx_out[, ..cols_derived], df_fwi) # df_fbp <- fbp(df_wx_out, output = "ALL") # TODO: FIX @@ -88,5 +91,39 @@ df_wx_out[, `:=`( FUELTYPE = "C2" )] +df_fbp_out <- read_wx(FILE_FBP_OUTPUT) -df_fbp <- fbp(df_wx_out, output = "ALL") +write_sig <- function(df, filename, sigdigs = 5) { + fwrite(signif(df[, -c("DATE", "FD")], sigdigs), filename) +} +do_fbp <- function(df) { + filename <- sprintf("%s/output/fbp_cffdrs.csv", DIR) + df_fbp <- as.data.table(fbp(df, output = "ALL")) + # # HACK: want head fire ROS + cols_rm <- intersect(names(df_fbp), names(df)) + cols <- intersect(names(df_fbp), names(df_fbp_out)) + df_fbp <- cbind(df, df_fbp[, -..cols_rm]) + # df_fbp <- merge(df, df_fbp, by = c("ID")) + setorder(df_fbp, "SCENARIO", "DATE") + df_fbp <- df_fbp[, ..cols] + write_sig(df_fbp, filename) + write_sig(df_fbp_out[, ..cols], sprintf("%s/output/fbp_out.csv", DIR)) + return(df_fbp) +} +# df_fbp <- do_fbp(df_wx_out, output = "PRIMARY") +# df_fbp <- do_fbp(df_wx_out, output = "SECONDARY") +# df_fbp <- do_fbp(df_wx_out, output = "ALL") +df_fbp <- do_fbp(df_wx_out) + +# check_diff(df_fbp_out[, -c("ID")], df_fbp) + +# merge(df_fbp, df_fbp_out, by = c("ID", "DATE")) + +# df_fbp_out[df_fbp$FD != df_fbp_out$FD] + +# a <- df_fbp_out[, -c("ID", "DATE")] +# b <- df_fbp +# cols <- intersect(names(a), names(df_fbp)) +# a <- as.data.table(a)[, ..cols] +# b <- as.data.table(b)[, ..cols] +# testthat::expect_equal(a, b, tolerance = TOLERANCE) diff --git a/tbd/validate/example/sim.sh b/tbd/validate/example/sim.sh index f6ee267c0..7852e24bc 100755 --- a/tbd/validate/example/sim.sh +++ b/tbd/validate/example/sim.sh @@ -32,4 +32,13 @@ rm -rf ${DIR_OUT} --output_date_offsets "[1]" \ --wx "wx.csv" + +DIR_ORIG="${DIR_OUT}.orig" +if [ -d ${DIR_ORIG} ]; then +diff -rq ${DIR_OUT} ${DIR_ORIG} +else +echo "Storing outputs as original outputs since those don't exist yet" +cp -r ${DIR_OUT}/ ${DIR_ORIG} +fi + popd diff --git a/tbd/validate/example/wx.csv b/tbd/validate/example/wx.csv index f9b469353..29cb1545e 100644 --- a/tbd/validate/example/wx.csv +++ b/tbd/validate/example/wx.csv @@ -377,7563 +377,3 @@ Scenario,Date,PREC,TEMP,RH,WS,WD,FFMC,DMC,DC,ISI,BUI,FWI 0,2023-08-18 15:00:00,0.000000,19.800000,36.000000,9.000000,136.000000,87.650000,166.310000,937.980000,4.810000,230.460000,24.080000 0,2023-08-18 16:00:00,0.000000,19.800000,36.000000,9.000000,136.000000,87.960000,166.640000,938.780000,5.030000,230.840000,24.840000 0,2023-08-18 17:00:00,0.000000,23.700000,27.000000,10.000000,133.000000,88.700000,167.130000,939.940000,5.880000,231.400000,27.680000 -1,2023-08-03 00:00:00,0.000000,15.300000,64.000000,5.000000,93.000000,85.970000,118.400000,826.100000,3.100000,174.330000,16.840000 -1,2023-08-03 01:00:00,0.000000,15.300000,64.000000,5.000000,93.000000,85.950000,118.400000,826.100000,3.090000,174.330000,16.800000 -1,2023-08-03 02:00:00,0.000000,12.700000,72.000000,2.000000,119.000000,85.740000,118.400000,826.100000,2.580000,174.330000,14.660000 -1,2023-08-03 03:00:00,0.000000,12.700000,72.000000,2.000000,119.000000,85.560000,118.400000,826.100000,2.520000,174.330000,14.380000 -1,2023-08-03 04:00:00,0.000000,12.700000,72.000000,2.000000,119.000000,85.400000,118.400000,826.100000,2.460000,174.330000,14.130000 -1,2023-08-03 05:00:00,0.000000,11.400000,78.000000,1.000000,319.000000,85.130000,118.440000,826.180000,2.250000,174.380000,13.190000 -1,2023-08-03 06:00:00,0.000000,11.400000,78.000000,1.000000,319.000000,84.880000,118.480000,826.270000,2.180000,174.430000,12.850000 -1,2023-08-03 07:00:00,0.000000,11.400000,78.000000,1.000000,319.000000,84.660000,118.520000,826.350000,2.110000,174.480000,12.540000 -1,2023-08-03 08:00:00,0.000000,17.000000,57.000000,2.000000,320.000000,84.750000,118.630000,826.590000,2.250000,174.610000,13.170000 -1,2023-08-03 09:00:00,0.000000,17.000000,57.000000,2.000000,320.000000,84.820000,118.740000,826.830000,2.270000,174.750000,13.290000 -1,2023-08-03 10:00:00,0.000000,17.000000,57.000000,2.000000,320.000000,84.900000,118.850000,827.070000,2.300000,174.880000,13.390000 -1,2023-08-03 11:00:00,0.000000,23.400000,33.000000,8.000000,54.000000,85.850000,119.110000,827.620000,3.540000,175.190000,18.620000 -1,2023-08-03 12:00:00,0.000000,23.400000,33.000000,8.000000,54.000000,86.650000,119.370000,828.160000,3.970000,175.500000,20.240000 -1,2023-08-03 13:00:00,0.000000,23.400000,33.000000,8.000000,54.000000,87.340000,119.630000,828.710000,4.380000,175.810000,21.720000 -1,2023-08-03 14:00:00,0.000000,24.900000,30.000000,12.000000,35.000000,88.160000,119.920000,829.340000,6.020000,176.160000,27.150000 -1,2023-08-03 15:00:00,0.000000,24.900000,30.000000,12.000000,35.000000,88.830000,120.220000,829.970000,6.630000,176.520000,29.010000 -1,2023-08-03 16:00:00,0.000000,24.900000,30.000000,12.000000,35.000000,89.380000,120.510000,830.600000,7.180000,176.870000,30.630000 -1,2023-08-03 17:00:00,0.000000,24.600000,31.000000,14.000000,38.000000,89.800000,120.800000,831.210000,8.430000,177.210000,34.110000 -1,2023-08-03 18:00:00,0.000000,24.600000,31.000000,14.000000,38.000000,90.140000,121.080000,831.810000,8.850000,177.550000,35.250000 -1,2023-08-03 19:00:00,0.000000,24.600000,31.000000,14.000000,38.000000,90.420000,121.370000,832.420000,9.210000,177.890000,36.200000 -1,2023-08-03 20:00:00,0.000000,21.800000,40.000000,5.000000,27.000000,90.420000,121.580000,832.870000,5.850000,178.150000,26.690000 -1,2023-08-03 21:00:00,0.000000,21.800000,40.000000,5.000000,27.000000,90.420000,121.790000,833.320000,5.850000,178.400000,26.700000 -1,2023-08-03 22:00:00,0.000000,21.800000,40.000000,5.000000,27.000000,90.420000,121.790000,833.320000,5.850000,178.400000,26.700000 -1,2023-08-03 23:00:00,0.000000,15.700000,67.000000,7.000000,274.000000,89.780000,121.790000,833.320000,5.910000,178.400000,26.870000 -1,2023-08-04 00:00:00,0.000000,15.700000,67.000000,7.000000,274.000000,89.220000,121.790000,833.320000,5.450000,178.400000,25.420000 -1,2023-08-04 01:00:00,0.000000,15.700000,67.000000,7.000000,274.000000,88.740000,121.790000,833.320000,5.080000,178.400000,24.210000 -1,2023-08-04 02:00:00,0.000000,13.100000,90.000000,7.000000,263.000000,87.480000,121.790000,833.320000,4.250000,178.400000,21.320000 -1,2023-08-04 03:00:00,0.000000,13.100000,90.000000,7.000000,263.000000,86.400000,121.790000,833.320000,3.640000,178.400000,19.070000 -1,2023-08-04 04:00:00,0.000000,13.100000,90.000000,7.000000,263.000000,85.460000,121.790000,833.320000,3.190000,178.400000,17.300000 -1,2023-08-04 05:00:00,0.000000,12.200000,97.000000,7.000000,250.000000,84.150000,121.790000,833.330000,2.670000,178.400000,15.110000 -1,2023-08-04 06:00:00,0.000000,12.200000,97.000000,7.000000,250.000000,83.010000,121.800000,833.340000,2.300000,178.410000,13.460000 -1,2023-08-04 07:00:00,0.000000,12.200000,97.000000,7.000000,250.000000,82.020000,121.800000,833.360000,2.030000,178.410000,12.210000 -1,2023-08-04 08:00:00,0.000000,18.500000,71.000000,6.000000,267.000000,82.140000,121.880000,833.550000,1.960000,178.510000,11.870000 -1,2023-08-04 09:00:00,0.000000,18.500000,71.000000,6.000000,267.000000,82.250000,121.950000,833.750000,1.990000,178.600000,12.000000 -1,2023-08-04 10:00:00,0.000000,18.500000,71.000000,6.000000,267.000000,82.350000,122.030000,833.940000,2.010000,178.690000,12.120000 -1,2023-08-04 11:00:00,0.000000,24.500000,47.000000,9.000000,299.000000,83.290000,122.220000,834.460000,2.630000,178.920000,14.970000 -1,2023-08-04 12:00:00,0.000000,24.500000,47.000000,9.000000,299.000000,84.080000,122.420000,834.970000,2.930000,179.160000,16.220000 -1,2023-08-04 13:00:00,0.000000,24.500000,47.000000,9.000000,299.000000,84.770000,122.610000,835.490000,3.210000,179.400000,17.390000 -1,2023-08-04 14:00:00,0.140000,26.400000,36.000000,11.000000,297.000000,84.900000,122.870000,836.190000,3.610000,179.720000,18.990000 -1,2023-08-04 15:00:00,0.000000,26.400000,36.000000,11.000000,297.000000,85.980000,123.140000,836.880000,4.200000,180.040000,21.170000 -1,2023-08-04 16:00:00,0.000000,26.400000,36.000000,11.000000,297.000000,86.870000,123.400000,837.580000,4.760000,180.370000,23.160000 -1,2023-08-04 17:00:00,0.120000,26.000000,36.000000,10.000000,305.000000,86.710000,123.660000,838.260000,4.430000,180.680000,22.020000 -1,2023-08-04 18:00:00,0.000000,26.000000,36.000000,10.000000,305.000000,87.440000,123.910000,838.940000,4.910000,180.990000,23.700000 -1,2023-08-04 19:00:00,0.000000,26.000000,36.000000,10.000000,305.000000,88.050000,124.170000,839.620000,5.360000,181.310000,25.190000 -1,2023-08-04 20:00:00,0.500000,24.200000,42.000000,6.000000,302.000000,84.590000,124.380000,840.180000,2.690000,181.560000,15.280000 -1,2023-08-04 21:00:00,0.000000,24.200000,42.000000,6.000000,302.000000,85.290000,124.590000,840.730000,2.970000,181.820000,16.440000 -1,2023-08-04 22:00:00,0.000000,24.200000,42.000000,6.000000,302.000000,85.900000,124.590000,840.730000,3.230000,181.820000,17.500000 -1,2023-08-04 23:00:00,0.000000,18.000000,68.000000,7.000000,256.000000,85.840000,124.590000,840.730000,3.370000,181.820000,18.060000 -1,2023-08-05 00:00:00,0.000000,18.000000,68.000000,7.000000,256.000000,85.790000,124.590000,840.730000,3.340000,181.820000,17.970000 -1,2023-08-05 01:00:00,0.000000,18.000000,68.000000,7.000000,256.000000,85.750000,124.590000,840.730000,3.320000,181.820000,17.890000 -1,2023-08-05 02:00:00,0.000000,16.300000,87.000000,9.000000,262.000000,85.010000,124.590000,840.730000,3.320000,181.820000,17.870000 -1,2023-08-05 03:00:00,0.000000,16.300000,87.000000,9.000000,262.000000,84.380000,124.590000,840.730000,3.050000,181.820000,16.770000 -1,2023-08-05 04:00:00,0.000000,16.300000,87.000000,9.000000,262.000000,83.850000,124.590000,840.730000,2.830000,181.820000,15.890000 -1,2023-08-05 05:00:00,0.000000,15.900000,96.000000,9.000000,259.000000,82.740000,124.600000,840.760000,2.450000,181.830000,14.230000 -1,2023-08-05 06:00:00,0.000000,15.900000,96.000000,9.000000,259.000000,81.790000,124.610000,840.790000,2.190000,181.850000,13.000000 -1,2023-08-05 07:00:00,0.000000,15.900000,96.000000,9.000000,259.000000,80.990000,124.620000,840.820000,1.990000,181.860000,12.070000 -1,2023-08-05 08:00:00,0.000000,20.400000,75.000000,10.000000,271.000000,81.180000,124.720000,841.080000,2.140000,181.980000,12.780000 -1,2023-08-05 09:00:00,0.000000,20.400000,75.000000,10.000000,271.000000,81.340000,124.810000,841.340000,2.180000,182.090000,12.980000 -1,2023-08-05 10:00:00,0.000000,20.400000,75.000000,10.000000,271.000000,81.490000,124.910000,841.590000,2.220000,182.210000,13.160000 -1,2023-08-05 11:00:00,0.000000,25.400000,49.000000,9.000000,303.000000,82.540000,125.170000,842.300000,2.390000,182.530000,13.970000 -1,2023-08-05 12:00:00,0.000000,25.400000,49.000000,9.000000,303.000000,83.420000,125.430000,843.010000,2.680000,182.850000,15.250000 -1,2023-08-05 13:00:00,0.000000,25.400000,49.000000,9.000000,303.000000,84.180000,125.690000,843.720000,2.970000,183.170000,16.460000 -1,2023-08-05 14:00:00,1.610000,24.600000,67.000000,5.000000,321.000000,58.860000,101.130000,830.140000,0.490000,155.040000,2.950000 -1,2023-08-05 15:00:00,0.000000,24.600000,67.000000,5.000000,321.000000,61.290000,101.290000,830.580000,0.570000,155.250000,3.540000 -1,2023-08-05 16:00:00,0.000000,24.600000,67.000000,5.000000,321.000000,63.530000,101.450000,831.020000,0.640000,155.460000,4.030000 -1,2023-08-05 17:00:00,0.000000,27.200000,41.000000,6.000000,294.000000,67.250000,101.790000,831.930000,0.770000,155.890000,4.960000 -1,2023-08-05 18:00:00,0.000000,27.200000,41.000000,6.000000,294.000000,70.530000,102.130000,832.840000,0.860000,156.330000,5.520000 -1,2023-08-05 19:00:00,0.000000,27.200000,41.000000,6.000000,294.000000,73.400000,102.460000,833.750000,0.960000,156.760000,6.130000 -1,2023-08-05 20:00:00,1.810000,22.500000,77.000000,2.000000,272.000000,49.290000,84.790000,818.270000,0.170000,134.690000,0.550000 -1,2023-08-05 21:00:00,0.000000,22.500000,77.000000,2.000000,272.000000,51.100000,84.890000,818.540000,0.210000,134.830000,0.690000 -1,2023-08-05 22:00:00,0.000000,22.500000,77.000000,2.000000,272.000000,52.840000,84.890000,818.540000,0.250000,134.830000,0.840000 -1,2023-08-05 23:00:00,1.470000,18.200000,89.000000,5.000000,247.000000,38.960000,74.350000,805.740000,0.040000,120.830000,0.110000 -1,2023-08-06 00:00:00,0.000000,18.200000,89.000000,5.000000,247.000000,40.200000,74.350000,805.740000,0.050000,120.830000,0.150000 -1,2023-08-06 01:00:00,0.000000,18.200000,89.000000,5.000000,247.000000,41.400000,74.350000,805.740000,0.060000,120.830000,0.180000 -1,2023-08-06 02:00:00,0.180000,16.800000,96.000000,6.000000,246.000000,40.300000,73.010000,804.290000,0.050000,119.010000,0.150000 -1,2023-08-06 03:00:00,0.000000,16.800000,96.000000,6.000000,246.000000,40.770000,73.010000,804.290000,0.050000,119.010000,0.170000 -1,2023-08-06 04:00:00,0.000000,16.800000,96.000000,6.000000,246.000000,41.240000,73.010000,804.290000,0.060000,119.010000,0.180000 -1,2023-08-06 05:00:00,0.000000,15.600000,99.000000,3.000000,239.000000,41.330000,73.010000,804.300000,0.050000,119.010000,0.160000 -1,2023-08-06 06:00:00,0.000000,15.600000,99.000000,3.000000,239.000000,41.420000,73.010000,804.310000,0.050000,119.020000,0.160000 -1,2023-08-06 07:00:00,0.000000,15.600000,99.000000,3.000000,239.000000,41.510000,73.020000,804.320000,0.050000,119.020000,0.170000 -1,2023-08-06 08:00:00,0.000000,18.900000,84.000000,3.000000,88.000000,42.980000,73.070000,804.520000,0.070000,119.090000,0.210000 -1,2023-08-06 09:00:00,0.000000,18.900000,84.000000,3.000000,88.000000,44.420000,73.120000,804.720000,0.090000,119.170000,0.270000 -1,2023-08-06 10:00:00,0.000000,18.900000,84.000000,3.000000,88.000000,45.810000,73.170000,804.920000,0.110000,119.240000,0.340000 -1,2023-08-06 11:00:00,0.000000,23.100000,63.000000,7.000000,102.000000,49.370000,73.320000,805.510000,0.220000,119.460000,0.670000 -1,2023-08-06 12:00:00,0.000000,23.100000,63.000000,7.000000,102.000000,52.710000,73.470000,806.100000,0.320000,119.680000,0.990000 -1,2023-08-06 13:00:00,0.000000,23.100000,63.000000,7.000000,102.000000,55.830000,73.630000,806.690000,0.430000,119.890000,2.040000 -1,2023-08-06 14:00:00,1.160000,24.200000,58.000000,6.000000,111.000000,46.760000,66.290000,798.070000,0.140000,109.780000,0.430000 -1,2023-08-06 15:00:00,0.000000,24.200000,58.000000,6.000000,111.000000,50.600000,66.480000,798.780000,0.240000,110.050000,0.710000 -1,2023-08-06 16:00:00,0.000000,24.200000,58.000000,6.000000,111.000000,54.190000,66.660000,799.500000,0.350000,110.320000,1.220000 -1,2023-08-06 17:00:00,2.150000,24.000000,61.000000,5.000000,95.000000,37.310000,55.530000,782.850000,0.030000,94.330000,0.070000 -1,2023-08-06 18:00:00,0.000000,24.000000,61.000000,5.000000,95.000000,41.300000,55.700000,783.510000,0.060000,94.590000,0.150000 -1,2023-08-06 19:00:00,0.000000,24.000000,61.000000,5.000000,95.000000,45.110000,55.870000,784.170000,0.110000,94.850000,0.290000 -1,2023-08-06 20:00:00,1.100000,20.500000,76.000000,6.000000,49.000000,37.970000,51.060000,775.640000,0.030000,87.690000,0.080000 -1,2023-08-06 21:00:00,0.000000,20.500000,76.000000,6.000000,49.000000,40.600000,51.140000,775.970000,0.050000,87.820000,0.130000 -1,2023-08-06 22:00:00,0.000000,20.500000,76.000000,6.000000,49.000000,43.130000,51.140000,775.970000,0.080000,87.820000,0.210000 -1,2023-08-06 23:00:00,0.360000,16.700000,80.000000,4.000000,19.000000,41.620000,49.610000,773.070000,0.060000,85.500000,0.140000 -1,2023-08-07 00:00:00,0.000000,16.700000,80.000000,4.000000,19.000000,43.340000,49.610000,773.070000,0.080000,85.500000,0.190000 -1,2023-08-07 01:00:00,0.000000,16.700000,80.000000,4.000000,19.000000,45.010000,49.610000,773.070000,0.100000,85.500000,0.250000 -1,2023-08-07 02:00:00,1.180000,15.400000,95.000000,2.000000,48.000000,36.140000,45.850000,773.070000,0.020000,79.860000,0.040000 -1,2023-08-07 03:00:00,0.000000,15.400000,95.000000,2.000000,48.000000,36.580000,45.850000,773.070000,0.020000,79.860000,0.050000 -1,2023-08-07 04:00:00,0.000000,15.400000,95.000000,2.000000,48.000000,37.020000,45.850000,773.070000,0.020000,79.860000,0.050000 -1,2023-08-07 05:00:00,0.660000,15.400000,94.000000,5.000000,89.000000,33.380000,43.870000,773.130000,0.010000,76.840000,0.020000 -1,2023-08-07 06:00:00,0.000000,15.400000,94.000000,5.000000,89.000000,34.080000,43.880000,773.190000,0.010000,76.860000,0.030000 -1,2023-08-07 07:00:00,0.000000,15.400000,94.000000,5.000000,89.000000,34.770000,43.890000,773.250000,0.010000,76.880000,0.030000 -1,2023-08-07 08:00:00,0.390000,17.500000,82.000000,6.000000,102.000000,34.370000,42.770000,773.450000,0.010000,75.160000,0.030000 -1,2023-08-07 09:00:00,0.000000,17.500000,82.000000,6.000000,102.000000,36.360000,42.810000,773.650000,0.020000,75.220000,0.050000 -1,2023-08-07 10:00:00,0.000000,17.500000,82.000000,6.000000,102.000000,38.300000,42.850000,773.860000,0.030000,75.280000,0.080000 -1,2023-08-07 11:00:00,0.140000,19.100000,72.000000,8.000000,101.000000,40.290000,42.470000,774.210000,0.050000,74.700000,0.120000 -1,2023-08-07 12:00:00,0.000000,19.100000,72.000000,8.000000,101.000000,43.160000,42.540000,774.550000,0.090000,74.800000,0.210000 -1,2023-08-07 13:00:00,0.000000,19.100000,72.000000,8.000000,101.000000,45.910000,42.600000,774.900000,0.140000,74.900000,0.320000 -1,2023-08-07 14:00:00,0.000000,20.100000,63.000000,10.000000,89.000000,49.340000,42.690000,775.390000,0.250000,75.050000,0.560000 -1,2023-08-07 15:00:00,0.000000,20.100000,63.000000,10.000000,89.000000,52.560000,42.780000,775.880000,0.360000,75.190000,0.820000 -1,2023-08-07 16:00:00,0.000000,20.100000,63.000000,10.000000,89.000000,55.570000,42.870000,776.370000,0.490000,75.330000,1.410000 -1,2023-08-07 17:00:00,0.000000,21.100000,54.000000,9.000000,98.000000,58.850000,42.980000,777.020000,0.600000,75.520000,2.080000 -1,2023-08-07 18:00:00,0.000000,21.100000,54.000000,9.000000,98.000000,61.860000,43.100000,777.670000,0.720000,75.710000,2.710000 -1,2023-08-07 19:00:00,0.000000,21.100000,54.000000,9.000000,98.000000,64.600000,43.220000,778.320000,0.820000,75.900000,3.200000 -1,2023-08-07 20:00:00,0.000000,19.800000,54.000000,5.000000,132.000000,66.720000,43.330000,778.920000,0.720000,76.070000,2.750000 -1,2023-08-07 21:00:00,0.000000,19.800000,54.000000,5.000000,132.000000,68.660000,43.430000,779.510000,0.770000,76.250000,3.000000 -1,2023-08-07 22:00:00,0.000000,19.800000,54.000000,5.000000,132.000000,70.440000,43.430000,779.510000,0.820000,76.250000,3.210000 -1,2023-08-07 23:00:00,0.000000,16.700000,62.000000,8.000000,152.000000,71.740000,43.430000,779.510000,0.990000,76.250000,4.030000 -1,2023-08-08 00:00:00,0.000000,16.700000,62.000000,8.000000,152.000000,72.930000,43.430000,779.510000,1.040000,76.250000,4.230000 -1,2023-08-08 01:00:00,0.000000,16.700000,62.000000,8.000000,152.000000,74.020000,43.430000,779.510000,1.090000,76.250000,4.450000 -1,2023-08-08 02:00:00,0.000000,15.700000,56.000000,8.000000,115.000000,75.130000,43.430000,779.510000,1.150000,76.250000,4.730000 -1,2023-08-08 03:00:00,0.000000,15.700000,56.000000,8.000000,115.000000,76.140000,43.430000,779.510000,1.230000,76.250000,5.040000 -1,2023-08-08 04:00:00,0.000000,15.700000,56.000000,8.000000,115.000000,77.060000,43.430000,779.510000,1.310000,76.250000,5.370000 -1,2023-08-08 05:00:00,0.000000,14.800000,50.000000,7.000000,82.000000,77.980000,43.540000,779.800000,1.340000,76.410000,5.500000 -1,2023-08-08 06:00:00,0.000000,14.800000,50.000000,7.000000,82.000000,78.820000,43.640000,780.090000,1.440000,76.570000,5.920000 -1,2023-08-08 07:00:00,0.000000,14.800000,50.000000,7.000000,82.000000,79.570000,43.740000,780.380000,1.550000,76.730000,6.350000 -1,2023-08-08 08:00:00,0.000000,15.800000,47.000000,10.000000,62.000000,80.420000,43.860000,780.710000,1.970000,76.910000,7.920000 -1,2023-08-08 09:00:00,0.000000,15.800000,47.000000,10.000000,62.000000,81.180000,43.970000,781.040000,2.140000,77.090000,8.540000 -1,2023-08-08 10:00:00,0.000000,15.800000,47.000000,10.000000,62.000000,81.860000,44.090000,781.370000,2.320000,77.280000,9.160000 -1,2023-08-08 11:00:00,0.000000,17.900000,44.000000,12.000000,70.000000,82.660000,44.230000,781.760000,2.830000,77.500000,10.840000 -1,2023-08-08 12:00:00,0.000000,17.900000,44.000000,12.000000,70.000000,83.360000,44.370000,782.160000,3.090000,77.710000,11.680000 -1,2023-08-08 13:00:00,0.000000,17.900000,44.000000,12.000000,70.000000,83.970000,44.510000,782.550000,3.350000,77.930000,12.470000 -1,2023-08-08 14:00:00,0.000000,20.300000,45.000000,15.000000,97.000000,84.600000,44.670000,783.000000,4.240000,78.180000,15.030000 -1,2023-08-08 15:00:00,0.000000,20.300000,45.000000,15.000000,97.000000,85.140000,44.830000,783.460000,4.570000,78.430000,15.930000 -1,2023-08-08 16:00:00,0.000000,20.300000,45.000000,15.000000,97.000000,85.610000,44.980000,783.910000,4.870000,78.680000,16.750000 -1,2023-08-08 17:00:00,0.000000,19.400000,48.000000,16.000000,109.000000,85.890000,45.130000,784.310000,5.340000,78.900000,17.940000 -1,2023-08-08 18:00:00,0.000000,19.400000,48.000000,16.000000,109.000000,86.140000,45.270000,784.710000,5.520000,79.130000,18.430000 -1,2023-08-08 19:00:00,0.000000,19.400000,48.000000,16.000000,109.000000,86.350000,45.410000,785.120000,5.690000,79.350000,18.870000 -1,2023-08-08 20:00:00,0.000000,17.200000,54.000000,13.000000,110.000000,86.350000,45.520000,785.430000,4.890000,79.520000,16.890000 -1,2023-08-08 21:00:00,0.000000,17.200000,54.000000,13.000000,110.000000,86.350000,45.630000,785.740000,4.890000,79.690000,16.910000 -1,2023-08-08 22:00:00,0.000000,17.200000,54.000000,13.000000,110.000000,86.350000,45.630000,785.740000,4.890000,79.690000,16.910000 -1,2023-08-08 23:00:00,0.000000,14.900000,63.000000,10.000000,97.000000,86.290000,45.630000,785.740000,4.170000,79.690000,14.980000 -1,2023-08-09 00:00:00,0.000000,14.900000,63.000000,10.000000,97.000000,86.230000,45.630000,785.740000,4.140000,79.690000,14.900000 -1,2023-08-09 01:00:00,0.000000,14.900000,63.000000,10.000000,97.000000,86.190000,45.630000,785.740000,4.110000,79.690000,14.820000 -1,2023-08-09 02:00:00,0.000000,13.800000,68.000000,9.000000,90.000000,86.020000,45.630000,785.740000,3.820000,79.690000,14.000000 -1,2023-08-09 03:00:00,0.000000,13.800000,68.000000,9.000000,90.000000,85.870000,45.630000,785.740000,3.740000,79.690000,13.780000 -1,2023-08-09 04:00:00,0.000000,13.800000,68.000000,9.000000,90.000000,85.740000,45.630000,785.740000,3.670000,79.690000,13.590000 -1,2023-08-09 05:00:00,0.020000,13.500000,71.000000,8.000000,80.000000,85.560000,45.690000,785.940000,3.400000,79.780000,12.810000 -1,2023-08-09 06:00:00,0.000000,13.500000,71.000000,8.000000,80.000000,85.400000,45.740000,786.140000,3.330000,79.870000,12.590000 -1,2023-08-09 07:00:00,0.000000,13.500000,71.000000,8.000000,80.000000,85.260000,45.800000,786.340000,3.260000,79.950000,12.400000 -1,2023-08-09 08:00:00,0.000000,15.800000,63.000000,11.000000,91.000000,85.260000,45.880000,786.640000,3.800000,80.080000,13.970000 -1,2023-08-09 09:00:00,0.000000,15.800000,63.000000,11.000000,91.000000,85.260000,45.960000,786.940000,3.800000,80.210000,13.990000 -1,2023-08-09 10:00:00,0.000000,15.800000,63.000000,11.000000,91.000000,85.260000,46.040000,787.240000,3.800000,80.340000,14.000000 -1,2023-08-09 11:00:00,0.000000,18.300000,57.000000,11.000000,101.000000,85.330000,46.150000,787.650000,3.840000,80.510000,14.130000 -1,2023-08-09 12:00:00,0.000000,18.300000,57.000000,11.000000,101.000000,85.400000,46.260000,788.050000,3.870000,80.690000,14.240000 -1,2023-08-09 13:00:00,0.000000,18.300000,57.000000,11.000000,101.000000,85.450000,46.380000,788.460000,3.900000,80.860000,14.350000 -1,2023-08-09 14:00:00,0.000000,18.900000,56.000000,10.000000,108.000000,85.540000,46.490000,788.890000,3.750000,81.050000,13.940000 -1,2023-08-09 15:00:00,0.000000,18.900000,56.000000,10.000000,108.000000,85.610000,46.610000,789.320000,3.790000,81.230000,14.070000 -1,2023-08-09 16:00:00,0.000000,18.900000,56.000000,10.000000,108.000000,85.670000,46.730000,789.750000,3.830000,81.420000,14.190000 -1,2023-08-09 17:00:00,0.000000,19.700000,53.000000,8.000000,109.000000,85.810000,46.860000,790.240000,3.520000,81.620000,13.330000 -1,2023-08-09 18:00:00,0.000000,19.700000,53.000000,8.000000,109.000000,85.930000,46.990000,790.720000,3.580000,81.830000,13.530000 -1,2023-08-09 19:00:00,0.000000,19.700000,53.000000,8.000000,109.000000,86.030000,47.130000,791.210000,3.640000,82.040000,13.700000 -1,2023-08-09 20:00:00,0.000000,18.600000,57.000000,7.000000,111.000000,86.030000,47.240000,791.620000,3.460000,82.220000,13.190000 -1,2023-08-09 21:00:00,0.000000,18.600000,57.000000,7.000000,111.000000,86.030000,47.350000,792.040000,3.460000,82.390000,13.210000 -1,2023-08-09 22:00:00,0.000000,18.600000,57.000000,7.000000,111.000000,86.030000,47.350000,792.040000,3.460000,82.390000,13.210000 -1,2023-08-09 23:00:00,0.000000,14.600000,73.000000,4.000000,100.000000,85.800000,47.350000,792.040000,2.880000,82.390000,11.400000 -1,2023-08-10 00:00:00,0.000000,14.600000,73.000000,4.000000,100.000000,85.600000,47.350000,792.040000,2.800000,82.390000,11.140000 -1,2023-08-10 01:00:00,0.000000,14.600000,73.000000,4.000000,100.000000,85.420000,47.350000,792.040000,2.730000,82.390000,10.920000 -1,2023-08-10 02:00:00,0.000000,12.400000,85.000000,2.000000,120.000000,84.930000,47.350000,792.040000,2.300000,82.390000,9.490000 -1,2023-08-10 03:00:00,0.000000,12.400000,85.000000,2.000000,120.000000,84.490000,47.350000,792.040000,2.170000,82.390000,9.020000 -1,2023-08-10 04:00:00,0.000000,12.400000,85.000000,2.000000,120.000000,84.100000,47.350000,792.040000,2.060000,82.390000,8.620000 -1,2023-08-10 05:00:00,0.000000,11.100000,92.000000,1.000000,158.000000,83.490000,47.370000,792.080000,1.810000,82.410000,7.680000 -1,2023-08-10 06:00:00,0.000000,11.100000,92.000000,1.000000,158.000000,82.940000,47.380000,792.120000,1.680000,82.430000,7.200000 -1,2023-08-10 07:00:00,0.000000,11.100000,92.000000,1.000000,158.000000,82.440000,47.390000,792.170000,1.580000,82.460000,6.810000 -1,2023-08-10 08:00:00,0.000000,15.400000,72.000000,3.000000,133.000000,82.470000,47.460000,792.370000,1.750000,82.550000,7.480000 -1,2023-08-10 09:00:00,0.000000,15.400000,72.000000,3.000000,133.000000,82.480000,47.520000,792.570000,1.760000,82.650000,7.510000 -1,2023-08-10 10:00:00,0.000000,15.400000,72.000000,3.000000,133.000000,82.500000,47.580000,792.770000,1.760000,82.750000,7.530000 -1,2023-08-10 11:00:00,0.000000,20.800000,53.000000,7.000000,114.000000,83.040000,47.730000,793.250000,2.310000,82.980000,9.540000 -1,2023-08-10 12:00:00,0.000000,20.800000,53.000000,7.000000,114.000000,83.510000,47.880000,793.720000,2.450000,83.220000,10.060000 -1,2023-08-10 13:00:00,0.000000,20.800000,53.000000,7.000000,114.000000,83.930000,48.030000,794.200000,2.590000,83.450000,10.550000 -1,2023-08-10 14:00:00,0.000000,23.300000,45.000000,6.000000,106.000000,84.590000,48.240000,794.840000,2.690000,83.760000,10.910000 -1,2023-08-10 15:00:00,0.000000,23.300000,45.000000,6.000000,106.000000,85.160000,48.440000,795.490000,2.910000,84.080000,11.660000 -1,2023-08-10 16:00:00,0.000000,23.300000,45.000000,6.000000,106.000000,85.660000,48.640000,796.140000,3.120000,84.400000,12.350000 -1,2023-08-10 17:00:00,0.000000,23.400000,44.000000,5.000000,101.000000,86.110000,48.850000,796.800000,3.160000,84.720000,12.500000 -1,2023-08-10 18:00:00,0.000000,23.400000,44.000000,5.000000,101.000000,86.500000,49.060000,797.460000,3.340000,85.040000,13.090000 -1,2023-08-10 19:00:00,0.000000,23.400000,44.000000,5.000000,101.000000,86.830000,49.270000,798.120000,3.500000,85.370000,13.610000 -1,2023-08-10 20:00:00,0.000000,23.400000,44.000000,5.000000,101.000000,87.120000,49.480000,798.790000,3.650000,85.690000,14.090000 -1,2023-08-10 21:00:00,0.000000,23.400000,44.000000,5.000000,101.000000,87.380000,49.480000,798.790000,3.780000,85.690000,14.490000 -1,2023-08-10 22:00:00,0.000000,23.400000,44.000000,5.000000,101.000000,87.590000,49.480000,798.790000,3.900000,85.690000,14.840000 -1,2023-08-10 23:00:00,0.000000,19.400000,55.000000,4.000000,98.000000,87.590000,49.480000,798.790000,3.710000,85.690000,14.280000 -1,2023-08-11 00:00:00,0.000000,19.400000,55.000000,4.000000,98.000000,87.590000,49.480000,798.790000,3.710000,85.690000,14.280000 -1,2023-08-11 01:00:00,0.000000,19.400000,55.000000,4.000000,98.000000,87.590000,49.480000,798.790000,3.710000,85.690000,14.280000 -1,2023-08-11 02:00:00,0.000000,19.400000,55.000000,4.000000,98.000000,87.590000,49.480000,798.790000,3.710000,85.690000,14.280000 -1,2023-08-11 03:00:00,0.000000,19.400000,55.000000,4.000000,98.000000,87.590000,49.480000,798.790000,3.710000,85.690000,14.280000 -1,2023-08-11 04:00:00,0.000000,19.400000,55.000000,4.000000,98.000000,87.590000,49.480000,798.790000,3.710000,85.690000,14.280000 -1,2023-08-11 05:00:00,0.000000,18.000000,62.000000,5.000000,122.000000,87.460000,49.590000,799.110000,3.830000,85.860000,14.650000 -1,2023-08-11 06:00:00,0.000000,18.000000,62.000000,5.000000,122.000000,87.350000,49.700000,799.430000,3.770000,86.020000,14.480000 -1,2023-08-11 07:00:00,0.000000,18.000000,62.000000,5.000000,122.000000,87.250000,49.810000,799.750000,3.720000,86.190000,14.340000 -1,2023-08-11 08:00:00,0.000000,18.000000,62.000000,5.000000,122.000000,87.160000,49.920000,800.070000,3.670000,86.360000,14.210000 -1,2023-08-11 09:00:00,0.000000,18.000000,62.000000,5.000000,122.000000,87.080000,50.030000,800.390000,3.630000,86.530000,14.110000 -1,2023-08-11 10:00:00,0.000000,18.000000,62.000000,5.000000,122.000000,87.020000,50.130000,800.710000,3.590000,86.700000,14.020000 -1,2023-08-11 11:00:00,0.070000,21.600000,50.000000,10.000000,110.000000,85.730000,49.970000,800.670000,3.850000,86.450000,14.770000 -1,2023-08-11 12:00:00,0.000000,21.600000,50.000000,10.000000,110.000000,85.990000,50.150000,801.200000,4.000000,86.730000,15.220000 -1,2023-08-11 13:00:00,0.000000,21.600000,50.000000,10.000000,110.000000,86.210000,50.330000,801.730000,4.130000,87.010000,15.620000 -1,2023-08-11 14:00:00,0.000000,21.600000,50.000000,10.000000,110.000000,86.410000,50.510000,802.260000,4.240000,87.280000,15.970000 -1,2023-08-11 15:00:00,0.000000,21.600000,50.000000,10.000000,110.000000,86.570000,50.690000,802.790000,4.340000,87.560000,16.290000 -1,2023-08-11 16:00:00,0.000000,21.600000,50.000000,10.000000,110.000000,86.720000,50.870000,803.320000,4.430000,87.840000,16.570000 -1,2023-08-11 17:00:00,0.050000,22.100000,59.000000,6.000000,190.000000,85.650000,50.760000,803.360000,3.120000,87.670000,12.620000 -1,2023-08-11 18:00:00,0.000000,22.100000,59.000000,6.000000,190.000000,85.710000,50.910000,803.810000,3.140000,87.900000,12.720000 -1,2023-08-11 19:00:00,0.000000,22.100000,59.000000,6.000000,190.000000,85.760000,51.060000,804.250000,3.170000,88.130000,12.810000 -1,2023-08-11 20:00:00,0.000000,22.100000,59.000000,6.000000,190.000000,85.810000,51.210000,804.700000,3.190000,88.370000,12.900000 -1,2023-08-11 21:00:00,0.000000,22.100000,59.000000,6.000000,190.000000,85.850000,51.210000,804.700000,3.200000,88.370000,12.960000 -1,2023-08-11 22:00:00,0.000000,22.100000,59.000000,6.000000,190.000000,85.880000,51.210000,804.700000,3.220000,88.370000,13.010000 -1,2023-08-11 23:00:00,5.220000,16.500000,99.000000,9.000000,260.000000,30.290000,33.320000,762.260000,0.010000,60.070000,0.010000 -1,2023-08-12 00:00:00,0.000000,16.500000,99.000000,9.000000,260.000000,30.450000,33.320000,762.260000,0.010000,60.070000,0.010000 -1,2023-08-12 01:00:00,0.000000,16.500000,99.000000,9.000000,260.000000,30.610000,33.320000,762.260000,0.010000,60.070000,0.010000 -1,2023-08-12 02:00:00,0.000000,16.500000,99.000000,9.000000,260.000000,30.770000,33.320000,762.260000,0.010000,60.070000,0.010000 -1,2023-08-12 03:00:00,0.000000,16.500000,99.000000,9.000000,260.000000,30.940000,33.320000,762.260000,0.010000,60.070000,0.010000 -1,2023-08-12 04:00:00,0.000000,16.500000,99.000000,9.000000,260.000000,31.100000,33.320000,762.260000,0.010000,60.070000,0.010000 -1,2023-08-12 05:00:00,8.720000,15.200000,98.000000,8.000000,263.000000,6.970000,18.260000,689.110000,0.000000,34.250000,0.000000 -1,2023-08-12 06:00:00,0.000000,15.200000,98.000000,8.000000,263.000000,7.310000,18.260000,689.190000,0.000000,34.260000,0.000000 -1,2023-08-12 07:00:00,0.000000,15.200000,98.000000,8.000000,263.000000,7.640000,18.270000,689.270000,0.000000,34.270000,0.000000 -1,2023-08-12 08:00:00,0.000000,15.200000,98.000000,8.000000,263.000000,7.980000,18.270000,689.350000,0.000000,34.270000,0.000000 -1,2023-08-12 09:00:00,0.000000,15.200000,98.000000,8.000000,263.000000,8.310000,18.280000,689.430000,0.000000,34.280000,0.000000 -1,2023-08-12 10:00:00,0.000000,15.200000,98.000000,8.000000,263.000000,8.650000,18.280000,689.510000,0.000000,34.290000,0.000000 -1,2023-08-12 11:00:00,1.460000,14.700000,91.000000,8.000000,259.000000,7.530000,16.200000,677.600000,0.000000,30.580000,0.000000 -1,2023-08-12 12:00:00,0.000000,14.700000,91.000000,8.000000,259.000000,8.830000,16.220000,677.950000,0.000000,30.610000,0.000000 -1,2023-08-12 13:00:00,0.000000,14.700000,91.000000,8.000000,259.000000,10.130000,16.240000,678.300000,0.000000,30.650000,0.000000 -1,2023-08-12 14:00:00,0.000000,14.700000,91.000000,8.000000,259.000000,11.420000,16.260000,678.640000,0.000000,30.680000,0.000000 -1,2023-08-12 15:00:00,0.000000,14.700000,91.000000,8.000000,259.000000,12.720000,16.280000,678.990000,0.000000,30.710000,0.000000 -1,2023-08-12 16:00:00,0.000000,14.700000,91.000000,8.000000,259.000000,14.010000,16.290000,679.340000,0.000000,30.740000,0.000000 -1,2023-08-12 17:00:00,0.550000,16.300000,82.000000,9.000000,251.000000,14.940000,15.560000,675.490000,0.000000,29.420000,0.000000 -1,2023-08-12 18:00:00,0.000000,16.300000,82.000000,9.000000,251.000000,17.350000,15.600000,676.260000,0.000000,29.490000,0.000000 -1,2023-08-12 19:00:00,0.000000,16.300000,82.000000,9.000000,251.000000,19.750000,15.640000,677.030000,0.000000,29.570000,0.000000 -1,2023-08-12 20:00:00,0.000000,16.300000,82.000000,9.000000,251.000000,22.130000,15.680000,677.800000,0.000000,29.640000,0.000000 -1,2023-08-12 21:00:00,0.000000,16.300000,82.000000,9.000000,251.000000,24.480000,15.680000,677.800000,0.000000,29.640000,0.000000 -1,2023-08-12 22:00:00,0.000000,16.300000,82.000000,9.000000,251.000000,26.790000,15.680000,677.800000,0.000000,29.640000,0.000000 -1,2023-08-12 23:00:00,0.000000,13.100000,99.000000,7.000000,269.000000,26.930000,15.680000,677.800000,0.000000,29.640000,0.000000 -1,2023-08-13 00:00:00,0.000000,13.100000,99.000000,7.000000,269.000000,27.060000,15.680000,677.800000,0.000000,29.640000,0.000000 -1,2023-08-13 01:00:00,0.000000,13.100000,99.000000,7.000000,269.000000,27.200000,15.680000,677.800000,0.000000,29.640000,0.000000 -1,2023-08-13 02:00:00,0.000000,13.100000,99.000000,7.000000,269.000000,27.340000,15.680000,677.800000,0.000000,29.640000,0.000000 -1,2023-08-13 03:00:00,0.000000,13.100000,99.000000,7.000000,269.000000,27.470000,15.680000,677.800000,0.000000,29.640000,0.000000 -1,2023-08-13 04:00:00,0.000000,13.100000,99.000000,7.000000,269.000000,27.600000,15.680000,677.800000,0.000000,29.640000,0.000000 -1,2023-08-13 05:00:00,0.280000,13.600000,96.000000,6.000000,329.000000,28.110000,15.690000,677.840000,0.000000,29.660000,0.000000 -1,2023-08-13 06:00:00,0.000000,13.600000,96.000000,6.000000,329.000000,28.610000,15.700000,677.870000,0.000000,29.680000,0.000000 -1,2023-08-13 07:00:00,0.000000,13.600000,96.000000,6.000000,329.000000,29.100000,15.710000,677.910000,0.000000,29.700000,0.000000 -1,2023-08-13 08:00:00,0.000000,13.600000,96.000000,6.000000,329.000000,29.600000,15.720000,677.940000,0.000000,29.720000,0.000000 -1,2023-08-13 09:00:00,0.000000,13.600000,96.000000,6.000000,329.000000,30.090000,15.730000,677.980000,0.000000,29.740000,0.010000 -1,2023-08-13 10:00:00,0.000000,13.600000,96.000000,6.000000,329.000000,30.580000,15.740000,678.010000,0.010000,29.760000,0.010000 -1,2023-08-13 11:00:00,0.000000,17.500000,50.000000,13.000000,317.000000,35.250000,15.920000,678.580000,0.020000,30.080000,0.030000 -1,2023-08-13 12:00:00,0.000000,17.500000,50.000000,13.000000,317.000000,39.740000,16.100000,679.140000,0.060000,30.390000,0.080000 -1,2023-08-13 13:00:00,0.000000,17.500000,50.000000,13.000000,317.000000,44.010000,16.270000,679.710000,0.130000,30.700000,0.160000 -1,2023-08-13 14:00:00,0.000000,17.500000,50.000000,13.000000,317.000000,48.050000,16.450000,680.270000,0.250000,31.020000,0.300000 -1,2023-08-13 15:00:00,0.000000,17.500000,50.000000,13.000000,317.000000,51.830000,16.620000,680.830000,0.390000,31.330000,0.470000 -1,2023-08-13 16:00:00,0.000000,17.500000,50.000000,13.000000,317.000000,55.360000,16.800000,681.400000,0.550000,31.650000,0.680000 -1,2023-08-13 17:00:00,0.000000,18.300000,46.000000,9.000000,336.000000,58.640000,17.000000,682.040000,0.590000,32.000000,0.730000 -1,2023-08-13 18:00:00,0.000000,18.300000,46.000000,9.000000,336.000000,61.660000,17.200000,682.680000,0.710000,32.360000,0.880000 -1,2023-08-13 19:00:00,0.000000,18.300000,46.000000,9.000000,336.000000,64.430000,17.400000,683.320000,0.810000,32.710000,1.110000 -1,2023-08-13 20:00:00,0.000000,18.300000,46.000000,9.000000,336.000000,66.960000,17.600000,683.960000,0.890000,33.070000,1.490000 -1,2023-08-13 21:00:00,0.000000,18.300000,46.000000,9.000000,336.000000,69.260000,17.600000,683.960000,0.960000,33.070000,1.730000 -1,2023-08-13 22:00:00,0.000000,18.300000,46.000000,9.000000,336.000000,71.330000,17.600000,683.960000,1.030000,33.070000,1.940000 -1,2023-08-13 23:00:00,0.000000,11.900000,71.000000,3.000000,244.000000,71.950000,17.600000,683.960000,0.780000,33.070000,0.980000 -1,2023-08-14 00:00:00,0.000000,11.900000,71.000000,3.000000,244.000000,72.530000,17.600000,683.960000,0.790000,33.070000,1.020000 -1,2023-08-14 01:00:00,0.000000,11.900000,71.000000,3.000000,244.000000,73.080000,17.600000,683.960000,0.810000,33.070000,1.150000 -1,2023-08-14 02:00:00,0.000000,11.900000,71.000000,3.000000,244.000000,73.600000,17.600000,683.960000,0.830000,33.070000,1.240000 -1,2023-08-14 03:00:00,0.000000,11.900000,71.000000,3.000000,244.000000,74.100000,17.600000,683.960000,0.850000,33.070000,1.330000 -1,2023-08-14 04:00:00,0.000000,11.900000,71.000000,3.000000,244.000000,74.570000,17.600000,683.960000,0.870000,33.070000,1.410000 -1,2023-08-14 05:00:00,0.000000,8.000000,96.000000,5.000000,229.000000,74.570000,17.600000,683.980000,0.960000,33.080000,1.730000 -1,2023-08-14 06:00:00,0.000000,8.000000,96.000000,5.000000,229.000000,74.570000,17.610000,684.000000,0.960000,33.090000,1.730000 -1,2023-08-14 07:00:00,0.000000,8.000000,96.000000,5.000000,229.000000,74.570000,17.620000,684.020000,0.960000,33.110000,1.730000 -1,2023-08-14 08:00:00,0.000000,8.000000,96.000000,5.000000,229.000000,74.570000,17.630000,684.040000,0.960000,33.120000,1.730000 -1,2023-08-14 09:00:00,0.000000,8.000000,96.000000,5.000000,229.000000,74.570000,17.630000,684.060000,0.960000,33.130000,1.730000 -1,2023-08-14 10:00:00,0.000000,8.000000,96.000000,5.000000,229.000000,74.570000,17.640000,684.080000,0.960000,33.140000,1.740000 -1,2023-08-14 11:00:00,0.000000,18.400000,47.000000,9.000000,152.000000,76.080000,17.830000,684.640000,1.280000,33.480000,2.720000 -1,2023-08-14 12:00:00,0.000000,18.400000,47.000000,9.000000,152.000000,77.430000,18.010000,685.190000,1.410000,33.810000,3.100000 -1,2023-08-14 13:00:00,0.000000,18.400000,47.000000,9.000000,152.000000,78.630000,18.200000,685.740000,1.560000,34.140000,3.530000 -1,2023-08-14 14:00:00,0.000000,18.400000,47.000000,9.000000,152.000000,79.700000,18.390000,686.300000,1.730000,34.470000,3.990000 -1,2023-08-14 15:00:00,0.000000,18.400000,47.000000,9.000000,152.000000,80.640000,18.570000,686.850000,1.920000,34.800000,4.470000 -1,2023-08-14 16:00:00,0.000000,18.400000,47.000000,9.000000,152.000000,81.480000,18.760000,687.400000,2.110000,35.130000,4.970000 -1,2023-08-14 17:00:00,0.000000,20.600000,40.000000,9.000000,129.000000,82.540000,19.000000,688.120000,2.390000,35.550000,5.690000 -1,2023-08-14 18:00:00,0.000000,20.600000,40.000000,9.000000,129.000000,83.450000,19.250000,688.840000,2.690000,35.980000,6.420000 -1,2023-08-14 19:00:00,0.000000,20.600000,40.000000,9.000000,129.000000,84.250000,19.490000,689.560000,2.990000,36.410000,7.130000 -1,2023-08-14 20:00:00,0.000000,20.600000,40.000000,9.000000,129.000000,84.940000,19.730000,690.270000,3.280000,36.830000,7.810000 -1,2023-08-14 21:00:00,0.000000,20.600000,40.000000,9.000000,129.000000,85.530000,19.730000,690.270000,3.570000,36.830000,8.400000 -1,2023-08-14 22:00:00,0.000000,20.600000,40.000000,9.000000,129.000000,86.050000,19.730000,690.270000,3.830000,36.830000,8.950000 -1,2023-08-14 23:00:00,0.000000,14.700000,55.000000,8.000000,107.000000,86.050000,19.730000,690.270000,3.650000,36.830000,8.570000 -1,2023-08-15 00:00:00,0.000000,14.700000,55.000000,8.000000,107.000000,86.050000,19.730000,690.270000,3.650000,36.830000,8.570000 -1,2023-08-15 01:00:00,0.000000,14.700000,55.000000,8.000000,107.000000,86.050000,19.730000,690.270000,3.650000,36.830000,8.570000 -1,2023-08-15 02:00:00,0.000000,14.700000,55.000000,8.000000,107.000000,86.050000,19.730000,690.270000,3.650000,36.830000,8.570000 -1,2023-08-15 03:00:00,0.000000,14.700000,55.000000,8.000000,107.000000,86.050000,19.730000,690.270000,3.650000,36.830000,8.570000 -1,2023-08-15 04:00:00,0.000000,14.700000,55.000000,8.000000,107.000000,86.050000,19.730000,690.270000,3.650000,36.830000,8.570000 -1,2023-08-15 05:00:00,0.000000,12.700000,59.000000,5.000000,106.000000,86.050000,19.810000,690.510000,3.130000,36.980000,7.510000 -1,2023-08-15 06:00:00,0.000000,12.700000,59.000000,5.000000,106.000000,86.050000,19.900000,690.740000,3.130000,37.120000,7.530000 -1,2023-08-15 07:00:00,0.000000,12.700000,59.000000,5.000000,106.000000,86.050000,19.980000,690.970000,3.130000,37.270000,7.550000 -1,2023-08-15 08:00:00,0.000000,12.700000,59.000000,5.000000,106.000000,86.050000,20.060000,691.200000,3.130000,37.410000,7.570000 -1,2023-08-15 09:00:00,0.000000,12.700000,59.000000,5.000000,106.000000,86.050000,20.150000,691.430000,3.130000,37.550000,7.580000 -1,2023-08-15 10:00:00,0.000000,12.700000,59.000000,5.000000,106.000000,86.050000,20.230000,691.660000,3.130000,37.700000,7.600000 -1,2023-08-15 11:00:00,0.000000,18.500000,44.000000,6.000000,49.000000,86.300000,20.390000,692.120000,3.410000,37.990000,8.240000 -1,2023-08-15 12:00:00,0.000000,18.500000,44.000000,6.000000,49.000000,86.520000,20.560000,692.580000,3.520000,38.270000,8.510000 -1,2023-08-15 13:00:00,0.000000,18.500000,44.000000,6.000000,49.000000,86.720000,20.720000,693.030000,3.620000,38.560000,8.750000 -1,2023-08-15 14:00:00,0.000000,18.500000,44.000000,6.000000,49.000000,86.890000,20.880000,693.490000,3.710000,38.840000,8.980000 -1,2023-08-15 15:00:00,0.000000,18.500000,44.000000,6.000000,49.000000,87.040000,21.050000,693.950000,3.790000,39.130000,9.190000 -1,2023-08-15 16:00:00,0.000000,18.500000,44.000000,6.000000,49.000000,87.170000,21.210000,694.410000,3.860000,39.410000,9.380000 -1,2023-08-15 17:00:00,0.000000,19.800000,38.000000,14.000000,25.000000,87.520000,21.410000,694.960000,6.080000,39.750000,13.620000 -1,2023-08-15 18:00:00,0.000000,19.800000,38.000000,14.000000,25.000000,87.810000,21.600000,695.510000,6.340000,40.090000,14.140000 -1,2023-08-15 19:00:00,0.000000,19.800000,38.000000,14.000000,25.000000,88.070000,21.800000,696.060000,6.570000,40.440000,14.600000 -1,2023-08-15 20:00:00,0.000000,19.800000,38.000000,14.000000,25.000000,88.280000,22.000000,696.610000,6.780000,40.780000,15.020000 -1,2023-08-15 21:00:00,0.000000,19.800000,38.000000,14.000000,25.000000,88.460000,22.000000,696.610000,6.950000,40.780000,15.320000 -1,2023-08-15 22:00:00,0.000000,19.800000,38.000000,14.000000,25.000000,88.620000,22.000000,696.610000,7.110000,40.780000,15.580000 -1,2023-08-15 23:00:00,0.000000,11.300000,64.000000,3.000000,77.000000,88.290000,22.000000,696.610000,3.900000,40.780000,9.640000 -1,2023-08-16 00:00:00,0.000000,11.300000,64.000000,3.000000,77.000000,88.000000,22.000000,696.610000,3.740000,40.780000,9.300000 -1,2023-08-16 01:00:00,0.000000,11.300000,64.000000,3.000000,77.000000,87.730000,22.000000,696.610000,3.600000,40.780000,9.000000 -1,2023-08-16 02:00:00,0.000000,11.300000,64.000000,3.000000,77.000000,87.490000,22.000000,696.610000,3.480000,40.780000,8.740000 -1,2023-08-16 03:00:00,0.000000,11.300000,64.000000,3.000000,77.000000,87.270000,22.000000,696.610000,3.370000,40.780000,8.500000 -1,2023-08-16 04:00:00,0.000000,11.300000,64.000000,3.000000,77.000000,87.070000,22.000000,696.610000,3.280000,40.780000,8.300000 -1,2023-08-16 05:00:00,0.000000,6.900000,84.000000,5.000000,226.000000,86.410000,22.020000,696.670000,3.300000,40.820000,8.350000 -1,2023-08-16 06:00:00,0.000000,6.900000,84.000000,5.000000,226.000000,85.820000,22.050000,696.730000,3.030000,40.860000,7.770000 -1,2023-08-16 07:00:00,0.000000,6.900000,84.000000,5.000000,226.000000,85.280000,22.070000,696.790000,2.820000,40.910000,7.270000 -1,2023-08-16 08:00:00,0.000000,6.900000,84.000000,5.000000,226.000000,84.800000,22.100000,696.850000,2.630000,40.950000,6.840000 -1,2023-08-16 09:00:00,0.000000,6.900000,84.000000,5.000000,226.000000,84.360000,22.130000,696.900000,2.480000,41.000000,6.480000 -1,2023-08-16 10:00:00,0.000000,6.900000,84.000000,5.000000,226.000000,83.970000,22.150000,696.960000,2.360000,41.040000,6.170000 -1,2023-08-16 11:00:00,0.000000,19.200000,33.000000,7.000000,133.000000,84.800000,22.390000,697.520000,2.920000,41.460000,7.560000 -1,2023-08-16 12:00:00,0.000000,19.200000,33.000000,7.000000,133.000000,85.530000,22.640000,698.080000,3.220000,41.880000,8.320000 -1,2023-08-16 13:00:00,0.000000,19.200000,33.000000,7.000000,133.000000,86.170000,22.880000,698.630000,3.530000,42.290000,9.040000 -1,2023-08-16 14:00:00,0.000000,19.200000,33.000000,7.000000,133.000000,86.720000,23.120000,699.190000,3.810000,42.710000,9.720000 -1,2023-08-16 15:00:00,0.000000,19.200000,33.000000,7.000000,133.000000,87.210000,23.360000,699.740000,4.080000,43.120000,10.350000 -1,2023-08-16 16:00:00,0.000000,19.200000,33.000000,7.000000,133.000000,87.630000,23.600000,700.300000,4.340000,43.530000,10.940000 -1,2023-08-16 17:00:00,0.000000,21.600000,28.000000,9.000000,126.000000,88.260000,23.900000,700.990000,5.250000,44.050000,12.850000 -1,2023-08-16 18:00:00,0.000000,21.600000,28.000000,9.000000,126.000000,88.810000,24.200000,701.680000,5.680000,44.560000,13.750000 -1,2023-08-16 19:00:00,0.000000,21.600000,28.000000,9.000000,126.000000,89.270000,24.500000,702.380000,6.070000,45.080000,14.560000 -1,2023-08-16 20:00:00,0.000000,21.600000,28.000000,9.000000,126.000000,89.660000,24.810000,703.070000,6.420000,45.590000,15.300000 -1,2023-08-16 21:00:00,0.000000,21.600000,28.000000,9.000000,126.000000,89.990000,24.810000,703.070000,6.730000,45.590000,15.860000 -1,2023-08-16 22:00:00,0.000000,21.600000,28.000000,9.000000,126.000000,90.270000,24.810000,703.070000,7.010000,45.590000,16.340000 -1,2023-08-16 23:00:00,0.000000,13.300000,47.000000,6.000000,124.000000,90.080000,24.810000,703.070000,5.860000,45.590000,14.270000 -1,2023-08-17 00:00:00,0.000000,13.300000,47.000000,6.000000,124.000000,89.910000,24.810000,703.070000,5.720000,45.590000,14.010000 -1,2023-08-17 01:00:00,0.000000,13.300000,47.000000,6.000000,124.000000,89.760000,24.810000,703.070000,5.600000,45.590000,13.770000 -1,2023-08-17 02:00:00,0.000000,13.300000,47.000000,6.000000,124.000000,89.620000,24.810000,703.070000,5.490000,45.590000,13.560000 -1,2023-08-17 03:00:00,0.000000,13.300000,47.000000,6.000000,124.000000,89.500000,24.810000,703.070000,5.390000,45.590000,13.370000 -1,2023-08-17 04:00:00,0.000000,13.300000,47.000000,6.000000,124.000000,89.390000,24.810000,703.070000,5.310000,45.590000,13.200000 -1,2023-08-17 05:00:00,0.000000,12.500000,61.000000,10.000000,137.000000,88.980000,24.810000,703.070000,6.120000,45.590000,14.760000 -1,2023-08-17 06:00:00,0.000000,12.500000,61.000000,10.000000,137.000000,88.620000,24.820000,703.710000,5.820000,45.630000,14.190000 -1,2023-08-17 07:00:00,0.000000,12.500000,61.000000,10.000000,137.000000,88.300000,24.840000,704.360000,5.560000,45.660000,13.700000 -1,2023-08-17 08:00:00,0.000000,12.500000,61.000000,10.000000,137.000000,88.020000,24.860000,705.010000,5.340000,45.700000,13.280000 -1,2023-08-17 09:00:00,0.000000,12.500000,61.000000,10.000000,137.000000,87.770000,24.880000,705.650000,5.150000,45.730000,12.920000 -1,2023-08-17 10:00:00,0.000000,12.500000,61.000000,10.000000,137.000000,87.550000,24.900000,706.300000,4.990000,45.770000,12.600000 -1,2023-08-17 11:00:00,4.970000,15.900000,95.000000,11.000000,155.000000,31.170000,19.530000,669.670000,0.010000,36.410000,0.010000 -1,2023-08-17 12:00:00,0.000000,15.900000,95.000000,11.000000,155.000000,31.960000,19.530000,669.770000,0.010000,36.410000,0.010000 -1,2023-08-17 13:00:00,0.000000,15.900000,95.000000,11.000000,155.000000,32.750000,19.540000,669.870000,0.010000,36.420000,0.020000 -1,2023-08-17 14:00:00,0.000000,15.900000,95.000000,11.000000,155.000000,33.520000,19.540000,669.980000,0.010000,36.420000,0.020000 -1,2023-08-17 15:00:00,0.000000,15.900000,95.000000,11.000000,155.000000,34.290000,19.540000,670.080000,0.020000,36.430000,0.020000 -1,2023-08-17 16:00:00,0.000000,15.900000,95.000000,11.000000,155.000000,35.050000,19.550000,670.180000,0.020000,36.430000,0.030000 -1,2023-08-17 17:00:00,9.450000,18.300000,79.000000,4.000000,165.000000,9.430000,10.890000,600.840000,0.000000,20.840000,0.000000 -1,2023-08-17 18:00:00,0.000000,18.300000,79.000000,4.000000,165.000000,11.790000,10.910000,601.350000,0.000000,20.870000,0.000000 -1,2023-08-17 19:00:00,0.000000,18.300000,79.000000,4.000000,165.000000,14.150000,10.920000,601.850000,0.000000,20.900000,0.000000 -1,2023-08-17 20:00:00,0.000000,18.300000,79.000000,4.000000,165.000000,16.510000,10.940000,602.360000,0.000000,20.930000,0.000000 -1,2023-08-17 21:00:00,0.000000,18.300000,79.000000,4.000000,165.000000,18.850000,10.940000,602.360000,0.000000,20.930000,0.000000 -1,2023-08-17 22:00:00,0.000000,18.300000,79.000000,4.000000,165.000000,21.180000,10.940000,602.360000,0.000000,20.930000,0.000000 -1,2023-08-17 23:00:00,0.000000,14.500000,66.000000,10.000000,257.000000,24.560000,10.940000,602.360000,0.000000,20.930000,0.000000 -1,2023-08-18 00:00:00,0.000000,14.500000,66.000000,10.000000,257.000000,27.880000,10.940000,602.360000,0.000000,20.930000,0.000000 -1,2023-08-18 01:00:00,0.000000,14.500000,66.000000,10.000000,257.000000,31.130000,10.940000,602.360000,0.010000,20.930000,0.010000 -1,2023-08-18 02:00:00,0.000000,14.500000,66.000000,10.000000,257.000000,34.300000,10.940000,602.360000,0.020000,20.930000,0.020000 -1,2023-08-18 03:00:00,0.000000,14.500000,66.000000,10.000000,257.000000,37.370000,10.940000,602.360000,0.030000,20.930000,0.030000 -1,2023-08-18 04:00:00,0.000000,14.500000,66.000000,10.000000,257.000000,40.350000,10.940000,602.360000,0.060000,20.930000,0.060000 -1,2023-08-18 05:00:00,0.000000,11.000000,75.000000,10.000000,207.000000,42.410000,10.940000,602.360000,0.090000,20.930000,0.080000 -1,2023-08-18 06:00:00,0.000000,11.000000,75.000000,10.000000,207.000000,44.410000,11.010000,602.570000,0.120000,21.060000,0.120000 -1,2023-08-18 07:00:00,0.000000,11.000000,75.000000,10.000000,207.000000,46.350000,11.090000,602.790000,0.170000,21.200000,0.160000 -1,2023-08-18 08:00:00,0.000000,11.000000,75.000000,10.000000,207.000000,48.210000,11.160000,603.010000,0.220000,21.330000,0.200000 -1,2023-08-18 09:00:00,0.000000,11.000000,75.000000,10.000000,207.000000,50.010000,11.230000,603.230000,0.270000,21.470000,0.260000 -1,2023-08-18 10:00:00,0.000000,11.000000,75.000000,10.000000,207.000000,51.730000,11.310000,603.440000,0.330000,21.600000,0.320000 -1,2023-08-18 11:00:00,0.000000,17.000000,45.000000,14.000000,223.000000,55.460000,11.550000,604.150000,0.590000,22.040000,0.570000 -1,2023-08-18 12:00:00,0.000000,17.000000,45.000000,14.000000,223.000000,58.910000,11.790000,604.860000,0.770000,22.480000,0.750000 -1,2023-08-18 13:00:00,0.000000,17.000000,45.000000,14.000000,223.000000,62.060000,12.030000,605.560000,0.930000,22.920000,0.920000 -1,2023-08-18 14:00:00,0.000000,17.000000,45.000000,14.000000,223.000000,64.940000,12.270000,606.270000,1.060000,23.350000,1.310000 -1,2023-08-18 15:00:00,0.000000,17.000000,45.000000,14.000000,223.000000,67.550000,12.510000,606.980000,1.170000,23.790000,1.660000 -1,2023-08-18 16:00:00,0.000000,17.000000,45.000000,14.000000,223.000000,69.910000,12.740000,607.680000,1.260000,24.220000,1.930000 -1,2023-08-18 17:00:00,0.000000,17.100000,43.000000,11.000000,233.000000,71.990000,12.990000,608.420000,1.160000,24.670000,1.710000 -2,2023-08-03 00:00:00,0.000000,13.700000,98.000000,6.000000,61.000000,84.500000,118.400000,826.100000,2.660000,174.330000,15.000000 -2,2023-08-03 01:00:00,0.000000,13.700000,98.000000,6.000000,61.000000,83.210000,118.400000,826.100000,2.240000,174.330000,13.130000 -2,2023-08-03 02:00:00,0.000000,11.900000,97.000000,2.000000,52.000000,82.330000,118.400000,826.100000,1.640000,174.330000,10.200000 -2,2023-08-03 03:00:00,0.000000,11.900000,97.000000,2.000000,52.000000,81.550000,118.400000,826.100000,1.490000,174.330000,9.430000 -2,2023-08-03 04:00:00,0.000000,11.900000,97.000000,2.000000,52.000000,80.860000,118.400000,826.100000,1.380000,174.330000,8.810000 -2,2023-08-03 05:00:00,0.000000,10.800000,97.000000,2.000000,10.000000,80.250000,118.410000,826.120000,1.290000,174.340000,8.310000 -2,2023-08-03 06:00:00,0.000000,10.800000,97.000000,2.000000,10.000000,79.710000,118.410000,826.150000,1.220000,174.350000,7.910000 -2,2023-08-03 07:00:00,0.000000,10.800000,97.000000,2.000000,10.000000,79.220000,118.420000,826.170000,1.160000,174.360000,7.580000 -2,2023-08-03 08:00:00,0.000000,14.600000,83.000000,2.000000,82.000000,79.250000,118.470000,826.340000,1.170000,174.420000,7.600000 -2,2023-08-03 09:00:00,0.000000,14.600000,83.000000,2.000000,82.000000,79.290000,118.510000,826.510000,1.170000,174.480000,7.620000 -2,2023-08-03 10:00:00,0.000000,14.600000,83.000000,2.000000,82.000000,79.320000,118.560000,826.680000,1.170000,174.540000,7.650000 -2,2023-08-03 11:00:00,0.000000,20.000000,59.000000,6.000000,83.000000,80.000000,118.710000,827.260000,1.540000,174.740000,9.670000 -2,2023-08-03 12:00:00,0.000000,20.000000,59.000000,6.000000,83.000000,80.610000,118.870000,827.840000,1.640000,174.940000,10.220000 -2,2023-08-03 13:00:00,0.000000,20.000000,59.000000,6.000000,83.000000,81.160000,119.030000,828.420000,1.750000,175.140000,10.760000 -2,2023-08-03 14:00:00,0.000000,23.200000,45.000000,8.000000,70.000000,82.230000,119.280000,829.370000,2.190000,175.470000,12.920000 -2,2023-08-03 15:00:00,0.000000,23.200000,45.000000,8.000000,70.000000,83.150000,119.540000,830.310000,2.460000,175.800000,14.160000 -2,2023-08-03 16:00:00,0.000000,23.200000,45.000000,8.000000,70.000000,83.950000,119.790000,831.260000,2.730000,176.130000,15.350000 -2,2023-08-03 17:00:00,1.870000,20.700000,73.000000,8.000000,66.000000,54.780000,95.590000,815.080000,0.410000,147.840000,2.250000 -2,2023-08-03 18:00:00,0.000000,20.700000,73.000000,8.000000,66.000000,57.020000,95.700000,815.480000,0.500000,147.980000,2.930000 -2,2023-08-03 19:00:00,0.000000,20.700000,73.000000,8.000000,66.000000,59.130000,95.810000,815.880000,0.580000,148.130000,3.540000 -2,2023-08-03 20:00:00,2.850000,18.200000,90.000000,3.000000,58.000000,32.000000,73.880000,790.740000,0.010000,119.780000,0.020000 -2,2023-08-03 21:00:00,0.000000,18.200000,90.000000,3.000000,58.000000,33.080000,73.920000,790.870000,0.010000,119.830000,0.030000 -2,2023-08-03 22:00:00,0.000000,18.200000,90.000000,3.000000,58.000000,34.160000,73.920000,790.870000,0.010000,119.830000,0.040000 -2,2023-08-03 23:00:00,1.020000,14.500000,94.000000,1.000000,284.000000,27.790000,68.090000,781.830000,0.000000,111.830000,0.010000 -2,2023-08-04 00:00:00,0.000000,14.500000,94.000000,1.000000,284.000000,28.270000,68.090000,781.830000,0.000000,111.830000,0.010000 -2,2023-08-04 01:00:00,0.000000,14.500000,94.000000,1.000000,284.000000,28.760000,68.090000,781.830000,0.000000,111.830000,0.010000 -2,2023-08-04 02:00:00,0.000000,12.500000,97.000000,3.000000,236.000000,29.050000,68.090000,781.830000,0.000000,111.830000,0.010000 -2,2023-08-04 03:00:00,0.000000,12.500000,97.000000,3.000000,236.000000,29.340000,68.090000,781.830000,0.000000,111.830000,0.010000 -2,2023-08-04 04:00:00,0.000000,12.500000,97.000000,3.000000,236.000000,29.640000,68.090000,781.830000,0.000000,111.830000,0.010000 -2,2023-08-04 05:00:00,0.010000,11.300000,98.000000,4.000000,269.000000,29.840000,68.090000,781.840000,0.000000,111.830000,0.010000 -2,2023-08-04 06:00:00,0.000000,11.300000,98.000000,4.000000,269.000000,30.040000,68.090000,781.850000,0.000000,111.840000,0.010000 -2,2023-08-04 07:00:00,0.000000,11.300000,98.000000,4.000000,269.000000,30.250000,68.100000,781.860000,0.000000,111.840000,0.010000 -2,2023-08-04 08:00:00,0.040000,14.700000,88.000000,3.000000,281.000000,31.380000,68.120000,781.950000,0.010000,111.880000,0.020000 -2,2023-08-04 09:00:00,0.000000,14.700000,88.000000,3.000000,281.000000,32.500000,68.150000,782.040000,0.010000,111.910000,0.020000 -2,2023-08-04 10:00:00,0.000000,14.700000,88.000000,3.000000,281.000000,33.610000,68.170000,782.130000,0.010000,111.950000,0.030000 -2,2023-08-04 11:00:00,0.000000,21.600000,59.000000,6.000000,39.000000,37.660000,68.300000,782.580000,0.030000,112.130000,0.090000 -2,2023-08-04 12:00:00,0.000000,21.600000,59.000000,6.000000,39.000000,41.540000,68.430000,783.040000,0.060000,112.310000,0.190000 -2,2023-08-04 13:00:00,0.000000,21.600000,59.000000,6.000000,39.000000,45.240000,68.550000,783.500000,0.120000,112.500000,0.350000 -2,2023-08-04 14:00:00,0.000000,23.400000,48.000000,11.000000,5.000000,50.140000,68.730000,784.150000,0.290000,112.760000,0.870000 -2,2023-08-04 15:00:00,0.000000,23.400000,48.000000,11.000000,5.000000,54.660000,68.910000,784.800000,0.470000,113.020000,2.240000 -2,2023-08-04 16:00:00,0.000000,23.400000,48.000000,11.000000,5.000000,58.780000,69.090000,785.440000,0.660000,113.280000,3.470000 -2,2023-08-04 17:00:00,0.000000,23.700000,44.000000,12.000000,354.000000,62.820000,69.290000,786.160000,0.880000,113.560000,4.770000 -2,2023-08-04 18:00:00,0.000000,23.700000,44.000000,12.000000,354.000000,66.430000,69.490000,786.870000,1.020000,113.850000,5.550000 -2,2023-08-04 19:00:00,0.000000,23.700000,44.000000,12.000000,354.000000,69.610000,69.690000,787.580000,1.130000,114.130000,6.160000 -2,2023-08-04 20:00:00,0.000000,22.000000,50.000000,5.000000,347.000000,71.620000,69.850000,788.150000,0.850000,114.360000,4.640000 -2,2023-08-04 21:00:00,0.000000,22.000000,50.000000,5.000000,347.000000,73.430000,70.010000,788.720000,0.910000,114.590000,4.990000 -2,2023-08-04 22:00:00,0.000000,22.000000,50.000000,5.000000,347.000000,75.060000,70.010000,788.720000,0.990000,114.590000,5.410000 -2,2023-08-04 23:00:00,0.000000,16.300000,70.000000,5.000000,267.000000,75.670000,70.010000,788.720000,1.020000,114.590000,5.610000 -2,2023-08-05 00:00:00,0.000000,16.300000,70.000000,5.000000,267.000000,76.240000,70.010000,788.720000,1.060000,114.590000,5.810000 -2,2023-08-05 01:00:00,0.000000,16.300000,70.000000,5.000000,267.000000,76.770000,70.010000,788.720000,1.100000,114.590000,6.010000 -2,2023-08-05 02:00:00,0.000000,13.800000,81.000000,7.000000,250.000000,76.990000,70.010000,788.720000,1.240000,114.590000,6.710000 -2,2023-08-05 03:00:00,0.000000,13.800000,81.000000,7.000000,250.000000,77.190000,70.010000,788.720000,1.260000,114.590000,6.810000 -2,2023-08-05 04:00:00,0.000000,13.800000,81.000000,7.000000,250.000000,77.380000,70.010000,788.720000,1.270000,114.590000,6.900000 -2,2023-08-05 05:00:00,0.000000,12.900000,88.000000,7.000000,261.000000,77.410000,70.030000,788.810000,1.280000,114.620000,6.920000 -2,2023-08-05 06:00:00,0.000000,12.900000,88.000000,7.000000,261.000000,77.440000,70.050000,788.890000,1.280000,114.650000,6.930000 -2,2023-08-05 07:00:00,0.000000,12.900000,88.000000,7.000000,261.000000,77.470000,70.080000,788.980000,1.280000,114.690000,6.950000 -2,2023-08-05 08:00:00,0.000000,18.100000,70.000000,4.000000,303.000000,77.940000,70.150000,789.270000,1.150000,114.800000,6.250000 -2,2023-08-05 09:00:00,0.000000,18.100000,70.000000,4.000000,303.000000,78.370000,70.230000,789.570000,1.190000,114.910000,6.480000 -2,2023-08-05 10:00:00,0.000000,18.100000,70.000000,4.000000,303.000000,78.780000,70.310000,789.860000,1.230000,115.020000,6.710000 -2,2023-08-05 11:00:00,0.000000,21.300000,61.000000,8.000000,351.000000,79.560000,70.430000,790.330000,1.630000,115.200000,8.600000 -2,2023-08-05 12:00:00,0.000000,21.300000,61.000000,8.000000,351.000000,80.250000,70.560000,790.800000,1.750000,115.380000,9.160000 -2,2023-08-05 13:00:00,0.000000,21.300000,61.000000,8.000000,351.000000,80.870000,70.680000,791.270000,1.870000,115.560000,9.710000 -2,2023-08-05 14:00:00,0.050000,21.000000,58.000000,10.000000,356.000000,81.520000,70.810000,791.770000,2.230000,115.750000,11.230000 -2,2023-08-05 15:00:00,0.000000,21.000000,58.000000,10.000000,356.000000,82.090000,70.940000,792.270000,2.380000,115.930000,11.880000 -2,2023-08-05 16:00:00,0.000000,21.000000,58.000000,10.000000,356.000000,82.590000,71.070000,792.760000,2.540000,116.120000,12.490000 -2,2023-08-05 17:00:00,0.000000,21.600000,52.000000,7.000000,3.000000,83.170000,71.230000,793.350000,2.350000,116.340000,11.750000 -2,2023-08-05 18:00:00,0.000000,21.600000,52.000000,7.000000,3.000000,83.690000,71.380000,793.940000,2.510000,116.570000,12.410000 -2,2023-08-05 19:00:00,0.000000,21.600000,52.000000,7.000000,3.000000,84.130000,71.540000,794.530000,2.660000,116.790000,13.020000 -2,2023-08-05 20:00:00,0.000000,20.500000,55.000000,4.000000,11.000000,84.400000,71.680000,795.040000,2.370000,116.990000,11.880000 -2,2023-08-05 21:00:00,0.000000,20.500000,55.000000,4.000000,11.000000,84.630000,71.810000,795.560000,2.450000,117.180000,12.200000 -2,2023-08-05 22:00:00,0.000000,20.500000,55.000000,4.000000,11.000000,84.840000,71.810000,795.560000,2.520000,117.180000,12.480000 -2,2023-08-05 23:00:00,0.000000,15.700000,74.000000,0.000000,72.000000,84.760000,71.810000,795.560000,2.040000,117.180000,10.510000 -2,2023-08-06 00:00:00,0.000000,15.700000,74.000000,0.000000,72.000000,84.690000,71.810000,795.560000,2.020000,117.180000,10.420000 -2,2023-08-06 01:00:00,0.000000,15.700000,74.000000,0.000000,72.000000,84.630000,71.810000,795.560000,2.000000,117.180000,10.350000 -2,2023-08-06 02:00:00,0.000000,13.500000,84.000000,2.000000,224.000000,84.260000,71.810000,795.560000,2.100000,117.180000,10.790000 -2,2023-08-06 03:00:00,0.000000,13.500000,84.000000,2.000000,224.000000,83.930000,71.810000,795.560000,2.010000,117.180000,10.410000 -2,2023-08-06 04:00:00,0.000000,13.500000,84.000000,2.000000,224.000000,83.640000,71.810000,795.560000,1.940000,117.180000,10.080000 -2,2023-08-06 05:00:00,0.000000,12.400000,88.000000,2.000000,198.000000,83.220000,71.830000,795.620000,1.840000,117.210000,9.640000 -2,2023-08-06 06:00:00,0.000000,12.400000,88.000000,2.000000,198.000000,82.860000,71.860000,795.680000,1.750000,117.240000,9.260000 -2,2023-08-06 07:00:00,0.000000,12.400000,88.000000,2.000000,198.000000,82.530000,71.880000,795.740000,1.680000,117.270000,8.940000 -2,2023-08-06 08:00:00,0.000000,17.400000,60.000000,4.000000,133.000000,82.770000,71.980000,796.010000,1.920000,117.420000,9.990000 -2,2023-08-06 09:00:00,0.000000,17.400000,60.000000,4.000000,133.000000,82.990000,72.080000,796.280000,1.970000,117.560000,10.240000 -2,2023-08-06 10:00:00,0.000000,17.400000,60.000000,4.000000,133.000000,83.190000,72.190000,796.550000,2.020000,117.710000,10.470000 -2,2023-08-06 11:00:00,0.000000,21.500000,44.000000,6.000000,120.000000,83.900000,72.370000,797.030000,2.450000,117.970000,12.260000 -2,2023-08-06 12:00:00,0.000000,21.500000,44.000000,6.000000,120.000000,84.510000,72.560000,797.520000,2.660000,118.220000,13.100000 -2,2023-08-06 13:00:00,0.000000,21.500000,44.000000,6.000000,120.000000,85.050000,72.740000,798.010000,2.870000,118.480000,13.900000 -2,2023-08-06 14:00:00,0.000000,23.400000,42.000000,7.000000,102.000000,85.670000,72.960000,798.570000,3.290000,118.790000,15.450000 -2,2023-08-06 15:00:00,0.000000,23.400000,42.000000,7.000000,102.000000,86.200000,73.170000,799.140000,3.540000,119.090000,16.360000 -2,2023-08-06 16:00:00,0.000000,23.400000,42.000000,7.000000,102.000000,86.650000,73.390000,799.710000,3.780000,119.390000,17.190000 -2,2023-08-06 17:00:00,0.000000,23.500000,40.000000,11.000000,76.000000,87.140000,73.610000,800.300000,4.950000,119.700000,20.980000 -2,2023-08-06 18:00:00,0.000000,23.500000,40.000000,11.000000,76.000000,87.560000,73.840000,800.890000,5.250000,120.010000,21.910000 -2,2023-08-06 19:00:00,0.000000,23.500000,40.000000,11.000000,76.000000,87.910000,74.060000,801.480000,5.520000,120.330000,22.730000 -2,2023-08-06 20:00:00,0.000000,20.900000,43.000000,10.000000,62.000000,88.020000,74.240000,801.960000,5.340000,120.580000,22.220000 -2,2023-08-06 21:00:00,0.000000,20.900000,43.000000,10.000000,62.000000,88.130000,74.420000,802.430000,5.420000,120.830000,22.470000 -2,2023-08-06 22:00:00,0.000000,20.900000,43.000000,10.000000,62.000000,88.210000,74.420000,802.430000,5.490000,120.830000,22.670000 -2,2023-08-06 23:00:00,0.000000,16.200000,53.000000,7.000000,65.000000,88.160000,74.420000,802.430000,4.680000,120.830000,20.240000 -2,2023-08-07 00:00:00,0.000000,16.200000,53.000000,7.000000,65.000000,88.120000,74.420000,802.430000,4.650000,120.830000,20.140000 -2,2023-08-07 01:00:00,0.000000,16.200000,53.000000,7.000000,65.000000,88.070000,74.420000,802.430000,4.620000,120.830000,20.050000 -2,2023-08-07 02:00:00,0.000000,14.900000,54.000000,6.000000,81.000000,88.000000,74.420000,802.430000,4.350000,120.830000,19.180000 -2,2023-08-07 03:00:00,0.000000,14.900000,54.000000,6.000000,81.000000,87.930000,74.420000,802.430000,4.310000,120.830000,19.050000 -2,2023-08-07 04:00:00,0.000000,14.900000,54.000000,6.000000,81.000000,87.870000,74.420000,802.430000,4.270000,120.830000,18.930000 -2,2023-08-07 05:00:00,0.000000,13.700000,57.000000,4.000000,71.000000,87.760000,74.500000,802.640000,3.800000,120.940000,17.360000 -2,2023-08-07 06:00:00,0.000000,13.700000,57.000000,4.000000,71.000000,87.650000,74.580000,802.840000,3.740000,121.050000,17.180000 -2,2023-08-07 07:00:00,0.000000,13.700000,57.000000,4.000000,71.000000,87.550000,74.660000,803.040000,3.690000,121.170000,17.010000 -2,2023-08-07 08:00:00,0.000000,17.200000,48.000000,6.000000,78.000000,87.550000,74.790000,803.350000,4.080000,121.330000,18.340000 -2,2023-08-07 09:00:00,0.000000,17.200000,48.000000,6.000000,78.000000,87.550000,74.910000,803.660000,4.080000,121.500000,18.350000 -2,2023-08-07 10:00:00,0.000000,17.200000,48.000000,6.000000,78.000000,87.550000,75.030000,803.970000,4.080000,121.670000,18.360000 -2,2023-08-07 11:00:00,0.000000,20.400000,41.000000,9.000000,71.000000,87.760000,75.190000,804.400000,4.890000,121.900000,20.950000 -2,2023-08-07 12:00:00,0.000000,20.400000,41.000000,9.000000,71.000000,87.930000,75.360000,804.820000,5.010000,122.130000,21.350000 -2,2023-08-07 13:00:00,0.000000,20.400000,41.000000,9.000000,71.000000,88.090000,75.530000,805.250000,5.120000,122.370000,21.700000 -2,2023-08-07 14:00:00,0.000000,21.300000,37.000000,10.000000,73.000000,88.360000,75.720000,805.730000,5.600000,122.630000,23.150000 -2,2023-08-07 15:00:00,0.000000,21.300000,37.000000,10.000000,73.000000,88.590000,75.910000,806.210000,5.790000,122.890000,23.720000 -2,2023-08-07 16:00:00,0.000000,21.300000,37.000000,10.000000,73.000000,88.790000,76.100000,806.690000,5.960000,123.150000,24.220000 -2,2023-08-07 17:00:00,0.000000,21.700000,35.000000,8.000000,87.000000,89.030000,76.300000,807.200000,5.580000,123.430000,23.130000 -2,2023-08-07 18:00:00,0.000000,21.700000,35.000000,8.000000,87.000000,89.230000,76.500000,807.710000,5.740000,123.700000,23.620000 -2,2023-08-07 19:00:00,0.000000,21.700000,35.000000,8.000000,87.000000,89.400000,76.700000,808.220000,5.880000,123.980000,24.050000 -2,2023-08-07 20:00:00,0.000000,20.200000,38.000000,3.000000,98.000000,89.410000,76.870000,808.670000,4.580000,124.220000,20.150000 -2,2023-08-07 21:00:00,0.000000,20.200000,38.000000,3.000000,98.000000,89.430000,77.040000,809.110000,4.590000,124.460000,20.200000 -2,2023-08-07 22:00:00,0.000000,20.200000,38.000000,3.000000,98.000000,89.440000,77.040000,809.110000,4.600000,124.460000,20.230000 -2,2023-08-07 23:00:00,0.000000,15.700000,49.000000,4.000000,62.000000,89.340000,77.040000,809.110000,4.770000,124.460000,20.750000 -2,2023-08-08 00:00:00,0.000000,15.700000,49.000000,4.000000,62.000000,89.240000,77.040000,809.110000,4.700000,124.460000,20.550000 -2,2023-08-08 01:00:00,0.000000,15.700000,49.000000,4.000000,62.000000,89.150000,77.040000,809.110000,4.640000,124.460000,20.360000 -2,2023-08-08 02:00:00,0.000000,12.500000,56.000000,5.000000,66.000000,88.910000,77.040000,809.110000,4.710000,124.460000,20.590000 -2,2023-08-08 03:00:00,0.000000,12.500000,56.000000,5.000000,66.000000,88.690000,77.040000,809.110000,4.570000,124.460000,20.130000 -2,2023-08-08 04:00:00,0.000000,12.500000,56.000000,5.000000,66.000000,88.500000,77.040000,809.110000,4.440000,124.460000,19.720000 -2,2023-08-08 05:00:00,0.000000,11.100000,57.000000,6.000000,68.000000,88.280000,77.130000,809.320000,4.530000,124.580000,20.010000 -2,2023-08-08 06:00:00,0.000000,11.100000,57.000000,6.000000,68.000000,88.090000,77.210000,809.520000,4.410000,124.690000,19.620000 -2,2023-08-08 07:00:00,0.000000,11.100000,57.000000,6.000000,68.000000,87.910000,77.300000,809.730000,4.300000,124.810000,19.270000 -2,2023-08-08 08:00:00,0.000000,15.900000,42.000000,11.000000,64.000000,87.940000,77.450000,810.100000,5.540000,125.020000,23.160000 -2,2023-08-08 09:00:00,0.000000,15.900000,42.000000,11.000000,64.000000,87.950000,77.610000,810.480000,5.560000,125.230000,23.220000 -2,2023-08-08 10:00:00,0.000000,15.900000,42.000000,11.000000,64.000000,87.970000,77.760000,810.860000,5.570000,125.450000,23.270000 -2,2023-08-08 11:00:00,0.000000,20.100000,38.000000,17.000000,53.000000,88.220000,77.980000,811.390000,7.810000,125.740000,29.420000 -2,2023-08-08 12:00:00,0.000000,20.100000,38.000000,17.000000,53.000000,88.430000,78.190000,811.920000,8.050000,126.040000,30.050000 -2,2023-08-08 13:00:00,0.000000,20.100000,38.000000,17.000000,53.000000,88.600000,78.410000,812.450000,8.260000,126.340000,30.590000 -2,2023-08-08 14:00:00,0.000000,21.900000,38.000000,19.000000,60.000000,88.810000,78.650000,813.030000,9.410000,126.670000,33.440000 -2,2023-08-08 15:00:00,0.000000,21.900000,38.000000,19.000000,60.000000,88.990000,78.890000,813.620000,9.650000,127.000000,34.030000 -2,2023-08-08 16:00:00,0.000000,21.900000,38.000000,19.000000,60.000000,89.140000,79.130000,814.210000,9.860000,127.330000,34.540000 -2,2023-08-08 17:00:00,1.400000,18.600000,63.000000,16.000000,90.000000,70.610000,79.250000,814.500000,1.430000,127.490000,8.090000 -2,2023-08-08 18:00:00,0.000000,18.600000,63.000000,16.000000,90.000000,72.220000,79.370000,814.790000,1.510000,127.650000,8.510000 -2,2023-08-08 19:00:00,0.000000,18.600000,63.000000,16.000000,90.000000,73.670000,79.490000,815.070000,1.600000,127.810000,8.960000 -2,2023-08-08 20:00:00,0.000000,17.700000,55.000000,10.000000,88.000000,75.010000,79.620000,815.400000,1.270000,128.000000,7.290000 -2,2023-08-08 21:00:00,0.000000,17.700000,55.000000,10.000000,88.000000,76.220000,79.760000,815.730000,1.360000,128.180000,7.790000 -2,2023-08-08 22:00:00,0.000000,17.700000,55.000000,10.000000,88.000000,77.310000,79.760000,815.730000,1.470000,128.180000,8.340000 -2,2023-08-08 23:00:00,0.000000,12.800000,78.000000,6.000000,83.000000,77.530000,79.760000,815.730000,1.230000,128.180000,7.070000 -2,2023-08-09 00:00:00,0.000000,12.800000,78.000000,6.000000,83.000000,77.740000,79.760000,815.730000,1.250000,128.180000,7.180000 -2,2023-08-09 01:00:00,0.000000,12.800000,78.000000,6.000000,83.000000,77.940000,79.760000,815.730000,1.270000,128.180000,7.290000 -2,2023-08-09 02:00:00,0.000000,10.100000,90.000000,3.000000,91.000000,77.940000,79.760000,815.730000,1.090000,128.180000,6.340000 -2,2023-08-09 03:00:00,0.000000,10.100000,90.000000,3.000000,91.000000,77.940000,79.760000,815.730000,1.090000,128.180000,6.340000 -2,2023-08-09 04:00:00,0.000000,10.100000,90.000000,3.000000,91.000000,77.940000,79.760000,815.730000,1.090000,128.180000,6.340000 -2,2023-08-09 05:00:00,0.000000,8.500000,96.000000,2.000000,67.000000,77.690000,79.760000,815.750000,1.010000,128.190000,5.920000 -2,2023-08-09 06:00:00,0.000000,8.500000,96.000000,2.000000,67.000000,77.460000,79.770000,815.760000,1.000000,128.200000,5.820000 -2,2023-08-09 07:00:00,0.000000,8.500000,96.000000,2.000000,67.000000,77.250000,79.780000,815.770000,0.980000,128.210000,5.730000 -2,2023-08-09 08:00:00,0.000000,14.500000,59.000000,6.000000,86.000000,77.910000,79.870000,815.990000,1.260000,128.330000,7.280000 -2,2023-08-09 09:00:00,0.000000,14.500000,59.000000,6.000000,86.000000,78.520000,79.960000,816.200000,1.330000,128.460000,7.640000 -2,2023-08-09 10:00:00,0.000000,14.500000,59.000000,6.000000,86.000000,79.080000,80.060000,816.420000,1.400000,128.590000,8.000000 -2,2023-08-09 11:00:00,0.000000,20.700000,35.000000,12.000000,88.000000,80.690000,80.270000,816.920000,2.240000,128.890000,11.870000 -2,2023-08-09 12:00:00,0.000000,20.700000,35.000000,12.000000,88.000000,82.090000,80.490000,817.420000,2.630000,129.180000,13.520000 -2,2023-08-09 13:00:00,0.000000,20.700000,35.000000,12.000000,88.000000,83.290000,80.710000,817.930000,3.060000,129.480000,15.200000 -2,2023-08-09 14:00:00,0.000000,22.600000,30.000000,14.000000,76.000000,84.660000,80.980000,818.530000,4.070000,129.840000,18.810000 -2,2023-08-09 15:00:00,0.000000,22.600000,30.000000,14.000000,76.000000,85.810000,81.240000,819.140000,4.770000,130.200000,21.130000 -2,2023-08-09 16:00:00,0.000000,22.600000,30.000000,14.000000,76.000000,86.770000,81.500000,819.750000,5.460000,130.560000,23.310000 -2,2023-08-09 17:00:00,0.000000,22.500000,31.000000,17.000000,66.000000,87.570000,81.760000,820.350000,7.120000,130.910000,28.030000 -2,2023-08-09 18:00:00,0.000000,22.500000,31.000000,17.000000,66.000000,88.220000,82.020000,820.940000,7.820000,131.260000,29.910000 -2,2023-08-09 19:00:00,0.000000,22.500000,31.000000,17.000000,66.000000,88.770000,82.280000,821.540000,8.450000,131.610000,31.550000 -2,2023-08-09 20:00:00,0.000000,20.100000,38.000000,15.000000,64.000000,88.890000,82.480000,822.000000,7.770000,131.880000,29.840000 -2,2023-08-09 21:00:00,0.000000,20.100000,38.000000,15.000000,64.000000,88.990000,82.680000,822.460000,7.890000,132.150000,30.160000 -2,2023-08-09 22:00:00,0.000000,20.100000,38.000000,15.000000,64.000000,89.070000,82.680000,822.460000,7.980000,132.150000,30.410000 -2,2023-08-09 23:00:00,0.000000,16.600000,49.000000,9.000000,85.000000,89.000000,82.680000,822.460000,5.840000,132.150000,24.550000 -2,2023-08-10 00:00:00,0.000000,16.600000,49.000000,9.000000,85.000000,88.950000,82.680000,822.460000,5.800000,132.150000,24.400000 -2,2023-08-10 01:00:00,0.000000,16.600000,49.000000,9.000000,85.000000,88.890000,82.680000,822.460000,5.750000,132.150000,24.270000 -2,2023-08-10 02:00:00,0.000000,15.000000,49.000000,9.000000,120.000000,88.820000,82.680000,822.460000,5.690000,132.150000,24.100000 -2,2023-08-10 03:00:00,0.000000,15.000000,49.000000,9.000000,120.000000,88.760000,82.680000,822.460000,5.640000,132.150000,23.940000 -2,2023-08-10 04:00:00,0.000000,15.000000,49.000000,9.000000,120.000000,88.700000,82.680000,822.460000,5.590000,132.150000,23.800000 -2,2023-08-10 05:00:00,0.000000,13.600000,57.000000,8.000000,100.000000,88.480000,82.780000,822.700000,5.150000,132.290000,22.470000 -2,2023-08-10 06:00:00,0.000000,13.600000,57.000000,8.000000,100.000000,88.280000,82.880000,822.930000,5.010000,132.420000,22.020000 -2,2023-08-10 07:00:00,0.000000,13.600000,57.000000,8.000000,100.000000,88.100000,82.980000,823.170000,4.880000,132.550000,21.640000 -2,2023-08-10 08:00:00,0.000000,17.200000,51.000000,11.000000,101.000000,88.100000,83.120000,823.510000,5.680000,132.750000,24.090000 -2,2023-08-10 09:00:00,0.000000,17.200000,51.000000,11.000000,101.000000,88.100000,83.260000,823.850000,5.680000,132.940000,24.110000 -2,2023-08-10 10:00:00,0.000000,17.200000,51.000000,11.000000,101.000000,88.100000,83.410000,824.190000,5.680000,133.130000,24.120000 -2,2023-08-10 11:00:00,0.000000,21.300000,38.000000,17.000000,115.000000,88.370000,83.640000,824.740000,7.980000,133.440000,30.510000 -2,2023-08-10 12:00:00,0.000000,21.300000,38.000000,17.000000,115.000000,88.590000,83.870000,825.300000,8.250000,133.760000,31.210000 -2,2023-08-10 13:00:00,0.000000,21.300000,38.000000,17.000000,115.000000,88.780000,84.100000,825.850000,8.470000,134.070000,31.800000 -2,2023-08-10 14:00:00,0.000000,21.800000,38.000000,17.000000,136.000000,88.960000,84.340000,826.420000,8.690000,134.400000,32.370000 -2,2023-08-10 15:00:00,0.000000,21.800000,38.000000,17.000000,136.000000,89.100000,84.580000,826.990000,8.870000,134.720000,32.840000 -2,2023-08-10 16:00:00,0.000000,21.800000,38.000000,17.000000,136.000000,89.220000,84.820000,827.560000,9.020000,135.040000,33.250000 -2,2023-08-10 17:00:00,0.000000,20.200000,48.000000,17.000000,148.000000,89.220000,85.000000,828.000000,9.020000,135.290000,33.270000 -2,2023-08-10 18:00:00,0.000000,20.200000,48.000000,17.000000,148.000000,89.220000,85.190000,828.430000,9.020000,135.530000,33.290000 -2,2023-08-10 19:00:00,0.000000,20.200000,48.000000,17.000000,148.000000,89.220000,85.370000,828.870000,9.020000,135.780000,33.310000 -2,2023-08-10 20:00:00,0.000000,20.200000,48.000000,17.000000,148.000000,89.220000,85.550000,829.300000,9.020000,136.020000,33.330000 -2,2023-08-10 21:00:00,0.000000,20.200000,48.000000,17.000000,148.000000,89.220000,85.550000,829.300000,9.020000,136.020000,33.330000 -2,2023-08-10 22:00:00,0.000000,20.200000,48.000000,17.000000,148.000000,89.220000,85.550000,829.300000,9.020000,136.020000,33.330000 -2,2023-08-10 23:00:00,0.030000,17.000000,65.000000,7.000000,125.000000,88.790000,85.550000,829.300000,5.120000,136.020000,22.610000 -2,2023-08-11 00:00:00,0.000000,17.000000,65.000000,7.000000,125.000000,88.420000,85.550000,829.300000,4.860000,136.020000,21.760000 -2,2023-08-11 01:00:00,0.000000,17.000000,65.000000,7.000000,125.000000,88.090000,85.550000,829.300000,4.630000,136.020000,21.050000 -2,2023-08-11 02:00:00,0.000000,17.000000,65.000000,7.000000,125.000000,87.810000,85.550000,829.300000,4.450000,136.020000,20.440000 -2,2023-08-11 03:00:00,0.000000,17.000000,65.000000,7.000000,125.000000,87.560000,85.550000,829.300000,4.290000,136.020000,19.920000 -2,2023-08-11 04:00:00,0.000000,17.000000,65.000000,7.000000,125.000000,87.340000,85.550000,829.300000,4.160000,136.020000,19.480000 -2,2023-08-11 05:00:00,0.000000,14.000000,77.000000,4.000000,109.000000,86.850000,85.600000,829.430000,3.340000,136.080000,16.550000 -2,2023-08-11 06:00:00,0.000000,14.000000,77.000000,4.000000,109.000000,86.420000,85.640000,829.560000,3.140000,136.140000,15.800000 -2,2023-08-11 07:00:00,0.000000,14.000000,77.000000,4.000000,109.000000,86.040000,85.690000,829.690000,2.980000,136.210000,15.170000 -2,2023-08-11 08:00:00,0.000000,14.000000,77.000000,4.000000,109.000000,85.700000,85.730000,829.820000,2.840000,136.270000,14.630000 -2,2023-08-11 09:00:00,0.000000,14.000000,77.000000,4.000000,109.000000,85.400000,85.780000,829.950000,2.720000,136.330000,14.170000 -2,2023-08-11 10:00:00,0.000000,14.000000,77.000000,4.000000,109.000000,85.140000,85.820000,830.080000,2.620000,136.390000,13.770000 -2,2023-08-11 11:00:00,0.000000,21.100000,48.000000,5.000000,172.000000,85.470000,85.990000,830.550000,2.890000,136.610000,14.850000 -2,2023-08-11 12:00:00,0.000000,21.100000,48.000000,5.000000,172.000000,85.760000,86.150000,831.010000,3.010000,136.830000,15.330000 -2,2023-08-11 13:00:00,0.000000,21.100000,48.000000,5.000000,172.000000,86.020000,86.310000,831.470000,3.120000,137.060000,15.770000 -2,2023-08-11 14:00:00,0.000000,21.100000,48.000000,5.000000,172.000000,86.250000,86.470000,831.940000,3.220000,137.280000,16.160000 -2,2023-08-11 15:00:00,0.000000,21.100000,48.000000,5.000000,172.000000,86.450000,86.640000,832.400000,3.310000,137.500000,16.520000 -2,2023-08-11 16:00:00,0.000000,21.100000,48.000000,5.000000,172.000000,86.620000,86.800000,832.860000,3.400000,137.720000,16.840000 -2,2023-08-11 17:00:00,0.000000,25.200000,29.000000,10.000000,162.000000,87.590000,87.080000,833.670000,5.020000,138.100000,22.390000 -2,2023-08-11 18:00:00,0.000000,25.200000,29.000000,10.000000,162.000000,88.390000,87.370000,834.480000,5.630000,138.480000,24.310000 -2,2023-08-11 19:00:00,0.000000,25.200000,29.000000,10.000000,162.000000,89.060000,87.650000,835.290000,6.190000,138.870000,26.010000 -2,2023-08-11 20:00:00,0.000000,25.200000,29.000000,10.000000,162.000000,89.610000,87.930000,836.100000,6.700000,139.250000,27.490000 -2,2023-08-11 21:00:00,0.000000,25.200000,29.000000,10.000000,162.000000,90.060000,87.930000,836.100000,7.160000,139.250000,28.740000 -2,2023-08-11 22:00:00,0.000000,25.200000,29.000000,10.000000,162.000000,90.440000,87.930000,836.100000,7.550000,139.250000,29.810000 -2,2023-08-11 23:00:00,0.000000,17.600000,50.000000,7.000000,146.000000,90.210000,87.930000,836.100000,6.290000,139.250000,26.300000 -2,2023-08-12 00:00:00,0.000000,17.600000,50.000000,7.000000,146.000000,90.020000,87.930000,836.100000,6.110000,139.250000,25.780000 -2,2023-08-12 01:00:00,0.000000,17.600000,50.000000,7.000000,146.000000,89.840000,87.930000,836.100000,5.960000,139.250000,25.340000 -2,2023-08-12 02:00:00,0.000000,17.600000,50.000000,7.000000,146.000000,89.690000,87.930000,836.100000,5.830000,139.250000,24.950000 -2,2023-08-12 03:00:00,0.000000,17.600000,50.000000,7.000000,146.000000,89.550000,87.930000,836.100000,5.710000,139.250000,24.610000 -2,2023-08-12 04:00:00,0.000000,17.600000,50.000000,7.000000,146.000000,89.430000,87.930000,836.100000,5.610000,139.250000,24.310000 -2,2023-08-12 05:00:00,0.000000,13.600000,72.000000,4.000000,78.000000,88.830000,87.980000,836.260000,4.430000,139.320000,20.550000 -2,2023-08-12 06:00:00,0.000000,13.600000,72.000000,4.000000,78.000000,88.300000,88.040000,836.420000,4.110000,139.390000,19.450000 -2,2023-08-12 07:00:00,0.000000,13.600000,72.000000,4.000000,78.000000,87.830000,88.090000,836.580000,3.840000,139.460000,18.520000 -2,2023-08-12 08:00:00,0.000000,13.600000,72.000000,4.000000,78.000000,87.420000,88.140000,836.740000,3.620000,139.530000,17.730000 -2,2023-08-12 09:00:00,0.000000,13.600000,72.000000,4.000000,78.000000,87.050000,88.190000,836.900000,3.430000,139.600000,17.050000 -2,2023-08-12 10:00:00,0.000000,13.600000,72.000000,4.000000,78.000000,86.720000,88.240000,837.060000,3.280000,139.670000,16.470000 -2,2023-08-12 11:00:00,0.300000,20.800000,52.000000,4.000000,3.000000,86.770000,88.380000,837.490000,3.300000,139.860000,16.560000 -2,2023-08-12 12:00:00,0.000000,20.800000,52.000000,4.000000,3.000000,86.810000,88.520000,837.920000,3.320000,140.050000,16.640000 -2,2023-08-12 13:00:00,0.000000,20.800000,52.000000,4.000000,3.000000,86.850000,88.660000,838.350000,3.330000,140.240000,16.720000 -2,2023-08-12 14:00:00,0.000000,20.800000,52.000000,4.000000,3.000000,86.880000,88.800000,838.790000,3.350000,140.430000,16.780000 -2,2023-08-12 15:00:00,0.000000,20.800000,52.000000,4.000000,3.000000,86.910000,88.930000,839.220000,3.360000,140.620000,16.840000 -2,2023-08-12 16:00:00,0.000000,20.800000,52.000000,4.000000,3.000000,86.930000,89.070000,839.650000,3.380000,140.800000,16.900000 -2,2023-08-12 17:00:00,0.000000,25.500000,33.000000,5.000000,29.000000,87.630000,89.330000,840.450000,3.920000,141.150000,18.900000 -2,2023-08-12 18:00:00,0.000000,25.500000,33.000000,5.000000,29.000000,88.220000,89.590000,841.250000,4.270000,141.500000,20.110000 -2,2023-08-12 19:00:00,0.000000,25.500000,33.000000,5.000000,29.000000,88.720000,89.850000,842.050000,4.590000,141.850000,21.200000 -2,2023-08-12 20:00:00,0.000000,25.500000,33.000000,5.000000,29.000000,89.150000,90.100000,842.850000,4.880000,142.200000,22.160000 -2,2023-08-12 21:00:00,0.000000,25.500000,33.000000,5.000000,29.000000,89.500000,90.100000,842.850000,5.130000,142.200000,22.980000 -2,2023-08-12 22:00:00,0.000000,25.500000,33.000000,5.000000,29.000000,89.800000,90.100000,842.850000,5.360000,142.200000,23.690000 -2,2023-08-12 23:00:00,0.000000,18.800000,53.000000,7.000000,168.000000,89.600000,90.100000,842.850000,5.760000,142.200000,24.920000 -2,2023-08-13 00:00:00,0.000000,18.800000,53.000000,7.000000,168.000000,89.430000,90.100000,842.850000,5.620000,142.200000,24.480000 -2,2023-08-13 01:00:00,0.000000,18.800000,53.000000,7.000000,168.000000,89.280000,90.100000,842.850000,5.490000,142.200000,24.110000 -2,2023-08-13 02:00:00,0.000000,18.800000,53.000000,7.000000,168.000000,89.140000,90.100000,842.850000,5.390000,142.200000,23.780000 -2,2023-08-13 03:00:00,0.000000,18.800000,53.000000,7.000000,168.000000,89.020000,90.100000,842.850000,5.300000,142.200000,23.500000 -2,2023-08-13 04:00:00,0.000000,18.800000,53.000000,7.000000,168.000000,88.920000,90.100000,842.850000,5.220000,142.200000,23.260000 -2,2023-08-13 05:00:00,0.000000,15.300000,66.000000,9.000000,203.000000,88.480000,90.180000,843.020000,5.420000,142.310000,23.880000 -2,2023-08-13 06:00:00,0.000000,15.300000,66.000000,9.000000,203.000000,88.090000,90.260000,843.200000,5.120000,142.410000,22.960000 -2,2023-08-13 07:00:00,0.000000,15.300000,66.000000,9.000000,203.000000,87.750000,90.340000,843.370000,4.880000,142.520000,22.190000 -2,2023-08-13 08:00:00,0.000000,15.300000,66.000000,9.000000,203.000000,87.450000,90.430000,843.540000,4.680000,142.630000,21.540000 -2,2023-08-13 09:00:00,0.000000,15.300000,66.000000,9.000000,203.000000,87.200000,90.510000,843.720000,4.510000,142.730000,20.990000 -2,2023-08-13 10:00:00,0.000000,15.300000,66.000000,9.000000,203.000000,86.970000,90.590000,843.890000,4.370000,142.840000,20.510000 -2,2023-08-13 11:00:00,0.000000,24.800000,35.000000,14.000000,223.000000,87.670000,90.860000,844.490000,6.210000,143.210000,26.320000 -2,2023-08-13 12:00:00,0.000000,24.800000,35.000000,14.000000,223.000000,88.250000,91.140000,845.080000,6.750000,143.570000,27.890000 -2,2023-08-13 13:00:00,0.000000,24.800000,35.000000,14.000000,223.000000,88.730000,91.420000,845.680000,7.230000,143.940000,29.240000 -2,2023-08-13 14:00:00,0.000000,24.800000,35.000000,14.000000,223.000000,89.120000,91.700000,846.270000,7.650000,144.300000,30.400000 -2,2023-08-13 15:00:00,0.000000,24.800000,35.000000,14.000000,223.000000,89.440000,91.970000,846.870000,8.010000,144.670000,31.380000 -2,2023-08-13 16:00:00,0.000000,24.800000,35.000000,14.000000,223.000000,89.710000,92.250000,847.470000,8.320000,145.030000,32.210000 -2,2023-08-13 17:00:00,0.000000,26.800000,31.000000,17.000000,234.000000,90.180000,92.580000,848.180000,10.350000,145.470000,37.270000 -2,2023-08-13 18:00:00,0.000000,26.800000,31.000000,17.000000,234.000000,90.560000,92.920000,848.890000,10.930000,145.910000,38.640000 -2,2023-08-13 19:00:00,0.000000,26.800000,31.000000,17.000000,234.000000,90.860000,93.250000,849.610000,11.410000,146.340000,39.780000 -2,2023-08-13 20:00:00,0.000000,26.800000,31.000000,17.000000,234.000000,91.100000,93.580000,850.320000,11.810000,146.780000,40.700000 -2,2023-08-13 21:00:00,0.000000,26.800000,31.000000,17.000000,234.000000,91.300000,93.580000,850.320000,12.140000,146.780000,41.420000 -2,2023-08-13 22:00:00,0.000000,26.800000,31.000000,17.000000,234.000000,91.450000,93.580000,850.320000,12.410000,146.780000,42.000000 -2,2023-08-13 23:00:00,0.000000,23.000000,42.000000,13.000000,216.000000,91.350000,93.580000,850.320000,10.010000,146.780000,36.540000 -2,2023-08-14 00:00:00,0.000000,23.000000,42.000000,13.000000,216.000000,91.270000,93.580000,850.320000,9.890000,146.780000,36.260000 -2,2023-08-14 01:00:00,0.000000,23.000000,42.000000,13.000000,216.000000,91.200000,93.580000,850.320000,9.790000,146.780000,36.030000 -2,2023-08-14 02:00:00,0.000000,23.000000,42.000000,13.000000,216.000000,91.140000,93.580000,850.320000,9.710000,146.780000,35.830000 -2,2023-08-14 03:00:00,0.000000,23.000000,42.000000,13.000000,216.000000,91.090000,93.580000,850.320000,9.640000,146.780000,35.660000 -2,2023-08-14 04:00:00,0.000000,23.000000,42.000000,13.000000,216.000000,91.050000,93.580000,850.320000,9.580000,146.780000,35.520000 -2,2023-08-14 05:00:00,0.000000,20.500000,41.000000,12.000000,269.000000,90.990000,93.750000,850.660000,9.030000,147.000000,34.160000 -2,2023-08-14 06:00:00,0.000000,20.500000,41.000000,12.000000,269.000000,90.930000,93.920000,851.010000,8.960000,147.220000,33.990000 -2,2023-08-14 07:00:00,0.000000,20.500000,41.000000,12.000000,269.000000,90.880000,94.090000,851.360000,8.890000,147.450000,33.850000 -2,2023-08-14 08:00:00,0.000000,20.500000,41.000000,12.000000,269.000000,90.840000,94.270000,851.710000,8.840000,147.670000,33.730000 -2,2023-08-14 09:00:00,0.000000,20.500000,41.000000,12.000000,269.000000,90.800000,94.440000,852.050000,8.790000,147.900000,33.620000 -2,2023-08-14 10:00:00,0.000000,20.500000,41.000000,12.000000,269.000000,90.770000,94.610000,852.400000,8.750000,148.120000,33.530000 -2,2023-08-14 11:00:00,0.000000,24.100000,30.000000,11.000000,310.000000,90.940000,94.870000,852.910000,8.540000,148.450000,33.000000 -2,2023-08-14 12:00:00,0.000000,24.100000,30.000000,11.000000,310.000000,91.090000,95.120000,853.420000,8.720000,148.780000,33.480000 -2,2023-08-14 13:00:00,0.000000,24.100000,30.000000,11.000000,310.000000,91.210000,95.370000,853.940000,8.870000,149.110000,33.890000 -2,2023-08-14 14:00:00,0.000000,24.100000,30.000000,11.000000,310.000000,91.310000,95.630000,854.450000,8.990000,149.440000,34.230000 -2,2023-08-14 15:00:00,0.000000,24.100000,30.000000,11.000000,310.000000,91.390000,95.880000,854.960000,9.100000,149.770000,34.520000 -2,2023-08-14 16:00:00,0.000000,24.100000,30.000000,11.000000,310.000000,91.460000,96.140000,855.470000,9.190000,150.100000,34.760000 -2,2023-08-14 17:00:00,0.000000,24.700000,28.000000,4.000000,344.000000,91.590000,96.410000,856.020000,6.580000,150.450000,27.780000 -2,2023-08-14 18:00:00,0.000000,24.700000,28.000000,4.000000,344.000000,91.700000,96.680000,856.570000,6.680000,150.800000,28.100000 -2,2023-08-14 19:00:00,0.000000,24.700000,28.000000,4.000000,344.000000,91.800000,96.950000,857.110000,6.770000,151.160000,28.370000 -2,2023-08-14 20:00:00,0.000000,24.700000,28.000000,4.000000,344.000000,91.870000,97.220000,857.660000,6.850000,151.510000,28.610000 -2,2023-08-14 21:00:00,0.000000,24.700000,28.000000,4.000000,344.000000,91.940000,97.220000,857.660000,6.910000,151.510000,28.790000 -2,2023-08-14 22:00:00,0.000000,24.700000,28.000000,4.000000,344.000000,92.000000,97.220000,857.660000,6.970000,151.510000,28.950000 -2,2023-08-14 23:00:00,0.000000,19.100000,42.000000,2.000000,101.000000,91.830000,97.220000,857.660000,6.150000,151.510000,26.580000 -2,2023-08-15 00:00:00,0.000000,19.100000,42.000000,2.000000,101.000000,91.670000,97.220000,857.660000,6.020000,151.510000,26.180000 -2,2023-08-15 01:00:00,0.000000,19.100000,42.000000,2.000000,101.000000,91.530000,97.220000,857.660000,5.900000,151.510000,25.820000 -2,2023-08-15 02:00:00,0.000000,19.100000,42.000000,2.000000,101.000000,91.400000,97.220000,857.660000,5.790000,151.510000,25.500000 -2,2023-08-15 03:00:00,0.000000,19.100000,42.000000,2.000000,101.000000,91.290000,97.220000,857.660000,5.700000,151.510000,25.210000 -2,2023-08-15 04:00:00,0.000000,19.100000,42.000000,2.000000,101.000000,91.180000,97.220000,857.660000,5.610000,151.510000,24.950000 -2,2023-08-15 05:00:00,0.000000,16.500000,46.000000,1.000000,302.000000,91.010000,97.310000,858.030000,5.200000,151.630000,23.660000 -2,2023-08-15 06:00:00,0.000000,16.500000,46.000000,1.000000,302.000000,90.840000,97.400000,858.390000,5.080000,151.750000,23.280000 -2,2023-08-15 07:00:00,0.000000,16.500000,46.000000,1.000000,302.000000,90.690000,97.490000,858.760000,4.970000,151.870000,22.940000 -2,2023-08-15 08:00:00,0.000000,16.500000,46.000000,1.000000,302.000000,90.550000,97.580000,859.120000,4.880000,151.990000,22.620000 -2,2023-08-15 09:00:00,0.000000,16.500000,46.000000,1.000000,302.000000,90.430000,97.660000,859.490000,4.790000,152.120000,22.340000 -2,2023-08-15 10:00:00,0.000000,16.500000,46.000000,1.000000,302.000000,90.310000,97.750000,859.860000,4.710000,152.240000,22.080000 -2,2023-08-15 11:00:00,0.000000,16.400000,60.000000,12.000000,17.000000,89.820000,97.820000,860.130000,7.640000,152.330000,30.860000 -2,2023-08-15 12:00:00,0.000000,16.400000,60.000000,12.000000,17.000000,89.390000,97.880000,860.400000,7.180000,152.420000,29.610000 -2,2023-08-15 13:00:00,0.000000,16.400000,60.000000,12.000000,17.000000,89.020000,97.950000,860.670000,6.810000,152.510000,28.570000 -2,2023-08-15 14:00:00,0.000000,16.400000,60.000000,12.000000,17.000000,88.700000,98.010000,860.930000,6.510000,152.600000,27.690000 -2,2023-08-15 15:00:00,0.000000,16.400000,60.000000,12.000000,17.000000,88.420000,98.080000,861.200000,6.250000,152.690000,26.950000 -2,2023-08-15 16:00:00,0.000000,16.400000,60.000000,12.000000,17.000000,88.180000,98.150000,861.470000,6.040000,152.780000,26.320000 -2,2023-08-15 17:00:00,0.000000,20.100000,37.000000,17.000000,309.000000,88.430000,98.280000,862.010000,8.050000,152.960000,32.000000 -2,2023-08-15 18:00:00,0.000000,20.100000,37.000000,17.000000,309.000000,88.630000,98.410000,862.540000,8.290000,153.130000,32.650000 -2,2023-08-15 19:00:00,0.000000,20.100000,37.000000,17.000000,309.000000,88.810000,98.540000,863.080000,8.500000,153.310000,33.210000 -2,2023-08-15 20:00:00,0.000000,20.100000,37.000000,17.000000,309.000000,88.950000,98.670000,863.620000,8.680000,153.490000,33.690000 -2,2023-08-15 21:00:00,0.000000,20.100000,37.000000,17.000000,309.000000,89.080000,98.670000,863.620000,8.840000,153.490000,34.080000 -2,2023-08-15 22:00:00,0.000000,20.100000,37.000000,17.000000,309.000000,89.180000,98.670000,863.620000,8.970000,153.490000,34.420000 -2,2023-08-15 23:00:00,0.000000,15.200000,56.000000,10.000000,276.000000,88.930000,98.670000,863.620000,6.080000,153.490000,26.470000 -2,2023-08-16 00:00:00,0.000000,15.200000,56.000000,10.000000,276.000000,88.710000,98.670000,863.620000,5.890000,153.490000,25.900000 -2,2023-08-16 01:00:00,0.000000,15.200000,56.000000,10.000000,276.000000,88.520000,98.670000,863.620000,5.730000,153.490000,25.410000 -2,2023-08-16 02:00:00,0.000000,15.200000,56.000000,10.000000,276.000000,88.350000,98.670000,863.620000,5.590000,153.490000,24.980000 -2,2023-08-16 03:00:00,0.000000,15.200000,56.000000,10.000000,276.000000,88.200000,98.670000,863.620000,5.470000,153.490000,24.600000 -2,2023-08-16 04:00:00,0.000000,15.200000,56.000000,10.000000,276.000000,88.060000,98.670000,863.620000,5.370000,153.490000,24.280000 -2,2023-08-16 05:00:00,0.000000,14.600000,58.000000,14.000000,288.000000,87.890000,98.760000,863.830000,6.400000,153.610000,27.440000 -2,2023-08-16 06:00:00,0.000000,14.600000,58.000000,14.000000,288.000000,87.730000,98.850000,864.050000,6.260000,153.730000,27.020000 -2,2023-08-16 07:00:00,0.000000,14.600000,58.000000,14.000000,288.000000,87.590000,98.940000,864.260000,6.140000,153.850000,26.670000 -2,2023-08-16 08:00:00,0.000000,14.600000,58.000000,14.000000,288.000000,87.470000,99.030000,864.480000,6.040000,153.970000,26.360000 -2,2023-08-16 09:00:00,0.000000,14.600000,58.000000,14.000000,288.000000,87.370000,99.120000,864.700000,5.950000,154.080000,26.100000 -2,2023-08-16 10:00:00,0.000000,14.600000,58.000000,14.000000,288.000000,87.280000,99.210000,864.910000,5.870000,154.200000,25.870000 -2,2023-08-16 11:00:00,0.000000,20.700000,37.000000,20.000000,309.000000,87.710000,99.410000,865.390000,8.440000,154.460000,33.120000 -2,2023-08-16 12:00:00,0.000000,20.700000,37.000000,20.000000,309.000000,88.060000,99.610000,865.860000,8.880000,154.720000,34.270000 -2,2023-08-16 13:00:00,0.000000,20.700000,37.000000,20.000000,309.000000,88.360000,99.810000,866.340000,9.270000,154.980000,35.260000 -2,2023-08-16 14:00:00,0.000000,20.700000,37.000000,20.000000,309.000000,88.600000,100.010000,866.810000,9.600000,155.250000,36.110000 -2,2023-08-16 15:00:00,0.000000,20.700000,37.000000,20.000000,309.000000,88.810000,100.210000,867.290000,9.890000,155.510000,36.830000 -2,2023-08-16 16:00:00,0.000000,20.700000,37.000000,20.000000,309.000000,88.980000,100.410000,867.770000,10.140000,155.770000,37.440000 -2,2023-08-16 17:00:00,0.000000,23.500000,28.000000,13.000000,327.000000,89.530000,100.690000,868.410000,7.710000,156.120000,31.250000 -2,2023-08-16 18:00:00,0.000000,23.500000,28.000000,13.000000,327.000000,89.980000,100.960000,869.060000,8.220000,156.470000,32.650000 -2,2023-08-16 19:00:00,0.000000,23.500000,28.000000,13.000000,327.000000,90.350000,101.230000,869.700000,8.680000,156.820000,33.860000 -2,2023-08-16 20:00:00,0.000000,23.500000,28.000000,13.000000,327.000000,90.660000,101.500000,870.350000,9.070000,157.180000,34.880000 -2,2023-08-16 21:00:00,0.000000,23.500000,28.000000,13.000000,327.000000,90.920000,101.500000,870.350000,9.410000,157.180000,35.730000 -2,2023-08-16 22:00:00,0.000000,23.500000,28.000000,13.000000,327.000000,91.130000,101.500000,870.350000,9.690000,157.180000,36.440000 -2,2023-08-16 23:00:00,0.000000,14.500000,54.000000,2.000000,141.000000,90.780000,101.500000,870.350000,5.300000,157.180000,24.210000 -2,2023-08-17 00:00:00,0.000000,14.500000,54.000000,2.000000,141.000000,90.470000,101.500000,870.350000,5.070000,157.180000,23.460000 -2,2023-08-17 01:00:00,0.000000,14.500000,54.000000,2.000000,141.000000,90.180000,101.500000,870.350000,4.860000,157.180000,22.790000 -2,2023-08-17 02:00:00,0.000000,14.500000,54.000000,2.000000,141.000000,89.920000,101.500000,870.350000,4.690000,157.180000,22.200000 -2,2023-08-17 03:00:00,0.000000,14.500000,54.000000,2.000000,141.000000,89.690000,101.500000,870.350000,4.530000,157.180000,21.670000 -2,2023-08-17 04:00:00,0.000000,14.500000,54.000000,2.000000,141.000000,89.470000,101.500000,870.350000,4.390000,157.180000,21.200000 -2,2023-08-17 05:00:00,0.000000,11.400000,69.000000,5.000000,136.000000,88.930000,101.500000,870.350000,4.730000,157.180000,22.340000 -2,2023-08-17 06:00:00,0.000000,11.400000,69.000000,5.000000,136.000000,88.450000,101.560000,870.470000,4.410000,157.250000,21.260000 -2,2023-08-17 07:00:00,0.000000,11.400000,69.000000,5.000000,136.000000,88.020000,101.610000,870.600000,4.150000,157.320000,20.340000 -2,2023-08-17 08:00:00,0.000000,11.400000,69.000000,5.000000,136.000000,87.630000,101.670000,870.720000,3.920000,157.390000,19.540000 -2,2023-08-17 09:00:00,0.000000,11.400000,69.000000,5.000000,136.000000,87.280000,101.730000,870.850000,3.730000,157.470000,18.850000 -2,2023-08-17 10:00:00,0.000000,11.400000,69.000000,5.000000,136.000000,86.970000,101.780000,870.970000,3.570000,157.540000,18.240000 -2,2023-08-17 11:00:00,0.000000,22.200000,35.000000,11.000000,126.000000,87.520000,102.020000,871.500000,5.220000,157.840000,24.000000 -2,2023-08-17 12:00:00,0.000000,22.200000,35.000000,11.000000,126.000000,87.980000,102.250000,872.020000,5.580000,158.140000,25.150000 -2,2023-08-17 13:00:00,0.000000,22.200000,35.000000,11.000000,126.000000,88.370000,102.480000,872.540000,5.900000,158.440000,26.160000 -2,2023-08-17 14:00:00,0.000000,22.200000,35.000000,11.000000,126.000000,88.700000,102.720000,873.070000,6.190000,158.740000,27.040000 -2,2023-08-17 15:00:00,0.000000,22.200000,35.000000,11.000000,126.000000,88.980000,102.950000,873.590000,6.440000,159.040000,27.810000 -2,2023-08-17 16:00:00,0.000000,22.200000,35.000000,11.000000,126.000000,89.220000,103.180000,874.110000,6.670000,159.340000,28.470000 -2,2023-08-17 17:00:00,0.000000,27.300000,26.000000,8.000000,135.000000,89.950000,103.540000,874.920000,6.360000,159.810000,27.590000 -2,2023-08-17 18:00:00,0.000000,27.300000,26.000000,8.000000,135.000000,90.540000,103.910000,875.730000,6.930000,160.270000,29.270000 -2,2023-08-17 19:00:00,0.000000,27.300000,26.000000,8.000000,135.000000,91.030000,104.270000,876.540000,7.430000,160.730000,30.700000 -2,2023-08-17 20:00:00,0.000000,27.300000,26.000000,8.000000,135.000000,91.430000,104.630000,877.350000,7.860000,161.200000,31.920000 -2,2023-08-17 21:00:00,0.000000,27.300000,26.000000,8.000000,135.000000,91.750000,104.630000,877.350000,8.230000,161.200000,32.910000 -2,2023-08-17 22:00:00,0.000000,27.300000,26.000000,8.000000,135.000000,92.020000,104.630000,877.350000,8.550000,161.200000,33.740000 -2,2023-08-17 23:00:00,0.000000,19.600000,46.000000,8.000000,136.000000,91.710000,104.630000,877.350000,8.180000,161.200000,32.790000 -2,2023-08-18 00:00:00,0.000000,19.600000,46.000000,8.000000,136.000000,91.440000,104.630000,877.350000,7.880000,161.200000,31.960000 -2,2023-08-18 01:00:00,0.000000,19.600000,46.000000,8.000000,136.000000,91.210000,104.630000,877.350000,7.620000,161.200000,31.250000 -2,2023-08-18 02:00:00,0.000000,19.600000,46.000000,8.000000,136.000000,91.000000,104.630000,877.350000,7.400000,161.200000,30.640000 -2,2023-08-18 03:00:00,0.000000,19.600000,46.000000,8.000000,136.000000,90.820000,104.630000,877.350000,7.210000,161.200000,30.110000 -2,2023-08-18 04:00:00,0.000000,19.600000,46.000000,8.000000,136.000000,90.660000,104.630000,877.350000,7.050000,161.200000,29.650000 -2,2023-08-18 05:00:00,0.000000,16.200000,71.000000,8.000000,223.000000,89.860000,104.630000,877.350000,6.280000,161.200000,27.420000 -2,2023-08-18 06:00:00,0.000000,16.200000,71.000000,8.000000,223.000000,89.170000,104.730000,877.570000,5.690000,161.330000,25.610000 -2,2023-08-18 07:00:00,0.000000,16.200000,71.000000,8.000000,223.000000,88.570000,104.840000,877.790000,5.220000,161.460000,24.130000 -2,2023-08-18 08:00:00,0.000000,16.200000,71.000000,8.000000,223.000000,88.050000,104.940000,878.020000,4.850000,161.590000,22.900000 -2,2023-08-18 09:00:00,0.000000,16.200000,71.000000,8.000000,223.000000,87.600000,105.040000,878.240000,4.550000,161.730000,21.880000 -2,2023-08-18 10:00:00,0.000000,16.200000,71.000000,8.000000,223.000000,87.210000,105.150000,878.460000,4.300000,161.860000,21.040000 -2,2023-08-18 11:00:00,0.000000,27.100000,37.000000,10.000000,255.000000,87.880000,105.590000,879.410000,5.230000,162.420000,24.180000 -2,2023-08-18 12:00:00,0.000000,27.100000,37.000000,10.000000,255.000000,88.420000,106.030000,880.350000,5.650000,162.980000,25.560000 -2,2023-08-18 13:00:00,0.000000,27.100000,37.000000,10.000000,255.000000,88.870000,106.470000,881.300000,6.030000,163.540000,26.750000 -2,2023-08-18 14:00:00,0.000000,27.100000,37.000000,10.000000,255.000000,89.240000,106.910000,882.240000,6.360000,164.100000,27.760000 -2,2023-08-18 15:00:00,0.000000,27.100000,37.000000,10.000000,255.000000,89.540000,107.350000,883.190000,6.640000,164.660000,28.610000 -2,2023-08-18 16:00:00,0.000000,27.100000,37.000000,10.000000,255.000000,89.790000,107.780000,884.130000,6.880000,165.220000,29.340000 -2,2023-08-18 17:00:00,0.000000,28.600000,33.000000,10.000000,327.000000,90.210000,108.300000,885.230000,7.300000,165.860000,30.580000 -3,2023-08-03 00:00:00,0.000000,16.000000,63.000000,6.000000,65.000000,86.000000,118.400000,826.100000,3.270000,174.330000,17.540000 -3,2023-08-03 01:00:00,0.000000,16.000000,63.000000,6.000000,65.000000,86.000000,118.400000,826.100000,3.270000,174.330000,17.540000 -3,2023-08-03 02:00:00,0.000000,13.300000,71.000000,2.000000,99.000000,85.820000,118.400000,826.100000,2.610000,174.330000,14.780000 -3,2023-08-03 03:00:00,0.000000,13.300000,71.000000,2.000000,99.000000,85.660000,118.400000,826.100000,2.550000,174.330000,14.520000 -3,2023-08-03 04:00:00,0.000000,13.300000,71.000000,2.000000,99.000000,85.510000,118.400000,826.100000,2.500000,174.330000,14.300000 -3,2023-08-03 05:00:00,0.000000,11.800000,75.000000,2.000000,270.000000,85.280000,118.450000,826.220000,2.420000,174.390000,13.950000 -3,2023-08-03 06:00:00,0.000000,11.800000,75.000000,2.000000,270.000000,85.080000,118.490000,826.330000,2.350000,174.450000,13.650000 -3,2023-08-03 07:00:00,0.000000,11.800000,75.000000,2.000000,270.000000,84.890000,118.540000,826.450000,2.290000,174.510000,13.380000 -3,2023-08-03 08:00:00,0.000000,16.800000,56.000000,1.000000,351.000000,84.960000,118.660000,826.740000,2.200000,174.650000,12.960000 -3,2023-08-03 09:00:00,0.000000,16.800000,56.000000,1.000000,351.000000,85.030000,118.770000,827.020000,2.220000,174.790000,13.060000 -3,2023-08-03 10:00:00,0.000000,16.800000,56.000000,1.000000,351.000000,85.090000,118.890000,827.310000,2.240000,174.930000,13.150000 -3,2023-08-03 11:00:00,0.000000,21.700000,41.000000,5.000000,55.000000,85.630000,119.090000,827.830000,2.960000,175.180000,16.270000 -3,2023-08-03 12:00:00,0.000000,21.700000,41.000000,5.000000,55.000000,86.100000,119.300000,828.340000,3.160000,175.440000,17.100000 -3,2023-08-03 13:00:00,0.000000,21.700000,41.000000,5.000000,55.000000,86.510000,119.510000,828.860000,3.350000,175.690000,17.860000 -3,2023-08-03 14:00:00,0.000000,23.000000,41.000000,7.000000,50.000000,86.940000,119.740000,829.420000,3.930000,175.970000,20.100000 -3,2023-08-03 15:00:00,0.000000,23.000000,41.000000,7.000000,50.000000,87.300000,119.960000,829.990000,4.140000,176.240000,20.870000 -3,2023-08-03 16:00:00,0.000000,23.000000,41.000000,7.000000,50.000000,87.610000,120.190000,830.550000,4.330000,176.520000,21.550000 -3,2023-08-03 17:00:00,0.000000,22.900000,41.000000,7.000000,60.000000,87.880000,120.410000,831.110000,4.490000,176.790000,22.150000 -3,2023-08-03 18:00:00,0.000000,22.900000,41.000000,7.000000,60.000000,88.100000,120.640000,831.660000,4.640000,177.060000,22.670000 -3,2023-08-03 19:00:00,0.000000,22.900000,41.000000,7.000000,60.000000,88.300000,120.860000,832.220000,4.770000,177.340000,23.130000 -3,2023-08-03 20:00:00,0.000000,20.600000,52.000000,8.000000,271.000000,88.300000,121.020000,832.620000,5.020000,177.530000,23.970000 -3,2023-08-03 21:00:00,0.000000,20.600000,52.000000,8.000000,271.000000,88.300000,121.180000,833.010000,5.020000,177.720000,23.980000 -3,2023-08-03 22:00:00,0.000000,20.600000,52.000000,8.000000,271.000000,88.300000,121.180000,833.010000,5.020000,177.720000,23.980000 -3,2023-08-03 23:00:00,0.000000,16.500000,76.000000,5.000000,266.000000,87.710000,121.180000,833.010000,3.970000,177.720000,20.270000 -3,2023-08-04 00:00:00,0.000000,16.500000,76.000000,5.000000,266.000000,87.190000,121.180000,833.010000,3.680000,177.720000,19.220000 -3,2023-08-04 01:00:00,0.000000,16.500000,76.000000,5.000000,266.000000,86.750000,121.180000,833.010000,3.460000,177.720000,18.340000 -3,2023-08-04 02:00:00,0.000000,14.600000,90.000000,5.000000,257.000000,85.780000,121.180000,833.010000,3.020000,177.720000,16.580000 -3,2023-08-04 03:00:00,0.000000,14.600000,90.000000,5.000000,257.000000,84.950000,121.180000,833.010000,2.690000,177.720000,15.190000 -3,2023-08-04 04:00:00,0.000000,14.600000,90.000000,5.000000,257.000000,84.220000,121.180000,833.010000,2.440000,177.720000,14.080000 -3,2023-08-04 05:00:00,0.000000,13.900000,93.000000,5.000000,241.000000,83.410000,121.190000,833.040000,2.190000,177.740000,12.950000 -3,2023-08-04 06:00:00,0.000000,13.900000,93.000000,5.000000,241.000000,82.700000,121.200000,833.080000,2.000000,177.750000,12.040000 -3,2023-08-04 07:00:00,0.000000,13.900000,93.000000,5.000000,241.000000,82.090000,121.220000,833.110000,1.850000,177.770000,11.320000 -3,2023-08-04 08:00:00,0.000000,18.300000,69.000000,5.000000,260.000000,82.230000,121.290000,833.310000,1.880000,177.860000,11.490000 -3,2023-08-04 09:00:00,0.000000,18.300000,69.000000,5.000000,260.000000,82.360000,121.370000,833.510000,1.910000,177.950000,11.640000 -3,2023-08-04 10:00:00,0.000000,18.300000,69.000000,5.000000,260.000000,82.480000,121.440000,833.710000,1.940000,178.050000,11.780000 -3,2023-08-04 11:00:00,0.000000,23.600000,46.000000,7.000000,292.000000,83.340000,121.620000,834.190000,2.400000,178.270000,13.920000 -3,2023-08-04 12:00:00,0.000000,23.600000,46.000000,7.000000,292.000000,84.080000,121.810000,834.670000,2.640000,178.490000,15.010000 -3,2023-08-04 13:00:00,0.000000,23.600000,46.000000,7.000000,292.000000,84.720000,121.990000,835.150000,2.880000,178.720000,16.040000 -3,2023-08-04 14:00:00,0.000000,25.500000,35.000000,12.000000,328.000000,85.830000,122.230000,835.790000,4.320000,179.020000,21.600000 -3,2023-08-04 15:00:00,0.000000,25.500000,35.000000,12.000000,328.000000,86.740000,122.480000,836.440000,4.920000,179.320000,23.680000 -3,2023-08-04 16:00:00,0.000000,25.500000,35.000000,12.000000,328.000000,87.500000,122.730000,837.090000,5.480000,179.620000,25.540000 -3,2023-08-04 17:00:00,0.000000,25.600000,32.000000,13.000000,324.000000,88.260000,122.980000,837.770000,6.430000,179.930000,28.500000 -3,2023-08-04 18:00:00,0.000000,25.600000,32.000000,13.000000,324.000000,88.880000,123.240000,838.450000,7.020000,180.250000,30.290000 -3,2023-08-04 19:00:00,0.000000,25.600000,32.000000,13.000000,324.000000,89.390000,123.500000,839.130000,7.560000,180.570000,31.830000 -3,2023-08-04 20:00:00,0.000000,23.500000,36.000000,11.000000,318.000000,89.570000,123.720000,839.700000,7.010000,180.830000,30.270000 -3,2023-08-04 21:00:00,0.000000,23.500000,36.000000,11.000000,318.000000,89.720000,123.930000,840.260000,7.170000,181.090000,30.730000 -3,2023-08-04 22:00:00,0.000000,23.500000,36.000000,11.000000,318.000000,89.850000,123.930000,840.260000,7.300000,181.090000,31.100000 -3,2023-08-04 23:00:00,0.000000,19.200000,53.000000,10.000000,317.000000,89.630000,123.930000,840.260000,6.730000,181.090000,29.450000 -3,2023-08-05 00:00:00,0.000000,19.200000,53.000000,10.000000,317.000000,89.450000,123.930000,840.260000,6.550000,181.090000,28.920000 -3,2023-08-05 01:00:00,0.000000,19.200000,53.000000,10.000000,317.000000,89.290000,123.930000,840.260000,6.400000,181.090000,28.470000 -3,2023-08-05 02:00:00,0.000000,17.500000,71.000000,9.000000,294.000000,88.660000,123.930000,840.260000,5.570000,181.090000,25.860000 -3,2023-08-05 03:00:00,0.000000,17.500000,71.000000,9.000000,294.000000,88.130000,123.930000,840.260000,5.150000,181.090000,24.510000 -3,2023-08-05 04:00:00,0.000000,17.500000,71.000000,9.000000,294.000000,87.670000,123.930000,840.260000,4.830000,181.090000,23.400000 -3,2023-08-05 05:00:00,0.000000,16.900000,78.000000,11.000000,295.000000,87.030000,123.990000,840.390000,4.870000,181.150000,23.550000 -3,2023-08-05 06:00:00,0.000000,16.900000,78.000000,11.000000,295.000000,86.480000,124.040000,840.510000,4.500000,181.220000,22.290000 -3,2023-08-05 07:00:00,0.000000,16.900000,78.000000,11.000000,295.000000,86.010000,124.100000,840.640000,4.220000,181.290000,21.270000 -3,2023-08-05 08:00:00,0.000000,19.200000,59.000000,13.000000,322.000000,86.010000,124.210000,840.910000,4.660000,181.430000,22.860000 -3,2023-08-05 09:00:00,0.000000,19.200000,59.000000,13.000000,322.000000,86.010000,124.330000,841.180000,4.660000,181.570000,22.860000 -3,2023-08-05 10:00:00,0.000000,19.200000,59.000000,13.000000,322.000000,86.010000,124.450000,841.450000,4.660000,181.710000,22.860000 -3,2023-08-05 11:00:00,0.000000,22.600000,37.000000,13.000000,343.000000,86.680000,124.670000,841.970000,5.130000,181.980000,24.440000 -3,2023-08-05 12:00:00,0.000000,22.600000,37.000000,13.000000,343.000000,87.240000,124.900000,842.480000,5.550000,182.250000,25.850000 -3,2023-08-05 13:00:00,0.000000,22.600000,37.000000,13.000000,343.000000,87.710000,125.120000,842.990000,5.940000,182.520000,27.090000 -3,2023-08-05 14:00:00,0.000000,24.000000,34.000000,14.000000,356.000000,88.280000,125.380000,843.580000,6.780000,182.820000,29.650000 -3,2023-08-05 15:00:00,0.000000,24.000000,34.000000,14.000000,356.000000,88.760000,125.630000,844.160000,7.260000,183.130000,31.050000 -3,2023-08-05 16:00:00,0.000000,24.000000,34.000000,14.000000,356.000000,89.150000,125.890000,844.750000,7.670000,183.430000,32.240000 -3,2023-08-05 17:00:00,0.000000,23.500000,35.000000,12.000000,15.000000,89.400000,126.130000,845.310000,7.200000,183.730000,30.900000 -3,2023-08-05 18:00:00,0.000000,23.500000,35.000000,12.000000,15.000000,89.620000,126.370000,845.870000,7.430000,184.020000,31.560000 -3,2023-08-05 19:00:00,0.000000,23.500000,35.000000,12.000000,15.000000,89.800000,126.620000,846.430000,7.620000,184.310000,32.110000 -3,2023-08-05 20:00:00,0.000000,21.600000,41.000000,8.000000,49.000000,89.800000,126.820000,846.880000,6.230000,184.550000,28.030000 -3,2023-08-05 21:00:00,0.000000,21.600000,41.000000,8.000000,49.000000,89.800000,127.010000,847.330000,6.230000,184.780000,28.030000 -3,2023-08-05 22:00:00,0.000000,21.600000,41.000000,8.000000,49.000000,89.800000,127.010000,847.330000,6.230000,184.780000,28.030000 -3,2023-08-05 23:00:00,0.000000,19.000000,50.000000,2.000000,92.000000,89.690000,127.010000,847.330000,4.530000,184.780000,22.470000 -3,2023-08-06 00:00:00,0.000000,19.000000,50.000000,2.000000,92.000000,89.590000,127.010000,847.330000,4.470000,184.780000,22.250000 -3,2023-08-06 01:00:00,0.000000,19.000000,50.000000,2.000000,92.000000,89.510000,127.010000,847.330000,4.410000,184.780000,22.050000 -3,2023-08-06 02:00:00,0.030000,17.400000,61.000000,6.000000,239.000000,88.990000,127.010000,847.330000,5.020000,184.780000,24.130000 -3,2023-08-06 03:00:00,0.000000,17.400000,61.000000,6.000000,239.000000,88.700000,127.010000,847.330000,4.810000,184.780000,23.430000 -3,2023-08-06 04:00:00,0.000000,17.400000,61.000000,6.000000,239.000000,88.440000,127.010000,847.330000,4.640000,184.780000,22.830000 -3,2023-08-06 05:00:00,0.000000,16.200000,75.000000,6.000000,274.000000,87.850000,127.080000,847.560000,4.260000,184.870000,21.490000 -3,2023-08-06 06:00:00,0.000000,16.200000,75.000000,6.000000,274.000000,87.330000,127.160000,847.790000,3.950000,184.960000,20.380000 -3,2023-08-06 07:00:00,0.000000,16.200000,75.000000,6.000000,274.000000,86.880000,127.230000,848.020000,3.710000,185.050000,19.460000 -3,2023-08-06 08:00:00,0.000000,17.500000,67.000000,9.000000,340.000000,86.710000,127.330000,848.350000,4.210000,185.170000,21.320000 -3,2023-08-06 09:00:00,0.000000,17.500000,67.000000,9.000000,340.000000,86.550000,127.430000,848.680000,4.120000,185.300000,20.990000 -3,2023-08-06 10:00:00,0.000000,17.500000,67.000000,9.000000,340.000000,86.420000,127.530000,849.010000,4.040000,185.430000,20.710000 -3,2023-08-06 11:00:00,0.000000,19.800000,53.000000,14.000000,345.000000,86.470000,127.700000,849.550000,5.240000,185.640000,24.890000 -3,2023-08-06 12:00:00,0.000000,19.800000,53.000000,14.000000,345.000000,86.520000,127.870000,850.100000,5.270000,185.850000,25.010000 -3,2023-08-06 13:00:00,0.000000,19.800000,53.000000,14.000000,345.000000,86.560000,128.030000,850.640000,5.300000,186.060000,25.110000 -3,2023-08-06 14:00:00,0.520000,16.700000,67.000000,20.000000,37.000000,83.640000,128.130000,850.950000,4.800000,186.180000,23.430000 -3,2023-08-06 15:00:00,0.000000,16.700000,67.000000,20.000000,37.000000,83.670000,128.230000,851.260000,4.820000,186.300000,23.500000 -3,2023-08-06 16:00:00,0.000000,16.700000,67.000000,20.000000,37.000000,83.690000,128.320000,851.580000,4.840000,186.420000,23.560000 -3,2023-08-06 17:00:00,0.100000,16.800000,50.000000,13.000000,40.000000,83.590000,128.470000,852.060000,3.350000,186.600000,18.100000 -3,2023-08-06 18:00:00,0.000000,16.800000,50.000000,13.000000,40.000000,83.990000,128.620000,852.530000,3.530000,186.790000,18.820000 -3,2023-08-06 19:00:00,0.000000,16.800000,50.000000,13.000000,40.000000,84.340000,128.770000,853.010000,3.700000,186.970000,19.480000 -3,2023-08-06 20:00:00,0.000000,15.400000,49.000000,9.000000,29.000000,84.610000,128.900000,853.460000,3.140000,187.140000,17.250000 -3,2023-08-06 21:00:00,0.000000,15.400000,49.000000,9.000000,29.000000,84.850000,129.040000,853.900000,3.240000,187.310000,17.670000 -3,2023-08-06 22:00:00,0.000000,15.400000,49.000000,9.000000,29.000000,85.060000,129.040000,853.900000,3.340000,187.310000,18.060000 -3,2023-08-06 23:00:00,0.000000,11.500000,65.000000,5.000000,279.000000,85.050000,129.040000,853.900000,2.730000,187.310000,15.510000 -3,2023-08-07 00:00:00,0.000000,11.500000,65.000000,5.000000,279.000000,85.040000,129.040000,853.900000,2.720000,187.310000,15.500000 -3,2023-08-07 01:00:00,0.000000,11.500000,65.000000,5.000000,279.000000,85.030000,129.040000,853.900000,2.720000,187.310000,15.480000 -3,2023-08-07 02:00:00,0.000000,11.000000,69.000000,8.000000,282.000000,84.940000,129.040000,853.900000,3.120000,187.310000,17.190000 -3,2023-08-07 03:00:00,0.000000,11.000000,69.000000,8.000000,282.000000,84.860000,129.040000,853.900000,3.090000,187.310000,17.040000 -3,2023-08-07 04:00:00,0.000000,11.000000,69.000000,8.000000,282.000000,84.780000,129.040000,853.900000,3.060000,187.310000,16.920000 -3,2023-08-07 05:00:00,0.000000,10.100000,79.000000,7.000000,293.000000,84.480000,129.080000,854.010000,2.790000,187.360000,15.790000 -3,2023-08-07 06:00:00,0.000000,10.100000,79.000000,7.000000,293.000000,84.220000,129.110000,854.130000,2.690000,187.410000,15.370000 -3,2023-08-07 07:00:00,0.000000,10.100000,79.000000,7.000000,293.000000,83.980000,129.150000,854.240000,2.610000,187.450000,15.000000 -3,2023-08-07 08:00:00,0.000000,14.500000,63.000000,7.000000,302.000000,84.000000,129.240000,854.500000,2.620000,187.560000,15.040000 -3,2023-08-07 09:00:00,0.000000,14.500000,63.000000,7.000000,302.000000,84.020000,129.330000,854.760000,2.620000,187.670000,15.070000 -3,2023-08-07 10:00:00,0.000000,14.500000,63.000000,7.000000,302.000000,84.040000,129.410000,855.030000,2.630000,187.770000,15.100000 -3,2023-08-07 11:00:00,0.000000,17.500000,47.000000,4.000000,18.000000,84.400000,129.560000,855.480000,2.370000,187.960000,13.950000 -3,2023-08-07 12:00:00,0.000000,17.500000,47.000000,4.000000,18.000000,84.720000,129.710000,855.940000,2.480000,188.150000,14.430000 -3,2023-08-07 13:00:00,0.000000,17.500000,47.000000,4.000000,18.000000,85.010000,129.860000,856.390000,2.580000,188.330000,14.870000 -3,2023-08-07 14:00:00,0.030000,18.400000,46.000000,5.000000,16.000000,85.320000,130.030000,856.880000,2.830000,188.530000,15.980000 -3,2023-08-07 15:00:00,0.000000,18.400000,46.000000,5.000000,16.000000,85.600000,130.190000,857.380000,2.940000,188.730000,16.450000 -3,2023-08-07 16:00:00,0.000000,18.400000,46.000000,5.000000,16.000000,85.850000,130.350000,857.870000,3.050000,188.930000,16.890000 -3,2023-08-07 17:00:00,0.000000,18.100000,48.000000,9.000000,47.000000,86.030000,130.510000,858.330000,3.830000,189.120000,19.980000 -3,2023-08-07 18:00:00,0.000000,18.100000,48.000000,9.000000,47.000000,86.200000,130.660000,858.800000,3.920000,189.310000,20.320000 -3,2023-08-07 19:00:00,0.000000,18.100000,48.000000,9.000000,47.000000,86.340000,130.810000,859.260000,4.000000,189.500000,20.630000 -3,2023-08-07 20:00:00,0.000000,16.900000,52.000000,10.000000,72.000000,86.360000,130.940000,859.660000,4.210000,189.660000,21.430000 -3,2023-08-07 21:00:00,0.000000,16.900000,52.000000,10.000000,72.000000,86.380000,131.080000,860.060000,4.220000,189.830000,21.470000 -3,2023-08-07 22:00:00,0.000000,16.900000,52.000000,10.000000,72.000000,86.390000,131.080000,860.060000,4.230000,189.830000,21.500000 -3,2023-08-07 23:00:00,0.000000,12.500000,67.000000,6.000000,67.000000,86.220000,131.080000,860.060000,3.380000,189.830000,18.250000 -3,2023-08-08 00:00:00,0.000000,12.500000,67.000000,6.000000,67.000000,86.070000,131.080000,860.060000,3.300000,189.830000,17.950000 -3,2023-08-08 01:00:00,0.000000,12.500000,67.000000,6.000000,67.000000,85.930000,131.080000,860.060000,3.240000,189.830000,17.700000 -3,2023-08-08 02:00:00,0.000000,9.700000,73.000000,4.000000,86.000000,85.670000,131.080000,860.060000,2.830000,189.830000,15.970000 -3,2023-08-08 03:00:00,0.000000,9.700000,73.000000,4.000000,86.000000,85.440000,131.080000,860.060000,2.740000,189.830000,15.590000 -3,2023-08-08 04:00:00,0.000000,9.700000,73.000000,4.000000,86.000000,85.220000,131.080000,860.060000,2.660000,189.830000,15.240000 -3,2023-08-08 05:00:00,0.000000,7.900000,79.000000,2.000000,118.000000,84.920000,131.110000,860.130000,2.300000,189.860000,13.650000 -3,2023-08-08 06:00:00,0.000000,7.900000,79.000000,2.000000,118.000000,84.640000,131.140000,860.210000,2.220000,189.900000,13.250000 -3,2023-08-08 07:00:00,0.000000,7.900000,79.000000,2.000000,118.000000,84.380000,131.170000,860.290000,2.140000,189.940000,12.890000 -3,2023-08-08 08:00:00,0.000000,13.300000,55.000000,3.000000,118.000000,84.470000,131.260000,860.530000,2.280000,190.050000,13.530000 -3,2023-08-08 09:00:00,0.000000,13.300000,55.000000,3.000000,118.000000,84.540000,131.360000,860.780000,2.300000,190.170000,13.640000 -3,2023-08-08 10:00:00,0.000000,13.300000,55.000000,3.000000,118.000000,84.610000,131.450000,861.020000,2.320000,190.280000,13.750000 -3,2023-08-08 11:00:00,0.000000,18.800000,39.000000,6.000000,62.000000,85.170000,131.640000,861.480000,2.910000,190.500000,16.360000 -3,2023-08-08 12:00:00,0.000000,18.800000,39.000000,6.000000,62.000000,85.650000,131.820000,861.950000,3.120000,190.720000,17.210000 -3,2023-08-08 13:00:00,0.000000,18.800000,39.000000,6.000000,62.000000,86.080000,132.000000,862.410000,3.310000,190.940000,18.000000 -3,2023-08-08 14:00:00,0.000000,21.000000,35.000000,12.000000,47.000000,86.720000,132.220000,862.980000,4.900000,191.210000,23.880000 -3,2023-08-08 15:00:00,0.000000,21.000000,35.000000,12.000000,47.000000,87.260000,132.450000,863.550000,5.300000,191.480000,25.210000 -3,2023-08-08 16:00:00,0.000000,21.000000,35.000000,12.000000,47.000000,87.720000,132.670000,864.120000,5.660000,191.740000,26.400000 -3,2023-08-08 17:00:00,0.000000,21.000000,39.000000,14.000000,51.000000,88.000000,132.880000,864.650000,6.510000,192.000000,29.070000 -3,2023-08-08 18:00:00,0.000000,21.000000,39.000000,14.000000,51.000000,88.230000,133.090000,865.190000,6.730000,192.250000,29.740000 -3,2023-08-08 19:00:00,0.000000,21.000000,39.000000,14.000000,51.000000,88.430000,133.300000,865.720000,6.920000,192.500000,30.320000 -3,2023-08-08 20:00:00,0.000000,18.600000,52.000000,11.000000,62.000000,88.410000,133.440000,866.080000,5.940000,192.670000,27.320000 -3,2023-08-08 21:00:00,0.000000,18.600000,52.000000,11.000000,62.000000,88.400000,133.580000,866.440000,5.930000,192.840000,27.290000 -3,2023-08-08 22:00:00,0.000000,18.600000,52.000000,11.000000,62.000000,88.390000,133.580000,866.440000,5.920000,192.840000,27.260000 -3,2023-08-08 23:00:00,0.000000,13.200000,84.000000,6.000000,61.000000,87.500000,133.580000,866.440000,4.050000,192.840000,20.880000 -3,2023-08-09 00:00:00,0.000000,13.200000,84.000000,6.000000,61.000000,86.730000,133.580000,866.440000,3.630000,192.840000,19.280000 -3,2023-08-09 01:00:00,0.000000,13.200000,84.000000,6.000000,61.000000,86.050000,133.580000,866.440000,3.300000,192.840000,17.970000 -3,2023-08-09 02:00:00,0.000000,10.900000,99.000000,5.000000,75.000000,84.570000,133.580000,866.440000,2.550000,192.840000,14.820000 -3,2023-08-09 03:00:00,0.000000,10.900000,99.000000,5.000000,75.000000,83.270000,133.580000,866.440000,2.150000,192.840000,12.960000 -3,2023-08-09 04:00:00,0.000000,10.900000,99.000000,5.000000,75.000000,82.130000,133.580000,866.440000,1.860000,192.840000,11.560000 -3,2023-08-09 05:00:00,0.010000,10.900000,99.000000,5.000000,107.000000,81.130000,133.580000,866.450000,1.650000,192.840000,10.490000 -3,2023-08-09 06:00:00,0.000000,10.900000,99.000000,5.000000,107.000000,80.250000,133.590000,866.450000,1.500000,192.840000,9.680000 -3,2023-08-09 07:00:00,0.000000,10.900000,99.000000,5.000000,107.000000,79.480000,133.590000,866.460000,1.390000,192.840000,9.040000 -3,2023-08-09 08:00:00,0.000000,15.100000,69.000000,8.000000,123.000000,79.790000,133.650000,866.620000,1.660000,192.920000,10.550000 -3,2023-08-09 09:00:00,0.000000,15.100000,69.000000,8.000000,123.000000,80.080000,133.720000,866.780000,1.710000,193.000000,10.810000 -3,2023-08-09 10:00:00,0.000000,15.100000,69.000000,8.000000,123.000000,80.350000,133.780000,866.940000,1.760000,193.080000,11.070000 -3,2023-08-09 11:00:00,0.000000,21.300000,40.000000,12.000000,115.000000,81.660000,133.970000,867.410000,2.500000,193.300000,14.610000 -3,2023-08-09 12:00:00,0.000000,21.300000,40.000000,12.000000,115.000000,82.790000,134.160000,867.870000,2.880000,193.530000,16.240000 -3,2023-08-09 13:00:00,0.000000,21.300000,40.000000,12.000000,115.000000,83.760000,134.350000,868.330000,3.260000,193.750000,17.840000 -3,2023-08-09 14:00:00,0.000000,24.400000,31.000000,11.000000,115.000000,85.090000,134.610000,868.970000,3.710000,194.060000,19.610000 -3,2023-08-09 15:00:00,0.000000,24.400000,31.000000,11.000000,115.000000,86.200000,134.870000,869.620000,4.330000,194.380000,21.930000 -3,2023-08-09 16:00:00,0.000000,24.400000,31.000000,11.000000,115.000000,87.130000,135.130000,870.260000,4.940000,194.690000,24.070000 -3,2023-08-09 17:00:00,0.000000,24.700000,31.000000,13.000000,119.000000,87.940000,135.400000,870.910000,6.140000,195.000000,27.990000 -3,2023-08-09 18:00:00,0.000000,24.700000,31.000000,13.000000,119.000000,88.610000,135.660000,871.570000,6.760000,195.320000,29.890000 -3,2023-08-09 19:00:00,0.000000,24.700000,31.000000,13.000000,119.000000,89.160000,135.930000,872.220000,7.320000,195.630000,31.540000 -3,2023-08-09 20:00:00,0.000000,22.700000,37.000000,7.000000,120.000000,89.310000,136.140000,872.750000,5.520000,195.890000,26.050000 -3,2023-08-09 21:00:00,0.000000,22.700000,37.000000,7.000000,120.000000,89.440000,136.360000,873.280000,5.620000,196.150000,26.380000 -3,2023-08-09 22:00:00,0.000000,22.700000,37.000000,7.000000,120.000000,89.540000,136.360000,873.280000,5.710000,196.150000,26.660000 -3,2023-08-09 23:00:00,0.000000,18.000000,50.000000,7.000000,147.000000,89.430000,136.360000,873.280000,5.620000,196.150000,26.360000 -3,2023-08-10 00:00:00,0.000000,18.000000,50.000000,7.000000,147.000000,89.330000,136.360000,873.280000,5.530000,196.150000,26.090000 -3,2023-08-10 01:00:00,0.000000,18.000000,50.000000,7.000000,147.000000,89.240000,136.360000,873.280000,5.460000,196.150000,25.860000 -3,2023-08-10 02:00:00,0.000000,14.600000,63.000000,7.000000,171.000000,88.840000,136.360000,873.280000,5.160000,196.150000,24.850000 -3,2023-08-10 03:00:00,0.000000,14.600000,63.000000,7.000000,171.000000,88.490000,136.360000,873.280000,4.910000,196.150000,23.990000 -3,2023-08-10 04:00:00,0.000000,14.600000,63.000000,7.000000,171.000000,88.180000,136.360000,873.280000,4.690000,196.150000,23.250000 -3,2023-08-10 05:00:00,0.000000,12.500000,78.000000,8.000000,177.000000,87.510000,136.400000,873.390000,4.480000,196.200000,22.510000 -3,2023-08-10 06:00:00,0.000000,12.500000,78.000000,8.000000,177.000000,86.920000,136.440000,873.490000,4.120000,196.240000,21.200000 -3,2023-08-10 07:00:00,0.000000,12.500000,78.000000,8.000000,177.000000,86.400000,136.480000,873.590000,3.830000,196.290000,20.110000 -3,2023-08-10 08:00:00,0.000000,17.400000,61.000000,11.000000,169.000000,86.400000,136.580000,873.840000,4.450000,196.410000,22.410000 -3,2023-08-10 09:00:00,0.000000,17.400000,61.000000,11.000000,169.000000,86.400000,136.680000,874.090000,4.450000,196.530000,22.410000 -3,2023-08-10 10:00:00,0.000000,17.400000,61.000000,11.000000,169.000000,86.400000,136.780000,874.340000,4.450000,196.650000,22.410000 -3,2023-08-10 11:00:00,0.000000,23.100000,43.000000,15.000000,169.000000,86.840000,136.990000,874.860000,5.800000,196.900000,26.970000 -3,2023-08-10 12:00:00,0.000000,23.100000,43.000000,15.000000,169.000000,87.220000,137.190000,875.380000,6.120000,197.140000,27.980000 -3,2023-08-10 13:00:00,0.000000,23.100000,43.000000,15.000000,169.000000,87.530000,137.400000,875.900000,6.400000,197.390000,28.850000 -3,2023-08-10 14:00:00,0.000000,24.900000,37.000000,15.000000,188.000000,88.070000,137.650000,876.550000,6.920000,197.690000,30.420000 -3,2023-08-10 15:00:00,0.000000,24.900000,37.000000,15.000000,188.000000,88.520000,137.910000,877.190000,7.370000,198.000000,31.760000 -3,2023-08-10 16:00:00,0.000000,24.900000,37.000000,15.000000,188.000000,88.880000,138.160000,877.830000,7.770000,198.300000,32.900000 -3,2023-08-10 17:00:00,0.000000,25.500000,38.000000,17.000000,195.000000,89.180000,138.420000,878.480000,8.970000,198.610000,36.170000 -3,2023-08-10 18:00:00,0.000000,25.500000,38.000000,17.000000,195.000000,89.420000,138.680000,879.140000,9.280000,198.920000,37.000000 -3,2023-08-10 19:00:00,0.000000,25.500000,38.000000,17.000000,195.000000,89.610000,138.940000,879.790000,9.540000,199.230000,37.690000 -3,2023-08-10 20:00:00,0.000000,25.500000,38.000000,17.000000,195.000000,89.770000,139.200000,880.440000,9.760000,199.540000,38.260000 -3,2023-08-10 21:00:00,0.000000,25.500000,38.000000,17.000000,195.000000,89.900000,139.200000,880.440000,9.940000,199.540000,38.710000 -3,2023-08-10 22:00:00,0.000000,25.500000,38.000000,17.000000,195.000000,90.000000,139.200000,880.440000,10.090000,199.540000,39.090000 -3,2023-08-10 23:00:00,0.000000,21.100000,63.000000,15.000000,206.000000,89.480000,139.200000,880.440000,8.470000,199.540000,34.850000 -3,2023-08-11 00:00:00,0.000000,21.100000,63.000000,15.000000,206.000000,89.050000,139.200000,880.440000,7.960000,199.540000,33.440000 -3,2023-08-11 01:00:00,0.000000,21.100000,63.000000,15.000000,206.000000,88.690000,139.200000,880.440000,7.550000,199.540000,32.310000 -3,2023-08-11 02:00:00,0.000000,21.100000,63.000000,15.000000,206.000000,88.380000,139.200000,880.440000,7.230000,199.540000,31.390000 -3,2023-08-11 03:00:00,0.000000,21.100000,63.000000,15.000000,206.000000,88.130000,139.200000,880.440000,6.980000,199.540000,30.640000 -3,2023-08-11 04:00:00,0.000000,21.100000,63.000000,15.000000,206.000000,87.920000,139.200000,880.440000,6.770000,199.540000,30.020000 -3,2023-08-11 05:00:00,0.000000,18.400000,76.000000,13.000000,205.000000,87.300000,139.310000,880.690000,5.600000,199.660000,26.370000 -3,2023-08-11 06:00:00,0.000000,18.400000,76.000000,13.000000,205.000000,86.780000,139.410000,880.930000,5.200000,199.780000,25.040000 -3,2023-08-11 07:00:00,0.000000,18.400000,76.000000,13.000000,205.000000,86.340000,139.510000,881.180000,4.880000,199.900000,23.980000 -3,2023-08-11 08:00:00,0.000000,18.400000,76.000000,13.000000,205.000000,85.970000,139.610000,881.420000,4.640000,200.020000,23.110000 -3,2023-08-11 09:00:00,0.000000,18.400000,76.000000,13.000000,205.000000,85.650000,139.710000,881.660000,4.440000,200.140000,22.410000 -3,2023-08-11 10:00:00,0.000000,18.400000,76.000000,13.000000,205.000000,85.390000,139.810000,881.910000,4.280000,200.260000,21.830000 -3,2023-08-11 11:00:00,0.000000,26.100000,43.000000,15.000000,216.000000,86.150000,140.200000,882.830000,5.260000,200.710000,25.270000 -3,2023-08-11 12:00:00,0.000000,26.100000,43.000000,15.000000,216.000000,86.780000,140.580000,883.760000,5.750000,201.160000,26.880000 -3,2023-08-11 13:00:00,0.000000,26.100000,43.000000,15.000000,216.000000,87.290000,140.970000,884.680000,6.190000,201.620000,28.270000 -3,2023-08-11 14:00:00,0.000000,26.100000,43.000000,15.000000,216.000000,87.710000,141.350000,885.610000,6.570000,202.070000,29.470000 -3,2023-08-11 15:00:00,0.000000,26.100000,43.000000,15.000000,216.000000,88.060000,141.740000,886.530000,6.910000,202.520000,30.480000 -3,2023-08-11 16:00:00,0.000000,26.100000,43.000000,15.000000,216.000000,88.340000,142.120000,887.460000,7.190000,202.980000,31.330000 -3,2023-08-11 17:00:00,6.820000,20.300000,85.000000,7.000000,216.000000,27.850000,71.880000,816.130000,0.000000,117.820000,0.010000 -3,2023-08-11 18:00:00,0.000000,20.300000,85.000000,7.000000,216.000000,29.990000,71.950000,816.300000,0.000000,117.920000,0.020000 -3,2023-08-11 19:00:00,0.000000,20.300000,85.000000,7.000000,216.000000,32.100000,72.030000,816.480000,0.010000,118.020000,0.030000 -3,2023-08-11 20:00:00,0.000000,20.300000,85.000000,7.000000,216.000000,34.160000,72.100000,816.650000,0.010000,118.120000,0.040000 -3,2023-08-11 21:00:00,0.000000,20.300000,85.000000,7.000000,216.000000,36.180000,72.100000,816.650000,0.020000,118.120000,0.070000 -3,2023-08-11 22:00:00,0.000000,20.300000,85.000000,7.000000,216.000000,38.140000,72.100000,816.650000,0.030000,118.120000,0.110000 -3,2023-08-11 23:00:00,0.090000,18.400000,67.000000,9.000000,255.000000,40.700000,71.560000,815.700000,0.060000,117.370000,0.190000 -3,2023-08-12 00:00:00,0.000000,18.400000,67.000000,9.000000,255.000000,43.860000,71.560000,815.700000,0.110000,117.370000,0.330000 -3,2023-08-12 01:00:00,0.000000,18.400000,67.000000,9.000000,255.000000,46.890000,71.560000,815.700000,0.170000,117.370000,0.530000 -3,2023-08-12 02:00:00,0.000000,18.400000,67.000000,9.000000,255.000000,49.760000,71.560000,815.700000,0.250000,117.370000,0.770000 -3,2023-08-12 03:00:00,0.000000,18.400000,67.000000,9.000000,255.000000,52.470000,71.560000,815.700000,0.340000,117.370000,1.280000 -3,2023-08-12 04:00:00,0.000000,18.400000,67.000000,9.000000,255.000000,55.030000,71.560000,815.700000,0.440000,117.370000,2.100000 -3,2023-08-12 05:00:00,0.160000,16.600000,57.000000,14.000000,255.000000,57.970000,71.670000,815.980000,0.720000,117.530000,3.960000 -3,2023-08-12 06:00:00,0.000000,16.600000,57.000000,14.000000,255.000000,60.690000,71.780000,816.260000,0.860000,117.680000,4.810000 -3,2023-08-12 07:00:00,0.000000,16.600000,57.000000,14.000000,255.000000,63.200000,71.890000,816.530000,0.990000,117.840000,5.500000 -3,2023-08-12 08:00:00,0.000000,16.600000,57.000000,14.000000,255.000000,65.490000,71.990000,816.810000,1.090000,117.990000,6.050000 -3,2023-08-12 09:00:00,0.000000,16.600000,57.000000,14.000000,255.000000,67.580000,72.100000,817.090000,1.170000,118.140000,6.500000 -3,2023-08-12 10:00:00,0.000000,16.600000,57.000000,14.000000,255.000000,69.490000,72.210000,817.370000,1.250000,118.300000,6.880000 -3,2023-08-12 11:00:00,0.000000,23.500000,44.000000,19.000000,279.000000,72.560000,72.430000,817.920000,1.780000,118.600000,9.450000 -3,2023-08-12 12:00:00,0.000000,23.500000,44.000000,19.000000,279.000000,75.210000,72.650000,818.470000,2.020000,118.910000,10.500000 -3,2023-08-12 13:00:00,0.000000,23.500000,44.000000,19.000000,279.000000,77.460000,72.860000,819.030000,2.350000,119.210000,11.890000 -3,2023-08-12 14:00:00,0.000000,23.500000,44.000000,19.000000,279.000000,79.370000,73.080000,819.580000,2.780000,119.520000,13.610000 -3,2023-08-12 15:00:00,0.000000,23.500000,44.000000,19.000000,279.000000,80.990000,73.300000,820.130000,3.290000,119.830000,15.540000 -3,2023-08-12 16:00:00,0.000000,23.500000,44.000000,19.000000,279.000000,82.340000,73.520000,820.680000,3.870000,120.130000,17.550000 -3,2023-08-12 17:00:00,0.020000,24.400000,46.000000,18.000000,310.000000,83.450000,73.740000,821.250000,4.230000,120.440000,18.780000 -3,2023-08-12 18:00:00,0.000000,24.400000,46.000000,18.000000,310.000000,84.370000,73.960000,821.810000,4.790000,120.750000,20.550000 -3,2023-08-12 19:00:00,0.000000,24.400000,46.000000,18.000000,310.000000,85.140000,74.180000,822.370000,5.310000,121.060000,22.180000 -3,2023-08-12 20:00:00,0.000000,24.400000,46.000000,18.000000,310.000000,85.770000,74.400000,822.940000,5.810000,121.370000,23.630000 -3,2023-08-12 21:00:00,0.000000,24.400000,46.000000,18.000000,310.000000,86.300000,74.400000,822.940000,6.250000,121.370000,24.890000 -3,2023-08-12 22:00:00,0.000000,24.400000,46.000000,18.000000,310.000000,86.740000,74.400000,822.940000,6.650000,121.370000,25.980000 -3,2023-08-12 23:00:00,0.000000,18.100000,65.000000,6.000000,244.000000,86.650000,74.400000,822.940000,3.590000,121.370000,16.660000 -3,2023-08-13 00:00:00,0.000000,18.100000,65.000000,6.000000,244.000000,86.570000,74.400000,822.940000,3.550000,121.370000,16.520000 -3,2023-08-13 01:00:00,0.000000,18.100000,65.000000,6.000000,244.000000,86.500000,74.400000,822.940000,3.510000,121.370000,16.400000 -3,2023-08-13 02:00:00,0.000000,18.100000,65.000000,6.000000,244.000000,86.440000,74.400000,822.940000,3.480000,121.370000,16.290000 -3,2023-08-13 03:00:00,0.000000,18.100000,65.000000,6.000000,244.000000,86.380000,74.400000,822.940000,3.450000,121.370000,16.200000 -3,2023-08-13 04:00:00,0.000000,18.100000,65.000000,6.000000,244.000000,86.340000,74.400000,822.940000,3.430000,121.370000,16.120000 -3,2023-08-13 05:00:00,0.000000,15.100000,57.000000,9.000000,222.000000,86.340000,74.490000,823.130000,3.990000,121.500000,18.050000 -3,2023-08-13 06:00:00,0.000000,15.100000,57.000000,9.000000,222.000000,86.340000,74.590000,823.320000,3.990000,121.630000,18.060000 -3,2023-08-13 07:00:00,0.000000,15.100000,57.000000,9.000000,222.000000,86.340000,74.680000,823.510000,3.990000,121.760000,18.070000 -3,2023-08-13 08:00:00,0.000000,15.100000,57.000000,9.000000,222.000000,86.340000,74.770000,823.700000,3.990000,121.880000,18.080000 -3,2023-08-13 09:00:00,0.000000,15.100000,57.000000,9.000000,222.000000,86.340000,74.860000,823.890000,3.990000,122.010000,18.080000 -3,2023-08-13 10:00:00,0.000000,15.100000,57.000000,9.000000,222.000000,86.340000,74.960000,824.090000,3.990000,122.140000,18.090000 -3,2023-08-13 11:00:00,0.000000,24.200000,32.000000,11.000000,240.000000,87.190000,75.210000,824.620000,4.980000,122.500000,21.290000 -3,2023-08-13 12:00:00,0.000000,24.200000,32.000000,11.000000,240.000000,87.910000,75.470000,825.150000,5.520000,122.850000,22.920000 -3,2023-08-13 13:00:00,0.000000,24.200000,32.000000,11.000000,240.000000,88.500000,75.730000,825.690000,6.010000,123.210000,24.370000 -3,2023-08-13 14:00:00,0.000000,24.200000,32.000000,11.000000,240.000000,89.000000,75.990000,826.220000,6.460000,123.560000,25.640000 -3,2023-08-13 15:00:00,0.000000,24.200000,32.000000,11.000000,240.000000,89.410000,76.240000,826.750000,6.850000,123.920000,26.740000 -3,2023-08-13 16:00:00,0.000000,24.200000,32.000000,11.000000,240.000000,89.750000,76.500000,827.280000,7.190000,124.270000,27.690000 -3,2023-08-13 17:00:00,0.000000,28.400000,25.000000,11.000000,282.000000,90.520000,76.860000,828.040000,8.040000,124.770000,29.900000 -3,2023-08-13 18:00:00,0.000000,28.400000,25.000000,11.000000,282.000000,91.140000,77.230000,828.790000,8.780000,125.270000,31.780000 -3,2023-08-13 19:00:00,0.000000,28.400000,25.000000,11.000000,282.000000,91.640000,77.590000,829.540000,9.420000,125.770000,33.360000 -3,2023-08-13 20:00:00,0.000000,28.400000,25.000000,11.000000,282.000000,92.030000,77.950000,830.300000,9.960000,126.270000,34.670000 -3,2023-08-13 21:00:00,0.000000,28.400000,25.000000,11.000000,282.000000,92.350000,77.950000,830.300000,10.410000,126.270000,35.700000 -3,2023-08-13 22:00:00,0.000000,28.400000,25.000000,11.000000,282.000000,92.600000,77.950000,830.300000,10.790000,126.270000,36.540000 -3,2023-08-13 23:00:00,0.000000,19.400000,47.000000,4.000000,226.000000,92.240000,77.950000,830.300000,7.210000,126.270000,27.890000 -3,2023-08-14 00:00:00,0.000000,19.400000,47.000000,4.000000,226.000000,91.920000,77.950000,830.300000,6.890000,126.270000,27.040000 -3,2023-08-14 01:00:00,0.000000,19.400000,47.000000,4.000000,226.000000,91.630000,77.950000,830.300000,6.620000,126.270000,26.300000 -3,2023-08-14 02:00:00,0.000000,19.400000,47.000000,4.000000,226.000000,91.380000,77.950000,830.300000,6.380000,126.270000,25.660000 -3,2023-08-14 03:00:00,0.000000,19.400000,47.000000,4.000000,226.000000,91.160000,77.950000,830.300000,6.180000,126.270000,25.090000 -3,2023-08-14 04:00:00,0.000000,19.400000,47.000000,4.000000,226.000000,90.960000,77.950000,830.300000,6.010000,126.270000,24.600000 -3,2023-08-14 05:00:00,0.000000,15.900000,59.000000,8.000000,201.000000,90.440000,78.050000,830.470000,6.830000,126.390000,26.890000 -3,2023-08-14 06:00:00,0.000000,15.900000,59.000000,8.000000,201.000000,89.990000,78.140000,830.630000,6.400000,126.520000,25.720000 -3,2023-08-14 07:00:00,0.000000,15.900000,59.000000,8.000000,201.000000,89.590000,78.230000,830.800000,6.050000,126.640000,24.730000 -3,2023-08-14 08:00:00,0.000000,15.900000,59.000000,8.000000,201.000000,89.240000,78.320000,830.970000,5.750000,126.770000,23.890000 -3,2023-08-14 09:00:00,0.000000,15.900000,59.000000,8.000000,201.000000,88.940000,78.410000,831.140000,5.500000,126.890000,23.170000 -3,2023-08-14 10:00:00,0.000000,15.900000,59.000000,8.000000,201.000000,88.670000,78.500000,831.310000,5.290000,127.020000,22.550000 -3,2023-08-14 11:00:00,0.000000,28.500000,28.000000,11.000000,175.000000,89.520000,78.850000,831.940000,6.960000,127.490000,27.340000 -3,2023-08-14 12:00:00,0.000000,28.500000,28.000000,11.000000,175.000000,90.210000,79.190000,832.580000,7.680000,127.950000,29.280000 -3,2023-08-14 13:00:00,0.000000,28.500000,28.000000,11.000000,175.000000,90.760000,79.530000,833.220000,8.310000,128.420000,30.930000 -3,2023-08-14 14:00:00,0.000000,28.500000,28.000000,11.000000,175.000000,91.200000,79.880000,833.850000,8.850000,128.890000,32.300000 -3,2023-08-14 15:00:00,0.000000,28.500000,28.000000,11.000000,175.000000,91.550000,80.220000,834.490000,9.310000,129.360000,33.440000 -3,2023-08-14 16:00:00,0.000000,28.500000,28.000000,11.000000,175.000000,91.840000,80.570000,835.130000,9.690000,129.820000,34.390000 -3,2023-08-14 17:00:00,0.000000,32.100000,24.000000,8.000000,231.000000,92.400000,81.010000,835.950000,9.020000,130.430000,32.850000 -3,2023-08-14 18:00:00,0.000000,32.100000,24.000000,8.000000,231.000000,92.840000,81.460000,836.780000,9.600000,131.030000,34.290000 -3,2023-08-14 19:00:00,0.000000,32.100000,24.000000,8.000000,231.000000,93.190000,81.910000,837.610000,10.080000,131.630000,35.460000 -3,2023-08-14 20:00:00,0.000000,32.100000,24.000000,8.000000,231.000000,93.460000,82.350000,838.430000,10.460000,132.240000,36.410000 -3,2023-08-14 21:00:00,0.000000,32.100000,24.000000,8.000000,231.000000,93.670000,82.350000,838.430000,10.780000,132.240000,37.120000 -3,2023-08-14 22:00:00,0.000000,32.100000,24.000000,8.000000,231.000000,93.830000,82.350000,838.430000,11.030000,132.240000,37.680000 -3,2023-08-14 23:00:00,0.000000,25.800000,37.000000,16.000000,332.000000,93.570000,82.350000,838.430000,15.910000,132.240000,47.670000 -3,2023-08-15 00:00:00,0.000000,25.800000,37.000000,16.000000,332.000000,93.350000,82.350000,838.430000,15.430000,132.240000,46.750000 -3,2023-08-15 01:00:00,0.000000,25.800000,37.000000,16.000000,332.000000,93.170000,82.350000,838.430000,15.040000,132.240000,45.990000 -3,2023-08-15 02:00:00,0.000000,25.800000,37.000000,16.000000,332.000000,93.010000,82.350000,838.430000,14.710000,132.240000,45.360000 -3,2023-08-15 03:00:00,0.000000,25.800000,37.000000,16.000000,332.000000,92.880000,82.350000,838.430000,14.450000,132.240000,44.840000 -3,2023-08-15 04:00:00,0.000000,25.800000,37.000000,16.000000,332.000000,92.770000,82.350000,838.430000,14.220000,132.240000,44.400000 -3,2023-08-15 05:00:00,0.000000,17.800000,64.000000,6.000000,303.000000,91.920000,82.440000,838.650000,7.620000,132.360000,29.470000 -3,2023-08-15 06:00:00,0.000000,17.800000,64.000000,6.000000,303.000000,91.170000,82.530000,838.860000,6.860000,132.480000,27.440000 -3,2023-08-15 07:00:00,0.000000,17.800000,64.000000,6.000000,303.000000,90.530000,82.620000,839.070000,6.250000,132.600000,25.760000 -3,2023-08-15 08:00:00,0.000000,17.800000,64.000000,6.000000,303.000000,89.970000,82.710000,839.290000,5.770000,132.720000,24.370000 -3,2023-08-15 09:00:00,0.000000,17.800000,64.000000,6.000000,303.000000,89.480000,82.800000,839.500000,5.380000,132.840000,23.210000 -3,2023-08-15 10:00:00,0.000000,17.800000,64.000000,6.000000,303.000000,89.060000,82.880000,839.720000,5.070000,132.960000,22.240000 -3,2023-08-15 11:00:00,0.000000,24.300000,42.000000,4.000000,301.000000,89.120000,83.100000,840.230000,4.620000,133.250000,20.840000 -3,2023-08-15 12:00:00,0.000000,24.300000,42.000000,4.000000,301.000000,89.170000,83.310000,840.750000,4.650000,133.540000,20.970000 -3,2023-08-15 13:00:00,0.000000,24.300000,42.000000,4.000000,301.000000,89.220000,83.520000,841.260000,4.680000,133.830000,21.080000 -3,2023-08-15 14:00:00,0.000000,24.300000,42.000000,4.000000,301.000000,89.250000,83.730000,841.780000,4.710000,134.120000,21.180000 -3,2023-08-15 15:00:00,0.000000,24.300000,42.000000,4.000000,301.000000,89.290000,83.950000,842.300000,4.730000,134.410000,21.260000 -3,2023-08-15 16:00:00,0.000000,24.300000,42.000000,4.000000,301.000000,89.310000,84.160000,842.810000,4.750000,134.690000,21.340000 -3,2023-08-15 17:00:00,0.000000,27.700000,31.000000,2.000000,133.000000,89.760000,84.470000,843.560000,4.580000,135.110000,20.800000 -3,2023-08-15 18:00:00,0.000000,27.700000,31.000000,2.000000,133.000000,90.130000,84.780000,844.310000,4.830000,135.530000,21.650000 -3,2023-08-15 19:00:00,0.000000,27.700000,31.000000,2.000000,133.000000,90.450000,85.090000,845.060000,5.050000,135.950000,22.380000 -3,2023-08-15 20:00:00,0.000000,27.700000,31.000000,2.000000,133.000000,90.720000,85.400000,845.810000,5.250000,136.370000,23.030000 -3,2023-08-15 21:00:00,0.000000,27.700000,31.000000,2.000000,133.000000,90.950000,85.400000,845.810000,5.430000,136.370000,23.560000 -3,2023-08-15 22:00:00,0.000000,27.700000,31.000000,2.000000,133.000000,91.140000,85.400000,845.810000,5.580000,136.370000,24.020000 -3,2023-08-15 23:00:00,0.000000,21.800000,50.000000,4.000000,349.000000,90.900000,85.400000,845.810000,5.960000,136.370000,25.170000 -3,2023-08-16 00:00:00,0.000000,21.800000,50.000000,4.000000,349.000000,90.700000,85.400000,845.810000,5.790000,136.370000,24.660000 -3,2023-08-16 01:00:00,0.000000,21.800000,50.000000,4.000000,349.000000,90.510000,85.400000,845.810000,5.640000,136.370000,24.210000 -3,2023-08-16 02:00:00,0.000000,21.800000,50.000000,4.000000,349.000000,90.350000,85.400000,845.810000,5.510000,136.370000,23.830000 -3,2023-08-16 03:00:00,0.000000,21.800000,50.000000,4.000000,349.000000,90.210000,85.400000,845.810000,5.400000,136.370000,23.490000 -3,2023-08-16 04:00:00,0.000000,21.800000,50.000000,4.000000,349.000000,90.090000,85.400000,845.810000,5.310000,136.370000,23.200000 -3,2023-08-16 05:00:00,0.000000,19.000000,61.000000,4.000000,204.000000,89.700000,85.510000,846.050000,5.020000,136.520000,22.300000 -3,2023-08-16 06:00:00,0.000000,19.000000,61.000000,4.000000,204.000000,89.350000,85.620000,846.300000,4.770000,136.670000,21.530000 -3,2023-08-16 07:00:00,0.000000,19.000000,61.000000,4.000000,204.000000,89.050000,85.730000,846.540000,4.570000,136.820000,20.880000 -3,2023-08-16 08:00:00,0.000000,19.000000,61.000000,4.000000,204.000000,88.780000,85.840000,846.790000,4.400000,136.970000,20.320000 -3,2023-08-16 09:00:00,0.000000,19.000000,61.000000,4.000000,204.000000,88.550000,85.960000,847.030000,4.250000,137.120000,19.840000 -3,2023-08-16 10:00:00,0.000000,19.000000,61.000000,4.000000,204.000000,88.340000,86.070000,847.270000,4.130000,137.270000,19.430000 -3,2023-08-16 11:00:00,0.000000,27.300000,38.000000,13.000000,194.000000,88.800000,86.360000,847.920000,6.940000,137.670000,28.040000 -3,2023-08-16 12:00:00,0.000000,27.300000,38.000000,13.000000,194.000000,89.170000,86.660000,848.560000,7.320000,138.060000,29.110000 -3,2023-08-16 13:00:00,0.000000,27.300000,38.000000,13.000000,194.000000,89.470000,86.950000,849.200000,7.640000,138.460000,30.000000 -3,2023-08-16 14:00:00,0.000000,27.300000,38.000000,13.000000,194.000000,89.710000,87.250000,849.840000,7.910000,138.850000,30.740000 -3,2023-08-16 15:00:00,0.000000,27.300000,38.000000,13.000000,194.000000,89.910000,87.540000,850.480000,8.140000,139.250000,31.360000 -3,2023-08-16 16:00:00,0.000000,27.300000,38.000000,13.000000,194.000000,90.070000,87.830000,851.120000,8.330000,139.640000,31.870000 -3,2023-08-16 17:00:00,0.000000,24.800000,27.000000,15.000000,225.000000,90.540000,88.130000,851.770000,9.850000,140.040000,35.660000 -3,2023-08-16 18:00:00,0.000000,24.800000,27.000000,15.000000,225.000000,90.920000,88.430000,852.420000,10.400000,140.440000,36.980000 -3,2023-08-16 19:00:00,0.000000,24.800000,27.000000,15.000000,225.000000,91.220000,88.730000,853.080000,10.870000,140.840000,38.090000 -3,2023-08-16 20:00:00,0.000000,24.800000,27.000000,15.000000,225.000000,91.470000,89.030000,853.730000,11.260000,141.240000,39.010000 -3,2023-08-16 21:00:00,0.000000,24.800000,27.000000,15.000000,225.000000,91.680000,89.030000,853.730000,11.590000,141.240000,39.750000 -3,2023-08-16 22:00:00,0.000000,24.800000,27.000000,15.000000,225.000000,91.840000,89.030000,853.730000,11.860000,141.240000,40.350000 -3,2023-08-16 23:00:00,0.000000,18.000000,36.000000,16.000000,222.000000,91.740000,89.030000,853.730000,12.300000,141.240000,41.320000 -3,2023-08-17 00:00:00,0.000000,18.000000,36.000000,16.000000,222.000000,91.660000,89.030000,853.730000,12.160000,141.240000,41.000000 -3,2023-08-17 01:00:00,0.000000,18.000000,36.000000,16.000000,222.000000,91.580000,89.030000,853.730000,12.030000,141.240000,40.720000 -3,2023-08-17 02:00:00,0.000000,18.000000,36.000000,16.000000,222.000000,91.520000,89.030000,853.730000,11.920000,141.240000,40.470000 -3,2023-08-17 03:00:00,0.000000,18.000000,36.000000,16.000000,222.000000,91.460000,89.030000,853.730000,11.820000,141.240000,40.260000 -3,2023-08-17 04:00:00,0.000000,18.000000,36.000000,16.000000,222.000000,91.410000,89.030000,853.730000,11.730000,141.240000,40.070000 -3,2023-08-17 05:00:00,0.000000,14.300000,40.000000,13.000000,219.000000,91.230000,89.030000,853.730000,9.830000,141.240000,35.700000 -3,2023-08-17 06:00:00,0.000000,14.300000,40.000000,13.000000,219.000000,91.060000,89.160000,854.010000,9.600000,141.420000,35.170000 -3,2023-08-17 07:00:00,0.000000,14.300000,40.000000,13.000000,219.000000,90.920000,89.300000,854.290000,9.400000,141.590000,34.700000 -3,2023-08-17 08:00:00,0.000000,14.300000,40.000000,13.000000,219.000000,90.790000,89.430000,854.570000,9.230000,141.770000,34.290000 -3,2023-08-17 09:00:00,0.000000,14.300000,40.000000,13.000000,219.000000,90.670000,89.570000,854.850000,9.080000,141.950000,33.930000 -3,2023-08-17 10:00:00,0.000000,14.300000,40.000000,13.000000,219.000000,90.570000,89.700000,855.140000,8.940000,142.130000,33.610000 -3,2023-08-17 11:00:00,0.000000,20.000000,28.000000,14.000000,219.000000,90.720000,89.930000,855.620000,9.610000,142.430000,35.270000 -3,2023-08-17 12:00:00,0.000000,20.000000,28.000000,14.000000,219.000000,90.850000,90.160000,856.110000,9.790000,142.740000,35.720000 -3,2023-08-17 13:00:00,0.000000,20.000000,28.000000,14.000000,219.000000,90.950000,90.390000,856.590000,9.940000,143.050000,36.110000 -3,2023-08-17 14:00:00,0.000000,20.000000,28.000000,14.000000,219.000000,91.040000,90.620000,857.080000,10.070000,143.350000,36.440000 -3,2023-08-17 15:00:00,0.000000,20.000000,28.000000,14.000000,219.000000,91.120000,90.850000,857.560000,10.180000,143.660000,36.720000 -3,2023-08-17 16:00:00,0.000000,20.000000,28.000000,14.000000,219.000000,91.180000,91.080000,858.050000,10.270000,143.960000,36.960000 -3,2023-08-17 17:00:00,0.000000,22.200000,26.000000,17.000000,239.000000,91.390000,91.350000,858.620000,12.300000,144.320000,41.580000 -3,2023-08-17 18:00:00,0.000000,22.200000,26.000000,17.000000,239.000000,91.560000,91.620000,859.190000,12.600000,144.680000,42.250000 -3,2023-08-17 19:00:00,0.000000,22.200000,26.000000,17.000000,239.000000,91.690000,91.900000,859.760000,12.840000,145.040000,42.810000 -3,2023-08-17 20:00:00,0.000000,22.200000,26.000000,17.000000,239.000000,91.800000,92.170000,860.330000,13.050000,145.390000,43.280000 -3,2023-08-17 21:00:00,0.000000,22.200000,26.000000,17.000000,239.000000,91.900000,92.170000,860.330000,13.220000,145.390000,43.640000 -3,2023-08-17 22:00:00,0.000000,22.200000,26.000000,17.000000,239.000000,91.970000,92.170000,860.330000,13.370000,145.390000,43.940000 -3,2023-08-17 23:00:00,0.000000,17.300000,43.000000,20.000000,274.000000,91.660000,92.170000,860.330000,14.870000,145.390000,47.030000 -3,2023-08-18 00:00:00,0.000000,17.300000,43.000000,20.000000,274.000000,91.390000,92.170000,860.330000,14.310000,145.390000,45.900000 -3,2023-08-18 01:00:00,0.000000,17.300000,43.000000,20.000000,274.000000,91.160000,92.170000,860.330000,13.850000,145.390000,44.940000 -3,2023-08-18 02:00:00,0.000000,17.300000,43.000000,20.000000,274.000000,90.960000,92.170000,860.330000,13.450000,145.390000,44.130000 -3,2023-08-18 03:00:00,0.000000,17.300000,43.000000,20.000000,274.000000,90.780000,92.170000,860.330000,13.120000,145.390000,43.430000 -3,2023-08-18 04:00:00,0.000000,17.300000,43.000000,20.000000,274.000000,90.630000,92.170000,860.330000,12.840000,145.390000,42.830000 -3,2023-08-18 05:00:00,0.000000,11.300000,55.000000,21.000000,268.000000,90.140000,92.170000,860.330000,12.590000,145.390000,42.290000 -3,2023-08-18 06:00:00,0.000000,11.300000,55.000000,21.000000,268.000000,89.710000,92.270000,860.750000,11.830000,145.530000,40.650000 -3,2023-08-18 07:00:00,0.000000,11.300000,55.000000,21.000000,268.000000,89.330000,92.360000,861.170000,11.210000,145.670000,39.260000 -3,2023-08-18 08:00:00,0.000000,11.300000,55.000000,21.000000,268.000000,89.000000,92.460000,861.590000,10.690000,145.810000,38.080000 -3,2023-08-18 09:00:00,0.000000,11.300000,55.000000,21.000000,268.000000,88.710000,92.560000,862.010000,10.260000,145.950000,37.070000 -3,2023-08-18 10:00:00,0.000000,11.300000,55.000000,21.000000,268.000000,88.460000,92.660000,862.430000,9.890000,146.080000,36.200000 -3,2023-08-18 11:00:00,0.150000,12.600000,56.000000,22.000000,266.000000,88.220000,92.770000,862.870000,10.060000,146.230000,36.630000 -3,2023-08-18 12:00:00,0.000000,12.600000,56.000000,22.000000,266.000000,88.020000,92.870000,863.320000,9.770000,146.380000,35.950000 -3,2023-08-18 13:00:00,0.000000,12.600000,56.000000,22.000000,266.000000,87.850000,92.980000,863.770000,9.530000,146.530000,35.370000 -3,2023-08-18 14:00:00,0.000000,12.600000,56.000000,22.000000,266.000000,87.690000,93.080000,864.210000,9.320000,146.670000,34.870000 -3,2023-08-18 15:00:00,0.000000,12.600000,56.000000,22.000000,266.000000,87.560000,93.190000,864.660000,9.150000,146.820000,34.450000 -3,2023-08-18 16:00:00,0.000000,12.600000,56.000000,22.000000,266.000000,87.450000,93.290000,865.110000,9.000000,146.970000,34.080000 -3,2023-08-18 17:00:00,0.080000,13.500000,54.000000,19.000000,287.000000,87.410000,93.410000,865.600000,7.690000,147.130000,30.700000 -4,2023-08-03 00:00:00,0.000000,14.800000,74.000000,4.000000,56.000000,85.750000,118.400000,826.100000,2.860000,174.330000,15.840000 -4,2023-08-03 01:00:00,0.000000,14.800000,74.000000,4.000000,56.000000,85.530000,118.400000,826.100000,2.770000,174.330000,15.480000 -4,2023-08-03 02:00:00,0.000000,12.100000,88.000000,2.000000,100.000000,84.910000,118.400000,826.100000,2.300000,174.330000,13.410000 -4,2023-08-03 03:00:00,0.000000,12.100000,88.000000,2.000000,100.000000,84.360000,118.400000,826.100000,2.140000,174.330000,12.640000 -4,2023-08-03 04:00:00,0.000000,12.100000,88.000000,2.000000,100.000000,83.870000,118.400000,826.100000,2.000000,174.330000,12.000000 -4,2023-08-03 05:00:00,0.000000,11.500000,93.000000,3.000000,108.000000,83.170000,118.410000,826.140000,1.920000,174.350000,11.600000 -4,2023-08-03 06:00:00,0.000000,11.500000,93.000000,3.000000,108.000000,82.540000,118.430000,826.180000,1.770000,174.370000,10.870000 -4,2023-08-03 07:00:00,0.000000,11.500000,93.000000,3.000000,108.000000,81.990000,118.440000,826.210000,1.650000,174.380000,10.270000 -4,2023-08-03 08:00:00,0.000000,15.600000,74.000000,4.000000,119.000000,82.010000,118.500000,826.390000,1.740000,174.460000,10.740000 -4,2023-08-03 09:00:00,0.000000,15.600000,74.000000,4.000000,119.000000,82.040000,118.570000,826.580000,1.750000,174.540000,10.770000 -4,2023-08-03 10:00:00,0.000000,15.600000,74.000000,4.000000,119.000000,82.060000,118.630000,826.760000,1.760000,174.620000,10.800000 -4,2023-08-03 11:00:00,0.000000,20.900000,48.000000,4.000000,83.000000,82.720000,118.810000,827.270000,1.900000,174.840000,11.540000 -4,2023-08-03 12:00:00,0.000000,20.900000,48.000000,4.000000,83.000000,83.310000,118.980000,827.770000,2.050000,175.060000,12.270000 -4,2023-08-03 13:00:00,0.000000,20.900000,48.000000,4.000000,83.000000,83.830000,119.160000,828.280000,2.200000,175.280000,12.960000 -4,2023-08-03 14:00:00,0.000000,23.600000,42.000000,8.000000,43.000000,84.650000,119.390000,828.950000,3.000000,175.570000,16.470000 -4,2023-08-03 15:00:00,0.000000,23.600000,42.000000,8.000000,43.000000,85.350000,119.630000,829.620000,3.300000,175.860000,17.700000 -4,2023-08-03 16:00:00,0.000000,23.600000,42.000000,8.000000,43.000000,85.950000,119.860000,830.280000,3.590000,176.150000,18.830000 -4,2023-08-03 17:00:00,0.180000,23.200000,44.000000,10.000000,50.000000,84.070000,120.080000,830.910000,3.070000,176.420000,16.770000 -4,2023-08-03 18:00:00,0.000000,23.200000,44.000000,10.000000,50.000000,84.800000,120.300000,831.540000,3.390000,176.690000,18.050000 -4,2023-08-03 19:00:00,0.000000,23.200000,44.000000,10.000000,50.000000,85.420000,120.520000,832.170000,3.690000,176.970000,19.230000 -4,2023-08-03 20:00:00,1.140000,20.300000,63.000000,3.000000,121.000000,71.110000,120.640000,832.520000,0.750000,177.120000,5.050000 -4,2023-08-03 21:00:00,0.000000,20.300000,63.000000,3.000000,121.000000,72.300000,120.760000,832.870000,0.790000,177.270000,5.270000 -4,2023-08-03 22:00:00,0.000000,20.300000,63.000000,3.000000,121.000000,73.390000,120.760000,832.870000,0.820000,177.270000,5.510000 -4,2023-08-03 23:00:00,0.000000,15.500000,85.000000,5.000000,235.000000,73.680000,120.760000,832.870000,0.920000,177.270000,6.150000 -4,2023-08-04 00:00:00,0.000000,15.500000,85.000000,5.000000,235.000000,73.960000,120.760000,832.870000,0.930000,177.270000,6.220000 -4,2023-08-04 01:00:00,0.000000,15.500000,85.000000,5.000000,235.000000,74.230000,120.760000,832.870000,0.950000,177.270000,6.300000 -4,2023-08-04 02:00:00,0.000000,13.600000,96.000000,7.000000,243.000000,74.230000,120.760000,832.870000,1.050000,177.270000,6.920000 -4,2023-08-04 03:00:00,0.000000,13.600000,96.000000,7.000000,243.000000,74.230000,120.760000,832.870000,1.050000,177.270000,6.920000 -4,2023-08-04 04:00:00,0.000000,13.600000,96.000000,7.000000,243.000000,74.230000,120.760000,832.870000,1.050000,177.270000,6.920000 -4,2023-08-04 05:00:00,0.000000,12.600000,96.000000,7.000000,253.000000,74.230000,120.770000,832.890000,1.050000,177.280000,6.920000 -4,2023-08-04 06:00:00,0.000000,12.600000,96.000000,7.000000,253.000000,74.230000,120.780000,832.910000,1.050000,177.290000,6.920000 -4,2023-08-04 07:00:00,0.000000,12.600000,96.000000,7.000000,253.000000,74.230000,120.780000,832.930000,1.050000,177.290000,6.920000 -4,2023-08-04 08:00:00,0.000000,18.100000,70.000000,7.000000,262.000000,75.020000,120.870000,833.140000,1.090000,177.400000,7.190000 -4,2023-08-04 09:00:00,0.000000,18.100000,70.000000,7.000000,262.000000,75.750000,120.950000,833.360000,1.140000,177.500000,7.470000 -4,2023-08-04 10:00:00,0.000000,18.100000,70.000000,7.000000,262.000000,76.420000,121.030000,833.570000,1.190000,177.600000,7.770000 -4,2023-08-04 11:00:00,0.000000,23.000000,45.000000,10.000000,309.000000,78.150000,121.240000,834.110000,1.580000,177.850000,9.930000 -4,2023-08-04 12:00:00,0.000000,23.000000,45.000000,10.000000,309.000000,79.660000,121.440000,834.650000,1.820000,178.100000,11.150000 -4,2023-08-04 13:00:00,0.000000,23.000000,45.000000,10.000000,309.000000,80.970000,121.650000,835.180000,2.090000,178.350000,12.480000 -4,2023-08-04 14:00:00,0.000000,24.100000,42.000000,13.000000,328.000000,82.330000,121.880000,835.790000,2.860000,178.640000,15.920000 -4,2023-08-04 15:00:00,0.000000,24.100000,42.000000,13.000000,328.000000,83.490000,122.110000,836.390000,3.310000,178.920000,17.780000 -4,2023-08-04 16:00:00,0.000000,24.100000,42.000000,13.000000,328.000000,84.470000,122.340000,836.990000,3.770000,179.200000,19.570000 -4,2023-08-04 17:00:00,0.000000,24.400000,40.000000,13.000000,334.000000,85.370000,122.590000,837.630000,4.270000,179.500000,21.410000 -4,2023-08-04 18:00:00,0.000000,24.400000,40.000000,13.000000,334.000000,86.130000,122.830000,838.260000,4.750000,179.800000,23.100000 -4,2023-08-04 19:00:00,0.000000,24.400000,40.000000,13.000000,334.000000,86.770000,123.070000,838.900000,5.190000,180.090000,24.600000 -4,2023-08-04 20:00:00,0.000000,23.000000,43.000000,5.000000,326.000000,87.080000,123.290000,839.450000,3.630000,180.350000,19.050000 -4,2023-08-04 21:00:00,0.000000,23.000000,43.000000,5.000000,326.000000,87.350000,123.500000,840.010000,3.770000,180.610000,19.600000 -4,2023-08-04 22:00:00,0.000000,23.000000,43.000000,5.000000,326.000000,87.590000,123.500000,840.010000,3.900000,180.610000,20.090000 -4,2023-08-04 23:00:00,0.000000,17.300000,63.000000,6.000000,281.000000,87.420000,123.500000,840.010000,4.000000,180.610000,20.480000 -4,2023-08-05 00:00:00,0.000000,17.300000,63.000000,6.000000,281.000000,87.280000,123.500000,840.010000,3.920000,180.610000,20.170000 -4,2023-08-05 01:00:00,0.000000,17.300000,63.000000,6.000000,281.000000,87.150000,123.500000,840.010000,3.850000,180.610000,19.910000 -4,2023-08-05 02:00:00,0.000000,15.700000,75.000000,6.000000,285.000000,86.720000,123.500000,840.010000,3.620000,180.610000,19.050000 -4,2023-08-05 03:00:00,0.000000,15.700000,75.000000,6.000000,285.000000,86.350000,123.500000,840.010000,3.440000,180.610000,18.330000 -4,2023-08-05 04:00:00,0.000000,15.700000,75.000000,6.000000,285.000000,86.020000,123.500000,840.010000,3.280000,180.610000,17.710000 -4,2023-08-05 05:00:00,0.000000,15.400000,81.000000,6.000000,295.000000,85.550000,123.540000,840.130000,3.070000,180.660000,16.860000 -4,2023-08-05 06:00:00,0.000000,15.400000,81.000000,6.000000,295.000000,85.140000,123.580000,840.260000,2.900000,180.710000,16.150000 -4,2023-08-05 07:00:00,0.000000,15.400000,81.000000,6.000000,295.000000,84.770000,123.620000,840.380000,2.760000,180.760000,15.560000 -4,2023-08-05 08:00:00,0.000000,18.400000,65.000000,4.000000,332.000000,84.770000,123.700000,840.660000,2.500000,180.870000,14.400000 -4,2023-08-05 09:00:00,0.000000,18.400000,65.000000,4.000000,332.000000,84.770000,123.790000,840.940000,2.500000,180.980000,14.410000 -4,2023-08-05 10:00:00,0.000000,18.400000,65.000000,4.000000,332.000000,84.770000,123.880000,841.220000,2.500000,181.090000,14.410000 -4,2023-08-05 11:00:00,0.000000,21.000000,53.000000,3.000000,24.000000,85.010000,124.020000,841.650000,2.450000,181.260000,14.210000 -4,2023-08-05 12:00:00,0.000000,21.000000,53.000000,3.000000,24.000000,85.220000,124.160000,842.090000,2.530000,181.440000,14.540000 -4,2023-08-05 13:00:00,0.000000,21.000000,53.000000,3.000000,24.000000,85.410000,124.290000,842.530000,2.590000,181.610000,14.840000 -4,2023-08-05 14:00:00,0.020000,22.400000,48.000000,5.000000,40.000000,85.750000,124.460000,843.050000,3.010000,181.820000,16.610000 -4,2023-08-05 15:00:00,0.000000,22.400000,48.000000,5.000000,40.000000,86.050000,124.630000,843.580000,3.140000,182.030000,17.140000 -4,2023-08-05 16:00:00,0.000000,22.400000,48.000000,5.000000,40.000000,86.310000,124.790000,844.110000,3.250000,182.230000,17.620000 -4,2023-08-05 17:00:00,0.010000,22.900000,47.000000,3.000000,121.000000,86.560000,124.970000,844.660000,3.050000,182.450000,16.780000 -4,2023-08-05 18:00:00,0.000000,22.900000,47.000000,3.000000,121.000000,86.780000,125.140000,845.220000,3.140000,182.670000,17.180000 -4,2023-08-05 19:00:00,0.000000,22.900000,47.000000,3.000000,121.000000,86.970000,125.320000,845.770000,3.230000,182.890000,17.530000 -4,2023-08-05 20:00:00,0.000000,21.900000,48.000000,1.000000,61.000000,87.080000,125.480000,846.280000,2.960000,183.090000,16.450000 -4,2023-08-05 21:00:00,0.000000,21.900000,48.000000,1.000000,61.000000,87.170000,125.640000,846.790000,3.000000,183.290000,16.630000 -4,2023-08-05 22:00:00,0.000000,21.900000,48.000000,1.000000,61.000000,87.260000,125.640000,846.790000,3.040000,183.290000,16.780000 -4,2023-08-05 23:00:00,0.000000,17.700000,62.000000,4.000000,17.000000,87.170000,125.640000,846.790000,3.490000,183.290000,18.590000 -4,2023-08-06 00:00:00,0.000000,17.700000,62.000000,4.000000,17.000000,87.090000,125.640000,846.790000,3.450000,183.290000,18.430000 -4,2023-08-06 01:00:00,0.000000,17.700000,62.000000,4.000000,17.000000,87.020000,125.640000,846.790000,3.420000,183.290000,18.300000 -4,2023-08-06 02:00:00,0.000000,15.600000,53.000000,9.000000,42.000000,87.020000,125.640000,846.790000,4.400000,183.290000,21.960000 -4,2023-08-06 03:00:00,0.000000,15.600000,53.000000,9.000000,42.000000,87.020000,125.640000,846.790000,4.400000,183.290000,21.960000 -4,2023-08-06 04:00:00,0.000000,15.600000,53.000000,9.000000,42.000000,87.020000,125.640000,846.790000,4.400000,183.290000,21.960000 -4,2023-08-06 05:00:00,0.000000,14.000000,59.000000,6.000000,14.000000,86.950000,125.720000,847.010000,3.740000,183.390000,19.560000 -4,2023-08-06 06:00:00,0.000000,14.000000,59.000000,6.000000,14.000000,86.890000,125.800000,847.220000,3.710000,183.480000,19.440000 -4,2023-08-06 07:00:00,0.000000,14.000000,59.000000,6.000000,14.000000,86.840000,125.870000,847.430000,3.680000,183.580000,19.330000 -4,2023-08-06 08:00:00,0.000000,16.400000,57.000000,9.000000,33.000000,86.840000,125.970000,847.690000,4.280000,183.690000,21.570000 -4,2023-08-06 09:00:00,0.000000,16.400000,57.000000,9.000000,33.000000,86.840000,126.060000,847.950000,4.280000,183.810000,21.570000 -4,2023-08-06 10:00:00,0.000000,16.400000,57.000000,9.000000,33.000000,86.840000,126.160000,848.210000,4.280000,183.930000,21.570000 -4,2023-08-06 11:00:00,0.000000,19.300000,44.000000,11.000000,51.000000,87.030000,126.310000,848.620000,4.870000,184.110000,23.640000 -4,2023-08-06 12:00:00,0.000000,19.300000,44.000000,11.000000,51.000000,87.210000,126.450000,849.020000,5.000000,184.290000,24.060000 -4,2023-08-06 13:00:00,0.000000,19.300000,44.000000,11.000000,51.000000,87.350000,126.600000,849.430000,5.100000,184.470000,24.420000 -4,2023-08-06 14:00:00,0.000000,21.100000,38.000000,11.000000,57.000000,87.710000,126.790000,849.930000,5.370000,184.690000,25.290000 -4,2023-08-06 15:00:00,0.000000,21.100000,38.000000,11.000000,57.000000,88.000000,126.970000,850.440000,5.600000,184.920000,26.060000 -4,2023-08-06 16:00:00,0.000000,21.100000,38.000000,11.000000,57.000000,88.260000,127.150000,850.940000,5.810000,185.140000,26.730000 -4,2023-08-06 17:00:00,0.000000,21.100000,37.000000,12.000000,60.000000,88.510000,127.340000,851.450000,6.330000,185.370000,28.370000 -4,2023-08-06 18:00:00,0.000000,21.100000,37.000000,12.000000,60.000000,88.720000,127.520000,851.960000,6.530000,185.600000,28.970000 -4,2023-08-06 19:00:00,0.000000,21.100000,37.000000,12.000000,60.000000,88.900000,127.710000,852.470000,6.700000,185.820000,29.490000 -4,2023-08-06 20:00:00,0.000000,18.800000,43.000000,12.000000,71.000000,88.900000,127.860000,852.870000,6.700000,186.000000,29.490000 -4,2023-08-06 21:00:00,0.000000,18.800000,43.000000,12.000000,71.000000,88.900000,128.000000,853.270000,6.700000,186.180000,29.500000 -4,2023-08-06 22:00:00,0.000000,18.800000,43.000000,12.000000,71.000000,88.900000,128.000000,853.270000,6.700000,186.180000,29.500000 -4,2023-08-06 23:00:00,0.000000,14.600000,58.000000,6.000000,80.000000,88.660000,128.000000,853.270000,4.780000,186.180000,23.360000 -4,2023-08-07 00:00:00,0.000000,14.600000,58.000000,6.000000,80.000000,88.440000,128.000000,853.270000,4.630000,186.180000,22.850000 -4,2023-08-07 01:00:00,0.000000,14.600000,58.000000,6.000000,80.000000,88.250000,128.000000,853.270000,4.510000,186.180000,22.410000 -4,2023-08-07 02:00:00,0.000000,12.200000,69.000000,5.000000,99.000000,87.840000,128.000000,853.270000,4.040000,186.180000,20.730000 -4,2023-08-07 03:00:00,0.000000,12.200000,69.000000,5.000000,99.000000,87.470000,128.000000,853.270000,3.830000,186.180000,19.960000 -4,2023-08-07 04:00:00,0.000000,12.200000,69.000000,5.000000,99.000000,87.150000,128.000000,853.270000,3.660000,186.180000,19.290000 -4,2023-08-07 05:00:00,0.000000,12.800000,66.000000,5.000000,128.000000,86.920000,128.060000,853.430000,3.540000,186.250000,18.850000 -4,2023-08-07 06:00:00,0.000000,12.800000,66.000000,5.000000,128.000000,86.720000,128.110000,853.580000,3.450000,186.320000,18.460000 -4,2023-08-07 07:00:00,0.000000,12.800000,66.000000,5.000000,128.000000,86.540000,128.170000,853.730000,3.360000,186.380000,18.120000 -4,2023-08-07 08:00:00,0.000000,15.100000,55.000000,6.000000,127.000000,86.540000,128.250000,853.970000,3.530000,186.490000,18.800000 -4,2023-08-07 09:00:00,0.000000,15.100000,55.000000,6.000000,127.000000,86.540000,128.340000,854.200000,3.530000,186.590000,18.800000 -4,2023-08-07 10:00:00,0.000000,15.100000,55.000000,6.000000,127.000000,86.540000,128.430000,854.440000,3.530000,186.700000,18.810000 -4,2023-08-07 11:00:00,0.000000,18.600000,43.000000,9.000000,107.000000,86.770000,128.560000,854.810000,4.250000,186.860000,21.490000 -4,2023-08-07 12:00:00,0.000000,18.600000,43.000000,9.000000,107.000000,86.980000,128.700000,855.180000,4.370000,187.030000,21.950000 -4,2023-08-07 13:00:00,0.000000,18.600000,43.000000,9.000000,107.000000,87.160000,128.830000,855.560000,4.480000,187.200000,22.350000 -4,2023-08-07 14:00:00,0.000000,21.600000,31.000000,11.000000,77.000000,87.780000,129.030000,856.100000,5.430000,187.440000,25.550000 -4,2023-08-07 15:00:00,0.000000,21.600000,31.000000,11.000000,77.000000,88.310000,129.230000,856.640000,5.850000,187.680000,26.940000 -4,2023-08-07 16:00:00,0.000000,21.600000,31.000000,11.000000,77.000000,88.760000,129.430000,857.190000,6.240000,187.920000,28.160000 -4,2023-08-07 17:00:00,0.000000,21.200000,28.000000,18.000000,54.000000,89.270000,129.630000,857.740000,9.560000,188.170000,37.440000 -4,2023-08-07 18:00:00,0.000000,21.200000,28.000000,18.000000,54.000000,89.700000,129.830000,858.290000,10.160000,188.410000,38.960000 -4,2023-08-07 19:00:00,0.000000,21.200000,28.000000,18.000000,54.000000,90.050000,130.040000,858.850000,10.690000,188.660000,40.260000 -4,2023-08-07 20:00:00,0.000000,17.700000,37.000000,17.000000,48.000000,90.050000,130.180000,859.230000,10.160000,188.830000,38.980000 -4,2023-08-07 21:00:00,0.000000,17.700000,37.000000,17.000000,48.000000,90.050000,130.320000,859.620000,10.160000,189.010000,38.980000 -4,2023-08-07 22:00:00,0.000000,17.700000,37.000000,17.000000,48.000000,90.050000,130.320000,859.620000,10.160000,189.010000,38.980000 -4,2023-08-07 23:00:00,0.000000,14.000000,56.000000,10.000000,45.000000,89.690000,130.320000,859.620000,6.780000,189.010000,29.810000 -4,2023-08-08 00:00:00,0.000000,14.000000,56.000000,10.000000,45.000000,89.360000,130.320000,859.620000,6.470000,189.010000,28.890000 -4,2023-08-08 01:00:00,0.000000,14.000000,56.000000,10.000000,45.000000,89.080000,130.320000,859.620000,6.210000,189.010000,28.100000 -4,2023-08-08 02:00:00,0.000000,11.600000,69.000000,8.000000,55.000000,88.540000,130.320000,859.620000,5.200000,189.010000,24.850000 -4,2023-08-08 03:00:00,0.000000,11.600000,69.000000,8.000000,55.000000,88.070000,130.320000,859.620000,4.860000,189.010000,23.690000 -4,2023-08-08 04:00:00,0.000000,11.600000,69.000000,8.000000,55.000000,87.650000,130.320000,859.620000,4.570000,189.010000,22.700000 -4,2023-08-08 05:00:00,0.000000,10.000000,68.000000,8.000000,66.000000,87.290000,130.370000,859.730000,4.350000,189.060000,21.890000 -4,2023-08-08 06:00:00,0.000000,10.000000,68.000000,8.000000,66.000000,86.970000,130.410000,859.830000,4.150000,189.120000,21.190000 -4,2023-08-08 07:00:00,0.000000,10.000000,68.000000,8.000000,66.000000,86.680000,130.460000,859.930000,3.980000,189.170000,20.580000 -4,2023-08-08 08:00:00,0.000000,15.200000,45.000000,12.000000,91.000000,86.770000,130.570000,860.190000,4.940000,189.300000,23.970000 -4,2023-08-08 09:00:00,0.000000,15.200000,45.000000,12.000000,91.000000,86.850000,130.680000,860.440000,5.000000,189.440000,24.170000 -4,2023-08-08 10:00:00,0.000000,15.200000,45.000000,12.000000,91.000000,86.920000,130.790000,860.690000,5.050000,189.570000,24.340000 -4,2023-08-08 11:00:00,0.000000,20.700000,33.000000,14.000000,94.000000,87.500000,130.990000,861.120000,6.060000,189.800000,27.640000 -4,2023-08-08 12:00:00,0.000000,20.700000,33.000000,14.000000,94.000000,87.990000,131.180000,861.550000,6.500000,190.030000,29.010000 -4,2023-08-08 13:00:00,0.000000,20.700000,33.000000,14.000000,94.000000,88.410000,131.370000,861.980000,6.900000,190.260000,30.200000 -4,2023-08-08 14:00:00,0.000000,23.100000,26.000000,17.000000,93.000000,89.150000,131.620000,862.530000,8.930000,190.550000,35.870000 -4,2023-08-08 15:00:00,0.000000,23.100000,26.000000,17.000000,93.000000,89.760000,131.870000,863.080000,9.740000,190.840000,37.990000 -4,2023-08-08 16:00:00,0.000000,23.100000,26.000000,17.000000,93.000000,90.260000,132.120000,863.630000,10.470000,191.130000,39.800000 -4,2023-08-08 17:00:00,0.000000,23.500000,24.000000,14.000000,110.000000,90.750000,132.380000,864.210000,9.650000,191.440000,37.770000 -4,2023-08-08 18:00:00,0.000000,23.500000,24.000000,14.000000,110.000000,91.150000,132.640000,864.790000,10.230000,191.750000,39.230000 -4,2023-08-08 19:00:00,0.000000,23.500000,24.000000,14.000000,110.000000,91.480000,132.900000,865.370000,10.720000,192.060000,40.450000 -4,2023-08-08 20:00:00,0.000000,21.400000,27.000000,9.000000,106.000000,91.560000,133.110000,865.860000,8.420000,192.320000,34.560000 -4,2023-08-08 21:00:00,0.000000,21.400000,27.000000,9.000000,106.000000,91.620000,133.330000,866.350000,8.500000,192.570000,34.770000 -4,2023-08-08 22:00:00,0.000000,21.400000,27.000000,9.000000,106.000000,91.680000,133.330000,866.350000,8.560000,192.570000,34.950000 -4,2023-08-08 23:00:00,0.000000,17.700000,35.000000,12.000000,110.000000,91.620000,133.330000,866.350000,9.880000,192.570000,38.390000 -4,2023-08-09 00:00:00,0.000000,17.700000,35.000000,12.000000,110.000000,91.570000,133.330000,866.350000,9.820000,192.570000,38.220000 -4,2023-08-09 01:00:00,0.000000,17.700000,35.000000,12.000000,110.000000,91.530000,133.330000,866.350000,9.760000,192.570000,38.060000 -4,2023-08-09 02:00:00,0.000000,14.500000,46.000000,8.000000,116.000000,91.230000,133.330000,866.350000,7.650000,192.570000,32.420000 -4,2023-08-09 03:00:00,0.000000,14.500000,46.000000,8.000000,116.000000,90.970000,133.330000,866.350000,7.360000,192.570000,31.610000 -4,2023-08-09 04:00:00,0.000000,14.500000,46.000000,8.000000,116.000000,90.730000,133.330000,866.350000,7.120000,192.570000,30.900000 -4,2023-08-09 05:00:00,0.000000,11.100000,60.000000,5.000000,117.000000,90.250000,133.400000,866.490000,5.720000,192.650000,26.610000 -4,2023-08-09 06:00:00,0.000000,11.100000,60.000000,5.000000,117.000000,89.820000,133.460000,866.620000,5.370000,192.720000,25.490000 -4,2023-08-09 07:00:00,0.000000,11.100000,60.000000,5.000000,117.000000,89.430000,133.530000,866.760000,5.080000,192.800000,24.520000 -4,2023-08-09 08:00:00,0.000000,16.400000,45.000000,7.000000,119.000000,89.400000,133.650000,867.010000,5.590000,192.940000,26.220000 -4,2023-08-09 09:00:00,0.000000,16.400000,45.000000,7.000000,119.000000,89.380000,133.770000,867.270000,5.570000,193.090000,26.160000 -4,2023-08-09 10:00:00,0.000000,16.400000,45.000000,7.000000,119.000000,89.350000,133.890000,867.530000,5.550000,193.230000,26.100000 -4,2023-08-09 11:00:00,0.000000,22.300000,31.000000,12.000000,129.000000,89.670000,134.120000,868.000000,7.480000,193.490000,31.960000 -4,2023-08-09 12:00:00,0.000000,22.300000,31.000000,12.000000,129.000000,89.930000,134.340000,868.470000,7.770000,193.750000,32.790000 -4,2023-08-09 13:00:00,0.000000,22.300000,31.000000,12.000000,129.000000,90.160000,134.560000,868.940000,8.020000,194.020000,33.500000 -4,2023-08-09 14:00:00,0.000000,24.900000,26.000000,12.000000,111.000000,90.630000,134.840000,869.530000,8.590000,194.340000,35.060000 -4,2023-08-09 15:00:00,0.000000,24.900000,26.000000,12.000000,111.000000,91.030000,135.120000,870.120000,9.080000,194.670000,36.380000 -4,2023-08-09 16:00:00,0.000000,24.900000,26.000000,12.000000,111.000000,91.350000,135.400000,870.710000,9.510000,195.000000,37.490000 -4,2023-08-09 17:00:00,0.000000,24.500000,26.000000,13.000000,114.000000,91.600000,135.680000,871.290000,10.360000,195.320000,39.650000 -4,2023-08-09 18:00:00,0.000000,24.500000,26.000000,13.000000,114.000000,91.800000,135.950000,871.860000,10.660000,195.640000,40.410000 -4,2023-08-09 19:00:00,0.000000,24.500000,26.000000,13.000000,114.000000,91.970000,136.230000,872.440000,10.920000,195.960000,41.040000 -4,2023-08-09 20:00:00,0.000000,22.400000,32.000000,11.000000,118.000000,91.970000,136.450000,872.910000,9.870000,196.220000,38.450000 -4,2023-08-09 21:00:00,0.000000,22.400000,32.000000,11.000000,118.000000,91.970000,136.670000,873.370000,9.870000,196.470000,38.460000 -4,2023-08-09 22:00:00,0.000000,22.400000,32.000000,11.000000,118.000000,91.970000,136.670000,873.370000,9.870000,196.470000,38.460000 -4,2023-08-09 23:00:00,0.000000,17.900000,46.000000,9.000000,119.000000,91.640000,136.670000,873.370000,8.520000,196.470000,34.940000 -4,2023-08-10 00:00:00,0.000000,17.900000,46.000000,9.000000,119.000000,91.360000,136.670000,873.370000,8.190000,196.470000,34.010000 -4,2023-08-10 01:00:00,0.000000,17.900000,46.000000,9.000000,119.000000,91.110000,136.670000,873.370000,7.900000,196.470000,33.220000 -4,2023-08-10 02:00:00,0.000000,15.300000,59.000000,7.000000,124.000000,90.580000,136.670000,873.370000,6.630000,196.470000,29.520000 -4,2023-08-10 03:00:00,0.000000,15.300000,59.000000,7.000000,124.000000,90.120000,136.670000,873.370000,6.200000,196.470000,28.220000 -4,2023-08-10 04:00:00,0.000000,15.300000,59.000000,7.000000,124.000000,89.710000,136.670000,873.370000,5.850000,196.470000,27.120000 -4,2023-08-10 05:00:00,0.000000,12.600000,73.000000,5.000000,128.000000,89.050000,136.720000,873.480000,4.810000,196.530000,23.650000 -4,2023-08-10 06:00:00,0.000000,12.600000,73.000000,5.000000,128.000000,88.450000,136.770000,873.580000,4.410000,196.590000,22.270000 -4,2023-08-10 07:00:00,0.000000,12.600000,73.000000,5.000000,128.000000,87.930000,136.820000,873.680000,4.090000,196.650000,21.100000 -4,2023-08-10 08:00:00,0.000000,17.500000,54.000000,8.000000,127.000000,87.910000,136.930000,873.920000,4.750000,196.780000,23.460000 -4,2023-08-10 09:00:00,0.000000,17.500000,54.000000,8.000000,127.000000,87.900000,137.050000,874.160000,4.740000,196.910000,23.430000 -4,2023-08-10 10:00:00,0.000000,17.500000,54.000000,8.000000,127.000000,87.880000,137.160000,874.400000,4.730000,197.050000,23.400000 -4,2023-08-10 11:00:00,0.000000,23.600000,32.000000,14.000000,136.000000,88.480000,137.410000,874.920000,6.970000,197.340000,30.580000 -4,2023-08-10 12:00:00,0.000000,23.600000,32.000000,14.000000,136.000000,88.970000,137.660000,875.440000,7.490000,197.630000,32.070000 -4,2023-08-10 13:00:00,0.000000,23.600000,32.000000,14.000000,136.000000,89.380000,137.900000,875.960000,7.940000,197.910000,33.360000 -4,2023-08-10 14:00:00,0.000000,26.000000,27.000000,14.000000,130.000000,90.030000,138.210000,876.600000,8.710000,198.270000,35.490000 -4,2023-08-10 15:00:00,0.000000,26.000000,27.000000,14.000000,130.000000,90.560000,138.520000,877.240000,9.390000,198.630000,37.290000 -4,2023-08-10 16:00:00,0.000000,26.000000,27.000000,14.000000,130.000000,90.980000,138.830000,877.890000,9.980000,198.980000,38.810000 -4,2023-08-10 17:00:00,0.000000,26.400000,24.000000,16.000000,129.000000,91.490000,139.150000,878.570000,11.860000,199.360000,43.390000 -4,2023-08-10 18:00:00,0.000000,26.400000,24.000000,16.000000,129.000000,91.890000,139.480000,879.250000,12.560000,199.740000,45.010000 -4,2023-08-10 19:00:00,0.000000,26.400000,24.000000,16.000000,129.000000,92.210000,139.810000,879.940000,13.150000,200.120000,46.340000 -4,2023-08-10 20:00:00,0.000000,26.400000,24.000000,16.000000,129.000000,92.470000,140.140000,880.620000,13.630000,200.500000,47.420000 -4,2023-08-10 21:00:00,0.000000,26.400000,24.000000,16.000000,129.000000,92.670000,140.140000,880.620000,14.030000,200.500000,48.280000 -4,2023-08-10 22:00:00,0.000000,26.400000,24.000000,16.000000,129.000000,92.830000,140.140000,880.620000,14.350000,200.500000,48.980000 -4,2023-08-10 23:00:00,0.000000,19.000000,38.000000,9.000000,135.000000,92.610000,140.140000,880.620000,9.770000,200.500000,38.310000 -4,2023-08-11 00:00:00,0.000000,19.000000,38.000000,9.000000,135.000000,92.410000,140.140000,880.620000,9.500000,200.500000,37.620000 -4,2023-08-11 01:00:00,0.000000,19.000000,38.000000,9.000000,135.000000,92.240000,140.140000,880.620000,9.270000,200.500000,37.020000 -4,2023-08-11 02:00:00,0.000000,19.000000,38.000000,9.000000,135.000000,92.080000,140.140000,880.620000,9.070000,200.500000,36.490000 -4,2023-08-11 03:00:00,0.000000,19.000000,38.000000,9.000000,135.000000,91.940000,140.140000,880.620000,8.890000,200.500000,36.020000 -4,2023-08-11 04:00:00,0.000000,19.000000,38.000000,9.000000,135.000000,91.820000,140.140000,880.620000,8.740000,200.500000,35.610000 -4,2023-08-11 05:00:00,0.000000,13.400000,59.000000,7.000000,155.000000,91.210000,140.260000,880.920000,7.250000,200.650000,31.450000 -4,2023-08-11 06:00:00,0.000000,13.400000,59.000000,7.000000,155.000000,90.680000,140.380000,881.220000,6.720000,200.790000,29.870000 -4,2023-08-11 07:00:00,0.000000,13.400000,59.000000,7.000000,155.000000,90.200000,140.500000,881.520000,6.270000,200.930000,28.520000 -4,2023-08-11 08:00:00,0.000000,13.400000,59.000000,7.000000,155.000000,89.770000,140.620000,881.820000,5.900000,201.070000,27.360000 -4,2023-08-11 09:00:00,0.000000,13.400000,59.000000,7.000000,155.000000,89.400000,140.740000,882.120000,5.590000,201.220000,26.370000 -4,2023-08-11 10:00:00,0.000000,13.400000,59.000000,7.000000,155.000000,89.060000,140.860000,882.420000,5.330000,201.360000,25.500000 -4,2023-08-11 11:00:00,0.020000,22.900000,42.000000,15.000000,164.000000,88.670000,140.760000,882.970000,7.540000,201.290000,32.300000 -4,2023-08-11 12:00:00,0.000000,22.900000,42.000000,15.000000,164.000000,88.770000,141.070000,883.740000,7.640000,201.660000,32.610000 -4,2023-08-11 13:00:00,0.000000,22.900000,42.000000,15.000000,164.000000,88.850000,141.380000,884.510000,7.730000,202.020000,32.870000 -4,2023-08-11 14:00:00,0.000000,22.900000,42.000000,15.000000,164.000000,88.920000,141.690000,885.280000,7.810000,202.390000,33.090000 -4,2023-08-11 15:00:00,0.000000,22.900000,42.000000,15.000000,164.000000,88.970000,141.990000,886.040000,7.870000,202.760000,33.280000 -4,2023-08-11 16:00:00,0.000000,22.900000,42.000000,15.000000,164.000000,89.020000,142.300000,886.810000,7.920000,203.120000,33.430000 -4,2023-08-11 17:00:00,4.180000,21.500000,85.000000,9.000000,185.000000,36.470000,106.590000,843.120000,0.030000,161.980000,0.100000 -4,2023-08-11 18:00:00,0.000000,21.500000,85.000000,9.000000,185.000000,38.680000,106.660000,843.300000,0.040000,162.070000,0.150000 -4,2023-08-11 19:00:00,0.000000,21.500000,85.000000,9.000000,185.000000,40.820000,106.730000,843.490000,0.060000,162.170000,0.230000 -4,2023-08-11 20:00:00,0.000000,21.500000,85.000000,9.000000,185.000000,42.890000,106.810000,843.670000,0.090000,162.260000,0.330000 -4,2023-08-11 21:00:00,0.000000,21.500000,85.000000,9.000000,185.000000,44.900000,106.810000,843.670000,0.130000,162.260000,0.460000 -4,2023-08-11 22:00:00,0.000000,21.500000,85.000000,9.000000,185.000000,46.830000,106.810000,843.670000,0.170000,162.260000,0.610000 -4,2023-08-11 23:00:00,14.590000,16.600000,98.000000,9.000000,171.000000,7.580000,59.530000,690.540000,0.000000,97.950000,0.000000 -4,2023-08-12 00:00:00,0.000000,16.600000,98.000000,9.000000,171.000000,7.950000,59.530000,690.540000,0.000000,97.950000,0.000000 -4,2023-08-12 01:00:00,0.000000,16.600000,98.000000,9.000000,171.000000,8.310000,59.530000,690.540000,0.000000,97.950000,0.000000 -4,2023-08-12 02:00:00,0.000000,16.600000,98.000000,9.000000,171.000000,8.680000,59.530000,690.540000,0.000000,97.950000,0.000000 -4,2023-08-12 03:00:00,0.000000,16.600000,98.000000,9.000000,171.000000,9.050000,59.530000,690.540000,0.000000,97.950000,0.000000 -4,2023-08-12 04:00:00,0.000000,16.600000,98.000000,9.000000,171.000000,9.410000,59.530000,690.540000,0.000000,97.950000,0.000000 -4,2023-08-12 05:00:00,0.010000,15.700000,97.000000,12.000000,208.000000,9.920000,59.420000,690.510000,0.000000,97.810000,0.000000 -4,2023-08-12 06:00:00,0.000000,15.700000,97.000000,12.000000,208.000000,10.500000,59.430000,690.540000,0.000000,97.820000,0.000000 -4,2023-08-12 07:00:00,0.000000,15.700000,97.000000,12.000000,208.000000,11.070000,59.440000,690.570000,0.000000,97.830000,0.000000 -4,2023-08-12 08:00:00,0.000000,15.700000,97.000000,12.000000,208.000000,11.650000,59.450000,690.600000,0.000000,97.850000,0.000000 -4,2023-08-12 09:00:00,0.000000,15.700000,97.000000,12.000000,208.000000,12.220000,59.460000,690.630000,0.000000,97.860000,0.000000 -4,2023-08-12 10:00:00,0.000000,15.700000,97.000000,12.000000,208.000000,12.800000,59.470000,690.660000,0.000000,97.870000,0.000000 -4,2023-08-12 11:00:00,0.020000,23.400000,56.000000,15.000000,212.000000,18.810000,59.520000,691.270000,0.000000,97.960000,0.000000 -4,2023-08-12 12:00:00,0.000000,23.400000,56.000000,15.000000,212.000000,24.820000,59.750000,691.990000,0.000000,98.280000,0.000000 -4,2023-08-12 13:00:00,0.000000,23.400000,56.000000,15.000000,212.000000,30.690000,59.970000,692.710000,0.010000,98.600000,0.020000 -4,2023-08-12 14:00:00,0.000000,23.400000,56.000000,15.000000,212.000000,36.340000,60.190000,693.430000,0.030000,98.920000,0.100000 -4,2023-08-12 15:00:00,0.000000,23.400000,56.000000,15.000000,212.000000,41.700000,60.410000,694.150000,0.100000,99.230000,0.280000 -4,2023-08-12 16:00:00,0.000000,23.400000,56.000000,15.000000,212.000000,46.730000,60.630000,694.870000,0.230000,99.550000,0.630000 -4,2023-08-12 17:00:00,1.130000,22.000000,55.000000,17.000000,217.000000,41.650000,55.050000,688.950000,0.110000,91.770000,0.290000 -4,2023-08-12 18:00:00,0.000000,22.000000,55.000000,17.000000,217.000000,46.630000,55.260000,689.630000,0.250000,92.080000,0.650000 -4,2023-08-12 19:00:00,0.000000,22.000000,55.000000,17.000000,217.000000,51.260000,55.470000,690.310000,0.450000,92.380000,1.630000 -4,2023-08-12 20:00:00,0.000000,22.000000,55.000000,17.000000,217.000000,55.510000,55.680000,690.980000,0.690000,92.690000,3.100000 -4,2023-08-12 21:00:00,0.000000,22.000000,55.000000,17.000000,217.000000,59.380000,55.680000,690.980000,0.930000,92.690000,4.360000 -4,2023-08-12 22:00:00,0.000000,22.000000,55.000000,17.000000,217.000000,62.870000,55.680000,690.980000,1.130000,92.690000,5.360000 -4,2023-08-12 23:00:00,3.300000,15.200000,95.000000,16.000000,203.000000,31.450000,42.030000,671.720000,0.010000,72.700000,0.020000 -4,2023-08-13 00:00:00,0.000000,15.200000,95.000000,16.000000,203.000000,32.320000,42.030000,671.720000,0.010000,72.700000,0.030000 -4,2023-08-13 01:00:00,0.000000,15.200000,95.000000,16.000000,203.000000,33.190000,42.030000,671.720000,0.020000,72.700000,0.040000 -4,2023-08-13 02:00:00,0.000000,15.200000,95.000000,16.000000,203.000000,34.050000,42.030000,671.720000,0.020000,72.700000,0.050000 -4,2023-08-13 03:00:00,0.000000,15.200000,95.000000,16.000000,203.000000,34.890000,42.030000,671.720000,0.030000,72.700000,0.060000 -4,2023-08-13 04:00:00,0.000000,15.200000,95.000000,16.000000,203.000000,35.730000,42.030000,671.720000,0.030000,72.700000,0.070000 -4,2023-08-13 05:00:00,0.000000,14.600000,88.000000,16.000000,252.000000,37.450000,42.060000,671.820000,0.050000,72.740000,0.100000 -4,2023-08-13 06:00:00,0.000000,14.600000,88.000000,16.000000,252.000000,39.140000,42.100000,671.920000,0.070000,72.790000,0.140000 -4,2023-08-13 07:00:00,0.000000,14.600000,88.000000,16.000000,252.000000,40.780000,42.130000,672.020000,0.090000,72.840000,0.200000 -4,2023-08-13 08:00:00,0.000000,14.600000,88.000000,16.000000,252.000000,42.370000,42.160000,672.120000,0.120000,72.880000,0.260000 -4,2023-08-13 09:00:00,0.000000,14.600000,88.000000,16.000000,252.000000,43.930000,42.190000,672.210000,0.150000,72.930000,0.340000 -4,2023-08-13 10:00:00,0.000000,14.600000,88.000000,16.000000,252.000000,45.430000,42.220000,672.310000,0.200000,72.980000,0.430000 -4,2023-08-13 11:00:00,0.000000,21.700000,55.000000,14.000000,263.000000,49.880000,42.390000,672.890000,0.330000,73.250000,0.730000 -4,2023-08-13 12:00:00,0.000000,21.700000,55.000000,14.000000,263.000000,54.000000,42.570000,673.470000,0.510000,73.530000,1.540000 -4,2023-08-13 13:00:00,0.000000,21.700000,55.000000,14.000000,263.000000,57.780000,42.750000,674.050000,0.710000,73.800000,2.610000 -4,2023-08-13 14:00:00,0.000000,21.700000,55.000000,14.000000,263.000000,61.230000,42.930000,674.630000,0.890000,74.070000,3.480000 -4,2023-08-13 15:00:00,0.000000,21.700000,55.000000,14.000000,263.000000,64.340000,43.110000,675.210000,1.040000,74.350000,4.150000 -4,2023-08-13 16:00:00,0.000000,21.700000,55.000000,14.000000,263.000000,67.140000,43.280000,675.790000,1.150000,74.620000,4.650000 -4,2023-08-13 17:00:00,0.000000,23.600000,51.000000,19.000000,309.000000,70.220000,43.500000,676.500000,1.640000,74.950000,6.600000 -4,2023-08-13 18:00:00,0.000000,23.600000,51.000000,19.000000,309.000000,72.900000,43.720000,677.210000,1.810000,75.290000,7.230000 -4,2023-08-13 19:00:00,0.000000,23.600000,51.000000,19.000000,309.000000,75.210000,43.940000,677.920000,2.020000,75.620000,8.010000 -4,2023-08-13 20:00:00,0.000000,23.600000,51.000000,19.000000,309.000000,77.190000,44.150000,678.630000,2.300000,75.950000,9.000000 -4,2023-08-13 21:00:00,0.000000,23.600000,51.000000,19.000000,309.000000,78.880000,44.150000,678.630000,2.650000,75.950000,10.150000 -4,2023-08-13 22:00:00,0.000000,23.600000,51.000000,19.000000,309.000000,80.320000,44.150000,678.630000,3.060000,75.950000,11.420000 -4,2023-08-13 23:00:00,0.000000,17.500000,68.000000,7.000000,258.000000,80.630000,44.150000,678.630000,1.730000,75.950000,6.990000 -4,2023-08-14 00:00:00,0.000000,17.500000,68.000000,7.000000,258.000000,80.920000,44.150000,678.630000,1.790000,75.950000,7.200000 -4,2023-08-14 01:00:00,0.000000,17.500000,68.000000,7.000000,258.000000,81.180000,44.150000,678.630000,1.840000,75.950000,7.390000 -4,2023-08-14 02:00:00,0.000000,17.500000,68.000000,7.000000,258.000000,81.420000,44.150000,678.630000,1.890000,75.950000,7.580000 -4,2023-08-14 03:00:00,0.000000,17.500000,68.000000,7.000000,258.000000,81.640000,44.150000,678.630000,1.940000,75.950000,7.760000 -4,2023-08-14 04:00:00,0.000000,17.500000,68.000000,7.000000,258.000000,81.840000,44.150000,678.630000,1.990000,75.950000,7.920000 -4,2023-08-14 05:00:00,0.000000,14.100000,80.000000,7.000000,267.000000,81.840000,44.190000,678.750000,1.990000,76.010000,7.920000 -4,2023-08-14 06:00:00,0.000000,14.100000,80.000000,7.000000,267.000000,81.840000,44.230000,678.880000,1.990000,76.070000,7.930000 -4,2023-08-14 07:00:00,0.000000,14.100000,80.000000,7.000000,267.000000,81.840000,44.270000,679.000000,1.990000,76.140000,7.930000 -4,2023-08-14 08:00:00,0.000000,14.100000,80.000000,7.000000,267.000000,81.840000,44.310000,679.120000,1.990000,76.200000,7.940000 -4,2023-08-14 09:00:00,0.000000,14.100000,80.000000,7.000000,267.000000,81.840000,44.350000,679.250000,1.990000,76.260000,7.940000 -4,2023-08-14 10:00:00,0.000000,14.100000,80.000000,7.000000,267.000000,81.840000,44.390000,679.370000,1.990000,76.320000,7.950000 -4,2023-08-14 11:00:00,0.000000,22.600000,53.000000,3.000000,329.000000,82.440000,44.550000,679.860000,1.750000,76.560000,7.100000 -4,2023-08-14 12:00:00,0.000000,22.600000,53.000000,3.000000,329.000000,82.970000,44.720000,680.360000,1.870000,76.810000,7.560000 -4,2023-08-14 13:00:00,0.000000,22.600000,53.000000,3.000000,329.000000,83.450000,44.880000,680.850000,1.990000,77.060000,8.000000 -4,2023-08-14 14:00:00,0.000000,22.600000,53.000000,3.000000,329.000000,83.870000,45.040000,681.350000,2.100000,77.300000,8.420000 -4,2023-08-14 15:00:00,0.000000,22.600000,53.000000,3.000000,329.000000,84.250000,45.200000,681.840000,2.210000,77.550000,8.820000 -4,2023-08-14 16:00:00,0.000000,22.600000,53.000000,3.000000,329.000000,84.590000,45.360000,682.340000,2.320000,77.790000,9.190000 -4,2023-08-14 17:00:00,0.000000,26.300000,36.000000,7.000000,346.000000,85.630000,45.630000,683.180000,3.270000,78.210000,12.260000 -4,2023-08-14 18:00:00,0.000000,26.300000,36.000000,7.000000,346.000000,86.510000,45.910000,684.020000,3.700000,78.620000,13.550000 -4,2023-08-14 19:00:00,0.000000,26.300000,36.000000,7.000000,346.000000,87.240000,46.180000,684.860000,4.100000,79.030000,14.740000 -4,2023-08-14 20:00:00,0.000000,26.300000,36.000000,7.000000,346.000000,87.860000,46.450000,685.700000,4.480000,79.450000,15.810000 -4,2023-08-14 21:00:00,0.000000,26.300000,36.000000,7.000000,346.000000,88.370000,46.450000,685.700000,4.830000,79.450000,16.710000 -4,2023-08-14 22:00:00,0.000000,26.300000,36.000000,7.000000,346.000000,88.800000,46.450000,685.700000,5.130000,79.450000,17.500000 -4,2023-08-14 23:00:00,0.000000,17.800000,62.000000,6.000000,148.000000,88.520000,46.450000,685.700000,4.680000,79.450000,16.340000 -4,2023-08-15 00:00:00,0.000000,17.800000,62.000000,6.000000,148.000000,88.260000,46.450000,685.700000,4.520000,79.450000,15.900000 -4,2023-08-15 01:00:00,0.000000,17.800000,62.000000,6.000000,148.000000,88.040000,46.450000,685.700000,4.380000,79.450000,15.530000 -4,2023-08-15 02:00:00,0.000000,17.800000,62.000000,6.000000,148.000000,87.850000,46.450000,685.700000,4.260000,79.450000,15.200000 -4,2023-08-15 03:00:00,0.000000,17.800000,62.000000,6.000000,148.000000,87.680000,46.450000,685.700000,4.160000,79.450000,14.920000 -4,2023-08-15 04:00:00,0.000000,17.800000,62.000000,6.000000,148.000000,87.540000,46.450000,685.700000,4.070000,79.450000,14.680000 -4,2023-08-15 05:00:00,0.000000,15.900000,70.000000,10.000000,172.000000,87.170000,46.520000,685.830000,4.720000,79.540000,16.450000 -4,2023-08-15 06:00:00,0.000000,15.900000,70.000000,10.000000,172.000000,86.850000,46.580000,685.960000,4.510000,79.640000,15.910000 -4,2023-08-15 07:00:00,0.000000,15.900000,70.000000,10.000000,172.000000,86.570000,46.640000,686.090000,4.340000,79.730000,15.450000 -4,2023-08-15 08:00:00,0.000000,15.900000,70.000000,10.000000,172.000000,86.330000,46.700000,686.220000,4.190000,79.830000,15.070000 -4,2023-08-15 09:00:00,0.000000,15.900000,70.000000,10.000000,172.000000,86.120000,46.770000,686.350000,4.070000,79.920000,14.740000 -4,2023-08-15 10:00:00,0.000000,15.900000,70.000000,10.000000,172.000000,85.940000,46.830000,686.480000,3.970000,80.020000,14.460000 -4,2023-08-15 11:00:00,0.000000,27.900000,35.000000,13.000000,185.000000,87.000000,47.120000,687.070000,5.370000,80.440000,18.200000 -4,2023-08-15 12:00:00,0.000000,27.900000,35.000000,13.000000,185.000000,87.870000,47.400000,687.660000,6.070000,80.870000,19.970000 -4,2023-08-15 13:00:00,0.000000,27.900000,35.000000,13.000000,185.000000,88.560000,47.680000,688.240000,6.710000,81.290000,21.520000 -4,2023-08-15 14:00:00,0.000000,27.900000,35.000000,13.000000,185.000000,89.120000,47.970000,688.830000,7.270000,81.710000,22.860000 -4,2023-08-15 15:00:00,0.000000,27.900000,35.000000,13.000000,185.000000,89.580000,48.250000,689.420000,7.760000,82.140000,24.000000 -4,2023-08-15 16:00:00,0.000000,27.900000,35.000000,13.000000,185.000000,89.940000,48.540000,690.000000,8.180000,82.560000,24.960000 -4,2023-08-15 17:00:00,0.000000,33.000000,23.000000,13.000000,182.000000,91.110000,48.990000,690.930000,9.670000,83.230000,28.130000 -4,2023-08-15 18:00:00,0.000000,33.000000,23.000000,13.000000,182.000000,92.000000,49.440000,691.870000,10.970000,83.890000,30.770000 -4,2023-08-15 19:00:00,0.000000,33.000000,23.000000,13.000000,182.000000,92.680000,49.890000,692.800000,12.080000,84.560000,32.940000 -4,2023-08-15 20:00:00,0.000000,33.000000,23.000000,13.000000,182.000000,93.200000,50.340000,693.730000,12.980000,85.230000,34.690000 -4,2023-08-15 21:00:00,0.000000,33.000000,23.000000,13.000000,182.000000,93.590000,50.340000,693.730000,13.700000,85.230000,35.960000 -4,2023-08-15 22:00:00,0.000000,33.000000,23.000000,13.000000,182.000000,93.880000,50.340000,693.730000,14.280000,85.230000,36.930000 -4,2023-08-15 23:00:00,0.000000,25.900000,35.000000,14.000000,178.000000,93.690000,50.340000,693.730000,14.610000,85.230000,37.500000 -4,2023-08-16 00:00:00,0.000000,25.900000,35.000000,14.000000,178.000000,93.520000,50.340000,693.730000,14.280000,85.230000,36.940000 -4,2023-08-16 01:00:00,0.000000,25.900000,35.000000,14.000000,178.000000,93.380000,50.340000,693.730000,14.000000,85.230000,36.460000 -4,2023-08-16 02:00:00,0.000000,25.900000,35.000000,14.000000,178.000000,93.260000,50.340000,693.730000,13.770000,85.230000,36.060000 -4,2023-08-16 03:00:00,0.000000,25.900000,35.000000,14.000000,178.000000,93.160000,50.340000,693.730000,13.570000,85.230000,35.730000 -4,2023-08-16 04:00:00,0.000000,25.900000,35.000000,14.000000,178.000000,93.070000,50.340000,693.730000,13.410000,85.230000,35.440000 -4,2023-08-16 05:00:00,0.000000,22.300000,42.000000,13.000000,169.000000,92.730000,50.510000,694.020000,12.150000,85.470000,33.260000 -4,2023-08-16 06:00:00,0.000000,22.300000,42.000000,13.000000,169.000000,92.440000,50.680000,694.300000,11.670000,85.710000,32.410000 -4,2023-08-16 07:00:00,0.000000,22.300000,42.000000,13.000000,169.000000,92.190000,50.840000,694.590000,11.260000,85.960000,31.700000 -4,2023-08-16 08:00:00,0.000000,22.300000,42.000000,13.000000,169.000000,91.970000,51.010000,694.880000,10.920000,86.200000,31.100000 -4,2023-08-16 09:00:00,0.000000,22.300000,42.000000,13.000000,169.000000,91.790000,51.180000,695.170000,10.640000,86.440000,30.600000 -4,2023-08-16 10:00:00,0.000000,22.300000,42.000000,13.000000,169.000000,91.630000,51.340000,695.460000,10.410000,86.690000,30.190000 -4,2023-08-16 11:00:00,0.000000,32.100000,26.000000,16.000000,214.000000,92.200000,51.720000,696.110000,13.130000,87.240000,35.360000 -4,2023-08-16 12:00:00,0.000000,32.100000,26.000000,16.000000,214.000000,92.640000,52.100000,696.760000,13.960000,87.790000,36.930000 -4,2023-08-16 13:00:00,0.000000,32.100000,26.000000,16.000000,214.000000,92.970000,52.470000,697.420000,14.620000,88.330000,38.170000 -4,2023-08-16 14:00:00,0.000000,32.100000,26.000000,16.000000,214.000000,93.220000,52.850000,698.070000,15.140000,88.880000,39.160000 -4,2023-08-16 15:00:00,0.000000,32.100000,26.000000,16.000000,214.000000,93.410000,53.230000,698.720000,15.550000,89.430000,39.950000 -4,2023-08-16 16:00:00,0.000000,32.100000,26.000000,16.000000,214.000000,93.550000,53.610000,699.380000,15.860000,89.970000,40.580000 -4,2023-08-16 17:00:00,0.000000,34.400000,22.000000,6.000000,284.000000,93.940000,54.060000,700.160000,10.110000,90.620000,30.260000 -4,2023-08-16 18:00:00,0.000000,34.400000,22.000000,6.000000,284.000000,94.230000,54.510000,700.940000,10.540000,91.280000,31.230000 -4,2023-08-16 19:00:00,0.000000,34.400000,22.000000,6.000000,284.000000,94.470000,54.960000,701.730000,10.880000,91.930000,32.010000 -4,2023-08-16 20:00:00,0.000000,34.400000,22.000000,6.000000,284.000000,94.640000,55.420000,702.510000,11.150000,92.580000,32.650000 -4,2023-08-16 21:00:00,0.000000,34.400000,22.000000,6.000000,284.000000,94.780000,55.420000,702.510000,11.360000,92.580000,33.060000 -4,2023-08-16 22:00:00,0.000000,34.400000,22.000000,6.000000,284.000000,94.890000,55.420000,702.510000,11.530000,92.580000,33.380000 -4,2023-08-16 23:00:00,2.550000,21.600000,80.000000,3.000000,222.000000,55.080000,46.170000,702.510000,0.330000,79.310000,0.770000 -4,2023-08-17 00:00:00,0.000000,21.600000,80.000000,3.000000,222.000000,56.540000,46.170000,702.510000,0.370000,79.310000,0.870000 -4,2023-08-17 01:00:00,0.000000,21.600000,80.000000,3.000000,222.000000,57.940000,46.170000,702.510000,0.410000,79.310000,0.970000 -4,2023-08-17 02:00:00,0.000000,21.600000,80.000000,3.000000,222.000000,59.270000,46.170000,702.510000,0.450000,79.310000,1.310000 -4,2023-08-17 03:00:00,0.000000,21.600000,80.000000,3.000000,222.000000,60.550000,46.170000,702.510000,0.490000,79.310000,1.580000 -4,2023-08-17 04:00:00,0.000000,21.600000,80.000000,3.000000,222.000000,61.760000,46.170000,702.510000,0.530000,79.310000,1.800000 -4,2023-08-17 05:00:00,2.420000,19.400000,75.000000,10.000000,26.000000,37.750000,38.680000,685.390000,0.040000,67.790000,0.080000 -4,2023-08-17 06:00:00,0.000000,19.400000,75.000000,10.000000,26.000000,40.700000,38.700000,686.000000,0.070000,67.830000,0.140000 -4,2023-08-17 07:00:00,0.000000,19.400000,75.000000,10.000000,26.000000,43.540000,38.720000,686.610000,0.110000,67.860000,0.230000 -4,2023-08-17 08:00:00,0.000000,19.400000,75.000000,10.000000,26.000000,46.260000,38.730000,687.210000,0.160000,67.900000,0.340000 -4,2023-08-17 09:00:00,0.000000,19.400000,75.000000,10.000000,26.000000,48.850000,38.750000,687.820000,0.230000,67.930000,0.490000 -4,2023-08-17 10:00:00,0.000000,19.400000,75.000000,10.000000,26.000000,51.310000,38.770000,688.420000,0.320000,67.970000,0.660000 -4,2023-08-17 11:00:00,2.000000,14.800000,95.000000,16.000000,323.000000,32.820000,33.410000,674.370000,0.020000,59.460000,0.030000 -4,2023-08-17 12:00:00,0.000000,14.800000,95.000000,16.000000,323.000000,33.670000,33.410000,674.460000,0.020000,59.460000,0.040000 -4,2023-08-17 13:00:00,0.000000,14.800000,95.000000,16.000000,323.000000,34.500000,33.420000,674.550000,0.020000,59.470000,0.050000 -4,2023-08-17 14:00:00,0.000000,14.800000,95.000000,16.000000,323.000000,35.330000,33.420000,674.640000,0.030000,59.470000,0.060000 -4,2023-08-17 15:00:00,0.000000,14.800000,95.000000,16.000000,323.000000,36.150000,33.420000,674.730000,0.040000,59.480000,0.070000 -4,2023-08-17 16:00:00,0.000000,14.800000,95.000000,16.000000,323.000000,36.960000,33.430000,674.820000,0.040000,59.480000,0.080000 -4,2023-08-17 17:00:00,3.250000,15.900000,73.000000,12.000000,299.000000,21.210000,25.950000,652.360000,0.000000,47.210000,0.000000 -4,2023-08-17 18:00:00,0.000000,15.900000,73.000000,12.000000,299.000000,24.480000,25.970000,652.890000,0.000000,47.240000,0.000000 -4,2023-08-17 19:00:00,0.000000,15.900000,73.000000,12.000000,299.000000,27.700000,25.980000,653.410000,0.000000,47.270000,0.010000 -4,2023-08-17 20:00:00,0.000000,15.900000,73.000000,12.000000,299.000000,30.850000,26.000000,653.940000,0.010000,47.300000,0.010000 -4,2023-08-17 21:00:00,0.000000,15.900000,73.000000,12.000000,299.000000,33.920000,26.000000,653.940000,0.020000,47.300000,0.030000 -4,2023-08-17 22:00:00,0.000000,15.900000,73.000000,12.000000,299.000000,36.900000,26.000000,653.940000,0.030000,47.300000,0.050000 -4,2023-08-17 23:00:00,0.000000,12.700000,79.000000,5.000000,216.000000,38.620000,26.000000,653.940000,0.030000,47.300000,0.050000 -4,2023-08-18 00:00:00,0.000000,12.700000,79.000000,5.000000,216.000000,40.300000,26.000000,653.940000,0.050000,47.300000,0.080000 -4,2023-08-18 01:00:00,0.000000,12.700000,79.000000,5.000000,216.000000,41.940000,26.000000,653.940000,0.060000,47.300000,0.100000 -4,2023-08-18 02:00:00,0.000000,12.700000,79.000000,5.000000,216.000000,43.530000,26.000000,653.940000,0.080000,47.300000,0.130000 -4,2023-08-18 03:00:00,0.000000,12.700000,79.000000,5.000000,216.000000,45.090000,26.000000,653.940000,0.110000,47.300000,0.170000 -4,2023-08-18 04:00:00,0.000000,12.700000,79.000000,5.000000,216.000000,46.600000,26.000000,653.940000,0.130000,47.300000,0.220000 -4,2023-08-18 05:00:00,0.000000,10.400000,87.000000,8.000000,196.000000,47.640000,26.000000,653.940000,0.180000,47.300000,0.290000 -4,2023-08-18 06:00:00,0.000000,10.400000,87.000000,8.000000,196.000000,48.650000,26.040000,654.040000,0.210000,47.360000,0.330000 -4,2023-08-18 07:00:00,0.000000,10.400000,87.000000,8.000000,196.000000,49.630000,26.070000,654.150000,0.230000,47.420000,0.380000 -4,2023-08-18 08:00:00,0.000000,10.400000,87.000000,8.000000,196.000000,50.600000,26.110000,654.260000,0.260000,47.480000,0.430000 -4,2023-08-18 09:00:00,0.000000,10.400000,87.000000,8.000000,196.000000,51.530000,26.150000,654.360000,0.290000,47.540000,0.480000 -4,2023-08-18 10:00:00,0.000000,10.400000,87.000000,8.000000,196.000000,52.450000,26.180000,654.470000,0.320000,47.610000,0.530000 -4,2023-08-18 11:00:00,0.000000,19.900000,48.000000,14.000000,161.000000,56.420000,26.450000,655.260000,0.640000,48.060000,1.230000 -4,2023-08-18 12:00:00,0.000000,19.900000,48.000000,14.000000,161.000000,60.060000,26.720000,656.050000,0.830000,48.510000,2.120000 -4,2023-08-18 13:00:00,0.000000,19.900000,48.000000,14.000000,161.000000,63.370000,26.990000,656.840000,0.990000,48.960000,2.750000 -4,2023-08-18 14:00:00,0.000000,19.900000,48.000000,14.000000,161.000000,66.350000,27.260000,657.630000,1.120000,49.410000,3.230000 -4,2023-08-18 15:00:00,0.000000,19.900000,48.000000,14.000000,161.000000,69.020000,27.530000,658.420000,1.230000,49.860000,3.610000 -4,2023-08-18 16:00:00,0.000000,19.900000,48.000000,14.000000,161.000000,71.400000,27.800000,659.210000,1.330000,50.300000,3.970000 -4,2023-08-18 17:00:00,0.000000,24.100000,33.000000,14.000000,158.000000,74.570000,28.250000,660.520000,1.510000,51.050000,4.640000 -5,2023-08-03 00:00:00,0.000000,16.300000,68.000000,4.000000,80.000000,85.910000,118.400000,826.100000,2.920000,174.330000,16.110000 -5,2023-08-03 01:00:00,0.000000,16.300000,68.000000,4.000000,80.000000,85.820000,118.400000,826.100000,2.890000,174.330000,15.970000 -5,2023-08-03 02:00:00,0.000000,13.200000,84.000000,1.000000,48.000000,85.350000,118.400000,826.100000,2.320000,174.330000,13.520000 -5,2023-08-03 03:00:00,0.000000,13.200000,84.000000,1.000000,48.000000,84.930000,118.400000,826.100000,2.190000,174.330000,12.910000 -5,2023-08-03 04:00:00,0.000000,13.200000,84.000000,1.000000,48.000000,84.550000,118.400000,826.100000,2.080000,174.330000,12.390000 -5,2023-08-03 05:00:00,0.000000,11.100000,97.000000,2.000000,336.000000,83.540000,118.410000,826.120000,1.910000,174.340000,11.570000 -5,2023-08-03 06:00:00,0.000000,11.100000,97.000000,2.000000,336.000000,82.640000,118.410000,826.140000,1.700000,174.350000,10.530000 -5,2023-08-03 07:00:00,0.000000,11.100000,97.000000,2.000000,336.000000,81.830000,118.420000,826.150000,1.540000,174.360000,9.700000 -5,2023-08-03 08:00:00,0.000000,16.200000,72.000000,4.000000,15.000000,81.910000,118.510000,826.390000,1.720000,174.460000,10.630000 -5,2023-08-03 09:00:00,0.000000,16.200000,72.000000,4.000000,15.000000,81.980000,118.590000,826.620000,1.740000,174.570000,10.710000 -5,2023-08-03 10:00:00,0.000000,16.200000,72.000000,4.000000,15.000000,82.040000,118.680000,826.860000,1.750000,174.680000,10.780000 -5,2023-08-03 11:00:00,0.000000,22.200000,47.000000,5.000000,34.000000,82.810000,118.910000,827.500000,2.030000,174.970000,12.140000 -5,2023-08-03 12:00:00,0.000000,22.200000,47.000000,5.000000,34.000000,83.490000,119.150000,828.150000,2.210000,175.260000,13.010000 -5,2023-08-03 13:00:00,0.000000,22.200000,47.000000,5.000000,34.000000,84.090000,119.380000,828.800000,2.390000,175.550000,13.850000 -5,2023-08-03 14:00:00,2.030000,22.300000,53.000000,7.000000,15.000000,55.500000,92.390000,814.760000,0.410000,143.970000,2.260000 -5,2023-08-03 15:00:00,0.000000,22.300000,53.000000,7.000000,15.000000,58.830000,92.600000,815.330000,0.540000,144.250000,3.200000 -5,2023-08-03 16:00:00,0.000000,22.300000,53.000000,7.000000,15.000000,61.880000,92.810000,815.910000,0.650000,144.530000,3.980000 -5,2023-08-03 17:00:00,1.590000,22.000000,57.000000,10.000000,28.000000,47.410000,79.300000,804.980000,0.190000,127.260000,0.630000 -5,2023-08-03 18:00:00,0.000000,22.000000,57.000000,10.000000,28.000000,51.340000,79.490000,805.500000,0.320000,127.520000,1.180000 -5,2023-08-03 19:00:00,0.000000,22.000000,57.000000,10.000000,28.000000,54.990000,79.680000,806.010000,0.460000,127.780000,2.420000 -5,2023-08-03 20:00:00,0.000000,20.700000,54.000000,9.000000,10.000000,58.260000,79.860000,806.520000,0.570000,128.030000,3.210000 -5,2023-08-03 21:00:00,0.000000,20.700000,54.000000,9.000000,10.000000,61.270000,80.050000,807.040000,0.690000,128.290000,4.020000 -5,2023-08-03 22:00:00,0.000000,20.700000,54.000000,9.000000,10.000000,64.030000,80.050000,807.040000,0.800000,128.290000,4.650000 -5,2023-08-03 23:00:00,0.000000,15.200000,73.000000,6.000000,300.000000,65.230000,80.050000,807.040000,0.720000,128.290000,4.180000 -5,2023-08-04 00:00:00,0.000000,15.200000,73.000000,6.000000,300.000000,66.370000,80.050000,807.040000,0.750000,128.290000,4.370000 -5,2023-08-04 01:00:00,0.000000,15.200000,73.000000,6.000000,300.000000,67.440000,80.050000,807.040000,0.780000,128.290000,4.550000 -5,2023-08-04 02:00:00,0.000000,13.000000,82.000000,8.000000,277.000000,68.110000,80.050000,807.040000,0.880000,128.290000,5.160000 -5,2023-08-04 03:00:00,0.000000,13.000000,82.000000,8.000000,277.000000,68.750000,80.050000,807.040000,0.900000,128.290000,5.270000 -5,2023-08-04 04:00:00,0.000000,13.000000,82.000000,8.000000,277.000000,69.350000,80.050000,807.040000,0.920000,128.290000,5.370000 -5,2023-08-04 05:00:00,0.000000,12.900000,90.000000,8.000000,275.000000,69.640000,80.060000,807.100000,0.920000,128.300000,5.420000 -5,2023-08-04 06:00:00,0.000000,12.900000,90.000000,8.000000,275.000000,69.910000,80.060000,807.170000,0.930000,128.310000,5.460000 -5,2023-08-04 07:00:00,0.000000,12.900000,90.000000,8.000000,275.000000,70.180000,80.070000,807.230000,0.940000,128.320000,5.510000 -5,2023-08-04 08:00:00,0.150000,17.800000,74.000000,10.000000,306.000000,69.150000,79.020000,807.470000,1.010000,126.970000,5.860000 -5,2023-08-04 09:00:00,0.000000,17.800000,74.000000,10.000000,306.000000,70.270000,79.040000,807.700000,1.040000,127.010000,6.060000 -5,2023-08-04 10:00:00,0.000000,17.800000,74.000000,10.000000,306.000000,71.300000,79.060000,807.940000,1.080000,127.050000,6.260000 -5,2023-08-04 11:00:00,1.490000,18.200000,85.000000,6.000000,327.000000,53.110000,70.270000,808.070000,0.310000,115.450000,0.960000 -5,2023-08-04 12:00:00,0.000000,18.200000,85.000000,6.000000,327.000000,54.350000,70.290000,808.210000,0.360000,115.470000,1.380000 -5,2023-08-04 13:00:00,0.000000,18.200000,85.000000,6.000000,327.000000,55.560000,70.300000,808.350000,0.400000,115.490000,1.730000 -5,2023-08-04 14:00:00,0.780000,22.000000,59.000000,3.000000,289.000000,50.450000,66.320000,808.830000,0.200000,110.080000,0.600000 -5,2023-08-04 15:00:00,0.000000,22.000000,59.000000,3.000000,289.000000,53.330000,66.370000,809.310000,0.280000,110.150000,0.820000 -5,2023-08-04 16:00:00,0.000000,22.000000,59.000000,3.000000,289.000000,56.040000,66.410000,809.790000,0.360000,110.230000,1.280000 -5,2023-08-04 17:00:00,0.000000,23.900000,43.000000,9.000000,351.000000,60.200000,66.480000,810.540000,0.650000,110.340000,3.370000 -5,2023-08-04 18:00:00,0.000000,23.900000,43.000000,9.000000,351.000000,63.960000,66.550000,811.280000,0.790000,110.460000,4.220000 -5,2023-08-04 19:00:00,0.000000,23.900000,43.000000,9.000000,351.000000,67.320000,66.630000,812.030000,0.900000,110.570000,4.830000 -5,2023-08-04 20:00:00,0.000000,22.600000,47.000000,4.000000,2.000000,69.640000,66.690000,812.670000,0.760000,110.670000,4.000000 -5,2023-08-04 21:00:00,0.000000,22.600000,47.000000,4.000000,2.000000,71.740000,66.750000,813.320000,0.810000,110.770000,4.320000 -5,2023-08-04 22:00:00,0.000000,22.600000,47.000000,4.000000,2.000000,73.630000,66.750000,813.320000,0.870000,110.770000,4.680000 -5,2023-08-04 23:00:00,0.000000,17.000000,66.000000,4.000000,258.000000,74.440000,66.750000,813.320000,0.910000,110.770000,4.870000 -5,2023-08-05 00:00:00,0.000000,17.000000,66.000000,4.000000,258.000000,75.190000,66.750000,813.320000,0.950000,110.770000,5.070000 -5,2023-08-05 01:00:00,0.000000,17.000000,66.000000,4.000000,258.000000,75.890000,66.750000,813.320000,0.990000,110.770000,5.290000 -5,2023-08-05 02:00:00,0.000000,14.400000,76.000000,6.000000,258.000000,76.270000,66.750000,813.320000,1.120000,110.770000,5.980000 -5,2023-08-05 03:00:00,0.000000,14.400000,76.000000,6.000000,258.000000,76.630000,66.750000,813.320000,1.150000,110.770000,6.120000 -5,2023-08-05 04:00:00,0.000000,14.400000,76.000000,6.000000,258.000000,76.960000,66.750000,813.320000,1.170000,110.770000,6.260000 -5,2023-08-05 05:00:00,0.000000,13.100000,85.000000,7.000000,260.000000,77.070000,66.780000,813.410000,1.240000,110.820000,6.620000 -5,2023-08-05 06:00:00,0.000000,13.100000,85.000000,7.000000,260.000000,77.180000,66.810000,813.510000,1.250000,110.860000,6.670000 -5,2023-08-05 07:00:00,0.000000,13.100000,85.000000,7.000000,260.000000,77.270000,66.850000,813.600000,1.260000,110.910000,6.720000 -5,2023-08-05 08:00:00,0.000000,19.000000,66.000000,4.000000,289.000000,77.880000,66.960000,813.920000,1.140000,111.070000,6.100000 -5,2023-08-05 09:00:00,0.000000,19.000000,66.000000,4.000000,289.000000,78.440000,67.060000,814.230000,1.200000,111.230000,6.390000 -5,2023-08-05 10:00:00,0.000000,19.000000,66.000000,4.000000,289.000000,78.950000,67.170000,814.550000,1.250000,111.380000,6.680000 -5,2023-08-05 11:00:00,0.000000,23.700000,51.000000,6.000000,17.000000,80.080000,67.380000,815.160000,1.550000,111.690000,8.110000 -5,2023-08-05 12:00:00,0.000000,23.700000,51.000000,6.000000,17.000000,81.080000,67.590000,815.760000,1.730000,111.990000,8.930000 -5,2023-08-05 13:00:00,0.000000,23.700000,51.000000,6.000000,17.000000,81.950000,67.800000,816.370000,1.910000,112.290000,9.760000 -5,2023-08-05 14:00:00,0.040000,23.000000,51.000000,9.000000,2.000000,82.730000,68.000000,816.950000,2.450000,112.580000,11.980000 -5,2023-08-05 15:00:00,0.000000,23.000000,51.000000,9.000000,2.000000,83.410000,68.200000,817.530000,2.680000,112.870000,12.860000 -5,2023-08-05 16:00:00,0.000000,23.000000,51.000000,9.000000,2.000000,84.000000,68.400000,818.110000,2.890000,113.150000,13.690000 -5,2023-08-05 17:00:00,0.160000,21.700000,55.000000,4.000000,13.000000,84.310000,68.570000,818.600000,2.340000,113.400000,11.590000 -5,2023-08-05 18:00:00,0.000000,21.700000,55.000000,4.000000,13.000000,84.580000,68.740000,819.100000,2.430000,113.640000,11.960000 -5,2023-08-05 19:00:00,0.000000,21.700000,55.000000,4.000000,13.000000,84.830000,68.910000,819.590000,2.520000,113.890000,12.290000 -5,2023-08-05 20:00:00,0.000000,20.800000,52.000000,6.000000,29.000000,85.100000,69.090000,820.090000,2.890000,114.130000,13.730000 -5,2023-08-05 21:00:00,0.000000,20.800000,52.000000,6.000000,29.000000,85.350000,69.260000,820.590000,2.990000,114.380000,14.110000 -5,2023-08-05 22:00:00,0.000000,20.800000,52.000000,6.000000,29.000000,85.560000,69.260000,820.590000,3.080000,114.380000,14.430000 -5,2023-08-05 23:00:00,0.000000,16.500000,61.000000,6.000000,36.000000,85.560000,69.260000,820.590000,3.080000,114.380000,14.430000 -5,2023-08-06 00:00:00,0.000000,16.500000,61.000000,6.000000,36.000000,85.560000,69.260000,820.590000,3.080000,114.380000,14.430000 -5,2023-08-06 01:00:00,0.000000,16.500000,61.000000,6.000000,36.000000,85.560000,69.260000,820.590000,3.080000,114.380000,14.430000 -5,2023-08-06 02:00:00,0.000000,14.900000,61.000000,5.000000,18.000000,85.560000,69.260000,820.590000,2.930000,114.380000,13.880000 -5,2023-08-06 03:00:00,0.000000,14.900000,61.000000,5.000000,18.000000,85.560000,69.260000,820.590000,2.930000,114.380000,13.880000 -5,2023-08-06 04:00:00,0.000000,14.900000,61.000000,5.000000,18.000000,85.560000,69.260000,820.590000,2.930000,114.380000,13.880000 -5,2023-08-06 05:00:00,0.000000,14.500000,62.000000,5.000000,359.000000,85.560000,69.330000,820.780000,2.930000,114.490000,13.890000 -5,2023-08-06 06:00:00,0.000000,14.500000,62.000000,5.000000,359.000000,85.560000,69.410000,820.980000,2.930000,114.600000,13.890000 -5,2023-08-06 07:00:00,0.000000,14.500000,62.000000,5.000000,359.000000,85.560000,69.480000,821.170000,2.930000,114.700000,13.900000 -5,2023-08-06 08:00:00,0.000000,17.600000,55.000000,4.000000,20.000000,85.620000,69.590000,821.460000,2.800000,114.860000,13.450000 -5,2023-08-06 09:00:00,0.000000,17.600000,55.000000,4.000000,20.000000,85.660000,69.700000,821.740000,2.820000,115.020000,13.530000 -5,2023-08-06 10:00:00,0.000000,17.600000,55.000000,4.000000,20.000000,85.710000,69.810000,822.020000,2.840000,115.170000,13.600000 -5,2023-08-06 11:00:00,0.000000,21.500000,43.000000,7.000000,70.000000,86.130000,69.990000,822.480000,3.510000,115.420000,16.010000 -5,2023-08-06 12:00:00,0.000000,21.500000,43.000000,7.000000,70.000000,86.500000,70.160000,822.930000,3.690000,115.670000,16.660000 -5,2023-08-06 13:00:00,0.000000,21.500000,43.000000,7.000000,70.000000,86.810000,70.340000,823.390000,3.860000,115.920000,17.250000 -5,2023-08-06 14:00:00,0.000000,23.100000,41.000000,9.000000,80.000000,87.220000,70.540000,823.910000,4.520000,116.210000,19.400000 -5,2023-08-06 15:00:00,0.000000,23.100000,41.000000,9.000000,80.000000,87.560000,70.740000,824.430000,4.750000,116.500000,20.120000 -5,2023-08-06 16:00:00,0.000000,23.100000,41.000000,9.000000,80.000000,87.850000,70.940000,824.950000,4.950000,116.780000,20.760000 -5,2023-08-06 17:00:00,0.000000,23.100000,38.000000,10.000000,68.000000,88.190000,71.160000,825.490000,5.470000,117.080000,22.320000 -5,2023-08-06 18:00:00,0.000000,23.100000,38.000000,10.000000,68.000000,88.480000,71.370000,826.040000,5.700000,117.380000,23.010000 -5,2023-08-06 19:00:00,0.000000,23.100000,38.000000,10.000000,68.000000,88.730000,71.580000,826.590000,5.910000,117.680000,23.620000 -5,2023-08-06 20:00:00,0.000000,20.800000,43.000000,10.000000,69.000000,88.730000,71.750000,827.020000,5.910000,117.920000,23.640000 -5,2023-08-06 21:00:00,0.000000,20.800000,43.000000,10.000000,69.000000,88.730000,71.920000,827.460000,5.910000,118.160000,23.660000 -5,2023-08-06 22:00:00,0.000000,20.800000,43.000000,10.000000,69.000000,88.730000,71.920000,827.460000,5.910000,118.160000,23.660000 -5,2023-08-06 23:00:00,0.000000,16.200000,55.000000,7.000000,75.000000,88.580000,71.920000,827.460000,4.970000,118.160000,20.920000 -5,2023-08-07 00:00:00,0.000000,16.200000,55.000000,7.000000,75.000000,88.450000,71.920000,827.460000,4.880000,118.160000,20.640000 -5,2023-08-07 01:00:00,0.000000,16.200000,55.000000,7.000000,75.000000,88.330000,71.920000,827.460000,4.790000,118.160000,20.390000 -5,2023-08-07 02:00:00,0.000000,13.600000,59.000000,3.000000,86.000000,88.140000,71.920000,827.460000,3.810000,118.160000,17.240000 -5,2023-08-07 03:00:00,0.000000,13.600000,59.000000,3.000000,86.000000,87.960000,71.920000,827.460000,3.720000,118.160000,16.920000 -5,2023-08-07 04:00:00,0.000000,13.600000,59.000000,3.000000,86.000000,87.810000,71.920000,827.460000,3.640000,118.160000,16.640000 -5,2023-08-07 05:00:00,0.000000,12.400000,63.000000,1.000000,80.000000,87.610000,71.980000,827.620000,3.200000,118.250000,15.090000 -5,2023-08-07 06:00:00,0.000000,12.400000,63.000000,1.000000,80.000000,87.420000,72.050000,827.770000,3.110000,118.350000,14.800000 -5,2023-08-07 07:00:00,0.000000,12.400000,63.000000,1.000000,80.000000,87.260000,72.120000,827.930000,3.040000,118.440000,14.530000 -5,2023-08-07 08:00:00,0.000000,16.300000,51.000000,3.000000,95.000000,87.260000,72.230000,828.190000,3.360000,118.600000,15.710000 -5,2023-08-07 09:00:00,0.000000,16.300000,51.000000,3.000000,95.000000,87.260000,72.340000,828.460000,3.360000,118.760000,15.720000 -5,2023-08-07 10:00:00,0.000000,16.300000,51.000000,3.000000,95.000000,87.260000,72.460000,828.730000,3.360000,118.920000,15.730000 -5,2023-08-07 11:00:00,0.000000,21.300000,37.000000,7.000000,87.000000,87.630000,72.650000,829.190000,4.340000,119.200000,19.030000 -5,2023-08-07 12:00:00,0.000000,21.300000,37.000000,7.000000,87.000000,87.950000,72.850000,829.660000,4.540000,119.480000,19.700000 -5,2023-08-07 13:00:00,0.000000,21.300000,37.000000,7.000000,87.000000,88.230000,73.050000,830.130000,4.730000,119.760000,20.300000 -5,2023-08-07 14:00:00,0.000000,22.800000,31.000000,8.000000,67.000000,88.720000,73.290000,830.690000,5.330000,120.090000,22.150000 -5,2023-08-07 15:00:00,0.000000,22.800000,31.000000,8.000000,67.000000,89.130000,73.530000,831.250000,5.660000,120.430000,23.130000 -5,2023-08-07 16:00:00,0.000000,22.800000,31.000000,8.000000,67.000000,89.480000,73.770000,831.810000,5.950000,120.760000,23.990000 -5,2023-08-07 17:00:00,0.000000,22.400000,30.000000,12.000000,54.000000,89.810000,74.000000,832.360000,7.630000,121.090000,28.540000 -5,2023-08-07 18:00:00,0.000000,22.400000,30.000000,12.000000,54.000000,90.090000,74.240000,832.920000,7.950000,121.420000,29.360000 -5,2023-08-07 19:00:00,0.000000,22.400000,30.000000,12.000000,54.000000,90.330000,74.480000,833.470000,8.220000,121.750000,30.070000 -5,2023-08-07 20:00:00,0.000000,19.600000,38.000000,12.000000,49.000000,90.330000,74.650000,833.880000,8.220000,122.000000,30.100000 -5,2023-08-07 21:00:00,0.000000,19.600000,38.000000,12.000000,49.000000,90.330000,74.830000,834.300000,8.220000,122.250000,30.120000 -5,2023-08-07 22:00:00,0.000000,19.600000,38.000000,12.000000,49.000000,90.330000,74.830000,834.300000,8.220000,122.250000,30.120000 -5,2023-08-07 23:00:00,0.000000,14.900000,55.000000,7.000000,44.000000,89.980000,74.830000,834.300000,6.080000,122.250000,24.490000 -5,2023-08-08 00:00:00,0.000000,14.900000,55.000000,7.000000,44.000000,89.680000,74.830000,834.300000,5.820000,122.250000,23.740000 -5,2023-08-08 01:00:00,0.000000,14.900000,55.000000,7.000000,44.000000,89.400000,74.830000,834.300000,5.600000,122.250000,23.100000 -5,2023-08-08 02:00:00,0.000000,12.000000,70.000000,7.000000,53.000000,88.820000,74.830000,834.300000,5.140000,122.250000,21.760000 -5,2023-08-08 03:00:00,0.000000,12.000000,70.000000,7.000000,53.000000,88.300000,74.830000,834.300000,4.780000,122.250000,20.630000 -5,2023-08-08 04:00:00,0.000000,12.000000,70.000000,7.000000,53.000000,87.840000,74.830000,834.300000,4.470000,122.250000,19.660000 -5,2023-08-08 05:00:00,0.000000,10.600000,76.000000,6.000000,60.000000,87.290000,74.870000,834.390000,3.930000,122.300000,17.900000 -5,2023-08-08 06:00:00,0.000000,10.600000,76.000000,6.000000,60.000000,86.810000,74.910000,834.480000,3.670000,122.360000,17.010000 -5,2023-08-08 07:00:00,0.000000,10.600000,76.000000,6.000000,60.000000,86.380000,74.950000,834.580000,3.450000,122.410000,16.250000 -5,2023-08-08 08:00:00,0.000000,16.000000,51.000000,8.000000,87.000000,86.390000,75.060000,834.850000,3.830000,122.580000,17.560000 -5,2023-08-08 09:00:00,0.000000,16.000000,51.000000,8.000000,87.000000,86.410000,75.180000,835.110000,3.830000,122.740000,17.600000 -5,2023-08-08 10:00:00,0.000000,16.000000,51.000000,8.000000,87.000000,86.420000,75.300000,835.380000,3.840000,122.900000,17.630000 -5,2023-08-08 11:00:00,0.000000,21.800000,37.000000,14.000000,89.000000,87.000000,75.510000,835.880000,5.640000,123.200000,23.300000 -5,2023-08-08 12:00:00,0.000000,21.800000,37.000000,14.000000,89.000000,87.480000,75.720000,836.380000,6.040000,123.490000,24.480000 -5,2023-08-08 13:00:00,0.000000,21.800000,37.000000,14.000000,89.000000,87.890000,75.940000,836.870000,6.410000,123.790000,25.520000 -5,2023-08-08 14:00:00,0.000000,23.500000,32.000000,17.000000,71.000000,88.500000,76.190000,837.470000,8.140000,124.150000,30.090000 -5,2023-08-08 15:00:00,0.000000,23.500000,32.000000,17.000000,71.000000,89.010000,76.450000,838.060000,8.750000,124.500000,31.630000 -5,2023-08-08 16:00:00,0.000000,23.500000,32.000000,17.000000,71.000000,89.420000,76.700000,838.660000,9.280000,124.860000,32.950000 -5,2023-08-08 17:00:00,0.000000,23.400000,35.000000,21.000000,61.000000,89.650000,76.950000,839.220000,11.740000,125.190000,38.500000 -5,2023-08-08 18:00:00,0.000000,23.400000,35.000000,21.000000,61.000000,89.840000,77.190000,839.790000,12.070000,125.530000,39.230000 -5,2023-08-08 19:00:00,0.000000,23.400000,35.000000,21.000000,61.000000,90.000000,77.430000,840.350000,12.340000,125.870000,39.830000 -5,2023-08-08 20:00:00,0.000000,21.100000,42.000000,16.000000,64.000000,90.000000,77.620000,840.790000,9.590000,126.130000,33.800000 -5,2023-08-08 21:00:00,0.000000,21.100000,42.000000,16.000000,64.000000,90.000000,77.810000,841.230000,9.590000,126.390000,33.820000 -5,2023-08-08 22:00:00,0.000000,21.100000,42.000000,16.000000,64.000000,90.000000,77.810000,841.230000,9.590000,126.390000,33.820000 -5,2023-08-08 23:00:00,0.000000,16.100000,55.000000,8.000000,84.000000,89.690000,77.810000,841.230000,6.130000,126.390000,24.960000 -5,2023-08-09 00:00:00,0.000000,16.100000,55.000000,8.000000,84.000000,89.420000,77.810000,841.230000,5.900000,126.390000,24.300000 -5,2023-08-09 01:00:00,0.000000,16.100000,55.000000,8.000000,84.000000,89.190000,77.810000,841.230000,5.700000,126.390000,23.730000 -5,2023-08-09 02:00:00,0.000000,13.000000,62.000000,6.000000,104.000000,88.820000,77.810000,841.230000,4.890000,126.390000,21.270000 -5,2023-08-09 03:00:00,0.000000,13.000000,62.000000,6.000000,104.000000,88.490000,77.810000,841.230000,4.670000,126.390000,20.560000 -5,2023-08-09 04:00:00,0.000000,13.000000,62.000000,6.000000,104.000000,88.190000,77.810000,841.230000,4.470000,126.390000,19.950000 -5,2023-08-09 05:00:00,0.000000,10.700000,71.000000,5.000000,109.000000,87.740000,77.850000,841.330000,3.990000,126.450000,18.340000 -5,2023-08-09 06:00:00,0.000000,10.700000,71.000000,5.000000,109.000000,87.340000,77.900000,841.430000,3.760000,126.520000,17.580000 -5,2023-08-09 07:00:00,0.000000,10.700000,71.000000,5.000000,109.000000,86.980000,77.950000,841.540000,3.570000,126.580000,16.920000 -5,2023-08-09 08:00:00,0.000000,16.400000,52.000000,7.000000,103.000000,86.980000,78.060000,841.780000,3.950000,126.740000,18.240000 -5,2023-08-09 09:00:00,0.000000,16.400000,52.000000,7.000000,103.000000,86.980000,78.170000,842.030000,3.950000,126.890000,18.250000 -5,2023-08-09 10:00:00,0.000000,16.400000,52.000000,7.000000,103.000000,86.980000,78.280000,842.280000,3.950000,127.040000,18.260000 -5,2023-08-09 11:00:00,0.000000,22.800000,35.000000,17.000000,105.000000,87.600000,78.510000,842.770000,7.150000,127.350000,27.840000 -5,2023-08-09 12:00:00,0.000000,22.800000,35.000000,17.000000,105.000000,88.120000,78.730000,843.270000,7.700000,127.660000,29.310000 -5,2023-08-09 13:00:00,0.000000,22.800000,35.000000,17.000000,105.000000,88.550000,78.960000,843.770000,8.190000,127.970000,30.580000 -5,2023-08-09 14:00:00,0.000000,24.700000,30.000000,20.000000,94.000000,89.200000,79.230000,844.370000,10.470000,128.350000,36.040000 -5,2023-08-09 15:00:00,0.000000,24.700000,30.000000,20.000000,94.000000,89.730000,79.500000,844.970000,11.290000,128.720000,37.910000 -5,2023-08-09 16:00:00,0.000000,24.700000,30.000000,20.000000,94.000000,90.160000,79.770000,845.570000,12.010000,129.090000,39.490000 -5,2023-08-09 17:00:00,0.000000,24.700000,30.000000,20.000000,83.000000,90.500000,80.040000,846.170000,12.610000,129.460000,40.800000 -5,2023-08-09 18:00:00,0.000000,24.700000,30.000000,20.000000,83.000000,90.780000,80.310000,846.770000,13.110000,129.840000,41.890000 -5,2023-08-09 19:00:00,0.000000,24.700000,30.000000,20.000000,83.000000,91.000000,80.580000,847.370000,13.530000,130.210000,42.780000 -5,2023-08-09 20:00:00,0.000000,22.200000,35.000000,16.000000,76.000000,91.000000,80.800000,847.850000,11.060000,130.510000,37.590000 -5,2023-08-09 21:00:00,0.000000,22.200000,35.000000,16.000000,76.000000,91.000000,81.020000,848.330000,11.060000,130.800000,37.620000 -5,2023-08-09 22:00:00,0.000000,22.200000,35.000000,16.000000,76.000000,91.000000,81.020000,848.330000,11.060000,130.800000,37.620000 -5,2023-08-09 23:00:00,0.000000,18.000000,45.000000,11.000000,101.000000,90.800000,81.020000,848.330000,8.370000,130.800000,31.270000 -5,2023-08-10 00:00:00,0.000000,18.000000,45.000000,11.000000,101.000000,90.640000,81.020000,848.330000,8.170000,130.800000,30.760000 -5,2023-08-10 01:00:00,0.000000,18.000000,45.000000,11.000000,101.000000,90.490000,81.020000,848.330000,8.000000,130.800000,30.330000 -5,2023-08-10 02:00:00,0.000000,15.700000,49.000000,9.000000,118.000000,90.250000,81.020000,848.330000,6.990000,130.800000,27.660000 -5,2023-08-10 03:00:00,0.000000,15.700000,49.000000,9.000000,118.000000,90.030000,81.020000,848.330000,6.780000,130.800000,27.090000 -5,2023-08-10 04:00:00,0.000000,15.700000,49.000000,9.000000,118.000000,89.840000,81.020000,848.330000,6.590000,130.800000,26.590000 -5,2023-08-10 05:00:00,0.000000,13.200000,58.000000,6.000000,117.000000,89.490000,81.090000,848.500000,5.390000,130.910000,23.100000 -5,2023-08-10 06:00:00,0.000000,13.200000,58.000000,6.000000,117.000000,89.170000,81.170000,848.670000,5.150000,131.020000,22.370000 -5,2023-08-10 07:00:00,0.000000,13.200000,58.000000,6.000000,117.000000,88.890000,81.250000,848.830000,4.940000,131.120000,21.730000 -5,2023-08-10 08:00:00,0.000000,17.300000,46.000000,8.000000,107.000000,88.890000,81.380000,849.110000,5.460000,131.300000,23.360000 -5,2023-08-10 09:00:00,0.000000,17.300000,46.000000,8.000000,107.000000,88.890000,81.510000,849.390000,5.460000,131.480000,23.370000 -5,2023-08-10 10:00:00,0.000000,17.300000,46.000000,8.000000,107.000000,88.890000,81.640000,849.660000,5.460000,131.660000,23.380000 -5,2023-08-10 11:00:00,0.000000,22.800000,32.000000,15.000000,96.000000,89.280000,81.870000,850.150000,8.230000,131.970000,31.010000 -5,2023-08-10 12:00:00,0.000000,22.800000,32.000000,15.000000,96.000000,89.610000,82.110000,850.640000,8.620000,132.290000,32.030000 -5,2023-08-10 13:00:00,0.000000,22.800000,32.000000,15.000000,96.000000,89.880000,82.340000,851.130000,8.960000,132.600000,32.900000 -5,2023-08-10 14:00:00,0.000000,25.100000,27.000000,13.000000,87.000000,90.380000,82.620000,851.740000,8.710000,132.990000,32.310000 -5,2023-08-10 15:00:00,0.000000,25.100000,27.000000,13.000000,87.000000,90.790000,82.910000,852.340000,9.240000,133.380000,33.630000 -5,2023-08-10 16:00:00,0.000000,25.100000,27.000000,13.000000,87.000000,91.130000,83.190000,852.950000,9.690000,133.770000,34.750000 -5,2023-08-10 17:00:00,0.000000,25.400000,26.000000,14.000000,68.000000,91.460000,83.490000,853.570000,10.680000,134.170000,37.090000 -5,2023-08-10 18:00:00,0.000000,25.400000,26.000000,14.000000,68.000000,91.730000,83.780000,854.190000,11.100000,134.570000,38.060000 -5,2023-08-10 19:00:00,0.000000,25.400000,26.000000,14.000000,68.000000,91.940000,84.080000,854.820000,11.440000,134.970000,38.870000 -5,2023-08-10 20:00:00,0.000000,25.400000,26.000000,14.000000,68.000000,92.120000,84.370000,855.440000,11.730000,135.360000,39.530000 -5,2023-08-10 21:00:00,0.000000,25.400000,26.000000,14.000000,68.000000,92.260000,84.370000,855.440000,11.970000,135.360000,40.050000 -5,2023-08-10 22:00:00,0.000000,25.400000,26.000000,14.000000,68.000000,92.380000,84.370000,855.440000,12.160000,135.360000,40.470000 -5,2023-08-10 23:00:00,0.000000,17.400000,44.000000,8.000000,41.000000,92.050000,84.370000,855.440000,8.590000,135.360000,32.210000 -5,2023-08-11 00:00:00,0.000000,17.400000,44.000000,8.000000,41.000000,91.770000,84.370000,855.440000,8.250000,135.360000,31.350000 -5,2023-08-11 01:00:00,0.000000,17.400000,44.000000,8.000000,41.000000,91.520000,84.370000,855.440000,7.960000,135.360000,30.600000 -5,2023-08-11 02:00:00,0.000000,17.400000,44.000000,8.000000,41.000000,91.290000,84.370000,855.440000,7.710000,135.360000,29.950000 -5,2023-08-11 03:00:00,0.000000,17.400000,44.000000,8.000000,41.000000,91.090000,84.370000,855.440000,7.500000,135.360000,29.380000 -5,2023-08-11 04:00:00,0.000000,17.400000,44.000000,8.000000,41.000000,90.920000,84.370000,855.440000,7.310000,135.360000,28.880000 -5,2023-08-11 05:00:00,0.000000,11.500000,71.000000,6.000000,332.000000,90.150000,84.440000,855.590000,5.920000,135.460000,25.000000 -5,2023-08-11 06:00:00,0.000000,11.500000,71.000000,6.000000,332.000000,89.470000,84.510000,855.730000,5.370000,135.550000,23.350000 -5,2023-08-11 07:00:00,0.000000,11.500000,71.000000,6.000000,332.000000,88.870000,84.580000,855.870000,4.930000,135.640000,21.970000 -5,2023-08-11 08:00:00,0.000000,11.500000,71.000000,6.000000,332.000000,88.330000,84.640000,856.020000,4.560000,135.730000,20.800000 -5,2023-08-11 09:00:00,0.000000,11.500000,71.000000,6.000000,332.000000,87.860000,84.710000,856.160000,4.260000,135.830000,19.800000 -5,2023-08-11 10:00:00,0.000000,11.500000,71.000000,6.000000,332.000000,87.430000,84.780000,856.310000,4.010000,135.920000,18.940000 -5,2023-08-11 11:00:00,0.010000,22.400000,31.000000,11.000000,14.000000,88.050000,85.110000,856.990000,5.640000,136.360000,24.210000 -5,2023-08-11 12:00:00,0.000000,22.400000,31.000000,11.000000,14.000000,88.580000,85.430000,857.670000,6.080000,136.800000,25.540000 -5,2023-08-11 13:00:00,0.000000,22.400000,31.000000,11.000000,14.000000,89.020000,85.760000,858.360000,6.480000,137.240000,26.710000 -5,2023-08-11 14:00:00,0.000000,22.400000,31.000000,11.000000,14.000000,89.390000,86.080000,859.040000,6.830000,137.680000,27.740000 -5,2023-08-11 15:00:00,0.000000,22.400000,31.000000,11.000000,14.000000,89.700000,86.410000,859.730000,7.140000,138.110000,28.620000 -5,2023-08-11 16:00:00,0.000000,22.400000,31.000000,11.000000,14.000000,89.960000,86.730000,860.410000,7.410000,138.550000,29.390000 -5,2023-08-11 17:00:00,0.000000,19.600000,38.000000,22.000000,22.000000,89.960000,86.980000,860.930000,12.900000,138.880000,42.380000 -5,2023-08-11 18:00:00,0.000000,19.600000,38.000000,22.000000,22.000000,89.960000,87.230000,861.440000,12.900000,139.210000,42.410000 -5,2023-08-11 19:00:00,0.000000,19.600000,38.000000,22.000000,22.000000,89.960000,87.470000,861.960000,12.900000,139.540000,42.440000 -5,2023-08-11 20:00:00,0.000000,19.600000,38.000000,22.000000,22.000000,89.960000,87.720000,862.480000,12.900000,139.870000,42.480000 -5,2023-08-11 21:00:00,0.000000,19.600000,38.000000,22.000000,22.000000,89.960000,87.720000,862.480000,12.900000,139.870000,42.480000 -5,2023-08-11 22:00:00,0.000000,19.600000,38.000000,22.000000,22.000000,89.960000,87.720000,862.480000,12.900000,139.870000,42.480000 -5,2023-08-11 23:00:00,0.000000,13.400000,45.000000,10.000000,9.000000,89.830000,87.720000,862.480000,6.920000,139.870000,28.120000 -5,2023-08-12 00:00:00,0.000000,13.400000,45.000000,10.000000,9.000000,89.710000,87.720000,862.480000,6.800000,139.870000,27.790000 -5,2023-08-12 01:00:00,0.000000,13.400000,45.000000,10.000000,9.000000,89.600000,87.720000,862.480000,6.690000,139.870000,27.500000 -5,2023-08-12 02:00:00,0.000000,13.400000,45.000000,10.000000,9.000000,89.500000,87.720000,862.480000,6.600000,139.870000,27.240000 -5,2023-08-12 03:00:00,0.000000,13.400000,45.000000,10.000000,9.000000,89.420000,87.720000,862.480000,6.520000,139.870000,27.010000 -5,2023-08-12 04:00:00,0.000000,13.400000,45.000000,10.000000,9.000000,89.340000,87.720000,862.480000,6.450000,139.870000,26.800000 -5,2023-08-12 05:00:00,0.000000,9.700000,49.000000,6.000000,56.000000,89.170000,87.810000,862.680000,5.150000,139.990000,22.900000 -5,2023-08-12 06:00:00,0.000000,9.700000,49.000000,6.000000,56.000000,89.020000,87.890000,862.880000,5.030000,140.110000,22.560000 -5,2023-08-12 07:00:00,0.000000,9.700000,49.000000,6.000000,56.000000,88.880000,87.980000,863.080000,4.930000,140.220000,22.240000 -5,2023-08-12 08:00:00,0.000000,9.700000,49.000000,6.000000,56.000000,88.750000,88.070000,863.280000,4.840000,140.340000,21.960000 -5,2023-08-12 09:00:00,0.000000,9.700000,49.000000,6.000000,56.000000,88.630000,88.150000,863.480000,4.760000,140.460000,21.700000 -5,2023-08-12 10:00:00,0.000000,9.700000,49.000000,6.000000,56.000000,88.520000,88.240000,863.680000,4.690000,140.580000,21.470000 -5,2023-08-12 11:00:00,0.000000,18.000000,31.000000,9.000000,76.000000,88.800000,88.440000,864.140000,5.680000,140.850000,24.590000 -5,2023-08-12 12:00:00,0.000000,18.000000,31.000000,9.000000,76.000000,89.040000,88.650000,864.610000,5.870000,141.120000,25.200000 -5,2023-08-12 13:00:00,0.000000,18.000000,31.000000,9.000000,76.000000,89.250000,88.850000,865.070000,6.050000,141.390000,25.740000 -5,2023-08-12 14:00:00,0.000000,18.000000,31.000000,9.000000,76.000000,89.420000,89.050000,865.540000,6.210000,141.660000,26.210000 -5,2023-08-12 15:00:00,0.000000,18.000000,31.000000,9.000000,76.000000,89.580000,89.250000,866.000000,6.350000,141.940000,26.630000 -5,2023-08-12 16:00:00,0.000000,18.000000,31.000000,9.000000,76.000000,89.710000,89.460000,866.470000,6.470000,142.210000,27.000000 -5,2023-08-12 17:00:00,0.000000,20.200000,27.000000,15.000000,44.000000,90.050000,89.700000,867.030000,9.180000,142.540000,34.230000 -5,2023-08-12 18:00:00,0.000000,20.200000,27.000000,15.000000,44.000000,90.330000,89.950000,867.590000,9.560000,142.870000,35.180000 -5,2023-08-12 19:00:00,0.000000,20.200000,27.000000,15.000000,44.000000,90.560000,90.190000,868.160000,9.890000,143.190000,35.990000 -5,2023-08-12 20:00:00,0.000000,20.200000,27.000000,15.000000,44.000000,90.760000,90.440000,868.720000,10.170000,143.520000,36.680000 -5,2023-08-12 21:00:00,0.000000,20.200000,27.000000,15.000000,44.000000,90.920000,90.440000,868.720000,10.410000,143.520000,37.250000 -5,2023-08-12 22:00:00,0.000000,20.200000,27.000000,15.000000,44.000000,91.060000,90.440000,868.720000,10.620000,143.520000,37.740000 -5,2023-08-12 23:00:00,0.000000,12.400000,52.000000,9.000000,30.000000,90.670000,90.440000,868.720000,7.420000,143.520000,29.740000 -5,2023-08-13 00:00:00,0.000000,12.400000,52.000000,9.000000,30.000000,90.320000,90.440000,868.720000,7.060000,143.520000,28.750000 -5,2023-08-13 01:00:00,0.000000,12.400000,52.000000,9.000000,30.000000,90.010000,90.440000,868.720000,6.750000,143.520000,27.890000 -5,2023-08-13 02:00:00,0.000000,12.400000,52.000000,9.000000,30.000000,89.730000,90.440000,868.720000,6.480000,143.520000,27.130000 -5,2023-08-13 03:00:00,0.000000,12.400000,52.000000,9.000000,30.000000,89.480000,90.440000,868.720000,6.260000,143.520000,26.460000 -5,2023-08-13 04:00:00,0.000000,12.400000,52.000000,9.000000,30.000000,89.250000,90.440000,868.720000,6.060000,143.520000,25.880000 -5,2023-08-13 05:00:00,0.000000,8.300000,63.000000,6.000000,41.000000,88.850000,90.500000,868.870000,4.910000,143.600000,22.350000 -5,2023-08-13 06:00:00,0.000000,8.300000,63.000000,6.000000,41.000000,88.480000,90.560000,869.010000,4.660000,143.690000,21.520000 -5,2023-08-13 07:00:00,0.000000,8.300000,63.000000,6.000000,41.000000,88.140000,90.620000,869.160000,4.440000,143.770000,20.790000 -5,2023-08-13 08:00:00,0.000000,8.300000,63.000000,6.000000,41.000000,87.840000,90.680000,869.310000,4.250000,143.850000,20.160000 -5,2023-08-13 09:00:00,0.000000,8.300000,63.000000,6.000000,41.000000,87.560000,90.740000,869.450000,4.090000,143.930000,19.590000 -5,2023-08-13 10:00:00,0.000000,8.300000,63.000000,6.000000,41.000000,87.310000,90.800000,869.600000,3.940000,144.010000,19.090000 -5,2023-08-13 11:00:00,0.000000,18.900000,36.000000,13.000000,70.000000,87.660000,91.010000,870.100000,5.900000,144.290000,25.440000 -5,2023-08-13 12:00:00,0.000000,18.900000,36.000000,13.000000,70.000000,87.960000,91.220000,870.610000,6.150000,144.570000,26.220000 -5,2023-08-13 13:00:00,0.000000,18.900000,36.000000,13.000000,70.000000,88.210000,91.420000,871.110000,6.380000,144.850000,26.910000 -5,2023-08-13 14:00:00,0.000000,18.900000,36.000000,13.000000,70.000000,88.430000,91.630000,871.620000,6.590000,145.120000,27.510000 -5,2023-08-13 15:00:00,0.000000,18.900000,36.000000,13.000000,70.000000,88.620000,91.840000,872.120000,6.770000,145.400000,28.040000 -5,2023-08-13 16:00:00,0.000000,18.900000,36.000000,13.000000,70.000000,88.780000,92.050000,872.630000,6.920000,145.680000,28.500000 -5,2023-08-13 17:00:00,0.000000,21.400000,32.000000,16.000000,46.000000,89.140000,92.310000,873.250000,8.480000,146.030000,32.700000 -5,2023-08-13 18:00:00,0.000000,21.400000,32.000000,16.000000,46.000000,89.440000,92.570000,873.880000,8.850000,146.370000,33.670000 -5,2023-08-13 19:00:00,0.000000,21.400000,32.000000,16.000000,46.000000,89.690000,92.820000,874.500000,9.180000,146.710000,34.510000 -5,2023-08-13 20:00:00,0.000000,21.400000,32.000000,16.000000,46.000000,89.900000,93.080000,875.130000,9.450000,147.060000,35.220000 -5,2023-08-13 21:00:00,0.000000,21.400000,32.000000,16.000000,46.000000,90.070000,93.080000,875.130000,9.690000,147.060000,35.800000 -5,2023-08-13 22:00:00,0.000000,21.400000,32.000000,16.000000,46.000000,90.210000,93.080000,875.130000,9.890000,147.060000,36.280000 -5,2023-08-13 23:00:00,0.000000,13.500000,61.000000,7.000000,43.000000,89.740000,93.080000,875.130000,5.880000,147.060000,25.530000 -5,2023-08-14 00:00:00,0.000000,13.500000,61.000000,7.000000,43.000000,89.330000,93.080000,875.130000,5.540000,147.060000,24.490000 -5,2023-08-14 01:00:00,0.000000,13.500000,61.000000,7.000000,43.000000,88.960000,93.080000,875.130000,5.250000,147.060000,23.600000 -5,2023-08-14 02:00:00,0.000000,13.500000,61.000000,7.000000,43.000000,88.630000,93.080000,875.130000,5.010000,147.060000,22.820000 -5,2023-08-14 03:00:00,0.000000,13.500000,61.000000,7.000000,43.000000,88.340000,93.080000,875.130000,4.800000,147.060000,22.160000 -5,2023-08-14 04:00:00,0.000000,13.500000,61.000000,7.000000,43.000000,88.080000,93.080000,875.130000,4.630000,147.060000,21.580000 -5,2023-08-14 05:00:00,0.130000,11.900000,67.000000,6.000000,232.000000,84.980000,91.880000,873.990000,2.840000,145.520000,15.000000 -5,2023-08-14 06:00:00,0.000000,11.900000,67.000000,6.000000,232.000000,84.950000,91.930000,874.220000,2.830000,145.580000,14.950000 -5,2023-08-14 07:00:00,0.000000,11.900000,67.000000,6.000000,232.000000,84.920000,91.970000,874.440000,2.820000,145.650000,14.900000 -5,2023-08-14 08:00:00,0.000000,11.900000,67.000000,6.000000,232.000000,84.890000,92.020000,874.670000,2.810000,145.710000,14.870000 -5,2023-08-14 09:00:00,0.000000,11.900000,67.000000,6.000000,232.000000,84.870000,92.060000,874.900000,2.800000,145.780000,14.830000 -5,2023-08-14 10:00:00,0.000000,11.900000,67.000000,6.000000,232.000000,84.850000,92.110000,875.130000,2.790000,145.840000,14.800000 -5,2023-08-14 11:00:00,1.050000,19.000000,69.000000,15.000000,294.000000,66.250000,83.760000,864.420000,1.180000,134.860000,6.980000 -5,2023-08-14 12:00:00,0.000000,19.000000,69.000000,15.000000,294.000000,68.030000,83.830000,864.760000,1.250000,134.960000,7.380000 -5,2023-08-14 13:00:00,0.000000,19.000000,69.000000,15.000000,294.000000,69.660000,83.900000,865.100000,1.320000,135.050000,7.740000 -5,2023-08-14 14:00:00,0.000000,19.000000,69.000000,15.000000,294.000000,71.140000,83.970000,865.430000,1.380000,135.150000,8.080000 -5,2023-08-14 15:00:00,0.000000,19.000000,69.000000,15.000000,294.000000,72.480000,84.030000,865.770000,1.450000,135.250000,8.430000 -5,2023-08-14 16:00:00,0.000000,19.000000,69.000000,15.000000,294.000000,73.680000,84.100000,866.110000,1.530000,135.350000,8.810000 -5,2023-08-14 17:00:00,0.700000,22.000000,42.000000,18.000000,295.000000,65.520000,79.360000,859.500000,1.330000,128.950000,7.650000 -5,2023-08-14 18:00:00,0.000000,22.000000,42.000000,18.000000,295.000000,68.960000,79.510000,860.260000,1.500000,129.170000,8.490000 -5,2023-08-14 19:00:00,0.000000,22.000000,42.000000,18.000000,295.000000,71.970000,79.660000,861.020000,1.660000,129.400000,9.260000 -5,2023-08-14 20:00:00,0.000000,22.000000,42.000000,18.000000,295.000000,74.580000,79.810000,861.780000,1.850000,129.620000,10.200000 -5,2023-08-14 21:00:00,0.000000,22.000000,42.000000,18.000000,295.000000,76.830000,79.810000,861.780000,2.130000,129.620000,11.420000 -5,2023-08-14 22:00:00,0.000000,22.000000,42.000000,18.000000,295.000000,78.760000,79.810000,861.780000,2.490000,129.620000,12.950000 -5,2023-08-14 23:00:00,5.750000,12.700000,88.000000,11.000000,291.000000,27.240000,52.540000,801.310000,0.000000,90.270000,0.010000 -5,2023-08-15 00:00:00,0.000000,12.700000,88.000000,11.000000,291.000000,28.790000,52.540000,801.310000,0.000000,90.270000,0.010000 -5,2023-08-15 01:00:00,0.000000,12.700000,88.000000,11.000000,291.000000,30.320000,52.540000,801.310000,0.010000,90.270000,0.020000 -5,2023-08-15 02:00:00,0.000000,12.700000,88.000000,11.000000,291.000000,31.830000,52.540000,801.310000,0.010000,90.270000,0.030000 -5,2023-08-15 03:00:00,0.000000,12.700000,88.000000,11.000000,291.000000,33.320000,52.540000,801.310000,0.010000,90.270000,0.040000 -5,2023-08-15 04:00:00,0.000000,12.700000,88.000000,11.000000,291.000000,34.780000,52.540000,801.310000,0.020000,90.270000,0.050000 -5,2023-08-15 05:00:00,0.000000,11.300000,87.000000,8.000000,287.000000,36.100000,52.560000,801.400000,0.020000,90.310000,0.060000 -5,2023-08-15 06:00:00,0.000000,11.300000,87.000000,8.000000,287.000000,37.390000,52.580000,801.490000,0.030000,90.350000,0.080000 -5,2023-08-15 07:00:00,0.000000,11.300000,87.000000,8.000000,287.000000,38.660000,52.610000,801.580000,0.040000,90.380000,0.100000 -5,2023-08-15 08:00:00,0.000000,11.300000,87.000000,8.000000,287.000000,39.900000,52.630000,801.670000,0.050000,90.420000,0.130000 -5,2023-08-15 09:00:00,0.000000,11.300000,87.000000,8.000000,287.000000,41.120000,52.650000,801.760000,0.060000,90.450000,0.170000 -5,2023-08-15 10:00:00,0.000000,11.300000,87.000000,8.000000,287.000000,42.320000,52.670000,801.850000,0.080000,90.490000,0.200000 -5,2023-08-15 11:00:00,0.000000,19.200000,60.000000,8.000000,338.000000,45.810000,52.790000,802.310000,0.140000,90.670000,0.360000 -5,2023-08-15 12:00:00,0.000000,19.200000,60.000000,8.000000,338.000000,49.120000,52.910000,802.770000,0.220000,90.850000,0.570000 -5,2023-08-15 13:00:00,0.000000,19.200000,60.000000,8.000000,338.000000,52.240000,53.030000,803.230000,0.320000,91.040000,0.830000 -5,2023-08-15 14:00:00,0.000000,19.200000,60.000000,8.000000,338.000000,55.170000,53.150000,803.680000,0.420000,91.220000,1.430000 -5,2023-08-15 15:00:00,0.000000,19.200000,60.000000,8.000000,338.000000,57.900000,53.270000,804.140000,0.530000,91.400000,2.150000 -5,2023-08-15 16:00:00,0.000000,19.200000,60.000000,8.000000,338.000000,60.440000,53.390000,804.600000,0.630000,91.590000,2.750000 -5,2023-08-15 17:00:00,0.000000,22.300000,43.000000,11.000000,56.000000,64.080000,53.600000,805.390000,0.880000,91.900000,4.120000 -5,2023-08-15 18:00:00,0.000000,22.300000,43.000000,11.000000,56.000000,67.340000,53.800000,806.190000,1.000000,92.220000,4.710000 -5,2023-08-15 19:00:00,0.000000,22.300000,43.000000,11.000000,56.000000,70.240000,54.010000,806.980000,1.100000,92.530000,5.190000 -5,2023-08-15 20:00:00,0.000000,22.300000,43.000000,11.000000,56.000000,72.800000,54.210000,807.770000,1.200000,92.850000,5.700000 -5,2023-08-15 21:00:00,0.000000,22.300000,43.000000,11.000000,56.000000,75.040000,54.210000,807.770000,1.340000,92.850000,6.310000 -5,2023-08-15 22:00:00,0.000000,22.300000,43.000000,11.000000,56.000000,77.010000,54.210000,807.770000,1.520000,92.850000,7.090000 -5,2023-08-15 23:00:00,0.000000,15.500000,70.000000,9.000000,109.000000,77.520000,54.210000,807.770000,1.420000,92.850000,6.700000 -5,2023-08-16 00:00:00,0.000000,15.500000,70.000000,9.000000,109.000000,78.000000,54.210000,807.770000,1.480000,92.850000,6.940000 -5,2023-08-16 01:00:00,0.000000,15.500000,70.000000,9.000000,109.000000,78.430000,54.210000,807.770000,1.540000,92.850000,7.190000 -5,2023-08-16 02:00:00,0.000000,15.500000,70.000000,9.000000,109.000000,78.830000,54.210000,807.770000,1.590000,92.850000,7.430000 -5,2023-08-16 03:00:00,0.000000,15.500000,70.000000,9.000000,109.000000,79.200000,54.210000,807.770000,1.650000,92.850000,7.660000 -5,2023-08-16 04:00:00,0.000000,15.500000,70.000000,9.000000,109.000000,79.540000,54.210000,807.770000,1.710000,92.850000,7.890000 -5,2023-08-16 05:00:00,0.000000,12.100000,79.000000,8.000000,179.000000,79.610000,54.250000,807.870000,1.630000,92.910000,7.600000 -5,2023-08-16 06:00:00,0.000000,12.100000,79.000000,8.000000,179.000000,79.680000,54.300000,807.960000,1.650000,92.970000,7.650000 -5,2023-08-16 07:00:00,0.000000,12.100000,79.000000,8.000000,179.000000,79.740000,54.340000,808.060000,1.660000,93.040000,7.690000 -5,2023-08-16 08:00:00,0.000000,12.100000,79.000000,8.000000,179.000000,79.810000,54.380000,808.150000,1.670000,93.100000,7.740000 -5,2023-08-16 09:00:00,0.000000,12.100000,79.000000,8.000000,179.000000,79.860000,54.420000,808.250000,1.680000,93.160000,7.790000 -5,2023-08-16 10:00:00,0.000000,12.100000,79.000000,8.000000,179.000000,79.920000,54.460000,808.350000,1.690000,93.230000,7.830000 -5,2023-08-16 11:00:00,0.000000,22.100000,36.000000,12.000000,167.000000,81.490000,54.710000,808.900000,2.450000,93.590000,10.810000 -5,2023-08-16 12:00:00,0.000000,22.100000,36.000000,12.000000,167.000000,82.830000,54.950000,809.450000,2.890000,93.950000,12.370000 -5,2023-08-16 13:00:00,0.000000,22.100000,36.000000,12.000000,167.000000,83.980000,55.190000,810.000000,3.360000,94.320000,13.940000 -5,2023-08-16 14:00:00,0.000000,22.100000,36.000000,12.000000,167.000000,84.960000,55.430000,810.550000,3.830000,94.680000,15.470000 -5,2023-08-16 15:00:00,0.000000,22.100000,36.000000,12.000000,167.000000,85.780000,55.670000,811.100000,4.300000,95.040000,16.910000 -5,2023-08-16 16:00:00,0.000000,22.100000,36.000000,12.000000,167.000000,86.490000,55.920000,811.650000,4.740000,95.400000,18.230000 -5,2023-08-16 17:00:00,0.000000,25.800000,28.000000,10.000000,157.000000,87.560000,56.260000,812.430000,4.990000,95.910000,18.980000 -5,2023-08-16 18:00:00,0.000000,25.800000,28.000000,10.000000,157.000000,88.440000,56.600000,813.200000,5.670000,96.420000,20.870000 -5,2023-08-16 19:00:00,0.000000,25.800000,28.000000,10.000000,157.000000,89.170000,56.940000,813.980000,6.290000,96.920000,22.540000 -5,2023-08-16 20:00:00,0.000000,25.800000,28.000000,10.000000,157.000000,89.770000,57.280000,814.750000,6.860000,97.430000,24.020000 -5,2023-08-16 21:00:00,0.000000,25.800000,28.000000,10.000000,157.000000,90.260000,57.280000,814.750000,7.360000,97.430000,25.240000 -5,2023-08-16 22:00:00,0.000000,25.800000,28.000000,10.000000,157.000000,90.670000,57.280000,814.750000,7.800000,97.430000,26.270000 -5,2023-08-16 23:00:00,0.000000,18.800000,43.000000,8.000000,176.000000,90.580000,57.280000,814.750000,6.970000,97.430000,24.280000 -5,2023-08-17 00:00:00,0.000000,18.800000,43.000000,8.000000,176.000000,90.500000,57.280000,814.750000,6.890000,97.430000,24.090000 -5,2023-08-17 01:00:00,0.000000,18.800000,43.000000,8.000000,176.000000,90.430000,57.280000,814.750000,6.820000,97.430000,23.930000 -5,2023-08-17 02:00:00,0.000000,18.800000,43.000000,8.000000,176.000000,90.370000,57.280000,814.750000,6.760000,97.430000,23.780000 -5,2023-08-17 03:00:00,0.000000,18.800000,43.000000,8.000000,176.000000,90.320000,57.280000,814.750000,6.710000,97.430000,23.660000 -5,2023-08-17 04:00:00,0.000000,18.800000,43.000000,8.000000,176.000000,90.270000,57.280000,814.750000,6.670000,97.430000,23.540000 -5,2023-08-17 05:00:00,0.000000,14.300000,64.000000,6.000000,147.000000,89.740000,57.280000,814.750000,5.580000,97.430000,20.760000 -5,2023-08-17 06:00:00,0.000000,14.300000,64.000000,6.000000,147.000000,89.270000,57.360000,814.950000,5.220000,97.550000,19.780000 -5,2023-08-17 07:00:00,0.000000,14.300000,64.000000,6.000000,147.000000,88.850000,57.440000,815.140000,4.920000,97.670000,18.950000 -5,2023-08-17 08:00:00,0.000000,14.300000,64.000000,6.000000,147.000000,88.490000,57.510000,815.330000,4.660000,97.780000,18.240000 -5,2023-08-17 09:00:00,0.000000,14.300000,64.000000,6.000000,147.000000,88.160000,57.590000,815.530000,4.450000,97.900000,17.630000 -5,2023-08-17 10:00:00,0.000000,14.300000,64.000000,6.000000,147.000000,87.870000,57.670000,815.720000,4.270000,98.020000,17.110000 -5,2023-08-17 11:00:00,0.000000,24.900000,43.000000,8.000000,143.000000,88.110000,57.910000,816.310000,4.890000,98.380000,18.940000 -5,2023-08-17 12:00:00,0.000000,24.900000,43.000000,8.000000,143.000000,88.310000,58.160000,816.910000,5.030000,98.740000,19.380000 -5,2023-08-17 13:00:00,0.000000,24.900000,43.000000,8.000000,143.000000,88.490000,58.400000,817.500000,5.160000,99.100000,19.770000 -5,2023-08-17 14:00:00,0.000000,24.900000,43.000000,8.000000,143.000000,88.630000,58.640000,818.090000,5.270000,99.460000,20.100000 -5,2023-08-17 15:00:00,0.000000,24.900000,43.000000,8.000000,143.000000,88.750000,58.880000,818.680000,5.360000,99.820000,20.400000 -5,2023-08-17 16:00:00,0.000000,24.900000,43.000000,8.000000,143.000000,88.850000,59.130000,819.280000,5.440000,100.180000,20.650000 -5,2023-08-17 17:00:00,0.000000,27.800000,40.000000,7.000000,95.000000,89.130000,59.430000,820.020000,5.380000,100.630000,20.530000 -5,2023-08-17 18:00:00,0.000000,27.800000,40.000000,7.000000,95.000000,89.360000,59.730000,820.760000,5.560000,101.070000,21.070000 -5,2023-08-17 19:00:00,0.000000,27.800000,40.000000,7.000000,95.000000,89.540000,60.030000,821.500000,5.710000,101.520000,21.530000 -5,2023-08-17 20:00:00,0.000000,27.800000,40.000000,7.000000,95.000000,89.700000,60.340000,822.240000,5.840000,101.970000,21.920000 -5,2023-08-17 21:00:00,0.000000,27.800000,40.000000,7.000000,95.000000,89.830000,60.340000,822.240000,5.950000,101.970000,22.210000 -5,2023-08-17 22:00:00,0.000000,27.800000,40.000000,7.000000,95.000000,89.940000,60.340000,822.240000,6.040000,101.970000,22.460000 -5,2023-08-17 23:00:00,0.500000,18.800000,87.000000,8.000000,315.000000,88.540000,60.340000,822.240000,5.200000,101.970000,20.160000 -5,2023-08-18 00:00:00,0.000000,18.800000,87.000000,8.000000,315.000000,87.360000,60.340000,822.240000,4.390000,101.970000,17.830000 -5,2023-08-18 01:00:00,0.000000,18.800000,87.000000,8.000000,315.000000,86.380000,60.340000,822.240000,3.820000,101.970000,16.060000 -5,2023-08-18 02:00:00,0.000000,18.800000,87.000000,8.000000,315.000000,85.550000,60.340000,822.240000,3.400000,101.970000,14.700000 -5,2023-08-18 03:00:00,0.000000,18.800000,87.000000,8.000000,315.000000,84.860000,60.340000,822.240000,3.090000,101.970000,13.640000 -5,2023-08-18 04:00:00,0.000000,18.800000,87.000000,8.000000,315.000000,84.270000,60.340000,822.240000,2.850000,101.970000,12.810000 -5,2023-08-18 05:00:00,0.150000,16.600000,95.000000,12.000000,294.000000,83.130000,60.340000,822.240000,3.000000,101.970000,13.340000 -5,2023-08-18 06:00:00,0.000000,16.600000,95.000000,12.000000,294.000000,82.170000,60.360000,822.380000,2.660000,102.000000,12.130000 -5,2023-08-18 07:00:00,0.000000,16.600000,95.000000,12.000000,294.000000,81.370000,60.380000,822.520000,2.420000,102.030000,11.230000 -5,2023-08-18 08:00:00,0.000000,16.600000,95.000000,12.000000,294.000000,80.690000,60.400000,822.660000,2.240000,102.060000,10.550000 -5,2023-08-18 09:00:00,0.000000,16.600000,95.000000,12.000000,294.000000,80.120000,60.420000,822.810000,2.110000,102.090000,10.030000 -5,2023-08-18 10:00:00,0.000000,16.600000,95.000000,12.000000,294.000000,79.640000,60.440000,822.950000,2.010000,102.120000,9.620000 -5,2023-08-18 11:00:00,0.180000,18.000000,78.000000,9.000000,290.000000,79.820000,60.530000,823.630000,1.760000,102.270000,8.590000 -5,2023-08-18 12:00:00,0.000000,18.000000,78.000000,9.000000,290.000000,79.980000,60.630000,824.320000,1.780000,102.420000,8.720000 -5,2023-08-18 13:00:00,0.000000,18.000000,78.000000,9.000000,290.000000,80.130000,60.720000,825.000000,1.810000,102.570000,8.850000 -5,2023-08-18 14:00:00,0.000000,18.000000,78.000000,9.000000,290.000000,80.270000,60.820000,825.690000,1.840000,102.720000,8.970000 -5,2023-08-18 15:00:00,0.000000,18.000000,78.000000,9.000000,290.000000,80.400000,60.910000,826.370000,1.870000,102.870000,9.080000 -5,2023-08-18 16:00:00,0.000000,18.000000,78.000000,9.000000,290.000000,80.520000,61.010000,827.060000,1.890000,103.010000,9.190000 -5,2023-08-18 17:00:00,0.000000,20.600000,61.000000,13.000000,317.000000,81.150000,61.200000,828.480000,2.480000,103.320000,11.540000 -6,2023-08-03 00:00:00,0.000000,15.800000,70.000000,5.000000,90.000000,85.850000,118.400000,826.100000,3.050000,174.330000,16.630000 -6,2023-08-03 01:00:00,0.000000,15.800000,70.000000,5.000000,90.000000,85.720000,118.400000,826.100000,2.990000,174.330000,16.410000 -6,2023-08-03 02:00:00,0.000000,13.800000,75.000000,5.000000,99.000000,85.460000,118.400000,826.100000,2.890000,174.330000,15.970000 -6,2023-08-03 03:00:00,0.000000,13.800000,75.000000,5.000000,99.000000,85.230000,118.400000,826.100000,2.800000,174.330000,15.590000 -6,2023-08-03 04:00:00,0.000000,13.800000,75.000000,5.000000,99.000000,85.030000,118.400000,826.100000,2.720000,174.330000,15.260000 -6,2023-08-03 05:00:00,0.000000,13.600000,71.000000,4.000000,105.000000,84.940000,118.460000,826.250000,2.550000,174.410000,14.550000 -6,2023-08-03 06:00:00,0.000000,13.600000,71.000000,4.000000,105.000000,84.860000,118.520000,826.400000,2.530000,174.480000,14.430000 -6,2023-08-03 07:00:00,0.000000,13.600000,71.000000,4.000000,105.000000,84.790000,118.580000,826.550000,2.500000,174.550000,14.320000 -6,2023-08-03 08:00:00,0.000000,17.600000,53.000000,4.000000,106.000000,84.960000,118.700000,826.860000,2.560000,174.700000,14.580000 -6,2023-08-03 09:00:00,0.000000,17.600000,53.000000,4.000000,106.000000,85.110000,118.820000,827.180000,2.610000,174.850000,14.810000 -6,2023-08-03 10:00:00,0.000000,17.600000,53.000000,4.000000,106.000000,85.240000,118.950000,827.490000,2.660000,175.010000,15.020000 -6,2023-08-03 11:00:00,0.000000,22.700000,43.000000,8.000000,88.000000,85.780000,119.150000,828.010000,3.510000,175.260000,18.500000 -6,2023-08-03 12:00:00,0.000000,22.700000,43.000000,8.000000,88.000000,86.250000,119.360000,828.530000,3.750000,175.510000,19.420000 -6,2023-08-03 13:00:00,0.000000,22.700000,43.000000,8.000000,88.000000,86.650000,119.570000,829.050000,3.970000,175.760000,20.240000 -6,2023-08-03 14:00:00,0.640000,23.200000,43.000000,8.000000,61.000000,78.540000,119.780000,829.590000,1.480000,176.020000,9.360000 -6,2023-08-03 15:00:00,0.000000,23.200000,43.000000,8.000000,61.000000,80.020000,119.990000,830.120000,1.700000,176.280000,10.560000 -6,2023-08-03 16:00:00,0.000000,23.200000,43.000000,8.000000,61.000000,81.310000,120.200000,830.660000,1.960000,176.540000,11.860000 -6,2023-08-03 17:00:00,0.800000,23.200000,45.000000,8.000000,72.000000,72.630000,120.410000,831.180000,1.030000,176.790000,6.790000 -6,2023-08-03 18:00:00,0.000000,23.200000,45.000000,8.000000,72.000000,74.770000,120.610000,831.700000,1.130000,177.040000,7.430000 -6,2023-08-03 19:00:00,0.000000,23.200000,45.000000,8.000000,72.000000,76.660000,120.820000,832.220000,1.270000,177.290000,8.240000 -6,2023-08-03 20:00:00,0.000000,21.900000,44.000000,6.000000,91.000000,78.170000,121.010000,832.700000,1.290000,177.520000,8.360000 -6,2023-08-03 21:00:00,0.000000,21.900000,44.000000,6.000000,91.000000,79.510000,121.200000,833.190000,1.460000,177.760000,9.310000 -6,2023-08-03 22:00:00,0.000000,21.900000,44.000000,6.000000,91.000000,80.680000,121.200000,833.190000,1.650000,177.760000,10.320000 -6,2023-08-03 23:00:00,0.000000,16.300000,64.000000,6.000000,105.000000,81.010000,121.200000,833.190000,1.710000,177.760000,10.640000 -6,2023-08-04 00:00:00,0.000000,16.300000,64.000000,6.000000,105.000000,81.300000,121.200000,833.190000,1.770000,177.760000,10.940000 -6,2023-08-04 01:00:00,0.000000,16.300000,64.000000,6.000000,105.000000,81.570000,121.200000,833.190000,1.830000,177.760000,11.220000 -6,2023-08-04 02:00:00,0.000000,13.500000,78.000000,3.000000,234.000000,81.570000,121.200000,833.190000,1.570000,177.760000,9.900000 -6,2023-08-04 03:00:00,0.000000,13.500000,78.000000,3.000000,234.000000,81.570000,121.200000,833.190000,1.570000,177.760000,9.900000 -6,2023-08-04 04:00:00,0.000000,13.500000,78.000000,3.000000,234.000000,81.570000,121.200000,833.190000,1.570000,177.760000,9.900000 -6,2023-08-04 05:00:00,0.000000,11.900000,96.000000,5.000000,280.000000,80.890000,121.210000,833.210000,1.610000,177.770000,10.090000 -6,2023-08-04 06:00:00,0.000000,11.900000,96.000000,5.000000,280.000000,80.290000,121.220000,833.230000,1.510000,177.780000,9.540000 -6,2023-08-04 07:00:00,0.000000,11.900000,96.000000,5.000000,280.000000,79.760000,121.220000,833.250000,1.430000,177.780000,9.110000 -6,2023-08-04 08:00:00,0.010000,16.800000,78.000000,7.000000,284.000000,79.890000,121.280000,833.410000,1.600000,177.850000,10.040000 -6,2023-08-04 09:00:00,0.000000,16.800000,78.000000,7.000000,284.000000,80.020000,121.330000,833.570000,1.620000,177.920000,10.150000 -6,2023-08-04 10:00:00,0.000000,16.800000,78.000000,7.000000,284.000000,80.140000,121.390000,833.720000,1.640000,177.990000,10.260000 -6,2023-08-04 11:00:00,0.000000,22.800000,50.000000,9.000000,308.000000,81.180000,121.570000,834.240000,2.040000,178.210000,12.230000 -6,2023-08-04 12:00:00,0.000000,22.800000,50.000000,9.000000,308.000000,82.090000,121.750000,834.760000,2.270000,178.430000,13.320000 -6,2023-08-04 13:00:00,0.000000,22.800000,50.000000,9.000000,308.000000,82.880000,121.930000,835.280000,2.500000,178.660000,14.380000 -6,2023-08-04 14:00:00,0.000000,24.800000,39.000000,14.000000,321.000000,84.120000,122.170000,835.990000,3.780000,178.960000,19.620000 -6,2023-08-04 15:00:00,0.000000,24.800000,39.000000,14.000000,321.000000,85.160000,122.420000,836.710000,4.360000,179.270000,21.730000 -6,2023-08-04 16:00:00,0.000000,24.800000,39.000000,14.000000,321.000000,86.030000,122.670000,837.420000,4.920000,179.570000,23.670000 -6,2023-08-04 17:00:00,0.000000,24.300000,45.000000,16.000000,325.000000,86.530000,122.880000,838.040000,5.830000,179.840000,26.680000 -6,2023-08-04 18:00:00,0.000000,24.300000,45.000000,16.000000,325.000000,86.940000,123.100000,838.670000,6.190000,180.110000,27.790000 -6,2023-08-04 19:00:00,0.000000,24.300000,45.000000,16.000000,325.000000,87.290000,123.320000,839.290000,6.500000,180.380000,28.750000 -6,2023-08-04 20:00:00,0.000000,23.000000,52.000000,15.000000,324.000000,87.320000,123.490000,839.790000,6.210000,180.590000,27.870000 -6,2023-08-04 21:00:00,0.000000,23.000000,52.000000,15.000000,324.000000,87.350000,123.670000,840.300000,6.240000,180.810000,27.950000 -6,2023-08-04 22:00:00,0.000000,23.000000,52.000000,15.000000,324.000000,87.370000,123.670000,840.300000,6.260000,180.810000,28.020000 -6,2023-08-04 23:00:00,0.000000,18.600000,69.000000,6.000000,298.000000,87.110000,123.670000,840.300000,3.830000,180.810000,19.820000 -6,2023-08-05 00:00:00,0.000000,18.600000,69.000000,6.000000,298.000000,86.880000,123.670000,840.300000,3.700000,180.810000,19.360000 -6,2023-08-05 01:00:00,0.000000,18.600000,69.000000,6.000000,298.000000,86.680000,123.670000,840.300000,3.600000,180.810000,18.960000 -6,2023-08-05 02:00:00,0.000000,16.100000,81.000000,6.000000,267.000000,86.120000,123.670000,840.300000,3.330000,180.810000,17.890000 -6,2023-08-05 03:00:00,0.000000,16.100000,81.000000,6.000000,267.000000,85.630000,123.670000,840.300000,3.110000,180.810000,17.010000 -6,2023-08-05 04:00:00,0.000000,16.100000,81.000000,6.000000,267.000000,85.210000,123.670000,840.300000,2.930000,180.810000,16.280000 -6,2023-08-05 05:00:00,0.000000,14.500000,92.000000,6.000000,251.000000,84.310000,123.700000,840.400000,2.590000,180.850000,14.830000 -6,2023-08-05 06:00:00,0.000000,14.500000,92.000000,6.000000,251.000000,83.530000,123.730000,840.500000,2.340000,180.890000,13.680000 -6,2023-08-05 07:00:00,0.000000,14.500000,92.000000,6.000000,251.000000,82.850000,123.770000,840.600000,2.140000,180.930000,12.780000 -6,2023-08-05 08:00:00,0.000000,19.200000,70.000000,2.000000,242.000000,82.920000,123.930000,841.110000,1.770000,181.140000,10.940000 -6,2023-08-05 09:00:00,0.000000,19.200000,70.000000,2.000000,242.000000,82.980000,124.100000,841.620000,1.780000,181.350000,11.010000 -6,2023-08-05 10:00:00,0.000000,19.200000,70.000000,2.000000,242.000000,83.030000,124.260000,842.130000,1.790000,181.550000,11.080000 -6,2023-08-05 11:00:00,0.000000,22.700000,53.000000,6.000000,70.000000,83.560000,124.590000,843.120000,2.350000,181.950000,13.750000 -6,2023-08-05 12:00:00,0.000000,22.700000,53.000000,6.000000,70.000000,84.030000,124.910000,844.100000,2.500000,182.350000,14.420000 -6,2023-08-05 13:00:00,0.000000,22.700000,53.000000,6.000000,70.000000,84.440000,125.230000,845.090000,2.640000,182.760000,15.050000 -6,2023-08-05 14:00:00,2.140000,20.000000,86.000000,15.000000,27.000000,52.270000,94.340000,828.300000,0.450000,146.860000,2.590000 -6,2023-08-05 15:00:00,0.000000,20.000000,86.000000,15.000000,27.000000,53.970000,94.420000,828.550000,0.540000,146.970000,3.240000 -6,2023-08-05 16:00:00,0.000000,20.000000,86.000000,15.000000,27.000000,55.590000,94.500000,828.790000,0.630000,147.070000,3.850000 -6,2023-08-05 17:00:00,0.000000,19.800000,76.000000,13.000000,52.000000,57.800000,94.640000,829.220000,0.680000,147.260000,4.210000 -6,2023-08-05 18:00:00,0.000000,19.800000,76.000000,13.000000,52.000000,59.870000,94.770000,829.640000,0.780000,147.440000,4.890000 -6,2023-08-05 19:00:00,0.000000,19.800000,76.000000,13.000000,52.000000,61.790000,94.910000,830.060000,0.870000,147.620000,5.480000 -6,2023-08-05 20:00:00,1.320000,17.700000,91.000000,10.000000,77.000000,46.720000,82.870000,819.690000,0.180000,132.310000,0.580000 -6,2023-08-05 21:00:00,0.000000,17.700000,91.000000,10.000000,77.000000,47.790000,82.920000,819.830000,0.200000,132.370000,0.680000 -6,2023-08-05 22:00:00,0.000000,17.700000,91.000000,10.000000,77.000000,48.840000,82.920000,819.830000,0.230000,132.370000,0.780000 -6,2023-08-05 23:00:00,0.580000,16.600000,97.000000,3.000000,117.000000,43.290000,78.460000,815.210000,0.070000,126.480000,0.230000 -6,2023-08-06 00:00:00,0.000000,16.600000,97.000000,3.000000,117.000000,43.560000,78.460000,815.210000,0.080000,126.480000,0.250000 -6,2023-08-06 01:00:00,0.000000,16.600000,97.000000,3.000000,117.000000,43.830000,78.460000,815.210000,0.080000,126.480000,0.260000 -6,2023-08-06 02:00:00,0.000000,15.600000,97.000000,2.000000,209.000000,44.060000,78.460000,815.210000,0.080000,126.480000,0.250000 -6,2023-08-06 03:00:00,0.000000,15.600000,97.000000,2.000000,209.000000,44.290000,78.460000,815.210000,0.080000,126.480000,0.260000 -6,2023-08-06 04:00:00,0.000000,15.600000,97.000000,2.000000,209.000000,44.520000,78.460000,815.210000,0.080000,126.480000,0.270000 -6,2023-08-06 05:00:00,0.000000,13.300000,98.000000,2.000000,7.000000,44.660000,78.460000,815.220000,0.090000,126.490000,0.280000 -6,2023-08-06 06:00:00,0.000000,13.300000,98.000000,2.000000,7.000000,44.800000,78.460000,815.230000,0.090000,126.490000,0.280000 -6,2023-08-06 07:00:00,0.000000,13.300000,98.000000,2.000000,7.000000,44.940000,78.470000,815.240000,0.090000,126.500000,0.290000 -6,2023-08-06 08:00:00,0.000000,15.700000,93.000000,5.000000,39.000000,45.600000,78.480000,815.290000,0.120000,126.520000,0.370000 -6,2023-08-06 09:00:00,0.000000,15.700000,93.000000,5.000000,39.000000,46.260000,78.500000,815.340000,0.130000,126.540000,0.410000 -6,2023-08-06 10:00:00,0.000000,15.700000,93.000000,5.000000,39.000000,46.900000,78.510000,815.390000,0.140000,126.560000,0.450000 -6,2023-08-06 11:00:00,0.000000,20.600000,55.000000,10.000000,52.000000,50.760000,78.650000,815.840000,0.300000,126.750000,0.960000 -6,2023-08-06 12:00:00,0.000000,20.600000,55.000000,10.000000,52.000000,54.360000,78.780000,816.280000,0.430000,126.930000,2.210000 -6,2023-08-06 13:00:00,0.000000,20.600000,55.000000,10.000000,52.000000,57.700000,78.910000,816.720000,0.580000,127.120000,3.230000 -6,2023-08-06 14:00:00,0.000000,22.600000,40.000000,15.000000,53.000000,62.050000,79.110000,817.380000,0.980000,127.400000,5.710000 -6,2023-08-06 15:00:00,0.000000,22.600000,40.000000,15.000000,53.000000,65.940000,79.310000,818.050000,1.160000,127.670000,6.730000 -6,2023-08-06 16:00:00,0.000000,22.600000,40.000000,15.000000,53.000000,69.360000,79.510000,818.710000,1.300000,127.950000,7.480000 -6,2023-08-06 17:00:00,0.000000,22.300000,35.000000,15.000000,59.000000,72.530000,79.720000,819.420000,1.450000,128.250000,8.240000 -6,2023-08-06 18:00:00,0.000000,22.300000,35.000000,15.000000,59.000000,75.280000,79.930000,820.130000,1.660000,128.550000,9.240000 -6,2023-08-06 19:00:00,0.000000,22.300000,35.000000,15.000000,59.000000,77.650000,80.150000,820.840000,1.950000,128.840000,10.600000 -6,2023-08-06 20:00:00,0.000000,19.500000,41.000000,9.000000,76.000000,79.080000,80.310000,821.380000,1.630000,129.070000,9.140000 -6,2023-08-06 21:00:00,0.000000,19.500000,41.000000,9.000000,76.000000,80.340000,80.470000,821.920000,1.850000,129.300000,10.180000 -6,2023-08-06 22:00:00,0.000000,19.500000,41.000000,9.000000,76.000000,81.440000,80.470000,821.920000,2.100000,129.300000,11.270000 -6,2023-08-06 23:00:00,0.000000,13.600000,62.000000,4.000000,73.000000,81.660000,80.470000,821.920000,1.670000,129.300000,9.340000 -6,2023-08-07 00:00:00,0.000000,13.600000,62.000000,4.000000,73.000000,81.860000,80.470000,821.920000,1.710000,129.300000,9.530000 -6,2023-08-07 01:00:00,0.000000,13.600000,62.000000,4.000000,73.000000,82.050000,80.470000,821.920000,1.750000,129.300000,9.710000 -6,2023-08-07 02:00:00,0.000000,10.800000,76.000000,1.000000,108.000000,82.050000,80.470000,821.920000,1.510000,129.300000,8.530000 -6,2023-08-07 03:00:00,0.000000,10.800000,76.000000,1.000000,108.000000,82.050000,80.470000,821.920000,1.510000,129.300000,8.530000 -6,2023-08-07 04:00:00,0.000000,10.800000,76.000000,1.000000,108.000000,82.050000,80.470000,821.920000,1.510000,129.300000,8.530000 -6,2023-08-07 05:00:00,0.000000,9.700000,79.000000,2.000000,188.000000,82.040000,80.510000,822.000000,1.580000,129.340000,8.910000 -6,2023-08-07 06:00:00,0.000000,9.700000,79.000000,2.000000,188.000000,82.030000,80.540000,822.070000,1.580000,129.390000,8.900000 -6,2023-08-07 07:00:00,0.000000,9.700000,79.000000,2.000000,188.000000,82.020000,80.570000,822.150000,1.580000,129.430000,8.890000 -6,2023-08-07 08:00:00,0.000000,14.700000,57.000000,3.000000,107.000000,82.280000,80.670000,822.380000,1.710000,129.560000,9.550000 -6,2023-08-07 09:00:00,0.000000,14.700000,57.000000,3.000000,107.000000,82.530000,80.760000,822.600000,1.770000,129.690000,9.800000 -6,2023-08-07 10:00:00,0.000000,14.700000,57.000000,3.000000,107.000000,82.750000,80.860000,822.830000,1.820000,129.820000,10.040000 -6,2023-08-07 11:00:00,0.000000,20.500000,36.000000,11.000000,99.000000,83.800000,81.060000,823.310000,3.120000,130.100000,15.430000 -6,2023-08-07 12:00:00,0.000000,20.500000,36.000000,11.000000,99.000000,84.700000,81.270000,823.790000,3.510000,130.380000,16.910000 -6,2023-08-07 13:00:00,0.000000,20.500000,36.000000,11.000000,99.000000,85.470000,81.470000,824.270000,3.910000,130.660000,18.320000 -6,2023-08-07 14:00:00,0.000000,22.400000,30.000000,14.000000,71.000000,86.480000,81.730000,824.860000,5.240000,131.000000,22.650000 -6,2023-08-07 15:00:00,0.000000,22.400000,30.000000,14.000000,71.000000,87.320000,81.980000,825.450000,5.910000,131.340000,24.670000 -6,2023-08-07 16:00:00,0.000000,22.400000,30.000000,14.000000,71.000000,88.030000,82.230000,826.040000,6.530000,131.690000,26.490000 -6,2023-08-07 17:00:00,0.000000,21.900000,30.000000,16.000000,56.000000,88.610000,82.470000,826.610000,7.850000,132.020000,30.060000 -6,2023-08-07 18:00:00,0.000000,21.900000,30.000000,16.000000,56.000000,89.090000,82.720000,827.180000,8.420000,132.350000,31.530000 -6,2023-08-07 19:00:00,0.000000,21.900000,30.000000,16.000000,56.000000,89.490000,82.960000,827.760000,8.920000,132.680000,32.790000 -6,2023-08-07 20:00:00,0.000000,19.100000,38.000000,14.000000,49.000000,89.490000,83.140000,828.180000,8.060000,132.930000,30.670000 -6,2023-08-07 21:00:00,0.000000,19.100000,38.000000,14.000000,49.000000,89.490000,83.330000,828.610000,8.060000,133.170000,30.690000 -6,2023-08-07 22:00:00,0.000000,19.100000,38.000000,14.000000,49.000000,89.490000,83.330000,828.610000,8.060000,133.170000,30.690000 -6,2023-08-07 23:00:00,0.000000,14.100000,56.000000,6.000000,32.000000,89.220000,83.330000,828.610000,5.180000,133.170000,22.610000 -6,2023-08-08 00:00:00,0.000000,14.100000,56.000000,6.000000,32.000000,88.970000,83.330000,828.610000,5.000000,133.170000,22.060000 -6,2023-08-08 01:00:00,0.000000,14.100000,56.000000,6.000000,32.000000,88.760000,83.330000,828.610000,4.850000,133.170000,21.570000 -6,2023-08-08 02:00:00,0.000000,11.600000,63.000000,4.000000,108.000000,88.430000,83.330000,828.610000,4.180000,133.170000,19.390000 -6,2023-08-08 03:00:00,0.000000,11.600000,63.000000,4.000000,108.000000,88.130000,83.330000,828.610000,4.010000,133.170000,18.790000 -6,2023-08-08 04:00:00,0.000000,11.600000,63.000000,4.000000,108.000000,87.860000,83.330000,828.610000,3.860000,133.170000,18.270000 -6,2023-08-08 05:00:00,0.000000,10.700000,65.000000,3.000000,166.000000,87.590000,83.380000,828.740000,3.520000,133.240000,17.090000 -6,2023-08-08 06:00:00,0.000000,10.700000,65.000000,3.000000,166.000000,87.340000,83.430000,828.870000,3.400000,133.310000,16.650000 -6,2023-08-08 07:00:00,0.000000,10.700000,65.000000,3.000000,166.000000,87.110000,83.480000,829.000000,3.290000,133.380000,16.250000 -6,2023-08-08 08:00:00,0.000000,13.800000,53.000000,2.000000,144.000000,87.110000,83.570000,829.210000,3.130000,133.500000,15.650000 -6,2023-08-08 09:00:00,0.000000,13.800000,53.000000,2.000000,144.000000,87.110000,83.650000,829.420000,3.130000,133.620000,15.650000 -6,2023-08-08 10:00:00,0.000000,13.800000,53.000000,2.000000,144.000000,87.110000,83.740000,829.640000,3.130000,133.730000,15.660000 -6,2023-08-08 11:00:00,0.000000,19.100000,38.000000,7.000000,123.000000,87.400000,83.900000,830.030000,4.200000,133.950000,19.490000 -6,2023-08-08 12:00:00,0.000000,19.100000,38.000000,7.000000,123.000000,87.660000,84.050000,830.420000,4.360000,134.160000,20.020000 -6,2023-08-08 13:00:00,0.000000,19.100000,38.000000,7.000000,123.000000,87.880000,84.210000,830.820000,4.500000,134.370000,20.500000 -6,2023-08-08 14:00:00,0.000000,21.800000,30.000000,9.000000,102.000000,88.420000,84.420000,831.340000,5.370000,134.660000,23.300000 -6,2023-08-08 15:00:00,0.000000,21.800000,30.000000,9.000000,102.000000,88.880000,84.630000,831.870000,5.740000,134.940000,24.420000 -6,2023-08-08 16:00:00,0.000000,21.800000,30.000000,9.000000,102.000000,89.270000,84.840000,832.390000,6.070000,135.230000,25.410000 -6,2023-08-08 17:00:00,0.000000,22.900000,28.000000,12.000000,79.000000,89.730000,85.080000,832.970000,7.550000,135.540000,29.530000 -6,2023-08-08 18:00:00,0.000000,22.900000,28.000000,12.000000,79.000000,90.120000,85.310000,833.550000,7.980000,135.850000,30.680000 -6,2023-08-08 19:00:00,0.000000,22.900000,28.000000,12.000000,79.000000,90.440000,85.540000,834.120000,8.350000,136.170000,31.670000 -6,2023-08-08 20:00:00,0.000000,20.800000,34.000000,11.000000,56.000000,90.440000,85.720000,834.590000,7.940000,136.420000,30.630000 -6,2023-08-08 21:00:00,0.000000,20.800000,34.000000,11.000000,56.000000,90.440000,85.910000,835.050000,7.940000,136.670000,30.650000 -6,2023-08-08 22:00:00,0.000000,20.800000,34.000000,11.000000,56.000000,90.440000,85.910000,835.050000,7.940000,136.670000,30.650000 -6,2023-08-08 23:00:00,0.000000,15.600000,50.000000,7.000000,62.000000,90.190000,85.910000,835.050000,6.270000,136.670000,26.080000 -6,2023-08-09 00:00:00,0.000000,15.600000,50.000000,7.000000,62.000000,89.980000,85.910000,835.050000,6.070000,136.670000,25.520000 -6,2023-08-09 01:00:00,0.000000,15.600000,50.000000,7.000000,62.000000,89.780000,85.910000,835.050000,5.910000,136.670000,25.020000 -6,2023-08-09 02:00:00,0.000000,12.500000,52.000000,7.000000,134.000000,89.540000,85.910000,835.050000,5.700000,136.670000,24.420000 -6,2023-08-09 03:00:00,0.000000,12.500000,52.000000,7.000000,134.000000,89.320000,85.910000,835.050000,5.530000,136.670000,23.890000 -6,2023-08-09 04:00:00,0.000000,12.500000,52.000000,7.000000,134.000000,89.120000,85.910000,835.050000,5.370000,136.670000,23.420000 -6,2023-08-09 05:00:00,0.000000,9.700000,62.000000,3.000000,122.000000,88.780000,85.960000,835.170000,4.180000,136.740000,19.580000 -6,2023-08-09 06:00:00,0.000000,9.700000,62.000000,3.000000,122.000000,88.470000,86.020000,835.290000,4.000000,136.810000,18.960000 -6,2023-08-09 07:00:00,0.000000,9.700000,62.000000,3.000000,122.000000,88.190000,86.070000,835.410000,3.840000,136.880000,18.410000 -6,2023-08-09 08:00:00,0.000000,15.400000,48.000000,7.000000,110.000000,88.190000,86.170000,835.640000,4.700000,137.020000,21.320000 -6,2023-08-09 09:00:00,0.000000,15.400000,48.000000,7.000000,110.000000,88.190000,86.270000,835.880000,4.700000,137.160000,21.320000 -6,2023-08-09 10:00:00,0.000000,15.400000,48.000000,7.000000,110.000000,88.190000,86.380000,836.110000,4.700000,137.290000,21.330000 -6,2023-08-09 11:00:00,0.000000,22.000000,36.000000,8.000000,113.000000,88.490000,86.570000,836.550000,5.160000,137.550000,22.820000 -6,2023-08-09 12:00:00,0.000000,22.000000,36.000000,8.000000,113.000000,88.750000,86.760000,836.990000,5.360000,137.810000,23.440000 -6,2023-08-09 13:00:00,0.000000,22.000000,36.000000,8.000000,113.000000,88.970000,86.950000,837.430000,5.530000,138.070000,23.980000 -6,2023-08-09 14:00:00,0.000000,24.800000,28.000000,11.000000,104.000000,89.560000,87.210000,838.010000,7.010000,138.410000,28.270000 -6,2023-08-09 15:00:00,0.000000,24.800000,28.000000,11.000000,104.000000,90.060000,87.460000,838.590000,7.520000,138.750000,29.680000 -6,2023-08-09 16:00:00,0.000000,24.800000,28.000000,11.000000,104.000000,90.460000,87.720000,839.180000,7.970000,139.090000,30.890000 -6,2023-08-09 17:00:00,0.000000,25.400000,27.000000,14.000000,106.000000,90.880000,87.990000,839.790000,9.830000,139.450000,35.570000 -6,2023-08-09 18:00:00,0.000000,25.400000,27.000000,14.000000,106.000000,91.210000,88.260000,840.400000,10.320000,139.810000,36.740000 -6,2023-08-09 19:00:00,0.000000,25.400000,27.000000,14.000000,106.000000,91.490000,88.520000,841.010000,10.720000,140.160000,37.710000 -6,2023-08-09 20:00:00,0.000000,23.000000,31.000000,13.000000,112.000000,91.490000,88.740000,841.520000,10.200000,140.460000,36.510000 -6,2023-08-09 21:00:00,0.000000,23.000000,31.000000,13.000000,112.000000,91.490000,88.960000,842.020000,10.200000,140.750000,36.530000 -6,2023-08-09 22:00:00,0.000000,23.000000,31.000000,13.000000,112.000000,91.490000,88.960000,842.020000,10.200000,140.750000,36.530000 -6,2023-08-09 23:00:00,0.000000,18.600000,41.000000,10.000000,133.000000,91.340000,88.960000,842.020000,8.590000,140.750000,32.600000 -6,2023-08-10 00:00:00,0.000000,18.600000,41.000000,10.000000,133.000000,91.210000,88.960000,842.020000,8.430000,140.750000,32.210000 -6,2023-08-10 01:00:00,0.000000,18.600000,41.000000,10.000000,133.000000,91.100000,88.960000,842.020000,8.290000,140.750000,31.860000 -6,2023-08-10 02:00:00,0.000000,14.900000,54.000000,6.000000,148.000000,90.700000,88.960000,842.020000,6.400000,140.750000,26.730000 -6,2023-08-10 03:00:00,0.000000,14.900000,54.000000,6.000000,148.000000,90.340000,88.960000,842.020000,6.090000,140.750000,25.810000 -6,2023-08-10 04:00:00,0.000000,14.900000,54.000000,6.000000,148.000000,90.030000,88.960000,842.020000,5.820000,140.750000,25.010000 -6,2023-08-10 05:00:00,0.000000,11.500000,71.000000,5.000000,126.000000,89.380000,89.010000,842.130000,5.040000,140.820000,22.610000 -6,2023-08-10 06:00:00,0.000000,11.500000,71.000000,5.000000,126.000000,88.800000,89.060000,842.250000,4.640000,140.880000,21.320000 -6,2023-08-10 07:00:00,0.000000,11.500000,71.000000,5.000000,126.000000,88.290000,89.110000,842.360000,4.310000,140.950000,20.220000 -6,2023-08-10 08:00:00,0.000000,17.200000,51.000000,9.000000,111.000000,88.280000,89.230000,842.650000,5.270000,141.110000,23.350000 -6,2023-08-10 09:00:00,0.000000,17.200000,51.000000,9.000000,111.000000,88.280000,89.360000,842.930000,5.270000,141.270000,23.350000 -6,2023-08-10 10:00:00,0.000000,17.200000,51.000000,9.000000,111.000000,88.270000,89.480000,843.210000,5.260000,141.430000,23.350000 -6,2023-08-10 11:00:00,0.000000,22.800000,38.000000,16.000000,114.000000,88.570000,89.700000,843.720000,7.810000,141.720000,30.670000 -6,2023-08-10 12:00:00,0.000000,22.800000,38.000000,16.000000,114.000000,88.810000,89.910000,844.220000,8.090000,142.010000,31.410000 -6,2023-08-10 13:00:00,0.000000,22.800000,38.000000,16.000000,114.000000,89.010000,90.130000,844.730000,8.320000,142.300000,32.050000 -6,2023-08-10 14:00:00,0.000000,24.900000,32.000000,17.000000,125.000000,89.490000,90.400000,845.360000,9.370000,142.660000,34.710000 -6,2023-08-10 15:00:00,0.000000,24.900000,32.000000,17.000000,125.000000,89.870000,90.670000,845.990000,9.910000,143.020000,36.030000 -6,2023-08-10 16:00:00,0.000000,24.900000,32.000000,17.000000,125.000000,90.190000,90.940000,846.620000,10.360000,143.380000,37.130000 -6,2023-08-10 17:00:00,0.000000,24.600000,31.000000,15.000000,127.000000,90.460000,91.210000,847.240000,9.750000,143.740000,35.690000 -6,2023-08-10 18:00:00,0.000000,24.600000,31.000000,15.000000,127.000000,90.690000,91.480000,847.870000,10.060000,144.100000,36.480000 -6,2023-08-10 19:00:00,0.000000,24.600000,31.000000,15.000000,127.000000,90.870000,91.750000,848.500000,10.330000,144.450000,37.130000 -6,2023-08-10 20:00:00,0.000000,24.600000,31.000000,15.000000,127.000000,91.020000,92.020000,849.130000,10.550000,144.810000,37.680000 -6,2023-08-10 21:00:00,0.000000,24.600000,31.000000,15.000000,127.000000,91.140000,92.020000,849.130000,10.730000,144.810000,38.100000 -6,2023-08-10 22:00:00,0.000000,24.600000,31.000000,15.000000,127.000000,91.240000,92.020000,849.130000,10.880000,144.810000,38.450000 -6,2023-08-10 23:00:00,0.010000,18.400000,54.000000,7.000000,156.000000,90.830000,92.020000,849.130000,6.860000,144.810000,28.280000 -6,2023-08-11 00:00:00,0.000000,18.400000,54.000000,7.000000,156.000000,90.470000,92.020000,849.130000,6.520000,144.810000,27.320000 -6,2023-08-11 01:00:00,0.000000,18.400000,54.000000,7.000000,156.000000,90.160000,92.020000,849.130000,6.240000,144.810000,26.490000 -6,2023-08-11 02:00:00,0.000000,18.400000,54.000000,7.000000,156.000000,89.890000,92.020000,849.130000,6.000000,144.810000,25.790000 -6,2023-08-11 03:00:00,0.000000,18.400000,54.000000,7.000000,156.000000,89.650000,92.020000,849.130000,5.800000,144.810000,25.180000 -6,2023-08-11 04:00:00,0.000000,18.400000,54.000000,7.000000,156.000000,89.440000,92.020000,849.130000,5.630000,144.810000,24.660000 -6,2023-08-11 05:00:00,0.000000,11.800000,88.000000,2.000000,148.000000,88.400000,92.050000,849.200000,3.770000,144.850000,18.500000 -6,2023-08-11 06:00:00,0.000000,11.800000,88.000000,2.000000,148.000000,87.470000,92.080000,849.270000,3.300000,144.880000,16.760000 -6,2023-08-11 07:00:00,0.000000,11.800000,88.000000,2.000000,148.000000,86.650000,92.100000,849.340000,2.930000,144.920000,15.340000 -6,2023-08-11 08:00:00,0.000000,11.800000,88.000000,2.000000,148.000000,85.910000,92.130000,849.410000,2.640000,144.950000,14.170000 -6,2023-08-11 09:00:00,0.000000,11.800000,88.000000,2.000000,148.000000,85.260000,92.160000,849.480000,2.410000,144.990000,13.190000 -6,2023-08-11 10:00:00,0.000000,11.800000,88.000000,2.000000,148.000000,84.670000,92.180000,849.550000,2.230000,145.030000,12.380000 -6,2023-08-11 11:00:00,0.000000,22.200000,45.000000,2.000000,321.000000,85.120000,92.420000,850.180000,2.370000,145.340000,13.010000 -6,2023-08-11 12:00:00,0.000000,22.200000,45.000000,2.000000,321.000000,85.520000,92.660000,850.810000,2.500000,145.660000,13.590000 -6,2023-08-11 13:00:00,0.000000,22.200000,45.000000,2.000000,321.000000,85.870000,92.890000,851.430000,2.630000,145.970000,14.130000 -6,2023-08-11 14:00:00,0.000000,22.200000,45.000000,2.000000,321.000000,86.180000,93.130000,852.060000,2.740000,146.290000,14.630000 -6,2023-08-11 15:00:00,0.000000,22.200000,45.000000,2.000000,321.000000,86.460000,93.370000,852.690000,2.850000,146.610000,15.080000 -6,2023-08-11 16:00:00,0.000000,22.200000,45.000000,2.000000,321.000000,86.700000,93.610000,853.320000,2.950000,146.920000,15.500000 -6,2023-08-11 17:00:00,0.000000,22.900000,41.000000,5.000000,237.000000,87.080000,93.870000,854.020000,3.620000,147.270000,18.080000 -6,2023-08-11 18:00:00,0.000000,22.900000,41.000000,5.000000,237.000000,87.400000,94.140000,854.720000,3.790000,147.630000,18.720000 -6,2023-08-11 19:00:00,0.000000,22.900000,41.000000,5.000000,237.000000,87.680000,94.400000,855.420000,3.950000,147.980000,19.290000 -6,2023-08-11 20:00:00,0.000000,22.900000,41.000000,5.000000,237.000000,87.920000,94.670000,856.130000,4.090000,148.330000,19.790000 -6,2023-08-11 21:00:00,0.000000,22.900000,41.000000,5.000000,237.000000,88.130000,94.670000,856.130000,4.210000,148.330000,20.230000 -6,2023-08-11 22:00:00,0.000000,22.900000,41.000000,5.000000,237.000000,88.310000,94.670000,856.130000,4.320000,148.330000,20.610000 -6,2023-08-11 23:00:00,2.350000,16.600000,85.000000,6.000000,205.000000,54.030000,77.510000,856.130000,0.340000,126.410000,1.450000 -6,2023-08-12 00:00:00,0.000000,16.600000,85.000000,6.000000,205.000000,55.170000,77.510000,856.130000,0.380000,126.410000,1.790000 -6,2023-08-12 01:00:00,0.000000,16.600000,85.000000,6.000000,205.000000,56.270000,77.510000,856.130000,0.420000,126.410000,2.100000 -6,2023-08-12 02:00:00,0.000000,16.600000,85.000000,6.000000,205.000000,57.330000,77.510000,856.130000,0.460000,126.410000,2.380000 -6,2023-08-12 03:00:00,0.000000,16.600000,85.000000,6.000000,205.000000,58.340000,77.510000,856.130000,0.490000,126.410000,2.640000 -6,2023-08-12 04:00:00,0.000000,16.600000,85.000000,6.000000,205.000000,59.320000,77.510000,856.130000,0.530000,126.410000,2.890000 -6,2023-08-12 05:00:00,0.150000,16.000000,93.000000,5.000000,218.000000,57.640000,76.560000,854.700000,0.450000,125.100000,2.270000 -6,2023-08-12 06:00:00,0.000000,16.000000,93.000000,5.000000,218.000000,58.090000,76.590000,854.810000,0.460000,125.140000,2.390000 -6,2023-08-12 07:00:00,0.000000,16.000000,93.000000,5.000000,218.000000,58.520000,76.610000,854.920000,0.480000,125.180000,2.490000 -6,2023-08-12 08:00:00,0.000000,16.000000,93.000000,5.000000,218.000000,58.950000,76.640000,855.030000,0.490000,125.220000,2.600000 -6,2023-08-12 09:00:00,0.000000,16.000000,93.000000,5.000000,218.000000,59.370000,76.670000,855.140000,0.510000,125.270000,2.700000 -6,2023-08-12 10:00:00,0.000000,16.000000,93.000000,5.000000,218.000000,59.780000,76.700000,855.250000,0.520000,125.310000,2.800000 -6,2023-08-12 11:00:00,0.080000,22.000000,62.000000,3.000000,218.000000,60.860000,76.370000,855.300000,0.500000,124.870000,2.660000 -6,2023-08-12 12:00:00,0.000000,22.000000,62.000000,3.000000,218.000000,62.940000,76.600000,856.180000,0.560000,125.200000,3.080000 -6,2023-08-12 13:00:00,0.000000,22.000000,62.000000,3.000000,218.000000,64.880000,76.830000,857.060000,0.610000,125.530000,3.420000 -6,2023-08-12 14:00:00,0.000000,22.000000,62.000000,3.000000,218.000000,66.680000,77.060000,857.930000,0.650000,125.850000,3.700000 -6,2023-08-12 15:00:00,0.000000,22.000000,62.000000,3.000000,218.000000,68.350000,77.290000,858.810000,0.690000,126.180000,3.950000 -6,2023-08-12 16:00:00,0.000000,22.000000,62.000000,3.000000,218.000000,69.890000,77.510000,859.690000,0.720000,126.510000,4.170000 -6,2023-08-12 17:00:00,9.050000,19.700000,87.000000,5.000000,215.000000,18.650000,42.150000,766.970000,0.000000,74.120000,0.000000 -6,2023-08-12 18:00:00,0.000000,19.700000,87.000000,5.000000,215.000000,20.460000,42.220000,767.230000,0.000000,74.230000,0.000000 -6,2023-08-12 19:00:00,0.000000,19.700000,87.000000,5.000000,215.000000,22.250000,42.290000,767.490000,0.000000,74.330000,0.000000 -6,2023-08-12 20:00:00,0.000000,19.700000,87.000000,5.000000,215.000000,24.020000,42.350000,767.750000,0.000000,74.440000,0.000000 -6,2023-08-12 21:00:00,0.000000,19.700000,87.000000,5.000000,215.000000,25.780000,42.350000,767.750000,0.000000,74.440000,0.000000 -6,2023-08-12 22:00:00,0.000000,19.700000,87.000000,5.000000,215.000000,27.520000,42.350000,767.750000,0.000000,74.440000,0.000000 -6,2023-08-12 23:00:00,0.000000,15.900000,99.000000,5.000000,231.000000,27.650000,42.350000,767.750000,0.000000,74.440000,0.010000 -6,2023-08-13 00:00:00,0.000000,15.900000,99.000000,5.000000,231.000000,27.790000,42.350000,767.750000,0.000000,74.440000,0.010000 -6,2023-08-13 01:00:00,0.000000,15.900000,99.000000,5.000000,231.000000,27.920000,42.350000,767.750000,0.000000,74.440000,0.010000 -6,2023-08-13 02:00:00,0.000000,15.900000,99.000000,5.000000,231.000000,28.050000,42.350000,767.750000,0.000000,74.440000,0.010000 -6,2023-08-13 03:00:00,0.000000,15.900000,99.000000,5.000000,231.000000,28.190000,42.350000,767.750000,0.000000,74.440000,0.010000 -6,2023-08-13 04:00:00,0.000000,15.900000,99.000000,5.000000,231.000000,28.320000,42.350000,767.750000,0.000000,74.440000,0.010000 -6,2023-08-13 05:00:00,0.020000,13.300000,98.000000,6.000000,210.000000,28.570000,42.360000,767.770000,0.000000,74.450000,0.010000 -6,2023-08-13 06:00:00,0.000000,13.300000,98.000000,6.000000,210.000000,28.830000,42.360000,767.780000,0.000000,74.450000,0.010000 -6,2023-08-13 07:00:00,0.000000,13.300000,98.000000,6.000000,210.000000,29.080000,42.370000,767.800000,0.000000,74.460000,0.010000 -6,2023-08-13 08:00:00,0.000000,13.300000,98.000000,6.000000,210.000000,29.330000,42.370000,767.810000,0.000000,74.470000,0.010000 -6,2023-08-13 09:00:00,0.000000,13.300000,98.000000,6.000000,210.000000,29.580000,42.370000,767.830000,0.000000,74.470000,0.010000 -6,2023-08-13 10:00:00,0.000000,13.300000,98.000000,6.000000,210.000000,29.830000,42.380000,767.840000,0.000000,74.480000,0.010000 -6,2023-08-13 11:00:00,0.000000,22.700000,60.000000,8.000000,188.000000,34.380000,42.520000,768.360000,0.020000,74.710000,0.040000 -6,2023-08-13 12:00:00,0.000000,22.700000,60.000000,8.000000,188.000000,38.760000,42.670000,768.890000,0.040000,74.940000,0.090000 -6,2023-08-13 13:00:00,0.000000,22.700000,60.000000,8.000000,188.000000,42.930000,42.810000,769.410000,0.090000,75.170000,0.200000 -6,2023-08-13 14:00:00,0.000000,22.700000,60.000000,8.000000,188.000000,46.890000,42.960000,769.930000,0.160000,75.400000,0.370000 -6,2023-08-13 15:00:00,0.000000,22.700000,60.000000,8.000000,188.000000,50.610000,43.100000,770.450000,0.260000,75.630000,0.600000 -6,2023-08-13 16:00:00,0.000000,22.700000,60.000000,8.000000,188.000000,54.080000,43.250000,770.980000,0.380000,75.860000,0.870000 -6,2023-08-13 17:00:00,0.000000,26.500000,41.000000,7.000000,196.000000,58.770000,43.520000,771.940000,0.540000,76.280000,1.760000 -6,2023-08-13 18:00:00,0.000000,26.500000,41.000000,7.000000,196.000000,63.000000,43.780000,772.910000,0.690000,76.700000,2.590000 -6,2023-08-13 19:00:00,0.000000,26.500000,41.000000,7.000000,196.000000,66.770000,44.050000,773.880000,0.800000,77.130000,3.180000 -6,2023-08-13 20:00:00,0.000000,26.500000,41.000000,7.000000,196.000000,70.100000,44.320000,774.840000,0.890000,77.550000,3.630000 -6,2023-08-13 21:00:00,0.000000,26.500000,41.000000,7.000000,196.000000,73.020000,44.320000,774.840000,0.990000,77.550000,4.080000 -6,2023-08-13 22:00:00,0.000000,26.500000,41.000000,7.000000,196.000000,75.550000,44.320000,774.840000,1.120000,77.550000,4.660000 -6,2023-08-13 23:00:00,0.000000,19.700000,66.000000,11.000000,182.000000,76.510000,44.320000,774.840000,1.460000,77.550000,6.060000 -6,2023-08-14 00:00:00,0.000000,19.700000,66.000000,11.000000,182.000000,77.370000,44.320000,774.840000,1.560000,77.550000,6.430000 -6,2023-08-14 01:00:00,0.000000,19.700000,66.000000,11.000000,182.000000,78.140000,44.320000,774.840000,1.660000,77.550000,6.820000 -6,2023-08-14 02:00:00,0.000000,19.700000,66.000000,11.000000,182.000000,78.840000,44.320000,774.840000,1.760000,77.550000,7.220000 -6,2023-08-14 03:00:00,0.000000,19.700000,66.000000,11.000000,182.000000,79.460000,44.320000,774.840000,1.870000,77.550000,7.620000 -6,2023-08-14 04:00:00,0.000000,19.700000,66.000000,11.000000,182.000000,80.010000,44.320000,774.840000,1.980000,77.550000,8.010000 -6,2023-08-14 05:00:00,0.000000,17.000000,71.000000,12.000000,184.000000,80.320000,44.390000,775.010000,2.150000,77.660000,8.610000 -6,2023-08-14 06:00:00,0.000000,17.000000,71.000000,12.000000,184.000000,80.590000,44.460000,775.180000,2.220000,77.770000,8.850000 -6,2023-08-14 07:00:00,0.000000,17.000000,71.000000,12.000000,184.000000,80.840000,44.530000,775.340000,2.280000,77.880000,9.070000 -6,2023-08-14 08:00:00,0.000000,17.000000,71.000000,12.000000,184.000000,81.070000,44.600000,775.510000,2.340000,77.990000,9.280000 -6,2023-08-14 09:00:00,0.000000,17.000000,71.000000,12.000000,184.000000,81.270000,44.670000,775.670000,2.390000,78.100000,9.470000 -6,2023-08-14 10:00:00,0.000000,17.000000,71.000000,12.000000,184.000000,81.460000,44.750000,775.840000,2.440000,78.210000,9.650000 -6,2023-08-14 11:00:00,0.000000,25.800000,41.000000,15.000000,190.000000,82.950000,44.990000,776.420000,3.410000,78.600000,12.720000 -6,2023-08-14 12:00:00,0.000000,25.800000,41.000000,15.000000,190.000000,84.190000,45.240000,777.000000,4.020000,78.990000,14.490000 -6,2023-08-14 13:00:00,0.000000,25.800000,41.000000,15.000000,190.000000,85.220000,45.490000,777.580000,4.620000,79.370000,16.170000 -6,2023-08-14 14:00:00,0.000000,25.800000,41.000000,15.000000,190.000000,86.070000,45.740000,778.150000,5.200000,79.760000,17.710000 -6,2023-08-14 15:00:00,0.000000,25.800000,41.000000,15.000000,190.000000,86.770000,45.990000,778.730000,5.740000,80.140000,19.090000 -6,2023-08-14 16:00:00,0.000000,25.800000,41.000000,15.000000,190.000000,87.340000,46.230000,779.310000,6.230000,80.520000,20.310000 -6,2023-08-14 17:00:00,0.000000,28.800000,32.000000,16.000000,189.000000,88.360000,46.570000,780.110000,7.590000,81.050000,23.450000 -6,2023-08-14 18:00:00,0.000000,28.800000,32.000000,16.000000,189.000000,89.170000,46.910000,780.900000,8.520000,81.580000,25.520000 -6,2023-08-14 19:00:00,0.000000,28.800000,32.000000,16.000000,189.000000,89.810000,47.260000,781.700000,9.340000,82.100000,27.280000 -6,2023-08-14 20:00:00,0.000000,28.800000,32.000000,16.000000,189.000000,90.320000,47.600000,782.490000,10.040000,82.630000,28.760000 -6,2023-08-14 21:00:00,0.000000,28.800000,32.000000,16.000000,189.000000,90.720000,47.600000,782.490000,10.630000,82.630000,29.890000 -6,2023-08-14 22:00:00,0.000000,28.800000,32.000000,16.000000,189.000000,91.030000,47.600000,782.490000,11.120000,82.630000,30.810000 -6,2023-08-14 23:00:00,0.000000,21.900000,53.000000,9.000000,209.000000,90.700000,47.600000,782.490000,7.450000,82.630000,23.380000 -6,2023-08-15 00:00:00,0.000000,21.900000,53.000000,9.000000,209.000000,90.410000,47.600000,782.490000,7.150000,82.630000,22.710000 -6,2023-08-15 01:00:00,0.000000,21.900000,53.000000,9.000000,209.000000,90.160000,47.600000,782.490000,6.900000,82.630000,22.150000 -6,2023-08-15 02:00:00,0.000000,21.900000,53.000000,9.000000,209.000000,89.950000,47.600000,782.490000,6.700000,82.630000,21.680000 -6,2023-08-15 03:00:00,0.000000,21.900000,53.000000,9.000000,209.000000,89.770000,47.600000,782.490000,6.530000,82.630000,21.290000 -6,2023-08-15 04:00:00,0.000000,21.900000,53.000000,9.000000,209.000000,89.620000,47.600000,782.490000,6.380000,82.630000,20.950000 -6,2023-08-15 05:00:00,0.000000,15.400000,73.000000,7.000000,233.000000,88.920000,47.660000,782.610000,5.220000,82.720000,18.100000 -6,2023-08-15 06:00:00,0.000000,15.400000,73.000000,7.000000,233.000000,88.310000,47.720000,782.730000,4.780000,82.810000,16.970000 -6,2023-08-15 07:00:00,0.000000,15.400000,73.000000,7.000000,233.000000,87.780000,47.780000,782.850000,4.430000,82.910000,16.040000 -6,2023-08-15 08:00:00,0.000000,15.400000,73.000000,7.000000,233.000000,87.310000,47.840000,782.970000,4.150000,83.000000,15.260000 -6,2023-08-15 09:00:00,0.000000,15.400000,73.000000,7.000000,233.000000,86.910000,47.900000,783.090000,3.910000,83.090000,14.620000 -6,2023-08-15 10:00:00,0.000000,15.400000,73.000000,7.000000,233.000000,86.560000,47.960000,783.210000,3.720000,83.180000,14.070000 -6,2023-08-15 11:00:00,0.000000,27.700000,32.000000,5.000000,129.000000,87.470000,48.280000,783.850000,3.830000,83.680000,14.440000 -6,2023-08-15 12:00:00,0.000000,27.700000,32.000000,5.000000,129.000000,88.230000,48.610000,784.490000,4.270000,84.170000,15.750000 -6,2023-08-15 13:00:00,0.000000,27.700000,32.000000,5.000000,129.000000,88.870000,48.930000,785.130000,4.680000,84.670000,16.920000 -6,2023-08-15 14:00:00,0.000000,27.700000,32.000000,5.000000,129.000000,89.400000,49.250000,785.770000,5.050000,85.160000,17.970000 -6,2023-08-15 15:00:00,0.000000,27.700000,32.000000,5.000000,129.000000,89.840000,49.580000,786.410000,5.380000,85.650000,18.880000 -6,2023-08-15 16:00:00,0.000000,27.700000,32.000000,5.000000,129.000000,90.200000,49.900000,787.050000,5.680000,86.150000,19.680000 -6,2023-08-15 17:00:00,0.000000,30.900000,24.000000,9.000000,122.000000,91.060000,50.330000,787.900000,7.840000,86.810000,24.880000 -6,2023-08-15 18:00:00,0.000000,30.900000,24.000000,9.000000,122.000000,91.730000,50.770000,788.760000,8.630000,87.460000,26.690000 -6,2023-08-15 19:00:00,0.000000,30.900000,24.000000,9.000000,122.000000,92.260000,51.200000,789.620000,9.310000,88.120000,28.210000 -6,2023-08-15 20:00:00,0.000000,30.900000,24.000000,9.000000,122.000000,92.680000,51.640000,790.480000,9.870000,88.780000,29.470000 -6,2023-08-15 21:00:00,0.000000,30.900000,24.000000,9.000000,122.000000,93.010000,51.640000,790.480000,10.340000,88.780000,30.410000 -6,2023-08-15 22:00:00,0.000000,30.900000,24.000000,9.000000,122.000000,93.270000,51.640000,790.480000,10.720000,88.780000,31.160000 -6,2023-08-15 23:00:00,0.000000,21.100000,50.000000,5.000000,131.000000,92.750000,51.640000,790.480000,8.150000,88.780000,25.840000 -6,2023-08-16 00:00:00,0.000000,21.100000,50.000000,5.000000,131.000000,92.300000,51.640000,790.480000,7.640000,88.780000,24.710000 -6,2023-08-16 01:00:00,0.000000,21.100000,50.000000,5.000000,131.000000,91.900000,51.640000,790.480000,7.220000,88.780000,23.760000 -6,2023-08-16 02:00:00,0.000000,21.100000,50.000000,5.000000,131.000000,91.550000,51.640000,790.480000,6.880000,88.780000,22.950000 -6,2023-08-16 03:00:00,0.000000,21.100000,50.000000,5.000000,131.000000,91.250000,51.640000,790.480000,6.580000,88.780000,22.250000 -6,2023-08-16 04:00:00,0.000000,21.100000,50.000000,5.000000,131.000000,90.980000,51.640000,790.480000,6.340000,88.780000,21.660000 -6,2023-08-16 05:00:00,0.000000,17.100000,69.000000,9.000000,172.000000,90.170000,51.710000,790.620000,6.910000,88.890000,23.050000 -6,2023-08-16 06:00:00,0.000000,17.100000,69.000000,9.000000,172.000000,89.480000,51.780000,790.770000,6.260000,89.000000,21.490000 -6,2023-08-16 07:00:00,0.000000,17.100000,69.000000,9.000000,172.000000,88.890000,51.860000,790.910000,5.750000,89.110000,20.230000 -6,2023-08-16 08:00:00,0.000000,17.100000,69.000000,9.000000,172.000000,88.380000,51.930000,791.050000,5.340000,89.220000,19.190000 -6,2023-08-16 09:00:00,0.000000,17.100000,69.000000,9.000000,172.000000,87.940000,52.000000,791.190000,5.010000,89.330000,18.330000 -6,2023-08-16 10:00:00,0.000000,17.100000,69.000000,9.000000,172.000000,87.560000,52.080000,791.340000,4.750000,89.440000,17.620000 -6,2023-08-16 11:00:00,0.000000,29.900000,33.000000,15.000000,187.000000,88.550000,52.420000,792.000000,7.410000,89.950000,24.350000 -6,2023-08-16 12:00:00,0.000000,29.900000,33.000000,15.000000,187.000000,89.330000,52.760000,792.670000,8.290000,90.460000,26.400000 -6,2023-08-16 13:00:00,0.000000,29.900000,33.000000,15.000000,187.000000,89.950000,53.100000,793.340000,9.050000,90.970000,28.130000 -6,2023-08-16 14:00:00,0.000000,29.900000,33.000000,15.000000,187.000000,90.430000,53.440000,794.000000,9.700000,91.490000,29.570000 -6,2023-08-16 15:00:00,0.000000,29.900000,33.000000,15.000000,187.000000,90.810000,53.780000,794.670000,10.240000,92.000000,30.750000 -6,2023-08-16 16:00:00,0.000000,29.900000,33.000000,15.000000,187.000000,91.110000,54.120000,795.340000,10.680000,92.500000,31.720000 -6,2023-08-16 17:00:00,0.000000,33.600000,28.000000,11.000000,279.000000,91.750000,54.570000,796.220000,9.570000,93.180000,29.560000 -6,2023-08-16 18:00:00,0.000000,33.600000,28.000000,11.000000,279.000000,92.240000,55.020000,797.100000,10.260000,93.850000,31.090000 -6,2023-08-16 19:00:00,0.000000,33.600000,28.000000,11.000000,279.000000,92.620000,55.480000,797.990000,10.820000,94.520000,32.330000 -6,2023-08-16 20:00:00,0.000000,33.600000,28.000000,11.000000,279.000000,92.910000,55.930000,798.870000,11.270000,95.190000,33.320000 -6,2023-08-16 21:00:00,0.000000,33.600000,28.000000,11.000000,279.000000,93.120000,55.930000,798.870000,11.620000,95.190000,34.010000 -6,2023-08-16 22:00:00,0.000000,33.600000,28.000000,11.000000,279.000000,93.290000,55.930000,798.870000,11.890000,95.190000,34.540000 -6,2023-08-16 23:00:00,0.000000,23.900000,42.000000,6.000000,339.000000,92.990000,55.930000,798.870000,8.860000,95.190000,28.350000 -6,2023-08-17 00:00:00,0.000000,23.900000,42.000000,6.000000,339.000000,92.730000,55.930000,798.870000,8.540000,95.190000,27.650000 -6,2023-08-17 01:00:00,0.000000,23.900000,42.000000,6.000000,339.000000,92.500000,55.930000,798.870000,8.270000,95.190000,27.040000 -6,2023-08-17 02:00:00,0.000000,23.900000,42.000000,6.000000,339.000000,92.300000,55.930000,798.870000,8.040000,95.190000,26.530000 -6,2023-08-17 03:00:00,0.000000,23.900000,42.000000,6.000000,339.000000,92.130000,55.930000,798.870000,7.850000,95.190000,26.090000 -6,2023-08-17 04:00:00,0.000000,23.900000,42.000000,6.000000,339.000000,91.980000,55.930000,798.870000,7.690000,95.190000,25.700000 -6,2023-08-17 05:00:00,0.000000,19.500000,52.000000,5.000000,45.000000,91.560000,55.930000,798.870000,6.890000,95.190000,23.810000 -6,2023-08-17 06:00:00,0.000000,19.500000,52.000000,5.000000,45.000000,91.190000,56.060000,799.140000,6.530000,95.390000,22.970000 -6,2023-08-17 07:00:00,0.000000,19.500000,52.000000,5.000000,45.000000,90.870000,56.190000,799.420000,6.240000,95.580000,22.250000 -6,2023-08-17 08:00:00,0.000000,19.500000,52.000000,5.000000,45.000000,90.580000,56.320000,799.690000,5.990000,95.780000,21.640000 -6,2023-08-17 09:00:00,0.000000,19.500000,52.000000,5.000000,45.000000,90.330000,56.450000,799.960000,5.780000,95.970000,21.110000 -6,2023-08-17 10:00:00,0.000000,19.500000,52.000000,5.000000,45.000000,90.110000,56.580000,800.240000,5.600000,96.160000,20.660000 -6,2023-08-17 11:00:00,0.000000,28.000000,36.000000,6.000000,303.000000,90.310000,56.870000,800.840000,6.060000,96.590000,21.910000 -6,2023-08-17 12:00:00,0.000000,28.000000,36.000000,6.000000,303.000000,90.470000,57.160000,801.450000,6.200000,97.020000,22.320000 -6,2023-08-17 13:00:00,0.000000,28.000000,36.000000,6.000000,303.000000,90.610000,57.450000,802.060000,6.320000,97.450000,22.680000 -6,2023-08-17 14:00:00,0.000000,28.000000,36.000000,6.000000,303.000000,90.720000,57.740000,802.670000,6.420000,97.880000,22.990000 -6,2023-08-17 15:00:00,0.000000,28.000000,36.000000,6.000000,303.000000,90.810000,58.030000,803.280000,6.510000,98.310000,23.250000 -6,2023-08-17 16:00:00,0.000000,28.000000,36.000000,6.000000,303.000000,90.890000,58.320000,803.890000,6.580000,98.740000,23.480000 -6,2023-08-17 17:00:00,0.000000,31.000000,33.000000,14.000000,6.000000,91.210000,58.690000,804.640000,10.320000,99.270000,32.050000 -6,2023-08-17 18:00:00,0.000000,31.000000,33.000000,14.000000,6.000000,91.470000,59.050000,805.400000,10.700000,99.800000,32.920000 -6,2023-08-17 19:00:00,0.000000,31.000000,33.000000,14.000000,6.000000,91.670000,59.410000,806.160000,11.000000,100.330000,33.630000 -6,2023-08-17 20:00:00,0.000000,31.000000,33.000000,14.000000,6.000000,91.820000,59.770000,806.910000,11.240000,100.860000,34.200000 -6,2023-08-17 21:00:00,0.000000,31.000000,33.000000,14.000000,6.000000,91.940000,59.770000,806.910000,11.440000,100.860000,34.580000 -6,2023-08-17 22:00:00,0.000000,31.000000,33.000000,14.000000,6.000000,92.030000,59.770000,806.910000,11.590000,100.860000,34.880000 -6,2023-08-17 23:00:00,0.000000,24.000000,54.000000,11.000000,315.000000,91.520000,59.770000,806.910000,9.270000,100.860000,30.040000 -6,2023-08-18 00:00:00,0.000000,24.000000,54.000000,11.000000,315.000000,91.090000,59.770000,806.910000,8.720000,100.860000,28.830000 -6,2023-08-18 01:00:00,0.000000,24.000000,54.000000,11.000000,315.000000,90.740000,59.770000,806.910000,8.290000,100.860000,27.840000 -6,2023-08-18 02:00:00,0.000000,24.000000,54.000000,11.000000,315.000000,90.440000,59.770000,806.910000,7.940000,100.860000,27.040000 -6,2023-08-18 03:00:00,0.000000,24.000000,54.000000,11.000000,315.000000,90.190000,59.770000,806.910000,7.660000,100.860000,26.380000 -6,2023-08-18 04:00:00,0.000000,24.000000,54.000000,11.000000,315.000000,89.980000,59.770000,806.910000,7.430000,100.860000,25.830000 -6,2023-08-18 05:00:00,0.000000,21.100000,79.000000,13.000000,309.000000,88.870000,59.770000,806.910000,7.010000,100.860000,24.820000 -6,2023-08-18 06:00:00,0.000000,21.100000,79.000000,13.000000,309.000000,87.970000,59.830000,807.380000,6.160000,100.960000,22.660000 -6,2023-08-18 07:00:00,0.000000,21.100000,79.000000,13.000000,309.000000,87.220000,59.890000,807.850000,5.540000,101.050000,21.010000 -6,2023-08-18 08:00:00,0.000000,21.100000,79.000000,13.000000,309.000000,86.610000,59.950000,808.320000,5.080000,101.150000,19.740000 -6,2023-08-18 09:00:00,0.000000,21.100000,79.000000,13.000000,309.000000,86.100000,60.010000,808.790000,4.730000,101.240000,18.750000 -6,2023-08-18 10:00:00,0.000000,21.100000,79.000000,13.000000,309.000000,85.690000,60.070000,809.270000,4.460000,101.340000,17.970000 -6,2023-08-18 11:00:00,0.400000,20.900000,81.000000,11.000000,291.000000,85.260000,60.130000,809.690000,3.800000,101.420000,15.950000 -6,2023-08-18 12:00:00,0.000000,20.900000,81.000000,11.000000,291.000000,84.910000,60.180000,810.110000,3.620000,101.510000,15.380000 -6,2023-08-18 13:00:00,0.000000,20.900000,81.000000,11.000000,291.000000,84.620000,60.230000,810.530000,3.480000,101.590000,14.920000 -6,2023-08-18 14:00:00,0.000000,20.900000,81.000000,11.000000,291.000000,84.370000,60.290000,810.950000,3.360000,101.680000,14.550000 -6,2023-08-18 15:00:00,0.000000,20.900000,81.000000,11.000000,291.000000,84.170000,60.340000,811.370000,3.270000,101.760000,14.250000 -6,2023-08-18 16:00:00,0.000000,20.900000,81.000000,11.000000,291.000000,84.000000,60.390000,811.790000,3.200000,101.850000,14.010000 -6,2023-08-18 17:00:00,0.000000,26.200000,38.000000,10.000000,295.000000,85.120000,60.630000,813.680000,3.540000,102.230000,15.180000 -7,2023-08-03 00:00:00,0.000000,15.500000,66.000000,4.000000,38.000000,85.940000,118.400000,826.100000,2.930000,174.330000,16.160000 -7,2023-08-03 01:00:00,0.000000,15.500000,66.000000,4.000000,38.000000,85.880000,118.400000,826.100000,2.910000,174.330000,16.060000 -7,2023-08-03 02:00:00,0.000000,12.600000,75.000000,1.000000,98.000000,85.640000,118.400000,826.100000,2.420000,174.330000,13.940000 -7,2023-08-03 03:00:00,0.000000,12.600000,75.000000,1.000000,98.000000,85.420000,118.400000,826.100000,2.340000,174.330000,13.610000 -7,2023-08-03 04:00:00,0.000000,12.600000,75.000000,1.000000,98.000000,85.220000,118.400000,826.100000,2.280000,174.330000,13.320000 -7,2023-08-03 05:00:00,0.000000,11.900000,76.000000,2.000000,94.000000,85.000000,118.440000,826.210000,2.330000,174.390000,13.530000 -7,2023-08-03 06:00:00,0.000000,11.900000,76.000000,2.000000,94.000000,84.800000,118.490000,826.310000,2.260000,174.440000,13.240000 -7,2023-08-03 07:00:00,0.000000,11.900000,76.000000,2.000000,94.000000,84.620000,118.530000,826.420000,2.210000,174.490000,12.990000 -7,2023-08-03 08:00:00,0.000000,17.000000,57.000000,4.000000,123.000000,84.720000,118.640000,826.690000,2.480000,174.630000,14.210000 -7,2023-08-03 09:00:00,0.000000,17.000000,57.000000,4.000000,123.000000,84.810000,118.750000,826.960000,2.510000,174.760000,14.350000 -7,2023-08-03 10:00:00,0.000000,17.000000,57.000000,4.000000,123.000000,84.890000,118.860000,827.220000,2.540000,174.890000,14.470000 -7,2023-08-03 11:00:00,0.000000,22.200000,41.000000,7.000000,102.000000,85.500000,119.060000,827.730000,3.210000,175.140000,17.310000 -7,2023-08-03 12:00:00,0.000000,22.200000,41.000000,7.000000,102.000000,86.040000,119.270000,828.240000,3.460000,175.390000,18.300000 -7,2023-08-03 13:00:00,0.000000,22.200000,41.000000,7.000000,102.000000,86.500000,119.470000,828.740000,3.690000,175.640000,19.200000 -7,2023-08-03 14:00:00,0.000000,24.200000,37.000000,11.000000,62.000000,87.150000,119.720000,829.350000,4.950000,175.940000,23.700000 -7,2023-08-03 15:00:00,0.000000,24.200000,37.000000,11.000000,62.000000,87.690000,119.970000,829.960000,5.350000,176.250000,25.030000 -7,2023-08-03 16:00:00,0.000000,24.200000,37.000000,11.000000,62.000000,88.140000,120.210000,830.570000,5.710000,176.550000,26.200000 -7,2023-08-03 17:00:00,0.000000,22.900000,42.000000,10.000000,65.000000,88.310000,120.420000,831.090000,5.570000,176.800000,25.740000 -7,2023-08-03 18:00:00,0.000000,22.900000,42.000000,10.000000,65.000000,88.460000,120.640000,831.610000,5.680000,177.060000,26.120000 -7,2023-08-03 19:00:00,0.000000,22.900000,42.000000,10.000000,65.000000,88.580000,120.850000,832.130000,5.780000,177.320000,26.450000 -7,2023-08-03 20:00:00,0.000000,21.700000,42.000000,5.000000,77.000000,88.640000,121.040000,832.620000,4.540000,177.550000,22.310000 -7,2023-08-03 21:00:00,0.000000,21.700000,42.000000,5.000000,77.000000,88.700000,121.240000,833.100000,4.570000,177.790000,22.440000 -7,2023-08-03 22:00:00,0.000000,21.700000,42.000000,5.000000,77.000000,88.740000,121.240000,833.100000,4.600000,177.790000,22.550000 -7,2023-08-03 23:00:00,0.000000,17.200000,56.000000,0.000000,202.000000,88.640000,121.240000,833.100000,3.520000,177.790000,18.600000 -7,2023-08-04 00:00:00,0.000000,17.200000,56.000000,0.000000,202.000000,88.540000,121.240000,833.100000,3.480000,177.790000,18.420000 -7,2023-08-04 01:00:00,0.000000,17.200000,56.000000,0.000000,202.000000,88.460000,121.240000,833.100000,3.430000,177.790000,18.250000 -7,2023-08-04 02:00:00,0.000000,14.600000,71.000000,4.000000,249.000000,88.000000,121.240000,833.100000,3.930000,177.790000,20.150000 -7,2023-08-04 03:00:00,0.000000,14.600000,71.000000,4.000000,249.000000,87.590000,121.240000,833.100000,3.710000,177.790000,19.310000 -7,2023-08-04 04:00:00,0.000000,14.600000,71.000000,4.000000,249.000000,87.230000,121.240000,833.100000,3.520000,177.790000,18.600000 -7,2023-08-04 05:00:00,0.000000,13.300000,90.000000,6.000000,238.000000,86.200000,121.260000,833.150000,3.370000,177.820000,17.980000 -7,2023-08-04 06:00:00,0.000000,13.300000,90.000000,6.000000,238.000000,85.300000,121.280000,833.210000,2.970000,177.840000,16.380000 -7,2023-08-04 07:00:00,0.000000,13.300000,90.000000,6.000000,238.000000,84.520000,121.300000,833.260000,2.670000,177.860000,15.110000 -7,2023-08-04 08:00:00,0.000000,18.300000,75.000000,6.000000,250.000000,84.470000,121.360000,833.440000,2.650000,177.940000,15.030000 -7,2023-08-04 09:00:00,0.000000,18.300000,75.000000,6.000000,250.000000,84.430000,121.430000,833.630000,2.630000,178.020000,14.960000 -7,2023-08-04 10:00:00,0.000000,18.300000,75.000000,6.000000,250.000000,84.390000,121.490000,833.810000,2.620000,178.110000,14.900000 -7,2023-08-04 11:00:00,0.000000,23.300000,49.000000,8.000000,283.000000,84.900000,121.670000,834.320000,3.110000,178.330000,16.960000 -7,2023-08-04 12:00:00,0.000000,23.300000,49.000000,8.000000,283.000000,85.350000,121.850000,834.830000,3.310000,178.550000,17.760000 -7,2023-08-04 13:00:00,0.000000,23.300000,49.000000,8.000000,283.000000,85.730000,122.040000,835.340000,3.490000,178.780000,18.470000 -7,2023-08-04 14:00:00,0.000000,24.300000,42.000000,11.000000,296.000000,86.340000,122.260000,835.950000,4.420000,179.050000,21.930000 -7,2023-08-04 15:00:00,0.000000,24.300000,42.000000,11.000000,296.000000,86.850000,122.470000,836.560000,4.750000,179.320000,23.090000 -7,2023-08-04 16:00:00,0.000000,24.300000,42.000000,11.000000,296.000000,87.280000,122.690000,837.180000,5.050000,179.590000,24.110000 -7,2023-08-04 17:00:00,0.000000,25.000000,39.000000,11.000000,314.000000,87.760000,122.930000,837.850000,5.410000,179.880000,25.320000 -7,2023-08-04 18:00:00,0.000000,25.000000,39.000000,11.000000,314.000000,88.170000,123.170000,838.530000,5.740000,180.180000,26.380000 -7,2023-08-04 19:00:00,0.000000,25.000000,39.000000,11.000000,314.000000,88.510000,123.420000,839.200000,6.020000,180.480000,27.280000 -7,2023-08-04 20:00:00,0.010000,23.300000,45.000000,10.000000,337.000000,88.550000,123.610000,839.750000,5.760000,180.720000,26.460000 -7,2023-08-04 21:00:00,0.000000,23.300000,45.000000,10.000000,337.000000,88.590000,123.810000,840.300000,5.790000,180.960000,26.560000 -7,2023-08-04 22:00:00,0.000000,23.300000,45.000000,10.000000,337.000000,88.610000,123.810000,840.300000,5.810000,180.960000,26.640000 -7,2023-08-04 23:00:00,0.000000,18.900000,64.000000,8.000000,317.000000,88.300000,123.810000,840.300000,5.020000,180.960000,24.070000 -7,2023-08-05 00:00:00,0.000000,18.900000,64.000000,8.000000,317.000000,88.030000,123.810000,840.300000,4.830000,180.960000,23.420000 -7,2023-08-05 01:00:00,0.000000,18.900000,64.000000,8.000000,317.000000,87.800000,123.810000,840.300000,4.670000,180.960000,22.870000 -7,2023-08-05 02:00:00,0.000000,17.100000,80.000000,8.000000,307.000000,87.090000,123.810000,840.300000,4.230000,180.960000,21.290000 -7,2023-08-05 03:00:00,0.000000,17.100000,80.000000,8.000000,307.000000,86.490000,123.810000,840.300000,3.880000,180.960000,20.020000 -7,2023-08-05 04:00:00,0.000000,17.100000,80.000000,8.000000,307.000000,85.970000,123.810000,840.300000,3.610000,180.960000,18.990000 -7,2023-08-05 05:00:00,0.000000,16.300000,76.000000,8.000000,311.000000,85.660000,123.860000,840.440000,3.450000,181.030000,18.390000 -7,2023-08-05 06:00:00,0.000000,16.300000,76.000000,8.000000,311.000000,85.390000,123.920000,840.570000,3.320000,181.100000,17.880000 -7,2023-08-05 07:00:00,0.000000,16.300000,76.000000,8.000000,311.000000,85.150000,123.980000,840.710000,3.220000,181.170000,17.460000 -7,2023-08-05 08:00:00,0.000000,17.700000,48.000000,9.000000,320.000000,85.410000,124.120000,841.040000,3.510000,181.330000,18.610000 -7,2023-08-05 09:00:00,0.000000,17.700000,48.000000,9.000000,320.000000,85.640000,124.250000,841.360000,3.620000,181.500000,19.060000 -7,2023-08-05 10:00:00,0.000000,17.700000,48.000000,9.000000,320.000000,85.850000,124.390000,841.690000,3.730000,181.660000,19.460000 -7,2023-08-05 11:00:00,0.000000,20.200000,37.000000,9.000000,323.000000,86.390000,124.580000,842.150000,4.020000,181.890000,20.570000 -7,2023-08-05 12:00:00,0.000000,20.200000,37.000000,9.000000,323.000000,86.860000,124.770000,842.610000,4.300000,182.120000,21.580000 -7,2023-08-05 13:00:00,0.000000,20.200000,37.000000,9.000000,323.000000,87.260000,124.970000,843.070000,4.550000,182.360000,22.490000 -7,2023-08-05 14:00:00,0.000000,21.900000,35.000000,8.000000,337.000000,87.730000,125.190000,843.600000,4.630000,182.620000,22.750000 -7,2023-08-05 15:00:00,0.000000,21.900000,35.000000,8.000000,337.000000,88.120000,125.410000,844.130000,4.900000,182.890000,23.690000 -7,2023-08-05 16:00:00,0.000000,21.900000,35.000000,8.000000,337.000000,88.460000,125.630000,844.660000,5.140000,183.150000,24.520000 -7,2023-08-05 17:00:00,0.000000,21.700000,38.000000,8.000000,18.000000,88.660000,125.840000,845.160000,5.290000,183.400000,25.010000 -7,2023-08-05 18:00:00,0.000000,21.700000,38.000000,8.000000,18.000000,88.820000,126.040000,845.660000,5.410000,183.650000,25.430000 -7,2023-08-05 19:00:00,0.000000,21.700000,38.000000,8.000000,18.000000,88.960000,126.250000,846.160000,5.530000,183.900000,25.800000 -7,2023-08-05 20:00:00,0.000000,19.700000,45.000000,5.000000,42.000000,88.960000,126.410000,846.550000,4.750000,184.100000,23.210000 -7,2023-08-05 21:00:00,0.000000,19.700000,45.000000,5.000000,42.000000,88.960000,126.580000,846.940000,4.750000,184.300000,23.220000 -7,2023-08-05 22:00:00,0.000000,19.700000,45.000000,5.000000,42.000000,88.960000,126.580000,846.940000,4.750000,184.300000,23.220000 -7,2023-08-05 23:00:00,0.000000,14.200000,66.000000,1.000000,250.000000,88.620000,126.580000,846.940000,3.690000,184.300000,19.390000 -7,2023-08-06 00:00:00,0.000000,14.200000,66.000000,1.000000,250.000000,88.300000,126.580000,846.940000,3.530000,184.300000,18.750000 -7,2023-08-06 01:00:00,0.000000,14.200000,66.000000,1.000000,250.000000,88.010000,126.580000,846.940000,3.390000,184.300000,18.200000 -7,2023-08-06 02:00:00,0.000000,11.400000,79.000000,5.000000,247.000000,87.380000,126.580000,846.940000,3.780000,184.300000,19.730000 -7,2023-08-06 03:00:00,0.000000,11.400000,79.000000,5.000000,247.000000,86.810000,126.580000,846.940000,3.490000,184.300000,18.610000 -7,2023-08-06 04:00:00,0.000000,11.400000,79.000000,5.000000,247.000000,86.310000,126.580000,846.940000,3.250000,184.300000,17.660000 -7,2023-08-06 05:00:00,0.000000,10.400000,84.000000,6.000000,244.000000,85.700000,126.610000,847.020000,3.140000,184.330000,17.190000 -7,2023-08-06 06:00:00,0.000000,10.400000,84.000000,6.000000,244.000000,85.150000,126.640000,847.100000,2.910000,184.370000,16.240000 -7,2023-08-06 07:00:00,0.000000,10.400000,84.000000,6.000000,244.000000,84.670000,126.670000,847.180000,2.720000,184.410000,15.440000 -7,2023-08-06 08:00:00,0.000000,16.700000,57.000000,4.000000,243.000000,84.750000,126.790000,847.500000,2.490000,184.560000,14.430000 -7,2023-08-06 09:00:00,0.000000,16.700000,57.000000,4.000000,243.000000,84.830000,126.910000,847.830000,2.520000,184.710000,14.550000 -7,2023-08-06 10:00:00,0.000000,16.700000,57.000000,4.000000,243.000000,84.910000,127.040000,848.150000,2.540000,184.850000,14.670000 -7,2023-08-06 11:00:00,0.000000,21.400000,44.000000,6.000000,21.000000,85.390000,127.250000,848.710000,3.010000,185.120000,16.660000 -7,2023-08-06 12:00:00,0.000000,21.400000,44.000000,6.000000,21.000000,85.810000,127.470000,849.280000,3.190000,185.380000,17.420000 -7,2023-08-06 13:00:00,0.000000,21.400000,44.000000,6.000000,21.000000,86.180000,127.680000,849.850000,3.360000,185.640000,18.100000 -7,2023-08-06 14:00:00,0.000000,22.500000,47.000000,11.000000,42.000000,86.490000,127.900000,850.420000,4.520000,185.900000,22.430000 -7,2023-08-06 15:00:00,0.000000,22.500000,47.000000,11.000000,42.000000,86.760000,128.110000,850.990000,4.690000,186.160000,23.050000 -7,2023-08-06 16:00:00,0.000000,22.500000,47.000000,11.000000,42.000000,86.990000,128.330000,851.560000,4.840000,186.430000,23.580000 -7,2023-08-06 17:00:00,0.000000,22.100000,53.000000,12.000000,51.000000,87.010000,128.520000,852.060000,5.110000,186.650000,24.500000 -7,2023-08-06 18:00:00,0.000000,22.100000,53.000000,12.000000,51.000000,87.040000,128.710000,852.550000,5.130000,186.880000,24.560000 -7,2023-08-06 19:00:00,0.000000,22.100000,53.000000,12.000000,51.000000,87.060000,128.900000,853.050000,5.140000,187.110000,24.620000 -7,2023-08-06 20:00:00,0.000000,19.700000,59.000000,9.000000,63.000000,87.060000,129.040000,853.420000,4.420000,187.280000,22.130000 -7,2023-08-06 21:00:00,0.000000,19.700000,59.000000,9.000000,63.000000,87.060000,129.180000,853.790000,4.420000,187.450000,22.140000 -7,2023-08-06 22:00:00,0.000000,19.700000,59.000000,9.000000,63.000000,87.060000,129.180000,853.790000,4.420000,187.450000,22.140000 -7,2023-08-06 23:00:00,0.000000,15.700000,79.000000,5.000000,73.000000,86.530000,129.180000,853.790000,3.350000,187.450000,18.120000 -7,2023-08-07 00:00:00,0.000000,15.700000,79.000000,5.000000,73.000000,86.070000,129.180000,853.790000,3.140000,187.450000,17.270000 -7,2023-08-07 01:00:00,0.000000,15.700000,79.000000,5.000000,73.000000,85.670000,129.180000,853.790000,2.970000,187.450000,16.560000 -7,2023-08-07 02:00:00,0.000000,12.900000,97.000000,4.000000,85.000000,84.400000,129.180000,853.790000,2.370000,187.450000,13.950000 -7,2023-08-07 03:00:00,0.000000,12.900000,97.000000,4.000000,85.000000,83.300000,129.180000,853.790000,2.050000,187.450000,12.430000 -7,2023-08-07 04:00:00,0.000000,12.900000,97.000000,4.000000,85.000000,82.330000,129.180000,853.790000,1.810000,187.450000,11.260000 -7,2023-08-07 05:00:00,0.000000,12.300000,98.000000,3.000000,74.000000,81.430000,129.180000,853.800000,1.550000,187.460000,9.880000 -7,2023-08-07 06:00:00,0.000000,12.300000,98.000000,3.000000,74.000000,80.640000,129.190000,853.810000,1.410000,187.460000,9.150000 -7,2023-08-07 07:00:00,0.000000,12.300000,98.000000,3.000000,74.000000,79.940000,129.190000,853.820000,1.310000,187.470000,8.580000 -7,2023-08-07 08:00:00,0.000000,15.900000,77.000000,4.000000,101.000000,80.050000,129.240000,853.970000,1.400000,187.530000,9.060000 -7,2023-08-07 09:00:00,0.000000,15.900000,77.000000,4.000000,101.000000,80.160000,129.290000,854.110000,1.410000,187.590000,9.150000 -7,2023-08-07 10:00:00,0.000000,15.900000,77.000000,4.000000,101.000000,80.260000,129.340000,854.260000,1.430000,187.650000,9.230000 -7,2023-08-07 11:00:00,0.000000,21.300000,50.000000,7.000000,109.000000,81.160000,129.480000,854.700000,1.840000,187.830000,11.380000 -7,2023-08-07 12:00:00,0.000000,21.300000,50.000000,7.000000,109.000000,81.960000,129.630000,855.140000,2.020000,188.010000,12.270000 -7,2023-08-07 13:00:00,0.000000,21.300000,50.000000,7.000000,109.000000,82.660000,129.780000,855.580000,2.200000,188.200000,13.140000 -7,2023-08-07 14:00:00,0.000000,24.000000,39.000000,7.000000,117.000000,83.740000,130.000000,856.210000,2.530000,188.460000,14.650000 -7,2023-08-07 15:00:00,0.000000,24.000000,39.000000,7.000000,117.000000,84.670000,130.210000,856.840000,2.860000,188.720000,16.120000 -7,2023-08-07 16:00:00,0.000000,24.000000,39.000000,7.000000,117.000000,85.460000,130.420000,857.470000,3.190000,188.980000,17.500000 -7,2023-08-07 17:00:00,0.000000,24.600000,37.000000,9.000000,108.000000,86.270000,130.650000,858.150000,3.960000,189.270000,20.470000 -7,2023-08-07 18:00:00,0.000000,24.600000,37.000000,9.000000,108.000000,86.950000,130.880000,858.830000,4.360000,189.550000,21.940000 -7,2023-08-07 19:00:00,0.000000,24.600000,37.000000,9.000000,108.000000,87.520000,131.110000,859.510000,4.730000,189.830000,23.250000 -7,2023-08-07 20:00:00,0.000000,22.900000,42.000000,10.000000,112.000000,87.790000,131.300000,860.070000,5.160000,190.060000,24.740000 -7,2023-08-07 21:00:00,0.000000,22.900000,42.000000,10.000000,112.000000,88.010000,131.490000,860.630000,5.330000,190.300000,25.310000 -7,2023-08-07 22:00:00,0.000000,22.900000,42.000000,10.000000,112.000000,88.200000,131.490000,860.630000,5.480000,190.300000,25.790000 -7,2023-08-07 23:00:00,0.000000,19.400000,53.000000,12.000000,138.000000,88.200000,131.490000,860.630000,6.060000,190.300000,27.650000 -7,2023-08-08 00:00:00,0.000000,19.400000,53.000000,12.000000,138.000000,88.200000,131.490000,860.630000,6.060000,190.300000,27.650000 -7,2023-08-08 01:00:00,0.000000,19.400000,53.000000,12.000000,138.000000,88.200000,131.490000,860.630000,6.060000,190.300000,27.650000 -7,2023-08-08 02:00:00,0.000000,17.700000,56.000000,11.000000,147.000000,88.110000,131.490000,860.630000,5.690000,190.300000,26.460000 -7,2023-08-08 03:00:00,0.000000,17.700000,56.000000,11.000000,147.000000,88.030000,131.490000,860.630000,5.620000,190.300000,26.250000 -7,2023-08-08 04:00:00,0.000000,17.700000,56.000000,11.000000,147.000000,87.960000,131.490000,860.630000,5.560000,190.300000,26.060000 -7,2023-08-08 05:00:00,0.000000,16.000000,56.000000,10.000000,128.000000,87.870000,131.580000,860.840000,5.220000,190.400000,24.940000 -7,2023-08-08 06:00:00,0.000000,16.000000,56.000000,10.000000,128.000000,87.790000,131.660000,861.040000,5.160000,190.500000,24.750000 -7,2023-08-08 07:00:00,0.000000,16.000000,56.000000,10.000000,128.000000,87.720000,131.740000,861.250000,5.110000,190.600000,24.580000 -7,2023-08-08 08:00:00,0.000000,18.400000,47.000000,11.000000,123.000000,87.720000,131.860000,861.540000,5.370000,190.740000,25.460000 -7,2023-08-08 09:00:00,0.000000,18.400000,47.000000,11.000000,123.000000,87.720000,131.980000,861.820000,5.370000,190.880000,25.460000 -7,2023-08-08 10:00:00,0.000000,18.400000,47.000000,11.000000,123.000000,87.720000,132.100000,862.110000,5.370000,191.020000,25.460000 -7,2023-08-08 11:00:00,0.000000,22.200000,40.000000,14.000000,118.000000,88.010000,132.270000,862.520000,6.520000,191.230000,29.070000 -7,2023-08-08 12:00:00,0.000000,22.200000,40.000000,14.000000,118.000000,88.250000,132.440000,862.940000,6.750000,191.430000,29.770000 -7,2023-08-08 13:00:00,0.000000,22.200000,40.000000,14.000000,118.000000,88.450000,132.610000,863.350000,6.950000,191.630000,30.370000 -7,2023-08-08 14:00:00,0.000000,25.200000,35.000000,14.000000,111.000000,88.910000,132.830000,863.880000,7.420000,191.900000,31.750000 -7,2023-08-08 15:00:00,0.000000,25.200000,35.000000,14.000000,111.000000,89.290000,133.050000,864.420000,7.830000,192.160000,32.920000 -7,2023-08-08 16:00:00,0.000000,25.200000,35.000000,14.000000,111.000000,89.600000,133.270000,864.950000,8.180000,192.420000,33.910000 -7,2023-08-08 17:00:00,0.000000,26.600000,34.000000,14.000000,106.000000,89.940000,133.520000,865.540000,8.600000,192.710000,35.060000 -7,2023-08-08 18:00:00,0.000000,26.600000,34.000000,14.000000,106.000000,90.220000,133.760000,866.130000,8.960000,193.000000,36.010000 -7,2023-08-08 19:00:00,0.000000,26.600000,34.000000,14.000000,106.000000,90.450000,134.000000,866.720000,9.250000,193.290000,36.790000 -7,2023-08-08 20:00:00,0.000000,24.700000,43.000000,5.000000,89.000000,90.450000,134.190000,867.180000,5.880000,193.520000,27.150000 -7,2023-08-08 21:00:00,0.000000,24.700000,43.000000,5.000000,89.000000,90.450000,134.380000,867.630000,5.880000,193.740000,27.150000 -7,2023-08-08 22:00:00,0.000000,24.700000,43.000000,5.000000,89.000000,90.450000,134.380000,867.630000,5.880000,193.740000,27.150000 -7,2023-08-08 23:00:00,0.000000,19.800000,62.000000,4.000000,182.000000,89.990000,134.380000,867.630000,5.230000,193.740000,25.060000 -7,2023-08-09 00:00:00,0.000000,19.800000,62.000000,4.000000,182.000000,89.590000,134.380000,867.630000,4.940000,193.740000,24.070000 -7,2023-08-09 01:00:00,0.000000,19.800000,62.000000,4.000000,182.000000,89.240000,134.380000,867.630000,4.700000,193.740000,23.230000 -7,2023-08-09 02:00:00,0.000000,17.600000,80.000000,6.000000,221.000000,88.360000,134.380000,867.630000,4.580000,193.740000,22.810000 -7,2023-08-09 03:00:00,0.000000,17.600000,80.000000,6.000000,221.000000,87.600000,134.380000,867.630000,4.110000,193.740000,21.120000 -7,2023-08-09 04:00:00,0.000000,17.600000,80.000000,6.000000,221.000000,86.950000,134.380000,867.630000,3.750000,193.740000,19.750000 -7,2023-08-09 05:00:00,0.000000,16.300000,93.000000,5.000000,255.000000,85.730000,134.400000,867.680000,3.000000,193.760000,16.760000 -7,2023-08-09 06:00:00,0.000000,16.300000,93.000000,5.000000,255.000000,84.690000,134.420000,867.740000,2.590000,193.790000,15.020000 -7,2023-08-09 07:00:00,0.000000,16.300000,93.000000,5.000000,255.000000,83.790000,134.440000,867.790000,2.300000,193.810000,13.690000 -7,2023-08-09 08:00:00,0.010000,19.500000,78.000000,6.000000,277.000000,83.580000,134.110000,867.910000,2.350000,193.480000,13.920000 -7,2023-08-09 09:00:00,0.000000,19.500000,78.000000,6.000000,277.000000,83.580000,134.190000,868.110000,2.350000,193.570000,13.930000 -7,2023-08-09 10:00:00,0.000000,19.500000,78.000000,6.000000,277.000000,83.580000,134.260000,868.310000,2.350000,193.660000,13.930000 -7,2023-08-09 11:00:00,0.000000,25.800000,48.000000,5.000000,311.000000,84.290000,134.530000,869.020000,2.460000,193.980000,14.420000 -7,2023-08-09 12:00:00,0.000000,25.800000,48.000000,5.000000,311.000000,84.910000,134.790000,869.720000,2.670000,194.300000,15.380000 -7,2023-08-09 13:00:00,0.000000,25.800000,48.000000,5.000000,311.000000,85.440000,135.060000,870.420000,2.880000,194.620000,16.260000 -7,2023-08-09 14:00:00,0.140000,28.200000,36.000000,7.000000,336.000000,83.980000,131.810000,870.220000,2.610000,191.210000,15.050000 -7,2023-08-09 15:00:00,0.000000,28.200000,36.000000,7.000000,336.000000,85.240000,132.180000,871.210000,3.100000,191.670000,17.140000 -7,2023-08-09 16:00:00,0.000000,28.200000,36.000000,7.000000,336.000000,86.300000,132.560000,872.210000,3.590000,192.120000,19.120000 -7,2023-08-09 17:00:00,3.940000,24.700000,72.000000,9.000000,48.000000,40.650000,81.820000,838.830000,0.060000,131.550000,0.200000 -7,2023-08-09 18:00:00,0.000000,24.700000,72.000000,9.000000,48.000000,44.290000,81.950000,839.180000,0.120000,131.740000,0.380000 -7,2023-08-09 19:00:00,0.000000,24.700000,72.000000,9.000000,48.000000,47.740000,82.080000,839.540000,0.190000,131.920000,0.640000 -7,2023-08-09 20:00:00,0.000000,23.400000,69.000000,4.000000,93.000000,50.500000,82.220000,839.900000,0.210000,132.110000,0.700000 -7,2023-08-09 21:00:00,0.000000,23.400000,69.000000,4.000000,93.000000,53.120000,82.360000,840.260000,0.280000,132.300000,0.940000 -7,2023-08-09 22:00:00,0.000000,23.400000,69.000000,4.000000,93.000000,55.590000,82.360000,840.260000,0.360000,132.300000,1.670000 -7,2023-08-09 23:00:00,0.000000,18.300000,91.000000,3.000000,196.000000,56.190000,82.360000,840.260000,0.360000,132.300000,1.670000 -7,2023-08-10 00:00:00,0.000000,18.300000,91.000000,3.000000,196.000000,56.770000,82.360000,840.260000,0.380000,132.300000,1.830000 -7,2023-08-10 01:00:00,0.000000,18.300000,91.000000,3.000000,196.000000,57.350000,82.360000,840.260000,0.400000,132.300000,1.970000 -7,2023-08-10 02:00:00,0.010000,16.700000,98.000000,4.000000,240.000000,57.470000,82.360000,840.260000,0.420000,132.300000,2.160000 -7,2023-08-10 03:00:00,0.000000,16.700000,98.000000,4.000000,240.000000,57.590000,82.360000,840.260000,0.420000,132.300000,2.190000 -7,2023-08-10 04:00:00,0.000000,16.700000,98.000000,4.000000,240.000000,57.700000,82.360000,840.260000,0.430000,132.300000,2.220000 -7,2023-08-10 05:00:00,0.080000,16.000000,98.000000,3.000000,223.000000,57.810000,82.360000,840.270000,0.410000,132.300000,2.080000 -7,2023-08-10 06:00:00,0.000000,16.000000,98.000000,3.000000,223.000000,57.910000,82.370000,840.290000,0.410000,132.310000,2.110000 -7,2023-08-10 07:00:00,0.000000,16.000000,98.000000,3.000000,223.000000,58.010000,82.370000,840.300000,0.420000,132.320000,2.130000 -7,2023-08-10 08:00:00,0.030000,19.200000,83.000000,3.000000,190.000000,59.060000,82.420000,840.440000,0.450000,132.380000,2.380000 -7,2023-08-10 09:00:00,0.000000,19.200000,83.000000,3.000000,190.000000,60.060000,82.470000,840.590000,0.480000,132.450000,2.610000 -7,2023-08-10 10:00:00,0.000000,19.200000,83.000000,3.000000,190.000000,61.030000,82.510000,840.730000,0.510000,132.510000,2.820000 -7,2023-08-10 11:00:00,0.000000,25.400000,54.000000,5.000000,176.000000,64.030000,82.700000,841.290000,0.650000,132.770000,3.820000 -7,2023-08-10 12:00:00,0.000000,25.400000,54.000000,5.000000,176.000000,66.750000,82.880000,841.850000,0.720000,133.030000,4.290000 -7,2023-08-10 13:00:00,0.000000,25.400000,54.000000,5.000000,176.000000,69.200000,83.070000,842.400000,0.780000,133.280000,4.680000 -7,2023-08-10 14:00:00,0.000000,27.000000,45.000000,6.000000,151.000000,72.040000,83.310000,843.140000,0.910000,133.620000,5.420000 -7,2023-08-10 15:00:00,0.000000,27.000000,45.000000,6.000000,151.000000,74.520000,83.560000,843.870000,1.010000,133.960000,6.030000 -7,2023-08-10 16:00:00,0.000000,27.000000,45.000000,6.000000,151.000000,76.680000,83.800000,844.610000,1.150000,134.290000,6.830000 -7,2023-08-10 17:00:00,0.000000,27.400000,41.000000,6.000000,152.000000,78.750000,84.070000,845.420000,1.360000,134.660000,7.950000 -7,2023-08-10 18:00:00,0.000000,27.400000,41.000000,6.000000,152.000000,80.530000,84.340000,846.220000,1.630000,135.030000,9.300000 -7,2023-08-10 19:00:00,0.000000,27.400000,41.000000,6.000000,152.000000,82.050000,84.610000,847.030000,1.940000,135.400000,10.780000 -7,2023-08-10 20:00:00,0.000000,27.400000,41.000000,6.000000,152.000000,83.340000,84.870000,847.840000,2.280000,135.770000,12.300000 -7,2023-08-10 21:00:00,0.000000,27.400000,41.000000,6.000000,152.000000,84.430000,84.870000,847.840000,2.640000,135.770000,13.800000 -7,2023-08-10 22:00:00,0.000000,27.400000,41.000000,6.000000,152.000000,85.360000,84.870000,847.840000,2.990000,135.770000,15.210000 -7,2023-08-10 23:00:00,0.000000,20.400000,81.000000,6.000000,168.000000,85.010000,84.870000,847.840000,2.850000,135.770000,14.670000 -7,2023-08-11 00:00:00,0.000000,20.400000,81.000000,6.000000,168.000000,84.720000,84.870000,847.840000,2.740000,135.770000,14.230000 -7,2023-08-11 01:00:00,0.000000,20.400000,81.000000,6.000000,168.000000,84.480000,84.870000,847.840000,2.650000,135.770000,13.860000 -7,2023-08-11 02:00:00,0.000000,20.400000,81.000000,6.000000,168.000000,84.270000,84.870000,847.840000,2.580000,135.770000,13.560000 -7,2023-08-11 03:00:00,0.000000,20.400000,81.000000,6.000000,168.000000,84.090000,84.870000,847.840000,2.520000,135.770000,13.310000 -7,2023-08-11 04:00:00,0.000000,20.400000,81.000000,6.000000,168.000000,83.930000,84.870000,847.840000,2.470000,135.770000,13.100000 -7,2023-08-11 05:00:00,0.000000,17.300000,98.000000,7.000000,186.000000,82.610000,84.880000,847.850000,2.190000,135.780000,11.900000 -7,2023-08-11 06:00:00,0.000000,17.300000,98.000000,7.000000,186.000000,81.500000,84.890000,847.860000,1.910000,135.790000,10.650000 -7,2023-08-11 07:00:00,0.000000,17.300000,98.000000,7.000000,186.000000,80.550000,84.890000,847.880000,1.710000,135.790000,9.740000 -7,2023-08-11 08:00:00,0.000000,17.300000,98.000000,7.000000,186.000000,79.750000,84.900000,847.890000,1.580000,135.800000,9.070000 -7,2023-08-11 09:00:00,0.000000,17.300000,98.000000,7.000000,186.000000,79.070000,84.900000,847.900000,1.470000,135.810000,8.560000 -7,2023-08-11 10:00:00,0.000000,17.300000,98.000000,7.000000,186.000000,78.490000,84.910000,847.920000,1.400000,135.820000,8.170000 -7,2023-08-11 11:00:00,0.000000,27.500000,45.000000,16.000000,186.000000,80.490000,85.190000,848.610000,2.680000,136.200000,13.990000 -7,2023-08-11 12:00:00,0.000000,27.500000,45.000000,16.000000,186.000000,82.140000,85.470000,849.290000,3.250000,136.580000,16.220000 -7,2023-08-11 13:00:00,0.000000,27.500000,45.000000,16.000000,186.000000,83.510000,85.750000,849.980000,3.860000,136.960000,18.470000 -7,2023-08-11 14:00:00,0.000000,27.500000,45.000000,16.000000,186.000000,84.630000,86.030000,850.670000,4.480000,137.340000,20.610000 -7,2023-08-11 15:00:00,0.000000,27.500000,45.000000,16.000000,186.000000,85.540000,86.310000,851.360000,5.080000,137.720000,22.570000 -7,2023-08-11 16:00:00,0.000000,27.500000,45.000000,16.000000,186.000000,86.290000,86.590000,852.040000,5.640000,138.100000,24.320000 -7,2023-08-11 17:00:00,0.000000,29.700000,34.000000,18.000000,185.000000,87.530000,86.970000,852.980000,7.440000,138.610000,29.470000 -7,2023-08-11 18:00:00,0.000000,29.700000,34.000000,18.000000,185.000000,88.500000,87.360000,853.920000,8.560000,139.130000,32.410000 -7,2023-08-11 19:00:00,0.000000,29.700000,34.000000,18.000000,185.000000,89.260000,87.740000,854.850000,9.540000,139.650000,34.890000 -7,2023-08-11 20:00:00,0.000000,29.700000,34.000000,18.000000,185.000000,89.860000,88.120000,855.790000,10.400000,140.160000,36.950000 -7,2023-08-11 21:00:00,0.000000,29.700000,34.000000,18.000000,185.000000,90.320000,88.120000,855.790000,11.110000,140.160000,38.580000 -7,2023-08-11 22:00:00,0.000000,29.700000,34.000000,18.000000,185.000000,90.680000,88.120000,855.790000,11.700000,140.160000,39.900000 -7,2023-08-11 23:00:00,0.000000,24.500000,52.000000,12.000000,187.000000,90.460000,88.120000,855.790000,8.370000,140.160000,32.010000 -7,2023-08-12 00:00:00,0.000000,24.500000,52.000000,12.000000,187.000000,90.270000,88.120000,855.790000,8.150000,140.160000,31.440000 -7,2023-08-12 01:00:00,0.000000,24.500000,52.000000,12.000000,187.000000,90.110000,88.120000,855.790000,7.970000,140.160000,30.970000 -7,2023-08-12 02:00:00,0.000000,24.500000,52.000000,12.000000,187.000000,89.980000,88.120000,855.790000,7.820000,140.160000,30.580000 -7,2023-08-12 03:00:00,0.000000,24.500000,52.000000,12.000000,187.000000,89.870000,88.120000,855.790000,7.690000,140.160000,30.250000 -7,2023-08-12 04:00:00,0.000000,24.500000,52.000000,12.000000,187.000000,89.770000,88.120000,855.790000,7.590000,140.160000,29.980000 -7,2023-08-12 05:00:00,0.000000,20.900000,56.000000,13.000000,231.000000,89.510000,88.260000,856.060000,7.690000,140.340000,30.240000 -7,2023-08-12 06:00:00,0.000000,20.900000,56.000000,13.000000,231.000000,89.280000,88.390000,856.330000,7.440000,140.520000,29.600000 -7,2023-08-12 07:00:00,0.000000,20.900000,56.000000,13.000000,231.000000,89.090000,88.530000,856.600000,7.240000,140.700000,29.060000 -7,2023-08-12 08:00:00,0.000000,20.900000,56.000000,13.000000,231.000000,88.930000,88.660000,856.870000,7.070000,140.880000,28.620000 -7,2023-08-12 09:00:00,0.000000,20.900000,56.000000,13.000000,231.000000,88.790000,88.800000,857.140000,6.930000,141.060000,28.240000 -7,2023-08-12 10:00:00,0.000000,20.900000,56.000000,13.000000,231.000000,88.670000,88.940000,857.410000,6.820000,141.240000,27.930000 -7,2023-08-12 11:00:00,0.000000,23.800000,29.000000,25.000000,249.000000,89.330000,89.200000,857.940000,13.710000,141.590000,44.330000 -7,2023-08-12 12:00:00,0.000000,23.800000,29.000000,25.000000,249.000000,89.860000,89.460000,858.460000,14.790000,141.940000,46.540000 -7,2023-08-12 13:00:00,0.000000,23.800000,29.000000,25.000000,249.000000,90.280000,89.720000,858.980000,15.710000,142.280000,48.380000 -7,2023-08-12 14:00:00,0.000000,23.800000,29.000000,25.000000,249.000000,90.610000,89.980000,859.500000,16.490000,142.630000,49.900000 -7,2023-08-12 15:00:00,0.000000,23.800000,29.000000,25.000000,249.000000,90.880000,90.240000,860.020000,17.130000,142.970000,51.150000 -7,2023-08-12 16:00:00,0.000000,23.800000,29.000000,25.000000,249.000000,91.100000,90.500000,860.540000,17.670000,143.320000,52.170000 -7,2023-08-12 17:00:00,0.000000,26.200000,25.000000,20.000000,261.000000,91.540000,90.820000,861.170000,14.630000,143.740000,46.390000 -7,2023-08-12 18:00:00,0.000000,26.200000,25.000000,20.000000,261.000000,91.900000,91.140000,861.810000,15.380000,144.160000,47.910000 -7,2023-08-12 19:00:00,0.000000,26.200000,25.000000,20.000000,261.000000,92.170000,91.450000,862.440000,16.000000,144.580000,49.150000 -7,2023-08-12 20:00:00,0.000000,26.200000,25.000000,20.000000,261.000000,92.390000,91.770000,863.080000,16.500000,145.000000,50.150000 -7,2023-08-12 21:00:00,0.000000,26.200000,25.000000,20.000000,261.000000,92.570000,91.770000,863.080000,16.900000,145.000000,50.920000 -7,2023-08-12 22:00:00,0.000000,26.200000,25.000000,20.000000,261.000000,92.700000,91.770000,863.080000,17.230000,145.000000,51.530000 -7,2023-08-12 23:00:00,0.000000,18.900000,41.000000,7.000000,231.000000,92.430000,91.770000,863.080000,8.620000,145.000000,32.990000 -7,2023-08-13 00:00:00,0.000000,18.900000,41.000000,7.000000,231.000000,92.200000,91.770000,863.080000,8.340000,145.000000,32.260000 -7,2023-08-13 01:00:00,0.000000,18.900000,41.000000,7.000000,231.000000,91.990000,91.770000,863.080000,8.090000,145.000000,31.620000 -7,2023-08-13 02:00:00,0.000000,18.900000,41.000000,7.000000,231.000000,91.800000,91.770000,863.080000,7.880000,145.000000,31.060000 -7,2023-08-13 03:00:00,0.000000,18.900000,41.000000,7.000000,231.000000,91.630000,91.770000,863.080000,7.690000,145.000000,30.570000 -7,2023-08-13 04:00:00,0.000000,18.900000,41.000000,7.000000,231.000000,91.480000,91.770000,863.080000,7.530000,145.000000,30.140000 -7,2023-08-13 05:00:00,0.000000,14.700000,54.000000,8.000000,221.000000,91.020000,91.870000,863.260000,7.420000,145.130000,29.830000 -7,2023-08-13 06:00:00,0.000000,14.700000,54.000000,8.000000,221.000000,90.610000,91.960000,863.430000,6.990000,145.250000,28.670000 -7,2023-08-13 07:00:00,0.000000,14.700000,54.000000,8.000000,221.000000,90.240000,92.060000,863.610000,6.640000,145.380000,27.680000 -7,2023-08-13 08:00:00,0.000000,14.700000,54.000000,8.000000,221.000000,89.920000,92.160000,863.790000,6.340000,145.500000,26.820000 -7,2023-08-13 09:00:00,0.000000,14.700000,54.000000,8.000000,221.000000,89.630000,92.250000,863.970000,6.080000,145.630000,26.080000 -7,2023-08-13 10:00:00,0.000000,14.700000,54.000000,8.000000,221.000000,89.380000,92.350000,864.150000,5.860000,145.760000,25.430000 -7,2023-08-13 11:00:00,0.000000,27.400000,27.000000,13.000000,234.000000,90.100000,92.680000,864.760000,8.360000,146.190000,32.410000 -7,2023-08-13 12:00:00,0.000000,27.400000,27.000000,13.000000,234.000000,90.670000,93.020000,865.380000,9.080000,146.630000,34.270000 -7,2023-08-13 13:00:00,0.000000,27.400000,27.000000,13.000000,234.000000,91.140000,93.350000,866.000000,9.700000,147.070000,35.830000 -7,2023-08-13 14:00:00,0.000000,27.400000,27.000000,13.000000,234.000000,91.510000,93.680000,866.610000,10.230000,147.500000,37.120000 -7,2023-08-13 15:00:00,0.000000,27.400000,27.000000,13.000000,234.000000,91.800000,94.020000,867.230000,10.670000,147.940000,38.180000 -7,2023-08-13 16:00:00,0.000000,27.400000,27.000000,13.000000,234.000000,92.040000,94.350000,867.840000,11.030000,148.370000,39.050000 -7,2023-08-13 17:00:00,0.000000,31.300000,25.000000,14.000000,271.000000,92.510000,94.780000,868.640000,12.400000,148.930000,42.160000 -7,2023-08-13 18:00:00,0.000000,31.300000,25.000000,14.000000,271.000000,92.870000,95.210000,869.430000,13.050000,149.490000,43.600000 -7,2023-08-13 19:00:00,0.000000,31.300000,25.000000,14.000000,271.000000,93.150000,95.640000,870.220000,13.570000,150.050000,44.750000 -7,2023-08-13 20:00:00,0.000000,31.300000,25.000000,14.000000,271.000000,93.370000,96.070000,871.020000,13.980000,150.610000,45.650000 -7,2023-08-13 21:00:00,0.000000,31.300000,25.000000,14.000000,271.000000,93.530000,96.070000,871.020000,14.300000,150.610000,46.310000 -7,2023-08-13 22:00:00,0.000000,31.300000,25.000000,14.000000,271.000000,93.660000,96.070000,871.020000,14.550000,150.610000,46.820000 -7,2023-08-13 23:00:00,0.000000,22.500000,43.000000,7.000000,291.000000,93.260000,96.070000,871.020000,9.670000,150.610000,35.990000 -7,2023-08-14 00:00:00,0.000000,22.500000,43.000000,7.000000,291.000000,92.910000,96.070000,871.020000,9.210000,150.610000,34.850000 -7,2023-08-14 01:00:00,0.000000,22.500000,43.000000,7.000000,291.000000,92.610000,96.070000,871.020000,8.830000,150.610000,33.890000 -7,2023-08-14 02:00:00,0.000000,22.500000,43.000000,7.000000,291.000000,92.340000,96.070000,871.020000,8.510000,150.610000,33.060000 -7,2023-08-14 03:00:00,0.000000,22.500000,43.000000,7.000000,291.000000,92.110000,96.070000,871.020000,8.240000,150.610000,32.350000 -7,2023-08-14 04:00:00,0.000000,22.500000,43.000000,7.000000,291.000000,91.910000,96.070000,871.020000,8.010000,150.610000,31.740000 -7,2023-08-14 05:00:00,0.000000,16.200000,64.000000,6.000000,229.000000,91.180000,96.150000,871.180000,6.860000,150.720000,28.600000 -7,2023-08-14 06:00:00,0.000000,16.200000,64.000000,6.000000,229.000000,90.530000,96.230000,871.340000,6.260000,150.820000,26.870000 -7,2023-08-14 07:00:00,0.000000,16.200000,64.000000,6.000000,229.000000,89.970000,96.320000,871.500000,5.770000,150.930000,25.420000 -7,2023-08-14 08:00:00,0.000000,16.200000,64.000000,6.000000,229.000000,89.480000,96.400000,871.660000,5.380000,151.040000,24.200000 -7,2023-08-14 09:00:00,0.000000,16.200000,64.000000,6.000000,229.000000,89.050000,96.490000,871.820000,5.060000,151.150000,23.170000 -7,2023-08-14 10:00:00,0.000000,16.200000,64.000000,6.000000,229.000000,88.670000,96.570000,871.980000,4.790000,151.260000,22.300000 -7,2023-08-14 11:00:00,0.000000,28.500000,31.000000,7.000000,116.000000,89.340000,96.910000,872.640000,5.550000,151.700000,24.750000 -7,2023-08-14 12:00:00,0.000000,28.500000,31.000000,7.000000,116.000000,89.890000,97.250000,873.290000,6.000000,152.140000,26.170000 -7,2023-08-14 13:00:00,0.000000,28.500000,31.000000,7.000000,116.000000,90.340000,97.590000,873.950000,6.400000,152.580000,27.380000 -7,2023-08-14 14:00:00,0.000000,28.500000,31.000000,7.000000,116.000000,90.710000,97.920000,874.600000,6.750000,153.020000,28.400000 -7,2023-08-14 15:00:00,0.000000,28.500000,31.000000,7.000000,116.000000,91.010000,98.260000,875.250000,7.040000,153.460000,29.260000 -7,2023-08-14 16:00:00,0.000000,28.500000,31.000000,7.000000,116.000000,91.250000,98.600000,875.910000,7.290000,153.890000,29.990000 -7,2023-08-14 17:00:00,0.000000,31.500000,28.000000,17.000000,87.000000,91.780000,99.020000,876.720000,13.010000,154.440000,43.900000 -7,2023-08-14 18:00:00,0.000000,31.500000,28.000000,17.000000,87.000000,92.190000,99.440000,877.530000,13.780000,154.980000,45.560000 -7,2023-08-14 19:00:00,0.000000,31.500000,28.000000,17.000000,87.000000,92.490000,99.860000,878.340000,14.390000,155.520000,46.870000 -7,2023-08-14 20:00:00,0.000000,31.500000,28.000000,17.000000,87.000000,92.730000,100.280000,879.150000,14.870000,156.060000,47.890000 -7,2023-08-14 21:00:00,0.000000,31.500000,28.000000,17.000000,87.000000,92.900000,100.280000,879.150000,15.240000,156.060000,48.640000 -7,2023-08-14 22:00:00,0.000000,31.500000,28.000000,17.000000,87.000000,93.040000,100.280000,879.150000,15.530000,156.060000,49.220000 -7,2023-08-14 23:00:00,0.600000,25.000000,53.000000,8.000000,173.000000,90.140000,100.280000,879.150000,6.540000,156.060000,27.970000 -7,2023-08-15 00:00:00,0.000000,25.000000,53.000000,8.000000,173.000000,90.000000,100.280000,879.150000,6.410000,156.060000,27.570000 -7,2023-08-15 01:00:00,0.000000,25.000000,53.000000,8.000000,173.000000,89.880000,100.280000,879.150000,6.300000,156.060000,27.250000 -7,2023-08-15 02:00:00,0.000000,25.000000,53.000000,8.000000,173.000000,89.780000,100.280000,879.150000,6.210000,156.060000,26.970000 -7,2023-08-15 03:00:00,0.000000,25.000000,53.000000,8.000000,173.000000,89.690000,100.280000,879.150000,6.130000,156.060000,26.740000 -7,2023-08-15 04:00:00,0.000000,25.000000,53.000000,8.000000,173.000000,89.610000,100.280000,879.150000,6.070000,156.060000,26.550000 -7,2023-08-15 05:00:00,3.900000,18.700000,96.000000,4.000000,182.000000,37.040000,73.920000,837.020000,0.020000,121.100000,0.070000 -7,2023-08-15 06:00:00,0.000000,18.700000,96.000000,4.000000,182.000000,37.520000,73.930000,837.080000,0.030000,121.120000,0.080000 -7,2023-08-15 07:00:00,0.000000,18.700000,96.000000,4.000000,182.000000,37.990000,73.940000,837.130000,0.030000,121.140000,0.090000 -7,2023-08-15 08:00:00,0.000000,18.700000,96.000000,4.000000,182.000000,38.470000,73.960000,837.180000,0.030000,121.160000,0.100000 -7,2023-08-15 09:00:00,0.000000,18.700000,96.000000,4.000000,182.000000,38.930000,73.970000,837.230000,0.030000,121.180000,0.110000 -7,2023-08-15 10:00:00,0.000000,18.700000,96.000000,4.000000,182.000000,39.400000,73.980000,837.280000,0.040000,121.190000,0.120000 -7,2023-08-15 11:00:00,0.000000,24.500000,65.000000,12.000000,308.000000,43.910000,74.150000,837.930000,0.130000,121.430000,0.400000 -7,2023-08-15 12:00:00,0.000000,24.500000,65.000000,12.000000,308.000000,48.150000,74.310000,838.580000,0.240000,121.660000,0.750000 -7,2023-08-15 13:00:00,0.000000,24.500000,65.000000,12.000000,308.000000,52.090000,74.470000,839.230000,0.380000,121.900000,1.720000 -7,2023-08-15 14:00:00,0.000000,24.500000,65.000000,12.000000,308.000000,55.740000,74.630000,839.870000,0.540000,122.130000,2.920000 -7,2023-08-15 15:00:00,0.000000,24.500000,65.000000,12.000000,308.000000,59.080000,74.790000,840.520000,0.700000,122.360000,3.960000 -7,2023-08-15 16:00:00,0.000000,24.500000,65.000000,12.000000,308.000000,62.120000,74.950000,841.170000,0.850000,122.600000,4.820000 -7,2023-08-15 17:00:00,1.150000,24.300000,56.000000,7.000000,359.000000,50.770000,69.500000,829.540000,0.260000,114.930000,0.780000 -7,2023-08-15 18:00:00,0.000000,24.300000,56.000000,7.000000,359.000000,54.570000,69.700000,830.340000,0.380000,115.220000,1.600000 -7,2023-08-15 19:00:00,0.000000,24.300000,56.000000,7.000000,359.000000,58.090000,69.900000,831.140000,0.510000,115.520000,2.570000 -7,2023-08-15 20:00:00,0.000000,24.300000,56.000000,7.000000,359.000000,61.300000,70.100000,831.950000,0.630000,115.810000,3.350000 -7,2023-08-15 21:00:00,0.000000,24.300000,56.000000,7.000000,359.000000,64.230000,70.100000,831.950000,0.730000,115.810000,3.950000 -7,2023-08-15 22:00:00,0.000000,24.300000,56.000000,7.000000,359.000000,66.880000,70.100000,831.950000,0.800000,115.810000,4.410000 -7,2023-08-15 23:00:00,4.280000,17.600000,94.000000,10.000000,312.000000,27.510000,53.730000,785.660000,0.000000,91.760000,0.010000 -7,2023-08-16 00:00:00,0.000000,17.600000,94.000000,10.000000,312.000000,28.510000,53.730000,785.660000,0.000000,91.760000,0.010000 -7,2023-08-16 01:00:00,0.000000,17.600000,94.000000,10.000000,312.000000,29.510000,53.730000,785.660000,0.000000,91.760000,0.010000 -7,2023-08-16 02:00:00,0.000000,17.600000,94.000000,10.000000,312.000000,30.490000,53.730000,785.660000,0.010000,91.760000,0.020000 -7,2023-08-16 03:00:00,0.000000,17.600000,94.000000,10.000000,312.000000,31.460000,53.730000,785.660000,0.010000,91.760000,0.020000 -7,2023-08-16 04:00:00,0.000000,17.600000,94.000000,10.000000,312.000000,32.430000,53.730000,785.660000,0.010000,91.760000,0.030000 -7,2023-08-16 05:00:00,8.170000,12.500000,96.000000,14.000000,332.000000,7.880000,45.590000,728.280000,0.000000,78.840000,0.000000 -7,2023-08-16 06:00:00,0.000000,12.500000,96.000000,14.000000,332.000000,8.590000,45.590000,728.620000,0.000000,78.850000,0.000000 -7,2023-08-16 07:00:00,0.000000,12.500000,96.000000,14.000000,332.000000,9.300000,45.600000,728.960000,0.000000,78.860000,0.000000 -7,2023-08-16 08:00:00,0.000000,12.500000,96.000000,14.000000,332.000000,10.000000,45.600000,729.300000,0.000000,78.880000,0.000000 -7,2023-08-16 09:00:00,0.000000,12.500000,96.000000,14.000000,332.000000,10.710000,45.610000,729.650000,0.000000,78.890000,0.000000 -7,2023-08-16 10:00:00,0.000000,12.500000,96.000000,14.000000,332.000000,11.410000,45.610000,729.990000,0.000000,78.900000,0.000000 -7,2023-08-16 11:00:00,25.100000,11.700000,97.000000,22.000000,306.000000,0.620000,27.340000,552.880000,0.000000,48.660000,0.000000 -7,2023-08-16 12:00:00,0.000000,11.700000,97.000000,22.000000,306.000000,1.230000,27.340000,553.120000,0.000000,48.670000,0.000000 -7,2023-08-16 13:00:00,0.000000,11.700000,97.000000,22.000000,306.000000,1.850000,27.350000,553.370000,0.000000,48.680000,0.000000 -7,2023-08-16 14:00:00,0.000000,11.700000,97.000000,22.000000,306.000000,2.470000,27.350000,553.610000,0.000000,48.690000,0.000000 -7,2023-08-16 15:00:00,0.000000,11.700000,97.000000,22.000000,306.000000,3.090000,27.350000,553.850000,0.000000,48.700000,0.000000 -7,2023-08-16 16:00:00,0.000000,11.700000,97.000000,22.000000,306.000000,3.710000,27.360000,554.100000,0.000000,48.700000,0.000000 -7,2023-08-16 17:00:00,10.630000,11.300000,95.000000,29.000000,309.000000,1.080000,21.450000,479.380000,0.000000,38.580000,0.000000 -7,2023-08-16 18:00:00,0.000000,11.300000,95.000000,29.000000,309.000000,2.150000,21.450000,479.780000,0.000000,38.590000,0.000000 -7,2023-08-16 19:00:00,0.000000,11.300000,95.000000,29.000000,309.000000,3.240000,21.460000,480.180000,0.000000,38.610000,0.000000 -7,2023-08-16 20:00:00,0.000000,11.300000,95.000000,29.000000,309.000000,4.320000,21.470000,480.570000,0.000000,38.620000,0.000000 -7,2023-08-16 21:00:00,0.000000,11.300000,95.000000,29.000000,309.000000,5.400000,21.470000,480.570000,0.000000,38.620000,0.000000 -7,2023-08-16 22:00:00,0.000000,11.300000,95.000000,29.000000,309.000000,6.490000,21.470000,480.570000,0.000000,38.620000,0.000000 -7,2023-08-16 23:00:00,5.550000,12.100000,95.000000,19.000000,305.000000,2.840000,18.660000,441.360000,0.000000,33.750000,0.000000 -7,2023-08-17 00:00:00,0.000000,12.100000,95.000000,19.000000,305.000000,3.790000,18.660000,441.360000,0.000000,33.750000,0.000000 -7,2023-08-17 01:00:00,0.000000,12.100000,95.000000,19.000000,305.000000,4.740000,18.660000,441.360000,0.000000,33.750000,0.000000 -7,2023-08-17 02:00:00,0.000000,12.100000,95.000000,19.000000,305.000000,5.690000,18.660000,441.360000,0.000000,33.750000,0.000000 -7,2023-08-17 03:00:00,0.000000,12.100000,95.000000,19.000000,305.000000,6.640000,18.660000,441.360000,0.000000,33.750000,0.000000 -7,2023-08-17 04:00:00,0.000000,12.100000,95.000000,19.000000,305.000000,7.600000,18.660000,441.360000,0.000000,33.750000,0.000000 -7,2023-08-17 05:00:00,1.550000,10.900000,94.000000,20.000000,288.000000,6.380000,16.980000,435.240000,0.000000,30.940000,0.000000 -7,2023-08-17 06:00:00,0.000000,10.900000,94.000000,20.000000,288.000000,7.470000,16.990000,435.430000,0.000000,30.950000,0.000000 -7,2023-08-17 07:00:00,0.000000,10.900000,94.000000,20.000000,288.000000,8.570000,16.990000,435.610000,0.000000,30.960000,0.000000 -7,2023-08-17 08:00:00,0.000000,10.900000,94.000000,20.000000,288.000000,9.660000,17.000000,435.790000,0.000000,30.980000,0.000000 -7,2023-08-17 09:00:00,0.000000,10.900000,94.000000,20.000000,288.000000,10.750000,17.000000,435.970000,0.000000,30.990000,0.000000 -7,2023-08-17 10:00:00,0.000000,10.900000,94.000000,20.000000,288.000000,11.830000,17.010000,436.160000,0.000000,31.000000,0.000000 -7,2023-08-17 11:00:00,5.770000,10.900000,93.000000,23.000000,283.000000,5.200000,11.320000,413.620000,0.000000,21.190000,0.000000 -7,2023-08-17 12:00:00,0.000000,10.900000,93.000000,23.000000,283.000000,6.510000,11.330000,413.830000,0.000000,21.200000,0.000000 -7,2023-08-17 13:00:00,0.000000,10.900000,93.000000,23.000000,283.000000,7.820000,11.330000,414.050000,0.000000,21.220000,0.000000 -7,2023-08-17 14:00:00,0.000000,10.900000,93.000000,23.000000,283.000000,9.130000,11.340000,414.260000,0.000000,21.230000,0.000000 -7,2023-08-17 15:00:00,0.000000,10.900000,93.000000,23.000000,283.000000,10.440000,11.350000,414.470000,0.000000,21.250000,0.000000 -7,2023-08-17 16:00:00,0.000000,10.900000,93.000000,23.000000,283.000000,11.750000,11.360000,414.690000,0.000000,21.260000,0.000000 -7,2023-08-17 17:00:00,2.180000,12.900000,80.000000,18.000000,296.000000,10.270000,9.400000,406.790000,0.000000,17.780000,0.000000 -7,2023-08-17 18:00:00,0.000000,12.900000,80.000000,18.000000,296.000000,13.100000,9.430000,407.480000,0.000000,17.820000,0.000000 -7,2023-08-17 19:00:00,0.000000,12.900000,80.000000,18.000000,296.000000,15.920000,9.450000,408.170000,0.000000,17.870000,0.000000 -7,2023-08-17 20:00:00,0.000000,12.900000,80.000000,18.000000,296.000000,18.730000,9.470000,408.870000,0.000000,17.910000,0.000000 -7,2023-08-17 21:00:00,0.000000,12.900000,80.000000,18.000000,296.000000,21.510000,9.470000,408.870000,0.000000,17.910000,0.000000 -7,2023-08-17 22:00:00,0.000000,12.900000,80.000000,18.000000,296.000000,24.250000,9.470000,408.870000,0.000000,17.910000,0.000000 -7,2023-08-17 23:00:00,0.020000,11.200000,77.000000,13.000000,297.000000,26.660000,9.450000,408.790000,0.000000,17.860000,0.000000 -7,2023-08-18 00:00:00,0.000000,11.200000,77.000000,13.000000,297.000000,29.120000,9.450000,408.790000,0.010000,17.860000,0.000000 -7,2023-08-18 01:00:00,0.000000,11.200000,77.000000,13.000000,297.000000,31.540000,9.450000,408.790000,0.010000,17.860000,0.010000 -7,2023-08-18 02:00:00,0.000000,11.200000,77.000000,13.000000,297.000000,33.900000,9.450000,408.790000,0.020000,17.860000,0.020000 -7,2023-08-18 03:00:00,0.000000,11.200000,77.000000,13.000000,297.000000,36.210000,9.450000,408.790000,0.030000,17.860000,0.030000 -7,2023-08-18 04:00:00,0.000000,11.200000,77.000000,13.000000,297.000000,38.450000,9.450000,408.790000,0.050000,17.860000,0.040000 -7,2023-08-18 05:00:00,0.000000,8.600000,90.000000,10.000000,292.000000,39.420000,9.450000,408.790000,0.050000,17.860000,0.040000 -7,2023-08-18 06:00:00,0.000000,8.600000,90.000000,10.000000,292.000000,40.380000,9.470000,408.890000,0.060000,17.910000,0.050000 -7,2023-08-18 07:00:00,0.000000,8.600000,90.000000,10.000000,292.000000,41.310000,9.500000,409.000000,0.070000,17.950000,0.060000 -7,2023-08-18 08:00:00,0.000000,8.600000,90.000000,10.000000,292.000000,42.230000,9.520000,409.100000,0.090000,18.000000,0.070000 -7,2023-08-18 09:00:00,0.000000,8.600000,90.000000,10.000000,292.000000,43.140000,9.550000,409.210000,0.100000,18.050000,0.090000 -7,2023-08-18 10:00:00,0.000000,8.600000,90.000000,10.000000,292.000000,44.030000,9.580000,409.310000,0.120000,18.100000,0.100000 -7,2023-08-18 11:00:00,0.000000,14.900000,57.000000,9.000000,300.000000,47.120000,9.750000,409.990000,0.180000,18.400000,0.150000 -7,2023-08-18 12:00:00,0.000000,14.900000,57.000000,9.000000,300.000000,50.060000,9.920000,410.670000,0.260000,18.700000,0.230000 -7,2023-08-18 13:00:00,0.000000,14.900000,57.000000,9.000000,300.000000,52.840000,10.090000,411.350000,0.360000,19.010000,0.310000 -7,2023-08-18 14:00:00,0.000000,14.900000,57.000000,9.000000,300.000000,55.460000,10.260000,412.030000,0.460000,19.310000,0.410000 -7,2023-08-18 15:00:00,0.000000,14.900000,57.000000,9.000000,300.000000,57.930000,10.430000,412.710000,0.560000,19.620000,0.500000 -7,2023-08-18 16:00:00,0.000000,14.900000,57.000000,9.000000,300.000000,60.230000,10.600000,413.390000,0.650000,19.920000,0.590000 -7,2023-08-18 17:00:00,0.000000,18.000000,44.000000,7.000000,330.000000,63.030000,10.870000,414.470000,0.690000,20.400000,0.630000 -8,2023-08-03 00:00:00,0.000000,14.400000,98.000000,0.000000,21.000000,84.890000,118.400000,826.100000,2.070000,174.330000,12.350000 -8,2023-08-03 01:00:00,0.000000,14.400000,98.000000,0.000000,21.000000,83.890000,118.400000,826.100000,1.810000,174.330000,11.080000 -8,2023-08-03 02:00:00,0.000000,12.400000,98.000000,1.000000,272.000000,82.900000,118.400000,826.100000,1.680000,174.330000,10.380000 -8,2023-08-03 03:00:00,0.000000,12.400000,98.000000,1.000000,272.000000,82.020000,118.400000,826.100000,1.500000,174.330000,9.470000 -8,2023-08-03 04:00:00,0.000000,12.400000,98.000000,1.000000,272.000000,81.230000,118.400000,826.100000,1.370000,174.330000,8.750000 -8,2023-08-03 05:00:00,0.000000,11.000000,98.000000,4.000000,299.000000,80.450000,118.400000,826.110000,1.460000,174.340000,9.240000 -8,2023-08-03 06:00:00,0.000000,11.000000,98.000000,4.000000,299.000000,79.760000,118.410000,826.120000,1.360000,174.340000,8.680000 -8,2023-08-03 07:00:00,0.000000,11.000000,98.000000,4.000000,299.000000,79.150000,118.410000,826.130000,1.280000,174.350000,8.240000 -8,2023-08-03 08:00:00,0.000000,15.600000,86.000000,3.000000,344.000000,79.150000,118.450000,826.240000,1.210000,174.390000,7.880000 -8,2023-08-03 09:00:00,0.000000,15.600000,86.000000,3.000000,344.000000,79.160000,118.480000,826.340000,1.210000,174.440000,7.890000 -8,2023-08-03 10:00:00,0.000000,15.600000,86.000000,3.000000,344.000000,79.160000,118.520000,826.440000,1.220000,174.480000,7.890000 -8,2023-08-03 11:00:00,0.000000,22.100000,49.000000,8.000000,50.000000,80.290000,118.720000,827.010000,1.750000,174.730000,10.790000 -8,2023-08-03 12:00:00,0.000000,22.100000,49.000000,8.000000,50.000000,81.290000,118.920000,827.570000,1.960000,174.970000,11.810000 -8,2023-08-03 13:00:00,0.000000,22.100000,49.000000,8.000000,50.000000,82.150000,119.110000,828.140000,2.170000,175.220000,12.830000 -8,2023-08-03 14:00:00,0.000000,23.700000,41.000000,8.000000,24.000000,83.250000,119.360000,828.860000,2.490000,175.530000,14.290000 -8,2023-08-03 15:00:00,0.000000,23.700000,41.000000,8.000000,24.000000,84.180000,119.620000,829.580000,2.820000,175.840000,15.710000 -8,2023-08-03 16:00:00,0.000000,23.700000,41.000000,8.000000,24.000000,84.990000,119.870000,830.300000,3.140000,176.160000,17.060000 -8,2023-08-03 17:00:00,0.900000,23.500000,39.000000,9.000000,43.000000,73.770000,114.210000,831.030000,1.130000,170.000000,7.350000 -8,2023-08-03 18:00:00,0.000000,23.500000,39.000000,9.000000,43.000000,76.080000,114.460000,831.770000,1.290000,170.330000,8.230000 -8,2023-08-03 19:00:00,0.000000,23.500000,39.000000,9.000000,43.000000,78.090000,114.720000,832.500000,1.490000,170.650000,9.380000 -8,2023-08-03 20:00:00,0.740000,19.900000,70.000000,4.000000,44.000000,68.920000,110.390000,832.790000,0.740000,165.830000,4.840000 -8,2023-08-03 21:00:00,0.000000,19.900000,70.000000,4.000000,44.000000,70.070000,110.500000,833.080000,0.770000,165.960000,5.030000 -8,2023-08-03 22:00:00,0.000000,19.900000,70.000000,4.000000,44.000000,71.140000,110.500000,833.080000,0.790000,165.960000,5.210000 -8,2023-08-03 23:00:00,0.000000,14.900000,80.000000,4.000000,302.000000,71.650000,110.500000,833.080000,0.810000,165.960000,5.300000 -8,2023-08-04 00:00:00,0.000000,14.900000,80.000000,4.000000,302.000000,72.130000,110.500000,833.080000,0.820000,165.960000,5.400000 -8,2023-08-04 01:00:00,0.000000,14.900000,80.000000,4.000000,302.000000,72.590000,110.500000,833.080000,0.840000,165.960000,5.490000 -8,2023-08-04 02:00:00,0.000000,12.800000,89.000000,7.000000,284.000000,72.790000,110.500000,833.080000,0.980000,165.960000,6.400000 -8,2023-08-04 03:00:00,0.000000,12.800000,89.000000,7.000000,284.000000,72.970000,110.500000,833.080000,0.990000,165.960000,6.440000 -8,2023-08-04 04:00:00,0.000000,12.800000,89.000000,7.000000,284.000000,73.150000,110.500000,833.080000,1.000000,165.960000,6.490000 -8,2023-08-04 05:00:00,0.000000,12.300000,96.000000,7.000000,277.000000,73.160000,110.510000,833.110000,1.000000,165.970000,6.490000 -8,2023-08-04 06:00:00,0.000000,12.300000,96.000000,7.000000,277.000000,73.180000,110.510000,833.140000,1.000000,165.990000,6.500000 -8,2023-08-04 07:00:00,0.000000,12.300000,96.000000,7.000000,277.000000,73.190000,110.520000,833.170000,1.000000,166.000000,6.500000 -8,2023-08-04 08:00:00,0.000000,18.200000,79.000000,7.000000,288.000000,73.780000,110.600000,833.400000,1.020000,166.090000,6.660000 -8,2023-08-04 09:00:00,0.000000,18.200000,79.000000,7.000000,288.000000,74.330000,110.670000,833.620000,1.050000,166.180000,6.830000 -8,2023-08-04 10:00:00,0.000000,18.200000,79.000000,7.000000,288.000000,74.850000,110.740000,833.850000,1.080000,166.270000,7.000000 -8,2023-08-04 11:00:00,0.000000,23.100000,55.000000,6.000000,304.000000,76.280000,110.940000,834.510000,1.120000,166.540000,7.230000 -8,2023-08-04 12:00:00,0.000000,23.100000,55.000000,6.000000,304.000000,77.550000,111.150000,835.170000,1.230000,166.800000,7.860000 -8,2023-08-04 13:00:00,0.000000,23.100000,55.000000,6.000000,304.000000,78.690000,111.360000,835.820000,1.350000,167.070000,8.560000 -8,2023-08-04 14:00:00,0.000000,24.700000,41.000000,5.000000,306.000000,80.210000,111.650000,836.770000,1.490000,167.450000,9.340000 -8,2023-08-04 15:00:00,0.000000,24.700000,41.000000,5.000000,306.000000,81.540000,111.950000,837.720000,1.730000,167.830000,10.580000 -8,2023-08-04 16:00:00,0.000000,24.700000,41.000000,5.000000,306.000000,82.690000,112.250000,838.670000,2.000000,168.210000,11.870000 -8,2023-08-04 17:00:00,1.780000,22.500000,73.000000,5.000000,279.000000,58.180000,93.850000,839.050000,0.460000,146.690000,2.690000 -8,2023-08-04 18:00:00,0.000000,22.500000,73.000000,5.000000,279.000000,60.140000,93.970000,839.430000,0.530000,146.850000,3.180000 -8,2023-08-04 19:00:00,0.000000,22.500000,73.000000,5.000000,279.000000,61.970000,94.090000,839.810000,0.590000,147.010000,3.600000 -8,2023-08-04 20:00:00,0.530000,20.000000,82.000000,3.000000,236.000000,56.820000,89.780000,840.030000,0.380000,141.700000,1.940000 -8,2023-08-04 21:00:00,0.000000,20.000000,82.000000,3.000000,236.000000,58.000000,89.850000,840.240000,0.410000,141.790000,2.240000 -8,2023-08-04 22:00:00,0.000000,20.000000,82.000000,3.000000,236.000000,59.140000,89.850000,840.240000,0.450000,141.790000,2.510000 -8,2023-08-04 23:00:00,0.000000,16.200000,88.000000,7.000000,279.000000,59.930000,89.850000,840.240000,0.580000,141.790000,3.460000 -8,2023-08-05 00:00:00,0.000000,16.200000,88.000000,7.000000,279.000000,60.700000,89.850000,840.240000,0.610000,141.790000,3.660000 -8,2023-08-05 01:00:00,0.000000,16.200000,88.000000,7.000000,279.000000,61.440000,89.850000,840.240000,0.630000,141.790000,3.840000 -8,2023-08-05 02:00:00,0.000000,15.500000,88.000000,10.000000,296.000000,62.200000,89.850000,840.240000,0.770000,141.790000,4.720000 -8,2023-08-05 03:00:00,0.000000,15.500000,88.000000,10.000000,296.000000,62.940000,89.850000,840.240000,0.800000,141.790000,4.900000 -8,2023-08-05 04:00:00,0.000000,15.500000,88.000000,10.000000,296.000000,63.650000,89.850000,840.240000,0.820000,141.790000,5.070000 -8,2023-08-05 05:00:00,0.000000,14.700000,92.000000,9.000000,289.000000,64.070000,89.860000,840.290000,0.800000,141.810000,4.910000 -8,2023-08-05 06:00:00,0.000000,14.700000,92.000000,9.000000,289.000000,64.470000,89.880000,840.340000,0.810000,141.830000,5.000000 -8,2023-08-05 07:00:00,0.000000,14.700000,92.000000,9.000000,289.000000,64.860000,89.890000,840.390000,0.820000,141.850000,5.080000 -8,2023-08-05 08:00:00,0.000000,17.500000,75.000000,10.000000,307.000000,66.220000,89.940000,840.580000,0.910000,141.920000,5.630000 -8,2023-08-05 09:00:00,0.000000,17.500000,75.000000,10.000000,307.000000,67.490000,90.000000,840.770000,0.950000,141.990000,5.870000 -8,2023-08-05 10:00:00,0.000000,17.500000,75.000000,10.000000,307.000000,68.670000,90.050000,840.960000,0.990000,142.070000,6.100000 -8,2023-08-05 11:00:00,0.000000,21.100000,59.000000,7.000000,324.000000,70.480000,90.150000,841.340000,0.900000,142.210000,5.570000 -8,2023-08-05 12:00:00,0.000000,21.100000,59.000000,7.000000,324.000000,72.120000,90.260000,841.730000,0.960000,142.360000,5.890000 -8,2023-08-05 13:00:00,0.000000,21.100000,59.000000,7.000000,324.000000,73.600000,90.370000,842.120000,1.020000,142.500000,6.240000 -8,2023-08-05 14:00:00,0.000000,23.800000,44.000000,7.000000,351.000000,75.680000,90.540000,842.740000,1.130000,142.740000,6.920000 -8,2023-08-05 15:00:00,0.000000,23.800000,44.000000,7.000000,351.000000,77.500000,90.710000,843.360000,1.290000,142.980000,7.760000 -8,2023-08-05 16:00:00,0.000000,23.800000,44.000000,7.000000,351.000000,79.080000,90.880000,843.980000,1.480000,143.210000,8.770000 -8,2023-08-05 17:00:00,0.000000,24.300000,41.000000,7.000000,12.000000,80.610000,91.070000,844.650000,1.730000,143.470000,10.020000 -8,2023-08-05 18:00:00,0.000000,24.300000,41.000000,7.000000,12.000000,81.930000,91.250000,845.330000,2.010000,143.720000,11.360000 -8,2023-08-05 19:00:00,0.000000,24.300000,41.000000,7.000000,12.000000,83.060000,91.440000,846.000000,2.310000,143.980000,12.730000 -8,2023-08-05 20:00:00,0.000000,22.200000,48.000000,7.000000,55.000000,83.720000,91.590000,846.520000,2.520000,144.170000,13.620000 -8,2023-08-05 21:00:00,0.000000,22.200000,48.000000,7.000000,55.000000,84.290000,91.730000,847.050000,2.720000,144.370000,14.460000 -8,2023-08-05 22:00:00,0.000000,22.200000,48.000000,7.000000,55.000000,84.790000,91.730000,847.050000,2.910000,144.370000,15.240000 -8,2023-08-05 23:00:00,0.000000,16.800000,65.000000,5.000000,90.000000,84.790000,91.730000,847.050000,2.630000,144.370000,14.100000 -8,2023-08-06 00:00:00,0.000000,16.800000,65.000000,5.000000,90.000000,84.790000,91.730000,847.050000,2.630000,144.370000,14.100000 -8,2023-08-06 01:00:00,0.000000,16.800000,65.000000,5.000000,90.000000,84.790000,91.730000,847.050000,2.630000,144.370000,14.100000 -8,2023-08-06 02:00:00,0.000000,14.400000,71.000000,3.000000,127.000000,84.740000,91.730000,847.050000,2.360000,144.370000,12.960000 -8,2023-08-06 03:00:00,0.000000,14.400000,71.000000,3.000000,127.000000,84.700000,91.730000,847.050000,2.350000,144.370000,12.900000 -8,2023-08-06 04:00:00,0.000000,14.400000,71.000000,3.000000,127.000000,84.660000,91.730000,847.050000,2.340000,144.370000,12.850000 -8,2023-08-06 05:00:00,0.000000,14.300000,69.000000,2.000000,83.000000,84.660000,91.790000,847.190000,2.220000,144.450000,12.350000 -8,2023-08-06 06:00:00,0.000000,14.300000,69.000000,2.000000,83.000000,84.660000,91.850000,847.340000,2.220000,144.540000,12.350000 -8,2023-08-06 07:00:00,0.000000,14.300000,69.000000,2.000000,83.000000,84.660000,91.920000,847.490000,2.220000,144.620000,12.350000 -8,2023-08-06 08:00:00,0.000000,17.400000,54.000000,3.000000,81.000000,84.810000,92.030000,847.760000,2.390000,144.770000,13.070000 -8,2023-08-06 09:00:00,0.000000,17.400000,54.000000,3.000000,81.000000,84.940000,92.140000,848.030000,2.430000,144.920000,13.260000 -8,2023-08-06 10:00:00,0.000000,17.400000,54.000000,3.000000,81.000000,85.070000,92.250000,848.290000,2.470000,145.060000,13.440000 -8,2023-08-06 11:00:00,0.000000,21.100000,38.000000,6.000000,90.000000,85.680000,92.440000,848.750000,3.130000,145.320000,16.140000 -8,2023-08-06 12:00:00,0.000000,21.100000,38.000000,6.000000,90.000000,86.220000,92.630000,849.200000,3.380000,145.570000,17.090000 -8,2023-08-06 13:00:00,0.000000,21.100000,38.000000,6.000000,90.000000,86.690000,92.820000,849.660000,3.610000,145.820000,17.960000 -8,2023-08-06 14:00:00,0.000000,23.200000,35.000000,7.000000,78.000000,87.280000,93.050000,850.200000,4.130000,146.120000,19.830000 -8,2023-08-06 15:00:00,0.000000,23.200000,35.000000,7.000000,78.000000,87.780000,93.270000,850.740000,4.440000,146.420000,20.900000 -8,2023-08-06 16:00:00,0.000000,23.200000,35.000000,7.000000,78.000000,88.210000,93.500000,851.280000,4.720000,146.710000,21.860000 -8,2023-08-06 17:00:00,0.000000,24.000000,36.000000,9.000000,63.000000,88.590000,93.730000,851.840000,5.510000,147.020000,24.410000 -8,2023-08-06 18:00:00,0.000000,24.000000,36.000000,9.000000,63.000000,88.910000,93.970000,852.400000,5.770000,147.330000,25.220000 -8,2023-08-06 19:00:00,0.000000,24.000000,36.000000,9.000000,63.000000,89.180000,94.200000,852.960000,5.990000,147.640000,25.920000 -8,2023-08-06 20:00:00,0.000000,22.000000,43.000000,8.000000,65.000000,89.180000,94.390000,853.410000,5.700000,147.880000,25.040000 -8,2023-08-06 21:00:00,0.000000,22.000000,43.000000,8.000000,65.000000,89.180000,94.570000,853.850000,5.700000,148.130000,25.050000 -8,2023-08-06 22:00:00,0.000000,22.000000,43.000000,8.000000,65.000000,89.180000,94.570000,853.850000,5.700000,148.130000,25.050000 -8,2023-08-06 23:00:00,0.000000,16.500000,62.000000,6.000000,61.000000,88.830000,94.570000,853.850000,4.900000,148.130000,22.540000 -8,2023-08-07 00:00:00,0.000000,16.500000,62.000000,6.000000,61.000000,88.530000,94.570000,853.850000,4.690000,148.130000,21.850000 -8,2023-08-07 01:00:00,0.000000,16.500000,62.000000,6.000000,61.000000,88.260000,94.570000,853.850000,4.520000,148.130000,21.250000 -8,2023-08-07 02:00:00,0.000000,13.900000,74.000000,2.000000,124.000000,87.790000,94.570000,853.850000,3.450000,148.130000,17.460000 -8,2023-08-07 03:00:00,0.000000,13.900000,74.000000,2.000000,124.000000,87.360000,94.570000,853.850000,3.240000,148.130000,16.680000 -8,2023-08-07 04:00:00,0.000000,13.900000,74.000000,2.000000,124.000000,86.980000,94.570000,853.850000,3.070000,148.130000,16.010000 -8,2023-08-07 05:00:00,0.000000,12.900000,82.000000,4.000000,159.000000,86.380000,94.610000,853.930000,3.120000,148.170000,16.210000 -8,2023-08-07 06:00:00,0.000000,12.900000,82.000000,4.000000,159.000000,85.850000,94.640000,854.020000,2.900000,148.220000,15.320000 -8,2023-08-07 07:00:00,0.000000,12.900000,82.000000,4.000000,159.000000,85.380000,94.680000,854.110000,2.710000,148.270000,14.570000 -8,2023-08-07 08:00:00,0.000000,19.200000,58.000000,6.000000,152.000000,85.430000,94.800000,854.410000,3.020000,148.430000,15.820000 -8,2023-08-07 09:00:00,0.000000,19.200000,58.000000,6.000000,152.000000,85.480000,94.920000,854.710000,3.040000,148.590000,15.910000 -8,2023-08-07 10:00:00,0.000000,19.200000,58.000000,6.000000,152.000000,85.520000,95.040000,855.010000,3.060000,148.750000,15.980000 -8,2023-08-07 11:00:00,0.000000,24.500000,43.000000,8.000000,154.000000,86.100000,95.270000,855.580000,3.670000,149.050000,18.320000 -8,2023-08-07 12:00:00,0.000000,24.500000,43.000000,8.000000,154.000000,86.590000,95.500000,856.140000,3.940000,149.350000,19.290000 -8,2023-08-07 13:00:00,0.000000,24.500000,43.000000,8.000000,154.000000,87.010000,95.730000,856.710000,4.180000,149.660000,20.160000 -8,2023-08-07 14:00:00,0.000000,28.000000,35.000000,9.000000,164.000000,87.820000,96.060000,857.500000,4.930000,150.080000,22.730000 -8,2023-08-07 15:00:00,0.000000,28.000000,35.000000,9.000000,164.000000,88.490000,96.380000,858.290000,5.430000,150.500000,24.330000 -8,2023-08-07 16:00:00,0.000000,28.000000,35.000000,9.000000,164.000000,89.030000,96.700000,859.090000,5.870000,150.930000,25.710000 -8,2023-08-07 17:00:00,0.660000,27.200000,39.000000,5.000000,168.000000,78.600000,90.970000,859.790000,1.280000,143.880000,7.730000 -8,2023-08-07 18:00:00,0.000000,27.200000,39.000000,5.000000,168.000000,80.410000,91.260000,860.500000,1.530000,144.270000,9.050000 -8,2023-08-07 19:00:00,0.000000,27.200000,39.000000,5.000000,168.000000,81.970000,91.550000,861.210000,1.820000,144.650000,10.530000 -8,2023-08-07 20:00:00,1.770000,20.800000,97.000000,3.000000,78.000000,55.700000,78.510000,861.240000,0.350000,127.880000,1.480000 -8,2023-08-07 21:00:00,0.000000,20.800000,97.000000,3.000000,78.000000,55.920000,78.520000,861.260000,0.350000,127.890000,1.540000 -8,2023-08-07 22:00:00,0.000000,20.800000,97.000000,3.000000,78.000000,56.130000,78.520000,861.260000,0.360000,127.890000,1.600000 -8,2023-08-07 23:00:00,0.000000,17.200000,100.000000,1.000000,291.000000,56.130000,78.520000,861.260000,0.320000,127.890000,1.260000 -8,2023-08-08 00:00:00,0.000000,17.200000,100.000000,1.000000,291.000000,56.130000,78.520000,861.260000,0.320000,127.890000,1.260000 -8,2023-08-08 01:00:00,0.000000,17.200000,100.000000,1.000000,291.000000,56.130000,78.520000,861.260000,0.320000,127.890000,1.260000 -8,2023-08-08 02:00:00,0.000000,15.900000,100.000000,4.000000,283.000000,56.130000,78.520000,861.260000,0.380000,127.890000,1.760000 -8,2023-08-08 03:00:00,0.000000,15.900000,100.000000,4.000000,283.000000,56.130000,78.520000,861.260000,0.380000,127.890000,1.760000 -8,2023-08-08 04:00:00,0.000000,15.900000,100.000000,4.000000,283.000000,56.130000,78.520000,861.260000,0.380000,127.890000,1.760000 -8,2023-08-08 05:00:00,0.000000,15.200000,100.000000,6.000000,272.000000,56.130000,78.520000,861.260000,0.420000,127.890000,2.080000 -8,2023-08-08 06:00:00,0.000000,15.200000,100.000000,6.000000,272.000000,56.130000,78.520000,861.260000,0.420000,127.890000,2.080000 -8,2023-08-08 07:00:00,0.000000,15.200000,100.000000,6.000000,272.000000,56.130000,78.520000,861.260000,0.420000,127.890000,2.080000 -8,2023-08-08 08:00:00,0.000000,17.800000,91.000000,8.000000,284.000000,56.890000,78.540000,861.380000,0.490000,127.920000,2.630000 -8,2023-08-08 09:00:00,0.000000,17.800000,91.000000,8.000000,284.000000,57.630000,78.570000,861.490000,0.520000,127.960000,2.840000 -8,2023-08-08 10:00:00,0.000000,17.800000,91.000000,8.000000,284.000000,58.340000,78.590000,861.600000,0.550000,127.990000,3.040000 -8,2023-08-08 11:00:00,0.000000,21.800000,70.000000,10.000000,330.000000,60.740000,78.690000,862.090000,0.710000,128.140000,4.100000 -8,2023-08-08 12:00:00,0.000000,21.800000,70.000000,10.000000,330.000000,62.970000,78.790000,862.580000,0.800000,128.280000,4.660000 -8,2023-08-08 13:00:00,0.000000,21.800000,70.000000,10.000000,330.000000,65.010000,78.890000,863.070000,0.870000,128.430000,5.110000 -8,2023-08-08 14:00:00,0.000000,24.200000,60.000000,9.000000,19.000000,67.520000,79.040000,863.820000,0.910000,128.660000,5.330000 -8,2023-08-08 15:00:00,0.000000,24.200000,60.000000,9.000000,19.000000,69.780000,79.200000,864.580000,0.980000,128.880000,5.730000 -8,2023-08-08 16:00:00,0.000000,24.200000,60.000000,9.000000,19.000000,71.790000,79.350000,865.330000,1.050000,129.110000,6.120000 -8,2023-08-08 17:00:00,0.000000,24.500000,57.000000,4.000000,30.000000,73.460000,79.520000,866.150000,0.870000,129.350000,5.100000 -8,2023-08-08 18:00:00,0.000000,24.500000,57.000000,4.000000,30.000000,74.960000,79.690000,866.980000,0.930000,129.600000,5.500000 -8,2023-08-08 19:00:00,0.000000,24.500000,57.000000,4.000000,30.000000,76.310000,79.860000,867.800000,1.010000,129.840000,5.960000 -8,2023-08-08 20:00:00,2.020000,20.500000,87.000000,3.000000,17.000000,51.540000,70.410000,867.990000,0.230000,117.070000,0.710000 -8,2023-08-08 21:00:00,0.000000,20.500000,87.000000,3.000000,17.000000,52.600000,70.450000,868.190000,0.260000,117.130000,0.790000 -8,2023-08-08 22:00:00,0.000000,20.500000,87.000000,3.000000,17.000000,53.630000,70.450000,868.190000,0.280000,117.130000,0.880000 -8,2023-08-08 23:00:00,0.000000,17.100000,97.000000,1.000000,14.000000,53.790000,70.450000,868.190000,0.260000,117.130000,0.810000 -8,2023-08-09 00:00:00,0.000000,17.100000,97.000000,1.000000,14.000000,53.940000,70.450000,868.190000,0.270000,117.130000,0.820000 -8,2023-08-09 01:00:00,0.000000,17.100000,97.000000,1.000000,14.000000,54.090000,70.450000,868.190000,0.270000,117.130000,0.830000 -8,2023-08-09 02:00:00,0.030000,16.000000,98.000000,1.000000,311.000000,53.830000,70.170000,867.940000,0.260000,116.740000,0.810000 -8,2023-08-09 03:00:00,0.000000,16.000000,98.000000,1.000000,311.000000,53.930000,70.170000,867.940000,0.260000,116.740000,0.820000 -8,2023-08-09 04:00:00,0.000000,16.000000,98.000000,1.000000,311.000000,54.020000,70.170000,867.940000,0.270000,116.740000,0.820000 -8,2023-08-09 05:00:00,0.080000,15.900000,98.000000,3.000000,147.000000,53.200000,69.570000,867.290000,0.270000,115.890000,0.840000 -8,2023-08-09 06:00:00,0.000000,15.900000,98.000000,3.000000,147.000000,53.330000,69.570000,867.320000,0.280000,115.900000,0.850000 -8,2023-08-09 07:00:00,0.000000,15.900000,98.000000,3.000000,147.000000,53.460000,69.570000,867.340000,0.280000,115.900000,0.860000 -8,2023-08-09 08:00:00,0.880000,17.300000,96.000000,7.000000,160.000000,44.410000,64.100000,859.970000,0.110000,108.060000,0.310000 -8,2023-08-09 09:00:00,0.000000,17.300000,96.000000,7.000000,160.000000,44.870000,64.100000,860.030000,0.110000,108.070000,0.340000 -8,2023-08-09 10:00:00,0.000000,17.300000,96.000000,7.000000,160.000000,45.330000,64.100000,860.090000,0.120000,108.070000,0.360000 -8,2023-08-09 11:00:00,1.140000,18.400000,95.000000,12.000000,161.000000,36.200000,57.920000,850.540000,0.030000,98.990000,0.080000 -8,2023-08-09 12:00:00,0.000000,18.400000,95.000000,12.000000,161.000000,37.040000,57.930000,850.620000,0.030000,99.000000,0.100000 -8,2023-08-09 13:00:00,0.000000,18.400000,95.000000,12.000000,161.000000,37.870000,57.930000,850.700000,0.040000,99.000000,0.110000 -8,2023-08-09 14:00:00,0.000000,24.600000,56.000000,11.000000,178.000000,43.000000,57.960000,851.740000,0.100000,99.070000,0.290000 -8,2023-08-09 15:00:00,0.000000,24.600000,56.000000,11.000000,178.000000,47.820000,57.990000,852.780000,0.220000,99.130000,0.600000 -8,2023-08-09 16:00:00,0.000000,24.600000,56.000000,11.000000,178.000000,52.280000,58.030000,853.810000,0.370000,99.200000,1.160000 -8,2023-08-09 17:00:00,0.680000,23.800000,61.000000,7.000000,236.000000,48.800000,54.710000,848.950000,0.200000,94.240000,0.540000 -8,2023-08-09 18:00:00,0.000000,23.800000,61.000000,7.000000,236.000000,52.390000,54.740000,849.820000,0.310000,94.300000,0.820000 -8,2023-08-09 19:00:00,0.000000,23.800000,61.000000,7.000000,236.000000,55.730000,54.770000,850.700000,0.420000,94.350000,1.510000 -8,2023-08-09 20:00:00,1.170000,19.800000,98.000000,2.000000,307.000000,43.010000,49.590000,840.850000,0.070000,86.440000,0.160000 -8,2023-08-09 21:00:00,0.000000,19.800000,98.000000,2.000000,307.000000,43.200000,49.590000,840.890000,0.070000,86.440000,0.170000 -8,2023-08-09 22:00:00,0.000000,19.800000,98.000000,2.000000,307.000000,43.380000,49.590000,840.890000,0.070000,86.440000,0.180000 -8,2023-08-09 23:00:00,0.000000,17.500000,98.000000,6.000000,257.000000,43.620000,49.590000,840.890000,0.090000,86.440000,0.220000 -8,2023-08-10 00:00:00,0.000000,17.500000,98.000000,6.000000,257.000000,43.850000,49.590000,840.890000,0.090000,86.440000,0.230000 -8,2023-08-10 01:00:00,0.000000,17.500000,98.000000,6.000000,257.000000,44.070000,49.590000,840.890000,0.100000,86.440000,0.240000 -8,2023-08-10 02:00:00,0.030000,15.500000,91.000000,12.000000,267.000000,45.180000,49.590000,840.890000,0.150000,86.440000,0.390000 -8,2023-08-10 03:00:00,0.000000,15.500000,91.000000,12.000000,267.000000,46.260000,49.590000,840.890000,0.180000,86.440000,0.460000 -8,2023-08-10 04:00:00,0.000000,15.500000,91.000000,12.000000,267.000000,47.320000,49.590000,840.890000,0.210000,86.440000,0.530000 -8,2023-08-10 05:00:00,0.050000,13.900000,89.000000,11.000000,259.000000,48.440000,49.610000,840.970000,0.230000,86.470000,0.590000 -8,2023-08-10 06:00:00,0.000000,13.900000,89.000000,11.000000,259.000000,49.530000,49.630000,841.050000,0.270000,86.510000,0.670000 -8,2023-08-10 07:00:00,0.000000,13.900000,89.000000,11.000000,259.000000,50.590000,49.660000,841.130000,0.310000,86.540000,0.770000 -8,2023-08-10 08:00:00,0.050000,14.600000,80.000000,11.000000,271.000000,52.310000,49.700000,841.290000,0.370000,86.600000,0.930000 -8,2023-08-10 09:00:00,0.000000,14.600000,80.000000,11.000000,271.000000,53.950000,49.740000,841.450000,0.440000,86.670000,1.430000 -8,2023-08-10 10:00:00,0.000000,14.600000,80.000000,11.000000,271.000000,55.520000,49.780000,841.600000,0.510000,86.730000,1.890000 -8,2023-08-10 11:00:00,0.000000,18.800000,60.000000,7.000000,253.000000,58.120000,49.880000,842.010000,0.510000,86.890000,1.920000 -8,2023-08-10 12:00:00,0.000000,18.800000,60.000000,7.000000,253.000000,60.530000,49.990000,842.420000,0.600000,87.060000,2.460000 -8,2023-08-10 13:00:00,0.000000,18.800000,60.000000,7.000000,253.000000,62.780000,50.090000,842.830000,0.680000,87.230000,2.900000 -8,2023-08-10 14:00:00,0.000000,22.100000,50.000000,10.000000,277.000000,65.790000,50.250000,843.460000,0.900000,87.480000,4.040000 -8,2023-08-10 15:00:00,0.000000,22.100000,50.000000,10.000000,277.000000,68.490000,50.420000,844.090000,0.990000,87.730000,4.470000 -8,2023-08-10 16:00:00,0.000000,22.100000,50.000000,10.000000,277.000000,70.900000,50.580000,844.720000,1.070000,87.980000,4.860000 -8,2023-08-10 17:00:00,0.000000,22.400000,50.000000,15.000000,289.000000,73.270000,50.740000,845.360000,1.500000,88.240000,6.780000 -8,2023-08-10 18:00:00,0.000000,22.400000,50.000000,15.000000,289.000000,75.340000,50.910000,845.990000,1.660000,88.500000,7.470000 -8,2023-08-10 19:00:00,0.000000,22.400000,50.000000,15.000000,289.000000,77.130000,51.070000,846.630000,1.870000,88.760000,8.310000 -8,2023-08-10 20:00:00,0.000000,22.400000,50.000000,15.000000,289.000000,78.680000,51.240000,847.270000,2.130000,89.010000,9.310000 -8,2023-08-10 21:00:00,0.000000,22.400000,50.000000,15.000000,289.000000,80.020000,51.240000,847.270000,2.420000,89.010000,10.390000 -8,2023-08-10 22:00:00,0.000000,22.400000,50.000000,15.000000,289.000000,81.170000,51.240000,847.270000,2.750000,89.010000,11.520000 -8,2023-08-10 23:00:00,0.000000,15.900000,74.000000,5.000000,265.000000,81.260000,51.240000,847.270000,1.680000,89.010000,7.570000 -8,2023-08-11 00:00:00,0.000000,15.900000,74.000000,5.000000,265.000000,81.350000,51.240000,847.270000,1.700000,89.010000,7.630000 -8,2023-08-11 01:00:00,0.000000,15.900000,74.000000,5.000000,265.000000,81.420000,51.240000,847.270000,1.710000,89.010000,7.700000 -8,2023-08-11 02:00:00,0.000000,15.900000,74.000000,5.000000,265.000000,81.500000,51.240000,847.270000,1.720000,89.010000,7.750000 -8,2023-08-11 03:00:00,0.000000,15.900000,74.000000,5.000000,265.000000,81.560000,51.240000,847.270000,1.740000,89.010000,7.810000 -8,2023-08-11 04:00:00,0.000000,15.900000,74.000000,5.000000,265.000000,81.620000,51.240000,847.270000,1.750000,89.010000,7.860000 -8,2023-08-11 05:00:00,0.000000,13.900000,59.000000,12.000000,227.000000,81.950000,51.320000,847.470000,2.590000,89.150000,10.980000 -8,2023-08-11 06:00:00,0.000000,13.900000,59.000000,12.000000,227.000000,82.240000,51.410000,847.680000,2.680000,89.280000,11.310000 -8,2023-08-11 07:00:00,0.000000,13.900000,59.000000,12.000000,227.000000,82.500000,51.490000,847.880000,2.770000,89.410000,11.620000 -8,2023-08-11 08:00:00,0.000000,13.900000,59.000000,12.000000,227.000000,82.740000,51.580000,848.080000,2.860000,89.550000,11.910000 -8,2023-08-11 09:00:00,0.000000,13.900000,59.000000,12.000000,227.000000,82.950000,51.670000,848.280000,2.930000,89.680000,12.180000 -8,2023-08-11 10:00:00,0.000000,13.900000,59.000000,12.000000,227.000000,83.140000,51.750000,848.480000,3.010000,89.810000,12.440000 -8,2023-08-11 11:00:00,0.000000,21.600000,37.000000,20.000000,259.000000,84.290000,51.970000,848.980000,5.240000,90.140000,19.020000 -8,2023-08-11 12:00:00,0.000000,21.600000,37.000000,20.000000,259.000000,85.250000,52.180000,849.490000,5.970000,90.470000,20.960000 -8,2023-08-11 13:00:00,0.000000,21.600000,37.000000,20.000000,259.000000,86.060000,52.400000,849.990000,6.680000,90.800000,22.750000 -8,2023-08-11 14:00:00,0.000000,21.600000,37.000000,20.000000,259.000000,86.730000,52.610000,850.490000,7.340000,91.130000,24.360000 -8,2023-08-11 15:00:00,0.000000,21.600000,37.000000,20.000000,259.000000,87.280000,52.830000,850.990000,7.950000,91.460000,25.790000 -8,2023-08-11 16:00:00,0.000000,21.600000,37.000000,20.000000,259.000000,87.750000,53.040000,851.490000,8.500000,91.790000,27.050000 -8,2023-08-11 17:00:00,0.000000,24.100000,28.000000,18.000000,274.000000,88.590000,53.330000,852.160000,8.670000,92.230000,27.490000 -8,2023-08-11 18:00:00,0.000000,24.100000,28.000000,18.000000,274.000000,89.280000,53.620000,852.830000,9.560000,92.670000,29.470000 -8,2023-08-11 19:00:00,0.000000,24.100000,28.000000,18.000000,274.000000,89.830000,53.900000,853.500000,10.360000,93.100000,31.180000 -8,2023-08-11 20:00:00,0.000000,24.100000,28.000000,18.000000,274.000000,90.290000,54.190000,854.170000,11.060000,93.540000,32.630000 -8,2023-08-11 21:00:00,0.000000,24.100000,28.000000,18.000000,274.000000,90.650000,54.190000,854.170000,11.650000,93.540000,33.790000 -8,2023-08-11 22:00:00,0.000000,24.100000,28.000000,18.000000,274.000000,90.950000,54.190000,854.170000,12.160000,93.540000,34.760000 -8,2023-08-11 23:00:00,0.000000,14.800000,53.000000,4.000000,246.000000,90.610000,54.190000,854.170000,5.720000,93.540000,20.680000 -8,2023-08-12 00:00:00,0.000000,14.800000,53.000000,4.000000,246.000000,90.310000,54.190000,854.170000,5.480000,93.540000,20.040000 -8,2023-08-12 01:00:00,0.000000,14.800000,53.000000,4.000000,246.000000,90.030000,54.190000,854.170000,5.260000,93.540000,19.470000 -8,2023-08-12 02:00:00,0.000000,14.800000,53.000000,4.000000,246.000000,89.780000,54.190000,854.170000,5.080000,93.540000,18.970000 -8,2023-08-12 03:00:00,0.000000,14.800000,53.000000,4.000000,246.000000,89.560000,54.190000,854.170000,4.920000,93.540000,18.540000 -8,2023-08-12 04:00:00,0.000000,14.800000,53.000000,4.000000,246.000000,89.360000,54.190000,854.170000,4.780000,93.540000,18.150000 -8,2023-08-12 05:00:00,0.000000,10.100000,69.000000,5.000000,200.000000,88.830000,54.260000,854.310000,4.660000,93.650000,17.820000 -8,2023-08-12 06:00:00,0.000000,10.100000,69.000000,5.000000,200.000000,88.360000,54.330000,854.450000,4.360000,93.750000,16.950000 -8,2023-08-12 07:00:00,0.000000,10.100000,69.000000,5.000000,200.000000,87.940000,54.400000,854.590000,4.100000,93.860000,16.200000 -8,2023-08-12 08:00:00,0.000000,10.100000,69.000000,5.000000,200.000000,87.550000,54.460000,854.730000,3.880000,93.960000,15.560000 -8,2023-08-12 09:00:00,0.000000,10.100000,69.000000,5.000000,200.000000,87.210000,54.530000,854.870000,3.690000,94.070000,14.990000 -8,2023-08-12 10:00:00,0.000000,10.100000,69.000000,5.000000,200.000000,86.900000,54.600000,855.010000,3.530000,94.170000,14.500000 -8,2023-08-12 11:00:00,0.000000,23.800000,30.000000,11.000000,115.000000,87.720000,54.980000,855.760000,5.370000,94.740000,19.890000 -8,2023-08-12 12:00:00,0.000000,23.800000,30.000000,11.000000,115.000000,88.400000,55.350000,856.510000,5.920000,95.300000,21.410000 -8,2023-08-12 13:00:00,0.000000,23.800000,30.000000,11.000000,115.000000,88.960000,55.720000,857.270000,6.430000,95.860000,22.760000 -8,2023-08-12 14:00:00,0.000000,23.800000,30.000000,11.000000,115.000000,89.440000,56.090000,858.020000,6.880000,96.430000,23.950000 -8,2023-08-12 15:00:00,0.000000,23.800000,30.000000,11.000000,115.000000,89.830000,56.470000,858.780000,7.280000,96.990000,24.980000 -8,2023-08-12 16:00:00,0.000000,23.800000,30.000000,11.000000,115.000000,90.160000,56.840000,859.530000,7.630000,97.550000,25.880000 -8,2023-08-12 17:00:00,0.830000,21.900000,50.000000,5.000000,130.000000,74.440000,53.110000,852.680000,0.960000,91.900000,4.490000 -8,2023-08-12 18:00:00,0.000000,21.900000,50.000000,5.000000,130.000000,75.960000,53.340000,853.160000,1.040000,92.270000,4.920000 -8,2023-08-12 19:00:00,0.000000,21.900000,50.000000,5.000000,130.000000,77.310000,53.580000,853.640000,1.150000,92.630000,5.430000 -8,2023-08-12 20:00:00,0.000000,21.900000,50.000000,5.000000,130.000000,78.520000,53.820000,854.120000,1.270000,92.990000,6.000000 -8,2023-08-12 21:00:00,0.000000,21.900000,50.000000,5.000000,130.000000,79.590000,53.820000,854.120000,1.400000,92.990000,6.610000 -8,2023-08-12 22:00:00,0.000000,21.900000,50.000000,5.000000,130.000000,80.550000,53.820000,854.120000,1.550000,92.990000,7.250000 -8,2023-08-12 23:00:00,3.860000,16.600000,98.000000,9.000000,220.000000,35.030000,38.890000,820.000000,0.020000,69.540000,0.040000 -8,2023-08-13 00:00:00,0.000000,16.600000,98.000000,9.000000,220.000000,35.330000,38.890000,820.000000,0.020000,69.540000,0.040000 -8,2023-08-13 01:00:00,0.000000,16.600000,98.000000,9.000000,220.000000,35.620000,38.890000,820.000000,0.020000,69.540000,0.050000 -8,2023-08-13 02:00:00,0.000000,16.600000,98.000000,9.000000,220.000000,35.920000,38.890000,820.000000,0.020000,69.540000,0.050000 -8,2023-08-13 03:00:00,0.000000,16.600000,98.000000,9.000000,220.000000,36.220000,38.890000,820.000000,0.030000,69.540000,0.050000 -8,2023-08-13 04:00:00,0.000000,16.600000,98.000000,9.000000,220.000000,36.510000,38.890000,820.000000,0.030000,69.540000,0.060000 -8,2023-08-13 05:00:00,0.600000,13.900000,96.000000,20.000000,222.000000,33.730000,38.100000,820.060000,0.020000,68.270000,0.050000 -8,2023-08-13 06:00:00,0.000000,13.900000,96.000000,20.000000,222.000000,34.440000,38.100000,820.120000,0.030000,68.280000,0.060000 -8,2023-08-13 07:00:00,0.000000,13.900000,96.000000,20.000000,222.000000,35.150000,38.110000,820.180000,0.030000,68.290000,0.070000 -8,2023-08-13 08:00:00,0.000000,13.900000,96.000000,20.000000,222.000000,35.850000,38.120000,820.250000,0.040000,68.300000,0.080000 -8,2023-08-13 09:00:00,0.000000,13.900000,96.000000,20.000000,222.000000,36.540000,38.120000,820.310000,0.050000,68.310000,0.100000 -8,2023-08-13 10:00:00,0.000000,13.900000,96.000000,20.000000,222.000000,37.220000,38.130000,820.370000,0.050000,68.320000,0.110000 -8,2023-08-13 11:00:00,0.600000,16.900000,82.000000,21.000000,277.000000,36.490000,37.380000,820.710000,0.050000,67.120000,0.100000 -8,2023-08-13 12:00:00,0.000000,16.900000,82.000000,21.000000,277.000000,39.240000,37.420000,821.040000,0.090000,67.180000,0.180000 -8,2023-08-13 13:00:00,0.000000,16.900000,82.000000,21.000000,277.000000,41.890000,37.460000,821.380000,0.140000,67.250000,0.290000 -8,2023-08-13 14:00:00,0.000000,16.900000,82.000000,21.000000,277.000000,44.430000,37.490000,821.720000,0.220000,67.310000,0.450000 -8,2023-08-13 15:00:00,0.000000,16.900000,82.000000,21.000000,277.000000,46.860000,37.530000,822.060000,0.310000,67.370000,0.650000 -8,2023-08-13 16:00:00,0.000000,16.900000,82.000000,21.000000,277.000000,49.180000,37.570000,822.390000,0.430000,67.440000,0.890000 -8,2023-08-13 17:00:00,0.380000,21.300000,63.000000,15.000000,304.000000,49.960000,37.160000,823.310000,0.350000,66.790000,0.720000 -8,2023-08-13 18:00:00,0.000000,21.300000,63.000000,15.000000,304.000000,53.640000,37.260000,824.220000,0.520000,66.960000,1.360000 -8,2023-08-13 19:00:00,0.000000,21.300000,63.000000,15.000000,304.000000,57.030000,37.360000,825.130000,0.710000,67.130000,2.350000 -8,2023-08-13 20:00:00,0.000000,21.300000,63.000000,15.000000,304.000000,60.150000,37.460000,826.040000,0.880000,67.300000,3.150000 -8,2023-08-13 21:00:00,0.000000,21.300000,63.000000,15.000000,304.000000,62.990000,37.460000,826.040000,1.030000,67.300000,3.780000 -8,2023-08-13 22:00:00,0.000000,21.300000,63.000000,15.000000,304.000000,65.560000,37.460000,826.040000,1.150000,67.300000,4.270000 -8,2023-08-13 23:00:00,0.120000,15.000000,95.000000,4.000000,262.000000,64.280000,37.280000,826.040000,0.630000,66.990000,1.950000 -8,2023-08-14 00:00:00,0.000000,15.000000,95.000000,4.000000,262.000000,64.470000,37.280000,826.040000,0.630000,66.990000,1.980000 -8,2023-08-14 01:00:00,0.000000,15.000000,95.000000,4.000000,262.000000,64.650000,37.280000,826.040000,0.640000,66.990000,2.000000 -8,2023-08-14 02:00:00,0.000000,15.000000,95.000000,4.000000,262.000000,64.830000,37.280000,826.040000,0.640000,66.990000,2.020000 -8,2023-08-14 03:00:00,0.000000,15.000000,95.000000,4.000000,262.000000,65.000000,37.280000,826.040000,0.640000,66.990000,2.050000 -8,2023-08-14 04:00:00,0.000000,15.000000,95.000000,4.000000,262.000000,65.180000,37.280000,826.040000,0.650000,66.990000,2.070000 -8,2023-08-14 05:00:00,0.030000,13.100000,99.000000,1.000000,240.000000,65.200000,37.280000,826.050000,0.560000,67.000000,1.590000 -8,2023-08-14 06:00:00,0.000000,13.100000,99.000000,1.000000,240.000000,65.210000,37.280000,826.060000,0.560000,67.000000,1.590000 -8,2023-08-14 07:00:00,0.000000,13.100000,99.000000,1.000000,240.000000,65.230000,37.280000,826.070000,0.560000,67.000000,1.590000 -8,2023-08-14 08:00:00,0.000000,13.100000,99.000000,1.000000,240.000000,65.250000,37.280000,826.080000,0.560000,67.010000,1.600000 -8,2023-08-14 09:00:00,0.000000,13.100000,99.000000,1.000000,240.000000,65.260000,37.290000,826.090000,0.560000,67.010000,1.600000 -8,2023-08-14 10:00:00,0.000000,13.100000,99.000000,1.000000,240.000000,65.280000,37.290000,826.090000,0.560000,67.010000,1.600000 -8,2023-08-14 11:00:00,0.020000,19.900000,64.000000,7.000000,97.000000,67.090000,37.400000,826.570000,0.810000,67.200000,2.840000 -8,2023-08-14 12:00:00,0.000000,19.900000,64.000000,7.000000,97.000000,68.760000,37.510000,827.040000,0.860000,67.380000,3.050000 -8,2023-08-14 13:00:00,0.000000,19.900000,64.000000,7.000000,97.000000,70.290000,37.620000,827.510000,0.900000,67.570000,3.240000 -8,2023-08-14 14:00:00,0.000000,19.900000,64.000000,7.000000,97.000000,71.700000,37.730000,827.980000,0.940000,67.750000,3.440000 -8,2023-08-14 15:00:00,0.000000,19.900000,64.000000,7.000000,97.000000,72.970000,37.850000,828.460000,0.990000,67.930000,3.650000 -8,2023-08-14 16:00:00,0.000000,19.900000,64.000000,7.000000,97.000000,74.140000,37.960000,828.930000,1.040000,68.120000,3.880000 -8,2023-08-14 17:00:00,0.000000,23.400000,43.000000,14.000000,78.000000,76.430000,38.180000,829.850000,1.690000,68.480000,6.380000 -8,2023-08-14 18:00:00,0.000000,23.400000,43.000000,14.000000,78.000000,78.400000,38.400000,830.780000,1.970000,68.840000,7.380000 -8,2023-08-14 19:00:00,0.000000,23.400000,43.000000,14.000000,78.000000,80.080000,38.620000,831.700000,2.320000,69.200000,8.550000 -8,2023-08-14 20:00:00,0.000000,23.400000,43.000000,14.000000,78.000000,81.520000,38.840000,832.630000,2.720000,69.560000,9.830000 -8,2023-08-14 21:00:00,0.000000,23.400000,43.000000,14.000000,78.000000,82.730000,38.840000,832.630000,3.160000,69.560000,11.120000 -8,2023-08-14 22:00:00,0.000000,23.400000,43.000000,14.000000,78.000000,83.770000,38.840000,832.630000,3.610000,69.560000,12.380000 -8,2023-08-14 23:00:00,0.000000,16.200000,66.000000,8.000000,85.000000,83.790000,38.840000,832.630000,2.670000,69.560000,9.690000 -8,2023-08-15 00:00:00,0.000000,16.200000,66.000000,8.000000,85.000000,83.810000,38.840000,832.630000,2.680000,69.560000,9.710000 -8,2023-08-15 01:00:00,0.000000,16.200000,66.000000,8.000000,85.000000,83.830000,38.840000,832.630000,2.690000,69.560000,9.730000 -8,2023-08-15 02:00:00,0.000000,16.200000,66.000000,8.000000,85.000000,83.840000,38.840000,832.630000,2.690000,69.560000,9.740000 -8,2023-08-15 03:00:00,0.000000,16.200000,66.000000,8.000000,85.000000,83.860000,38.840000,832.630000,2.700000,69.560000,9.760000 -8,2023-08-15 04:00:00,0.000000,16.200000,66.000000,8.000000,85.000000,83.870000,38.840000,832.630000,2.700000,69.560000,9.770000 -8,2023-08-15 05:00:00,0.000000,13.400000,74.000000,6.000000,119.000000,83.840000,38.890000,832.760000,2.430000,69.650000,8.950000 -8,2023-08-15 06:00:00,0.000000,13.400000,74.000000,6.000000,119.000000,83.810000,38.940000,832.890000,2.420000,69.740000,8.920000 -8,2023-08-15 07:00:00,0.000000,13.400000,74.000000,6.000000,119.000000,83.780000,39.000000,833.020000,2.420000,69.820000,8.910000 -8,2023-08-15 08:00:00,0.000000,13.400000,74.000000,6.000000,119.000000,83.760000,39.050000,833.150000,2.410000,69.910000,8.890000 -8,2023-08-15 09:00:00,0.000000,13.400000,74.000000,6.000000,119.000000,83.740000,39.100000,833.280000,2.400000,70.000000,8.880000 -8,2023-08-15 10:00:00,0.000000,13.400000,74.000000,6.000000,119.000000,83.720000,39.160000,833.410000,2.400000,70.080000,8.870000 -8,2023-08-15 11:00:00,0.000000,24.700000,42.000000,14.000000,129.000000,84.710000,39.400000,833.990000,4.100000,70.480000,13.790000 -8,2023-08-15 12:00:00,0.000000,24.700000,42.000000,14.000000,129.000000,85.540000,39.640000,834.580000,4.590000,70.870000,15.100000 -8,2023-08-15 13:00:00,0.000000,24.700000,42.000000,14.000000,129.000000,86.230000,39.890000,835.160000,5.060000,71.260000,16.300000 -8,2023-08-15 14:00:00,0.000000,24.700000,42.000000,14.000000,129.000000,86.800000,40.130000,835.750000,5.480000,71.660000,17.370000 -8,2023-08-15 15:00:00,0.000000,24.700000,42.000000,14.000000,129.000000,87.270000,40.370000,836.330000,5.870000,72.050000,18.310000 -8,2023-08-15 16:00:00,0.000000,24.700000,42.000000,14.000000,129.000000,87.670000,40.610000,836.920000,6.210000,72.440000,19.140000 -8,2023-08-15 17:00:00,0.000000,28.400000,37.000000,17.000000,144.000000,88.380000,40.940000,837.710000,8.000000,72.970000,23.060000 -8,2023-08-15 18:00:00,0.000000,28.400000,37.000000,17.000000,144.000000,88.950000,41.270000,838.500000,8.680000,73.500000,24.520000 -8,2023-08-15 19:00:00,0.000000,28.400000,37.000000,17.000000,144.000000,89.410000,41.600000,839.290000,9.270000,74.020000,25.740000 -8,2023-08-15 20:00:00,0.000000,28.400000,37.000000,17.000000,144.000000,89.770000,41.930000,840.080000,9.760000,74.550000,26.770000 -8,2023-08-15 21:00:00,0.000000,28.400000,37.000000,17.000000,144.000000,90.050000,41.930000,840.080000,10.160000,74.550000,27.530000 -8,2023-08-15 22:00:00,0.000000,28.400000,37.000000,17.000000,144.000000,90.270000,41.930000,840.080000,10.490000,74.550000,28.150000 -8,2023-08-15 23:00:00,0.000000,23.800000,45.000000,12.000000,166.000000,90.270000,41.930000,840.080000,8.160000,74.550000,23.640000 -8,2023-08-16 00:00:00,0.000000,23.800000,45.000000,12.000000,166.000000,90.270000,41.930000,840.080000,8.160000,74.550000,23.640000 -8,2023-08-16 01:00:00,0.000000,23.800000,45.000000,12.000000,166.000000,90.270000,41.930000,840.080000,8.160000,74.550000,23.640000 -8,2023-08-16 02:00:00,0.000000,23.800000,45.000000,12.000000,166.000000,90.270000,41.930000,840.080000,8.160000,74.550000,23.640000 -8,2023-08-16 03:00:00,0.000000,23.800000,45.000000,12.000000,166.000000,90.270000,41.930000,840.080000,8.160000,74.550000,23.640000 -8,2023-08-16 04:00:00,0.000000,23.800000,45.000000,12.000000,166.000000,90.270000,41.930000,840.080000,8.160000,74.550000,23.640000 -8,2023-08-16 05:00:00,0.000000,20.200000,61.000000,3.000000,215.000000,89.880000,42.090000,840.530000,4.900000,74.810000,16.340000 -8,2023-08-16 06:00:00,0.000000,20.200000,61.000000,3.000000,215.000000,89.530000,42.250000,840.990000,4.660000,75.070000,15.770000 -8,2023-08-16 07:00:00,0.000000,20.200000,61.000000,3.000000,215.000000,89.230000,42.410000,841.440000,4.460000,75.330000,15.290000 -8,2023-08-16 08:00:00,0.000000,20.200000,61.000000,3.000000,215.000000,88.970000,42.580000,841.890000,4.300000,75.600000,14.880000 -8,2023-08-16 09:00:00,0.000000,20.200000,61.000000,3.000000,215.000000,88.730000,42.740000,842.350000,4.160000,75.860000,14.530000 -8,2023-08-16 10:00:00,0.000000,20.200000,61.000000,3.000000,215.000000,88.530000,42.900000,842.800000,4.030000,76.120000,14.230000 -8,2023-08-16 11:00:00,0.000000,25.000000,50.000000,9.000000,350.000000,88.530000,43.180000,843.580000,5.460000,76.560000,17.950000 -8,2023-08-16 12:00:00,0.000000,25.000000,50.000000,9.000000,350.000000,88.530000,43.460000,844.360000,5.460000,77.010000,18.010000 -8,2023-08-16 13:00:00,0.000000,25.000000,50.000000,9.000000,350.000000,88.530000,43.740000,845.130000,5.460000,77.460000,18.060000 -8,2023-08-16 14:00:00,0.000000,25.000000,50.000000,9.000000,350.000000,88.530000,44.020000,845.910000,5.460000,77.900000,18.120000 -8,2023-08-16 15:00:00,0.000000,25.000000,50.000000,9.000000,350.000000,88.530000,44.300000,846.690000,5.460000,78.350000,18.180000 -8,2023-08-16 16:00:00,0.000000,25.000000,50.000000,9.000000,350.000000,88.530000,44.580000,847.470000,5.460000,78.790000,18.230000 -8,2023-08-16 17:00:00,8.100000,17.500000,97.000000,9.000000,289.000000,22.890000,32.770000,770.920000,0.000000,59.240000,0.000000 -8,2023-08-16 18:00:00,0.000000,17.500000,97.000000,9.000000,289.000000,23.420000,32.780000,770.950000,0.000000,59.260000,0.000000 -8,2023-08-16 19:00:00,0.000000,17.500000,97.000000,9.000000,289.000000,23.950000,32.790000,770.980000,0.000000,59.280000,0.000000 -8,2023-08-16 20:00:00,0.000000,17.500000,97.000000,9.000000,289.000000,24.470000,32.800000,771.010000,0.000000,59.290000,0.000000 -8,2023-08-16 21:00:00,0.000000,17.500000,97.000000,9.000000,289.000000,24.990000,32.800000,771.010000,0.000000,59.290000,0.000000 -8,2023-08-16 22:00:00,0.000000,17.500000,97.000000,9.000000,289.000000,25.510000,32.800000,771.010000,0.000000,59.290000,0.000000 -8,2023-08-16 23:00:00,14.050000,15.200000,97.000000,20.000000,281.000000,3.600000,17.780000,638.180000,0.000000,33.250000,0.000000 -8,2023-08-17 00:00:00,0.000000,15.200000,97.000000,20.000000,281.000000,4.280000,17.780000,638.180000,0.000000,33.250000,0.000000 -8,2023-08-17 01:00:00,0.000000,15.200000,97.000000,20.000000,281.000000,4.960000,17.780000,638.180000,0.000000,33.250000,0.000000 -8,2023-08-17 02:00:00,0.000000,15.200000,97.000000,20.000000,281.000000,5.650000,17.780000,638.180000,0.000000,33.250000,0.000000 -8,2023-08-17 03:00:00,0.000000,15.200000,97.000000,20.000000,281.000000,6.330000,17.780000,638.180000,0.000000,33.250000,0.000000 -8,2023-08-17 04:00:00,0.000000,15.200000,97.000000,20.000000,281.000000,7.010000,17.780000,638.180000,0.000000,33.250000,0.000000 -8,2023-08-17 05:00:00,0.550000,12.700000,70.000000,20.000000,251.000000,10.410000,17.780000,638.180000,0.000000,33.250000,0.000000 -8,2023-08-17 06:00:00,0.000000,12.700000,70.000000,20.000000,251.000000,14.070000,17.850000,638.370000,0.000000,33.360000,0.000000 -8,2023-08-17 07:00:00,0.000000,12.700000,70.000000,20.000000,251.000000,17.710000,17.910000,638.550000,0.000000,33.470000,0.000000 -8,2023-08-17 08:00:00,0.000000,12.700000,70.000000,20.000000,251.000000,21.320000,17.970000,638.730000,0.000000,33.580000,0.000000 -8,2023-08-17 09:00:00,0.000000,12.700000,70.000000,20.000000,251.000000,24.880000,18.030000,638.920000,0.000000,33.680000,0.000000 -8,2023-08-17 10:00:00,0.000000,12.700000,70.000000,20.000000,251.000000,28.380000,18.090000,639.100000,0.010000,33.790000,0.010000 -8,2023-08-17 11:00:00,0.000000,18.000000,47.000000,24.000000,250.000000,34.140000,18.240000,639.560000,0.030000,34.060000,0.040000 -8,2023-08-17 12:00:00,0.000000,18.000000,47.000000,24.000000,250.000000,39.650000,18.400000,640.010000,0.110000,34.330000,0.140000 -8,2023-08-17 13:00:00,0.000000,18.000000,47.000000,24.000000,250.000000,44.850000,18.550000,640.470000,0.270000,34.590000,0.350000 -8,2023-08-17 14:00:00,0.000000,18.000000,47.000000,24.000000,250.000000,49.700000,18.700000,640.930000,0.530000,34.860000,0.690000 -8,2023-08-17 15:00:00,0.000000,18.000000,47.000000,24.000000,250.000000,54.180000,18.860000,641.380000,0.860000,35.130000,1.520000 -8,2023-08-17 16:00:00,0.000000,18.000000,47.000000,24.000000,250.000000,58.270000,19.010000,641.840000,1.220000,35.400000,2.670000 -8,2023-08-17 17:00:00,0.000000,21.100000,38.000000,18.000000,245.000000,62.570000,19.220000,642.490000,1.170000,35.770000,2.550000 -8,2023-08-17 18:00:00,0.000000,21.100000,38.000000,18.000000,245.000000,66.410000,19.440000,643.130000,1.380000,36.150000,3.170000 -8,2023-08-17 19:00:00,0.000000,21.100000,38.000000,18.000000,245.000000,69.790000,19.660000,643.780000,1.540000,36.530000,3.650000 -8,2023-08-17 20:00:00,0.000000,21.100000,38.000000,18.000000,245.000000,72.740000,19.870000,644.430000,1.710000,36.900000,4.130000 -8,2023-08-17 21:00:00,0.000000,21.100000,38.000000,18.000000,245.000000,75.310000,19.870000,644.430000,1.930000,36.900000,4.700000 -8,2023-08-17 22:00:00,0.000000,21.100000,38.000000,18.000000,245.000000,77.520000,19.870000,644.430000,2.240000,36.900000,5.480000 -8,2023-08-17 23:00:00,0.000000,14.500000,58.000000,11.000000,242.000000,78.270000,19.870000,644.430000,1.680000,36.900000,4.050000 -8,2023-08-18 00:00:00,0.000000,14.500000,58.000000,11.000000,242.000000,78.950000,19.870000,644.430000,1.780000,36.900000,4.330000 -8,2023-08-18 01:00:00,0.000000,14.500000,58.000000,11.000000,242.000000,79.560000,19.870000,644.430000,1.890000,36.900000,4.610000 -8,2023-08-18 02:00:00,0.000000,14.500000,58.000000,11.000000,242.000000,80.120000,19.870000,644.430000,2.000000,36.900000,4.880000 -8,2023-08-18 03:00:00,0.000000,14.500000,58.000000,11.000000,242.000000,80.620000,19.870000,644.430000,2.110000,36.900000,5.160000 -8,2023-08-18 04:00:00,0.000000,14.500000,58.000000,11.000000,242.000000,81.070000,19.870000,644.430000,2.220000,36.900000,5.430000 -8,2023-08-18 05:00:00,0.000000,12.000000,62.000000,16.000000,232.000000,81.360000,19.870000,644.430000,2.950000,36.900000,7.110000 -8,2023-08-18 06:00:00,0.000000,12.000000,62.000000,16.000000,232.000000,81.620000,19.990000,644.730000,3.050000,37.110000,7.340000 -8,2023-08-18 07:00:00,0.000000,12.000000,62.000000,16.000000,232.000000,81.860000,20.110000,645.030000,3.130000,37.310000,7.550000 -8,2023-08-18 08:00:00,0.000000,12.000000,62.000000,16.000000,232.000000,82.070000,20.230000,645.330000,3.220000,37.510000,7.760000 -8,2023-08-18 09:00:00,0.000000,12.000000,62.000000,16.000000,232.000000,82.260000,20.340000,645.630000,3.290000,37.720000,7.950000 -8,2023-08-18 10:00:00,0.000000,12.000000,62.000000,16.000000,232.000000,82.440000,20.460000,645.930000,3.360000,37.920000,8.130000 -8,2023-08-18 11:00:00,0.000000,19.300000,40.000000,19.000000,247.000000,83.440000,20.760000,646.690000,4.450000,38.430000,10.390000 -8,2023-08-18 12:00:00,0.000000,19.300000,40.000000,19.000000,247.000000,84.290000,21.050000,647.440000,4.980000,38.940000,11.490000 -8,2023-08-18 13:00:00,0.000000,19.300000,40.000000,19.000000,247.000000,85.020000,21.350000,648.200000,5.500000,39.450000,12.530000 -8,2023-08-18 14:00:00,0.000000,19.300000,40.000000,19.000000,247.000000,85.630000,21.640000,648.960000,5.990000,39.950000,13.500000 -8,2023-08-18 15:00:00,0.000000,19.300000,40.000000,19.000000,247.000000,86.160000,21.940000,649.720000,6.440000,40.460000,14.390000 -8,2023-08-18 16:00:00,0.000000,19.300000,40.000000,19.000000,247.000000,86.600000,22.230000,650.470000,6.860000,40.970000,15.200000 -8,2023-08-18 17:00:00,0.900000,16.800000,60.000000,23.000000,300.000000,78.190000,22.400000,650.900000,3.050000,41.250000,7.840000 -9,2023-08-03 00:00:00,0.000000,15.900000,65.000000,3.000000,92.000000,85.960000,118.400000,826.100000,2.800000,174.330000,15.600000 -9,2023-08-03 01:00:00,0.000000,15.900000,65.000000,3.000000,92.000000,85.930000,118.400000,826.100000,2.790000,174.330000,15.550000 -9,2023-08-03 02:00:00,0.000000,13.500000,75.000000,1.000000,205.000000,85.690000,118.400000,826.100000,2.440000,174.330000,14.020000 -9,2023-08-03 03:00:00,0.000000,13.500000,75.000000,1.000000,205.000000,85.470000,118.400000,826.100000,2.360000,174.330000,13.690000 -9,2023-08-03 04:00:00,0.000000,13.500000,75.000000,1.000000,205.000000,85.270000,118.400000,826.100000,2.300000,174.330000,13.400000 -9,2023-08-03 05:00:00,0.000000,11.800000,82.000000,2.000000,243.000000,84.890000,118.440000,826.190000,2.290000,174.380000,13.380000 -9,2023-08-03 06:00:00,0.000000,11.800000,82.000000,2.000000,243.000000,84.550000,118.480000,826.280000,2.190000,174.430000,12.900000 -9,2023-08-03 07:00:00,0.000000,11.800000,82.000000,2.000000,243.000000,84.250000,118.520000,826.370000,2.100000,174.480000,12.490000 -9,2023-08-03 08:00:00,0.000000,17.500000,58.000000,1.000000,138.000000,84.350000,118.650000,826.680000,2.030000,174.630000,12.130000 -9,2023-08-03 09:00:00,0.000000,17.500000,58.000000,1.000000,138.000000,84.450000,118.780000,826.980000,2.050000,174.790000,12.260000 -9,2023-08-03 10:00:00,0.000000,17.500000,58.000000,1.000000,138.000000,84.540000,118.910000,827.290000,2.080000,174.950000,12.380000 -9,2023-08-03 11:00:00,0.000000,22.700000,38.000000,4.000000,103.000000,85.260000,119.180000,827.910000,2.670000,175.280000,15.050000 -9,2023-08-03 12:00:00,0.000000,22.700000,38.000000,4.000000,103.000000,85.880000,119.440000,828.530000,2.910000,175.600000,16.090000 -9,2023-08-03 13:00:00,0.000000,22.700000,38.000000,4.000000,103.000000,86.430000,119.710000,829.150000,3.140000,175.920000,17.050000 -9,2023-08-03 14:00:00,0.000000,24.100000,36.000000,4.000000,351.000000,87.010000,120.010000,829.850000,3.420000,176.290000,18.150000 -9,2023-08-03 15:00:00,0.000000,24.100000,36.000000,4.000000,351.000000,87.520000,120.310000,830.550000,3.670000,176.650000,19.150000 -9,2023-08-03 16:00:00,0.000000,24.100000,36.000000,4.000000,351.000000,87.960000,120.610000,831.240000,3.910000,177.010000,20.050000 -9,2023-08-03 17:00:00,1.980000,22.100000,49.000000,5.000000,351.000000,57.470000,93.640000,816.120000,0.440000,145.540000,2.490000 -9,2023-08-03 18:00:00,0.000000,22.100000,49.000000,5.000000,351.000000,60.600000,93.860000,816.610000,0.550000,145.810000,3.280000 -9,2023-08-03 19:00:00,0.000000,22.100000,49.000000,5.000000,351.000000,63.480000,94.070000,817.110000,0.640000,146.090000,3.910000 -9,2023-08-03 20:00:00,2.250000,19.700000,72.000000,1.000000,241.000000,40.020000,75.500000,799.590000,0.040000,122.170000,0.120000 -9,2023-08-03 21:00:00,0.000000,19.700000,72.000000,1.000000,241.000000,42.030000,75.600000,799.830000,0.050000,122.300000,0.170000 -9,2023-08-03 22:00:00,0.000000,19.700000,72.000000,1.000000,241.000000,43.980000,75.600000,799.830000,0.070000,122.300000,0.230000 -9,2023-08-03 23:00:00,0.000000,16.200000,80.000000,4.000000,249.000000,45.590000,75.600000,799.830000,0.110000,122.300000,0.350000 -9,2023-08-04 00:00:00,0.000000,16.200000,80.000000,4.000000,249.000000,47.160000,75.600000,799.830000,0.140000,122.300000,0.440000 -9,2023-08-04 01:00:00,0.000000,16.200000,80.000000,4.000000,249.000000,48.690000,75.600000,799.830000,0.170000,122.300000,0.540000 -9,2023-08-04 02:00:00,0.000000,14.000000,85.000000,6.000000,260.000000,49.870000,75.600000,799.830000,0.220000,122.300000,0.690000 -9,2023-08-04 03:00:00,0.000000,14.000000,85.000000,6.000000,260.000000,51.020000,75.600000,799.830000,0.250000,122.300000,0.790000 -9,2023-08-04 04:00:00,0.000000,14.000000,85.000000,6.000000,260.000000,52.130000,75.600000,799.830000,0.280000,122.300000,0.900000 -9,2023-08-04 05:00:00,0.000000,12.300000,93.000000,6.000000,258.000000,52.640000,75.610000,799.860000,0.300000,122.320000,0.950000 -9,2023-08-04 06:00:00,0.000000,12.300000,93.000000,6.000000,258.000000,53.130000,75.630000,799.890000,0.310000,122.340000,1.000000 -9,2023-08-04 07:00:00,0.000000,12.300000,93.000000,6.000000,258.000000,53.610000,75.640000,799.920000,0.330000,122.350000,1.250000 -9,2023-08-04 08:00:00,0.000000,17.900000,75.000000,5.000000,259.000000,55.360000,75.700000,800.090000,0.370000,122.440000,1.630000 -9,2023-08-04 09:00:00,0.000000,17.900000,75.000000,5.000000,259.000000,57.030000,75.760000,800.250000,0.430000,122.520000,2.080000 -9,2023-08-04 10:00:00,0.000000,17.900000,75.000000,5.000000,259.000000,58.620000,75.820000,800.420000,0.480000,122.610000,2.480000 -9,2023-08-04 11:00:00,0.000000,23.600000,47.000000,4.000000,306.000000,61.830000,76.010000,800.910000,0.560000,122.860000,3.010000 -9,2023-08-04 12:00:00,0.000000,23.600000,47.000000,4.000000,306.000000,64.760000,76.190000,801.400000,0.640000,123.120000,3.560000 -9,2023-08-04 13:00:00,0.000000,23.600000,47.000000,4.000000,306.000000,67.420000,76.370000,801.890000,0.700000,123.370000,3.980000 -9,2023-08-04 14:00:00,0.000000,25.300000,40.000000,8.000000,318.000000,70.630000,76.600000,802.510000,0.960000,123.690000,5.480000 -9,2023-08-04 15:00:00,0.000000,25.300000,40.000000,8.000000,318.000000,73.450000,76.830000,803.130000,1.060000,124.010000,6.080000 -9,2023-08-04 16:00:00,0.000000,25.300000,40.000000,8.000000,318.000000,75.900000,77.060000,803.750000,1.210000,124.330000,6.870000 -9,2023-08-04 17:00:00,0.030000,26.200000,32.000000,8.000000,310.000000,78.440000,77.340000,804.490000,1.460000,124.710000,8.180000 -9,2023-08-04 18:00:00,0.000000,26.200000,32.000000,8.000000,310.000000,80.610000,77.610000,805.230000,1.820000,125.090000,9.860000 -9,2023-08-04 19:00:00,0.000000,26.200000,32.000000,8.000000,310.000000,82.450000,77.890000,805.960000,2.250000,125.470000,11.790000 -9,2023-08-04 20:00:00,0.000000,23.600000,40.000000,6.000000,327.000000,83.480000,78.100000,806.520000,2.320000,125.750000,12.090000 -9,2023-08-04 21:00:00,0.000000,23.600000,40.000000,6.000000,327.000000,84.370000,78.310000,807.080000,2.610000,126.040000,13.290000 -9,2023-08-04 22:00:00,0.000000,23.600000,40.000000,6.000000,327.000000,85.140000,78.310000,807.080000,2.900000,126.040000,14.420000 -9,2023-08-04 23:00:00,0.000000,18.600000,59.000000,6.000000,305.000000,85.180000,78.310000,807.080000,2.920000,126.040000,14.490000 -9,2023-08-05 00:00:00,0.000000,18.600000,59.000000,6.000000,305.000000,85.220000,78.310000,807.080000,2.940000,126.040000,14.560000 -9,2023-08-05 01:00:00,0.000000,18.600000,59.000000,6.000000,305.000000,85.260000,78.310000,807.080000,2.950000,126.040000,14.610000 -9,2023-08-05 02:00:00,0.000000,16.200000,78.000000,8.000000,280.000000,84.980000,78.310000,807.080000,3.140000,126.040000,15.320000 -9,2023-08-05 03:00:00,0.000000,16.200000,78.000000,8.000000,280.000000,84.740000,78.310000,807.080000,3.040000,126.040000,14.940000 -9,2023-08-05 04:00:00,0.000000,16.200000,78.000000,8.000000,280.000000,84.530000,78.310000,807.080000,2.950000,126.040000,14.610000 -9,2023-08-05 05:00:00,0.000000,15.400000,91.000000,9.000000,280.000000,83.730000,78.330000,807.130000,2.790000,126.070000,13.990000 -9,2023-08-05 06:00:00,0.000000,15.400000,91.000000,9.000000,280.000000,83.050000,78.350000,807.180000,2.550000,126.090000,13.060000 -9,2023-08-05 07:00:00,0.000000,15.400000,91.000000,9.000000,280.000000,82.470000,78.370000,807.230000,2.370000,126.120000,12.320000 -9,2023-08-05 08:00:00,0.000000,19.600000,69.000000,11.000000,298.000000,82.630000,78.450000,807.450000,2.680000,126.240000,13.560000 -9,2023-08-05 09:00:00,0.000000,19.600000,69.000000,11.000000,298.000000,82.770000,78.540000,807.670000,2.730000,126.370000,13.760000 -9,2023-08-05 10:00:00,0.000000,19.600000,69.000000,11.000000,298.000000,82.900000,78.630000,807.890000,2.770000,126.490000,13.940000 -9,2023-08-05 11:00:00,0.000000,23.600000,42.000000,12.000000,320.000000,83.920000,78.850000,808.410000,3.330000,126.780000,16.060000 -9,2023-08-05 12:00:00,0.000000,23.600000,42.000000,12.000000,320.000000,84.790000,79.060000,808.930000,3.740000,127.070000,17.540000 -9,2023-08-05 13:00:00,0.000000,23.600000,42.000000,12.000000,320.000000,85.520000,79.280000,809.460000,4.140000,127.370000,18.920000 -9,2023-08-05 14:00:00,0.000000,24.900000,33.000000,13.000000,329.000000,86.540000,79.540000,810.110000,5.030000,127.730000,21.790000 -9,2023-08-05 15:00:00,0.000000,24.900000,33.000000,13.000000,329.000000,87.390000,79.810000,810.770000,5.670000,128.100000,23.760000 -9,2023-08-05 16:00:00,0.000000,24.900000,33.000000,13.000000,329.000000,88.090000,80.080000,811.420000,6.270000,128.460000,25.510000 -9,2023-08-05 17:00:00,0.000000,24.100000,33.000000,12.000000,341.000000,88.620000,80.330000,812.050000,6.440000,128.810000,26.000000 -9,2023-08-05 18:00:00,0.000000,24.100000,33.000000,12.000000,341.000000,89.060000,80.590000,812.670000,6.860000,129.150000,27.190000 -9,2023-08-05 19:00:00,0.000000,24.100000,33.000000,12.000000,341.000000,89.430000,80.840000,813.300000,7.230000,129.500000,28.210000 -9,2023-08-05 20:00:00,0.000000,22.300000,38.000000,8.000000,2.000000,89.500000,81.050000,813.810000,5.970000,129.790000,24.740000 -9,2023-08-05 21:00:00,0.000000,22.300000,38.000000,8.000000,2.000000,89.560000,81.260000,814.330000,6.020000,130.080000,24.910000 -9,2023-08-05 22:00:00,0.000000,22.300000,38.000000,8.000000,2.000000,89.610000,81.260000,814.330000,6.060000,130.080000,25.030000 -9,2023-08-05 23:00:00,0.000000,17.300000,54.000000,5.000000,320.000000,89.400000,81.260000,814.330000,5.060000,130.080000,22.040000 -9,2023-08-06 00:00:00,0.000000,17.300000,54.000000,5.000000,320.000000,89.220000,81.260000,814.330000,4.930000,130.080000,21.630000 -9,2023-08-06 01:00:00,0.000000,17.300000,54.000000,5.000000,320.000000,89.060000,81.260000,814.330000,4.810000,130.080000,21.270000 -9,2023-08-06 02:00:00,0.000000,14.900000,64.000000,7.000000,297.000000,88.660000,81.260000,814.330000,5.030000,130.080000,21.950000 -9,2023-08-06 03:00:00,0.000000,14.900000,64.000000,7.000000,297.000000,88.310000,81.260000,814.330000,4.780000,130.080000,21.170000 -9,2023-08-06 04:00:00,0.000000,14.900000,64.000000,7.000000,297.000000,88.000000,81.260000,814.330000,4.580000,130.080000,20.510000 -9,2023-08-06 05:00:00,0.000000,14.100000,72.000000,8.000000,315.000000,87.520000,81.320000,814.470000,4.490000,130.150000,20.250000 -9,2023-08-06 06:00:00,0.000000,14.100000,72.000000,8.000000,315.000000,87.100000,81.380000,814.610000,4.230000,130.230000,19.390000 -9,2023-08-06 07:00:00,0.000000,14.100000,72.000000,8.000000,315.000000,86.740000,81.430000,814.750000,4.020000,130.310000,18.670000 -9,2023-08-06 08:00:00,0.040000,17.700000,62.000000,5.000000,329.000000,86.700000,81.530000,814.980000,3.440000,130.440000,16.640000 -9,2023-08-06 09:00:00,0.000000,17.700000,62.000000,5.000000,329.000000,86.680000,81.630000,815.220000,3.420000,130.570000,16.600000 -9,2023-08-06 10:00:00,0.000000,17.700000,62.000000,5.000000,329.000000,86.650000,81.730000,815.450000,3.410000,130.710000,16.560000 -9,2023-08-06 11:00:00,0.000000,22.400000,40.000000,10.000000,1.000000,87.090000,81.930000,815.950000,4.670000,130.980000,20.870000 -9,2023-08-06 12:00:00,0.000000,22.400000,40.000000,10.000000,1.000000,87.460000,82.140000,816.450000,4.930000,131.260000,21.700000 -9,2023-08-06 13:00:00,0.000000,22.400000,40.000000,10.000000,1.000000,87.780000,82.350000,816.950000,5.150000,131.540000,22.430000 -9,2023-08-06 14:00:00,0.000000,23.500000,32.000000,13.000000,22.000000,88.380000,82.590000,817.550000,6.540000,131.880000,26.510000 -9,2023-08-06 15:00:00,0.000000,23.500000,32.000000,13.000000,22.000000,88.880000,82.840000,818.150000,7.020000,132.220000,27.870000 -9,2023-08-06 16:00:00,0.000000,23.500000,32.000000,13.000000,22.000000,89.290000,83.090000,818.760000,7.450000,132.560000,29.050000 -9,2023-08-06 17:00:00,0.000000,22.800000,32.000000,13.000000,42.000000,89.610000,83.330000,819.330000,7.800000,132.880000,29.980000 -9,2023-08-06 18:00:00,0.000000,22.800000,32.000000,13.000000,42.000000,89.870000,83.570000,819.910000,8.100000,133.200000,30.780000 -9,2023-08-06 19:00:00,0.000000,22.800000,32.000000,13.000000,42.000000,90.090000,83.810000,820.490000,8.350000,133.520000,31.460000 -9,2023-08-06 20:00:00,0.000000,19.800000,38.000000,11.000000,56.000000,90.090000,83.990000,820.930000,7.550000,133.770000,29.410000 -9,2023-08-06 21:00:00,0.000000,19.800000,38.000000,11.000000,56.000000,90.090000,84.170000,821.370000,7.550000,134.010000,29.430000 -9,2023-08-06 22:00:00,0.000000,19.800000,38.000000,11.000000,56.000000,90.090000,84.170000,821.370000,7.550000,134.010000,29.430000 -9,2023-08-06 23:00:00,0.000000,14.000000,63.000000,6.000000,54.000000,89.600000,84.170000,821.370000,5.470000,134.010000,23.560000 -9,2023-08-07 00:00:00,0.000000,14.000000,63.000000,6.000000,54.000000,89.170000,84.170000,821.370000,5.150000,134.010000,22.550000 -9,2023-08-07 01:00:00,0.000000,14.000000,63.000000,6.000000,54.000000,88.790000,84.170000,821.370000,4.870000,134.010000,21.690000 -9,2023-08-07 02:00:00,0.000000,11.300000,80.000000,4.000000,62.000000,88.050000,84.170000,821.370000,3.960000,134.010000,18.690000 -9,2023-08-07 03:00:00,0.000000,11.300000,80.000000,4.000000,62.000000,87.400000,84.170000,821.370000,3.610000,134.010000,17.440000 -9,2023-08-07 04:00:00,0.000000,11.300000,80.000000,4.000000,62.000000,86.820000,84.170000,821.370000,3.320000,134.010000,16.400000 -9,2023-08-07 05:00:00,0.000000,10.800000,79.000000,4.000000,84.000000,86.340000,84.210000,821.450000,3.100000,134.060000,15.570000 -9,2023-08-07 06:00:00,0.000000,10.800000,79.000000,4.000000,84.000000,85.900000,84.240000,821.540000,2.920000,134.100000,14.860000 -9,2023-08-07 07:00:00,0.000000,10.800000,79.000000,4.000000,84.000000,85.510000,84.270000,821.620000,2.760000,134.150000,14.250000 -9,2023-08-07 08:00:00,0.000000,15.400000,57.000000,7.000000,100.000000,85.510000,84.370000,821.850000,3.210000,134.270000,16.000000 -9,2023-08-07 09:00:00,0.000000,15.400000,57.000000,7.000000,100.000000,85.510000,84.460000,822.090000,3.210000,134.400000,16.000000 -9,2023-08-07 10:00:00,0.000000,15.400000,57.000000,7.000000,100.000000,85.510000,84.550000,822.320000,3.210000,134.520000,16.010000 -9,2023-08-07 11:00:00,0.000000,20.700000,41.000000,11.000000,106.000000,86.020000,84.730000,822.770000,4.220000,134.760000,19.620000 -9,2023-08-07 12:00:00,0.000000,20.700000,41.000000,11.000000,106.000000,86.460000,84.900000,823.210000,4.500000,135.000000,20.530000 -9,2023-08-07 13:00:00,0.000000,20.700000,41.000000,11.000000,106.000000,86.840000,85.080000,823.660000,4.740000,135.230000,21.350000 -9,2023-08-07 14:00:00,0.000000,23.000000,34.000000,12.000000,87.000000,87.490000,85.300000,824.230000,5.470000,135.540000,23.650000 -9,2023-08-07 15:00:00,0.000000,23.000000,34.000000,12.000000,87.000000,88.040000,85.530000,824.810000,5.920000,135.840000,25.000000 -9,2023-08-07 16:00:00,0.000000,23.000000,34.000000,12.000000,87.000000,88.490000,85.760000,825.380000,6.320000,136.150000,26.180000 -9,2023-08-07 17:00:00,0.000000,23.100000,33.000000,14.000000,77.000000,88.920000,85.990000,825.970000,7.430000,136.460000,29.290000 -9,2023-08-07 18:00:00,0.000000,23.100000,33.000000,14.000000,77.000000,89.280000,86.220000,826.550000,7.830000,136.770000,30.360000 -9,2023-08-07 19:00:00,0.000000,23.100000,33.000000,14.000000,77.000000,89.580000,86.450000,827.140000,8.170000,137.080000,31.270000 -9,2023-08-07 20:00:00,0.000000,21.100000,38.000000,11.000000,70.000000,89.600000,86.640000,827.620000,7.040000,137.340000,28.290000 -9,2023-08-07 21:00:00,0.000000,21.100000,38.000000,11.000000,70.000000,89.610000,86.830000,828.100000,7.050000,137.590000,28.350000 -9,2023-08-07 22:00:00,0.000000,21.100000,38.000000,11.000000,70.000000,89.630000,86.830000,828.100000,7.070000,137.590000,28.380000 -9,2023-08-07 23:00:00,0.000000,16.200000,51.000000,8.000000,98.000000,89.450000,86.830000,828.100000,5.930000,137.590000,25.140000 -9,2023-08-08 00:00:00,0.000000,16.200000,51.000000,8.000000,98.000000,89.300000,86.830000,828.100000,5.800000,137.590000,24.750000 -9,2023-08-08 01:00:00,0.000000,16.200000,51.000000,8.000000,98.000000,89.160000,86.830000,828.100000,5.680000,137.590000,24.420000 -9,2023-08-08 02:00:00,0.000000,15.700000,51.000000,11.000000,154.000000,89.020000,86.830000,828.100000,6.480000,137.590000,26.750000 -9,2023-08-08 03:00:00,0.000000,15.700000,51.000000,11.000000,154.000000,88.900000,86.830000,828.100000,6.370000,137.590000,26.430000 -9,2023-08-08 04:00:00,0.000000,15.700000,51.000000,11.000000,154.000000,88.800000,86.830000,828.100000,6.270000,137.590000,26.160000 -9,2023-08-08 05:00:00,0.100000,16.100000,56.000000,9.000000,149.000000,88.060000,86.930000,828.340000,5.100000,137.730000,22.630000 -9,2023-08-08 06:00:00,0.000000,16.100000,56.000000,9.000000,149.000000,87.960000,87.030000,828.580000,5.030000,137.860000,22.420000 -9,2023-08-08 07:00:00,0.000000,16.100000,56.000000,9.000000,149.000000,87.870000,87.140000,828.810000,4.970000,138.000000,22.220000 -9,2023-08-08 08:00:00,0.010000,17.800000,47.000000,11.000000,135.000000,87.810000,87.270000,829.140000,5.440000,138.180000,23.730000 -9,2023-08-08 09:00:00,0.000000,17.800000,47.000000,11.000000,135.000000,87.810000,87.410000,829.460000,5.440000,138.360000,23.740000 -9,2023-08-08 10:00:00,0.000000,17.800000,47.000000,11.000000,135.000000,87.810000,87.550000,829.780000,5.440000,138.550000,23.750000 -9,2023-08-08 11:00:00,0.000000,21.400000,37.000000,12.000000,142.000000,88.140000,87.750000,830.250000,6.000000,138.820000,25.440000 -9,2023-08-08 12:00:00,0.000000,21.400000,37.000000,12.000000,142.000000,88.420000,87.950000,830.730000,6.250000,139.090000,26.180000 -9,2023-08-08 13:00:00,0.000000,21.400000,37.000000,12.000000,142.000000,88.650000,88.160000,831.200000,6.460000,139.360000,26.810000 -9,2023-08-08 14:00:00,0.070000,23.300000,35.000000,13.000000,171.000000,88.630000,88.390000,831.760000,6.770000,139.670000,27.700000 -9,2023-08-08 15:00:00,0.000000,23.300000,35.000000,13.000000,171.000000,88.970000,88.630000,832.310000,7.110000,139.990000,28.670000 -9,2023-08-08 16:00:00,0.000000,23.300000,35.000000,13.000000,171.000000,89.250000,88.860000,832.860000,7.410000,140.300000,29.500000 -9,2023-08-08 17:00:00,0.000000,22.100000,41.000000,21.000000,176.000000,89.260000,89.060000,833.320000,11.100000,140.560000,38.600000 -9,2023-08-08 18:00:00,0.000000,22.100000,41.000000,21.000000,176.000000,89.270000,89.260000,833.790000,11.110000,140.830000,38.650000 -9,2023-08-08 19:00:00,0.000000,22.100000,41.000000,21.000000,176.000000,89.270000,89.460000,834.250000,11.120000,141.090000,38.690000 -9,2023-08-08 20:00:00,0.000000,18.900000,46.000000,22.000000,166.000000,89.270000,89.610000,834.600000,11.700000,141.290000,40.000000 -9,2023-08-08 21:00:00,0.000000,18.900000,46.000000,22.000000,166.000000,89.270000,89.760000,834.950000,11.700000,141.490000,40.010000 -9,2023-08-08 22:00:00,0.000000,18.900000,46.000000,22.000000,166.000000,89.270000,89.760000,834.950000,11.700000,141.490000,40.010000 -9,2023-08-08 23:00:00,0.480000,16.300000,63.000000,20.000000,136.000000,86.250000,89.760000,834.950000,6.870000,141.490000,28.090000 -9,2023-08-09 00:00:00,0.000000,16.300000,63.000000,20.000000,136.000000,86.230000,89.760000,834.950000,6.840000,141.490000,28.020000 -9,2023-08-09 01:00:00,0.000000,16.300000,63.000000,20.000000,136.000000,86.210000,89.760000,834.950000,6.820000,141.490000,27.960000 -9,2023-08-09 02:00:00,0.080000,15.400000,65.000000,18.000000,126.000000,86.120000,89.760000,834.950000,6.090000,141.490000,25.860000 -9,2023-08-09 03:00:00,0.000000,15.400000,65.000000,18.000000,126.000000,86.040000,89.760000,834.950000,6.030000,141.490000,25.670000 -9,2023-08-09 04:00:00,0.000000,15.400000,65.000000,18.000000,126.000000,85.980000,89.760000,834.950000,5.970000,141.490000,25.510000 -9,2023-08-09 05:00:00,0.000000,15.200000,65.000000,14.000000,126.000000,85.920000,89.820000,835.130000,4.840000,141.570000,22.020000 -9,2023-08-09 06:00:00,0.000000,15.200000,65.000000,14.000000,126.000000,85.870000,89.880000,835.310000,4.810000,141.650000,21.920000 -9,2023-08-09 07:00:00,0.000000,15.200000,65.000000,14.000000,126.000000,85.830000,89.940000,835.490000,4.780000,141.730000,21.830000 -9,2023-08-09 08:00:00,0.010000,17.100000,58.000000,13.000000,132.000000,85.830000,90.020000,835.730000,4.550000,141.840000,21.060000 -9,2023-08-09 09:00:00,0.000000,17.100000,58.000000,13.000000,132.000000,85.830000,90.100000,835.970000,4.550000,141.950000,21.070000 -9,2023-08-09 10:00:00,0.000000,17.100000,58.000000,13.000000,132.000000,85.830000,90.180000,836.210000,4.550000,142.070000,21.070000 -9,2023-08-09 11:00:00,0.000000,20.700000,49.000000,17.000000,129.000000,86.100000,90.310000,836.580000,5.780000,142.230000,24.980000 -9,2023-08-09 12:00:00,0.000000,20.700000,49.000000,17.000000,129.000000,86.330000,90.430000,836.940000,5.970000,142.400000,25.560000 -9,2023-08-09 13:00:00,0.000000,20.700000,49.000000,17.000000,129.000000,86.530000,90.560000,837.310000,6.140000,142.570000,26.070000 -9,2023-08-09 14:00:00,0.000000,25.000000,41.000000,18.000000,143.000000,87.130000,90.750000,837.860000,7.030000,142.820000,28.630000 -9,2023-08-09 15:00:00,0.000000,25.000000,41.000000,18.000000,143.000000,87.620000,90.930000,838.410000,7.540000,143.070000,30.040000 -9,2023-08-09 16:00:00,0.000000,25.000000,41.000000,18.000000,143.000000,88.020000,91.120000,838.960000,7.990000,143.330000,31.250000 -9,2023-08-09 17:00:00,0.000000,25.600000,40.000000,18.000000,153.000000,88.410000,91.320000,839.540000,8.450000,143.590000,32.460000 -9,2023-08-09 18:00:00,0.000000,25.600000,40.000000,18.000000,153.000000,88.730000,91.520000,840.120000,8.840000,143.860000,33.480000 -9,2023-08-09 19:00:00,0.000000,25.600000,40.000000,18.000000,153.000000,88.990000,91.720000,840.700000,9.180000,144.120000,34.330000 -9,2023-08-09 20:00:00,0.000000,24.000000,44.000000,15.000000,151.000000,89.000000,91.880000,841.190000,7.900000,144.350000,31.090000 -9,2023-08-09 21:00:00,0.000000,24.000000,44.000000,15.000000,151.000000,89.010000,92.050000,841.680000,7.920000,144.570000,31.140000 -9,2023-08-09 22:00:00,0.000000,24.000000,44.000000,15.000000,151.000000,89.020000,92.050000,841.680000,7.930000,144.570000,31.170000 -9,2023-08-09 23:00:00,0.000000,21.100000,53.000000,13.000000,143.000000,88.950000,92.050000,841.680000,7.100000,144.570000,28.920000 -9,2023-08-10 00:00:00,0.000000,21.100000,53.000000,13.000000,143.000000,88.900000,92.050000,841.680000,7.040000,144.570000,28.760000 -9,2023-08-10 01:00:00,0.000000,21.100000,53.000000,13.000000,143.000000,88.850000,92.050000,841.680000,6.990000,144.570000,28.620000 -9,2023-08-10 02:00:00,1.500000,17.400000,86.000000,10.000000,146.000000,60.540000,81.290000,826.800000,0.700000,130.500000,4.090000 -9,2023-08-10 03:00:00,0.000000,17.400000,86.000000,10.000000,146.000000,61.550000,81.290000,826.800000,0.740000,130.500000,4.360000 -9,2023-08-10 04:00:00,0.000000,17.400000,86.000000,10.000000,146.000000,62.510000,81.290000,826.800000,0.780000,130.500000,4.590000 -9,2023-08-10 05:00:00,0.030000,16.200000,93.000000,10.000000,136.000000,62.480000,81.040000,826.590000,0.780000,130.170000,4.580000 -9,2023-08-10 06:00:00,0.000000,16.200000,93.000000,10.000000,136.000000,62.910000,81.070000,826.670000,0.800000,130.210000,4.690000 -9,2023-08-10 07:00:00,0.000000,16.200000,93.000000,10.000000,136.000000,63.330000,81.090000,826.750000,0.810000,130.250000,4.780000 -9,2023-08-10 08:00:00,0.000000,18.000000,82.000000,11.000000,153.000000,64.500000,81.170000,826.990000,0.900000,130.360000,5.310000 -9,2023-08-10 09:00:00,0.000000,18.000000,82.000000,11.000000,153.000000,65.600000,81.250000,827.230000,0.940000,130.470000,5.550000 -9,2023-08-10 10:00:00,0.000000,18.000000,82.000000,11.000000,153.000000,66.630000,81.330000,827.470000,0.980000,130.580000,5.760000 -9,2023-08-10 11:00:00,0.000000,23.400000,53.000000,12.000000,184.000000,69.360000,81.620000,828.350000,1.120000,130.980000,6.590000 -9,2023-08-10 12:00:00,0.000000,23.400000,53.000000,12.000000,184.000000,71.780000,81.910000,829.230000,1.220000,131.380000,7.100000 -9,2023-08-10 13:00:00,0.000000,23.400000,53.000000,12.000000,184.000000,73.900000,82.200000,830.100000,1.330000,131.770000,7.690000 -9,2023-08-10 14:00:00,2.160000,25.000000,54.000000,11.000000,204.000000,48.060000,70.380000,809.610000,0.220000,115.630000,0.680000 -9,2023-08-10 15:00:00,0.000000,25.000000,54.000000,11.000000,204.000000,52.700000,70.690000,810.560000,0.390000,116.070000,1.670000 -9,2023-08-10 16:00:00,0.000000,25.000000,54.000000,11.000000,204.000000,56.940000,71.000000,811.500000,0.570000,116.520000,3.000000 -9,2023-08-10 17:00:00,5.290000,21.200000,88.000000,7.000000,193.000000,21.660000,50.450000,759.200000,0.000000,86.530000,0.000000 -9,2023-08-10 18:00:00,0.000000,21.200000,88.000000,7.000000,193.000000,23.610000,50.520000,759.400000,0.000000,86.620000,0.000000 -9,2023-08-10 19:00:00,0.000000,21.200000,88.000000,7.000000,193.000000,25.530000,50.580000,759.590000,0.000000,86.720000,0.000000 -9,2023-08-10 20:00:00,0.000000,21.200000,88.000000,7.000000,193.000000,27.420000,50.640000,759.790000,0.000000,86.820000,0.010000 -9,2023-08-10 21:00:00,0.000000,21.200000,88.000000,7.000000,193.000000,29.290000,50.640000,759.790000,0.000000,86.820000,0.010000 -9,2023-08-10 22:00:00,0.000000,21.200000,88.000000,7.000000,193.000000,31.130000,50.640000,759.790000,0.010000,86.820000,0.020000 -9,2023-08-10 23:00:00,0.000000,17.200000,85.000000,9.000000,225.000000,33.120000,50.640000,759.790000,0.010000,86.820000,0.030000 -9,2023-08-11 00:00:00,0.000000,17.200000,85.000000,9.000000,225.000000,35.070000,50.640000,759.790000,0.020000,86.820000,0.050000 -9,2023-08-11 01:00:00,0.000000,17.200000,85.000000,9.000000,225.000000,36.970000,50.640000,759.790000,0.030000,86.820000,0.070000 -9,2023-08-11 02:00:00,0.000000,17.200000,85.000000,9.000000,225.000000,38.830000,50.640000,759.790000,0.040000,86.820000,0.110000 -9,2023-08-11 03:00:00,0.000000,17.200000,85.000000,9.000000,225.000000,40.640000,50.640000,759.790000,0.060000,86.820000,0.150000 -9,2023-08-11 04:00:00,0.000000,17.200000,85.000000,9.000000,225.000000,42.400000,50.640000,759.790000,0.080000,86.820000,0.210000 -9,2023-08-11 05:00:00,0.000000,16.000000,77.000000,8.000000,224.000000,44.560000,50.700000,759.930000,0.110000,86.900000,0.290000 -9,2023-08-11 06:00:00,0.000000,16.000000,77.000000,8.000000,224.000000,46.650000,50.750000,760.080000,0.160000,86.980000,0.400000 -9,2023-08-11 07:00:00,0.000000,16.000000,77.000000,8.000000,224.000000,48.650000,50.810000,760.220000,0.210000,87.060000,0.520000 -9,2023-08-11 08:00:00,0.000000,16.000000,77.000000,8.000000,224.000000,50.580000,50.860000,760.370000,0.260000,87.150000,0.660000 -9,2023-08-11 09:00:00,0.000000,16.000000,77.000000,8.000000,224.000000,52.420000,50.910000,760.520000,0.320000,87.230000,0.820000 -9,2023-08-11 10:00:00,0.000000,16.000000,77.000000,8.000000,224.000000,54.190000,50.970000,760.660000,0.390000,87.310000,0.980000 -9,2023-08-11 11:00:00,0.000000,24.100000,48.000000,12.000000,199.000000,58.550000,51.170000,761.200000,0.680000,87.610000,2.910000 -9,2023-08-11 12:00:00,0.000000,24.100000,48.000000,12.000000,199.000000,62.480000,51.370000,761.750000,0.860000,87.910000,3.870000 -9,2023-08-11 13:00:00,0.000000,24.100000,48.000000,12.000000,199.000000,65.990000,51.570000,762.290000,1.000000,88.210000,4.570000 -9,2023-08-11 14:00:00,0.000000,24.100000,48.000000,12.000000,199.000000,69.100000,51.770000,762.830000,1.110000,88.520000,5.100000 -9,2023-08-11 15:00:00,0.000000,24.100000,48.000000,12.000000,199.000000,71.840000,51.970000,763.380000,1.220000,88.820000,5.590000 -9,2023-08-11 16:00:00,0.000000,24.100000,48.000000,12.000000,199.000000,74.230000,52.170000,763.920000,1.350000,89.120000,6.180000 -9,2023-08-11 17:00:00,0.000000,25.900000,31.000000,11.000000,219.000000,77.180000,52.460000,764.720000,1.530000,89.560000,7.000000 -9,2023-08-11 18:00:00,0.000000,25.900000,31.000000,11.000000,219.000000,79.680000,52.760000,765.530000,1.910000,90.010000,8.560000 -9,2023-08-11 19:00:00,0.000000,25.900000,31.000000,11.000000,219.000000,81.790000,53.050000,766.330000,2.420000,90.450000,10.460000 -9,2023-08-11 20:00:00,0.000000,25.900000,31.000000,11.000000,219.000000,83.550000,53.350000,767.130000,3.020000,90.900000,12.550000 -9,2023-08-11 21:00:00,0.000000,25.900000,31.000000,11.000000,219.000000,85.020000,53.350000,767.130000,3.680000,90.900000,14.660000 -9,2023-08-11 22:00:00,0.000000,25.900000,31.000000,11.000000,219.000000,86.250000,53.350000,767.130000,4.360000,90.900000,16.680000 -9,2023-08-11 23:00:00,0.000000,19.200000,49.000000,8.000000,201.000000,86.390000,53.350000,767.130000,3.820000,90.900000,15.100000 -9,2023-08-12 00:00:00,0.000000,19.200000,49.000000,8.000000,201.000000,86.510000,53.350000,767.130000,3.890000,90.900000,15.310000 -9,2023-08-12 01:00:00,0.000000,19.200000,49.000000,8.000000,201.000000,86.620000,53.350000,767.130000,3.950000,90.900000,15.490000 -9,2023-08-12 02:00:00,0.000000,19.200000,49.000000,8.000000,201.000000,86.720000,53.350000,767.130000,4.010000,90.900000,15.650000 -9,2023-08-12 03:00:00,0.000000,19.200000,49.000000,8.000000,201.000000,86.800000,53.350000,767.130000,4.050000,90.900000,15.790000 -9,2023-08-12 04:00:00,0.000000,19.200000,49.000000,8.000000,201.000000,86.870000,53.350000,767.130000,4.100000,90.900000,15.920000 -9,2023-08-12 05:00:00,0.770000,15.900000,89.000000,5.000000,289.000000,79.660000,53.370000,767.220000,1.410000,90.930000,6.550000 -9,2023-08-12 06:00:00,0.000000,15.900000,89.000000,5.000000,289.000000,79.660000,53.400000,767.310000,1.410000,90.970000,6.550000 -9,2023-08-12 07:00:00,0.000000,15.900000,89.000000,5.000000,289.000000,79.660000,53.420000,767.400000,1.410000,91.010000,6.550000 -9,2023-08-12 08:00:00,0.000000,15.900000,89.000000,5.000000,289.000000,79.660000,53.450000,767.480000,1.410000,91.050000,6.560000 -9,2023-08-12 09:00:00,0.000000,15.900000,89.000000,5.000000,289.000000,79.660000,53.480000,767.570000,1.410000,91.090000,6.560000 -9,2023-08-12 10:00:00,0.000000,15.900000,89.000000,5.000000,289.000000,79.660000,53.500000,767.660000,1.410000,91.120000,6.560000 -9,2023-08-12 11:00:00,0.050000,21.300000,58.000000,13.000000,270.000000,80.130000,53.630000,768.130000,2.220000,91.330000,9.790000 -9,2023-08-12 12:00:00,0.000000,21.300000,58.000000,13.000000,270.000000,80.920000,53.770000,768.610000,2.420000,91.530000,10.540000 -9,2023-08-12 13:00:00,0.000000,21.300000,58.000000,13.000000,270.000000,81.620000,53.900000,769.080000,2.620000,91.730000,11.270000 -9,2023-08-12 14:00:00,0.000000,21.300000,58.000000,13.000000,270.000000,82.220000,54.040000,769.550000,2.820000,91.940000,11.960000 -9,2023-08-12 15:00:00,0.000000,21.300000,58.000000,13.000000,270.000000,82.750000,54.170000,770.030000,3.010000,92.140000,12.620000 -9,2023-08-12 16:00:00,0.000000,21.300000,58.000000,13.000000,270.000000,83.210000,54.310000,770.500000,3.190000,92.340000,13.240000 -9,2023-08-12 17:00:00,0.000000,24.600000,37.000000,16.000000,298.000000,84.490000,54.550000,771.370000,4.400000,92.710000,16.980000 -9,2023-08-12 18:00:00,0.000000,24.600000,37.000000,16.000000,298.000000,85.560000,54.800000,772.230000,5.090000,93.080000,18.960000 -9,2023-08-12 19:00:00,0.000000,24.600000,37.000000,16.000000,298.000000,86.440000,55.050000,773.100000,5.770000,93.460000,20.790000 -9,2023-08-12 20:00:00,0.000000,24.600000,37.000000,16.000000,298.000000,87.170000,55.290000,773.970000,6.390000,93.830000,22.430000 -9,2023-08-12 21:00:00,0.000000,24.600000,37.000000,16.000000,298.000000,87.770000,55.290000,773.970000,6.970000,93.830000,23.830000 -9,2023-08-12 22:00:00,0.000000,24.600000,37.000000,16.000000,298.000000,88.260000,55.290000,773.970000,7.470000,93.830000,25.030000 -9,2023-08-12 23:00:00,0.000000,18.400000,66.000000,10.000000,256.000000,87.930000,55.290000,773.970000,5.260000,93.830000,19.500000 -9,2023-08-13 00:00:00,0.000000,18.400000,66.000000,10.000000,256.000000,87.640000,55.290000,773.970000,5.050000,93.830000,18.930000 -9,2023-08-13 01:00:00,0.000000,18.400000,66.000000,10.000000,256.000000,87.390000,55.290000,773.970000,4.880000,93.830000,18.440000 -9,2023-08-13 02:00:00,0.000000,18.400000,66.000000,10.000000,256.000000,87.180000,55.290000,773.970000,4.730000,93.830000,18.040000 -9,2023-08-13 03:00:00,0.000000,18.400000,66.000000,10.000000,256.000000,87.000000,55.290000,773.970000,4.610000,93.830000,17.690000 -9,2023-08-13 04:00:00,0.000000,18.400000,66.000000,10.000000,256.000000,86.840000,55.290000,773.970000,4.510000,93.830000,17.400000 -9,2023-08-13 05:00:00,0.000000,16.500000,62.000000,11.000000,264.000000,86.770000,55.380000,774.170000,4.690000,93.960000,17.940000 -9,2023-08-13 06:00:00,0.000000,16.500000,62.000000,11.000000,264.000000,86.700000,55.470000,774.370000,4.650000,94.100000,17.830000 -9,2023-08-13 07:00:00,0.000000,16.500000,62.000000,11.000000,264.000000,86.650000,55.570000,774.570000,4.610000,94.230000,17.740000 -9,2023-08-13 08:00:00,0.000000,16.500000,62.000000,11.000000,264.000000,86.600000,55.660000,774.760000,4.580000,94.370000,17.670000 -9,2023-08-13 09:00:00,0.000000,16.500000,62.000000,11.000000,264.000000,86.560000,55.750000,774.960000,4.560000,94.500000,17.600000 -9,2023-08-13 10:00:00,0.000000,16.500000,62.000000,11.000000,264.000000,86.520000,55.840000,775.160000,4.530000,94.640000,17.550000 -9,2023-08-13 11:00:00,0.000000,23.800000,35.000000,10.000000,262.000000,87.200000,56.080000,775.700000,4.750000,95.000000,18.200000 -9,2023-08-13 12:00:00,0.000000,23.800000,35.000000,10.000000,262.000000,87.780000,56.330000,776.230000,5.150000,95.360000,19.370000 -9,2023-08-13 13:00:00,0.000000,23.800000,35.000000,10.000000,262.000000,88.260000,56.570000,776.770000,5.520000,95.720000,20.410000 -9,2023-08-13 14:00:00,0.000000,23.800000,35.000000,10.000000,262.000000,88.670000,56.820000,777.300000,5.850000,96.080000,21.320000 -9,2023-08-13 15:00:00,0.000000,23.800000,35.000000,10.000000,262.000000,89.000000,57.060000,777.830000,6.150000,96.440000,22.110000 -9,2023-08-13 16:00:00,0.000000,23.800000,35.000000,10.000000,262.000000,89.290000,57.310000,778.370000,6.400000,96.800000,22.810000 -9,2023-08-13 17:00:00,0.000000,26.900000,27.000000,5.000000,279.000000,89.900000,57.640000,779.090000,5.430000,97.290000,20.330000 -9,2023-08-13 18:00:00,0.000000,26.900000,27.000000,5.000000,279.000000,90.410000,57.970000,779.810000,5.840000,97.770000,21.480000 -9,2023-08-13 19:00:00,0.000000,26.900000,27.000000,5.000000,279.000000,90.830000,58.300000,780.530000,6.210000,98.260000,22.480000 -9,2023-08-13 20:00:00,0.000000,26.900000,27.000000,5.000000,279.000000,91.180000,58.630000,781.260000,6.530000,98.740000,23.350000 -9,2023-08-13 21:00:00,0.000000,26.900000,27.000000,5.000000,279.000000,91.470000,58.630000,781.260000,6.800000,98.740000,24.040000 -9,2023-08-13 22:00:00,0.000000,26.900000,27.000000,5.000000,279.000000,91.720000,58.630000,781.260000,7.040000,98.740000,24.620000 -9,2023-08-13 23:00:00,0.000000,18.100000,49.000000,3.000000,141.000000,91.410000,58.630000,781.260000,6.100000,98.740000,22.250000 -9,2023-08-14 00:00:00,0.000000,18.100000,49.000000,3.000000,141.000000,91.140000,58.630000,781.260000,5.870000,98.740000,21.650000 -9,2023-08-14 01:00:00,0.000000,18.100000,49.000000,3.000000,141.000000,90.900000,58.630000,781.260000,5.670000,98.740000,21.110000 -9,2023-08-14 02:00:00,0.000000,18.100000,49.000000,3.000000,141.000000,90.680000,58.630000,781.260000,5.490000,98.740000,20.650000 -9,2023-08-14 03:00:00,0.000000,18.100000,49.000000,3.000000,141.000000,90.480000,58.630000,781.260000,5.340000,98.740000,20.230000 -9,2023-08-14 04:00:00,0.000000,18.100000,49.000000,3.000000,141.000000,90.310000,58.630000,781.260000,5.210000,98.740000,19.870000 -9,2023-08-14 05:00:00,0.000000,13.800000,57.000000,8.000000,183.000000,89.910000,58.720000,781.430000,6.320000,98.870000,22.850000 -9,2023-08-14 06:00:00,0.000000,13.800000,57.000000,8.000000,183.000000,89.550000,58.810000,781.600000,6.010000,98.990000,22.050000 -9,2023-08-14 07:00:00,0.000000,13.800000,57.000000,8.000000,183.000000,89.230000,58.900000,781.780000,5.740000,99.120000,21.360000 -9,2023-08-14 08:00:00,0.000000,13.800000,57.000000,8.000000,183.000000,88.950000,58.980000,781.950000,5.520000,99.250000,20.770000 -9,2023-08-14 09:00:00,0.000000,13.800000,57.000000,8.000000,183.000000,88.700000,59.070000,782.120000,5.320000,99.380000,20.250000 -9,2023-08-14 10:00:00,0.000000,13.800000,57.000000,8.000000,183.000000,88.480000,59.160000,782.300000,5.160000,99.500000,19.800000 -9,2023-08-14 11:00:00,0.000000,26.300000,31.000000,13.000000,188.000000,89.140000,59.460000,782.900000,7.290000,99.950000,25.380000 -9,2023-08-14 12:00:00,0.000000,26.300000,31.000000,13.000000,188.000000,89.680000,59.760000,783.500000,7.870000,100.390000,26.820000 -9,2023-08-14 13:00:00,0.000000,26.300000,31.000000,13.000000,188.000000,90.110000,60.070000,784.100000,8.380000,100.830000,28.050000 -9,2023-08-14 14:00:00,0.000000,26.300000,31.000000,13.000000,188.000000,90.460000,60.370000,784.710000,8.810000,101.270000,29.090000 -9,2023-08-14 15:00:00,0.000000,26.300000,31.000000,13.000000,188.000000,90.750000,60.680000,785.310000,9.180000,101.710000,29.970000 -9,2023-08-14 16:00:00,0.000000,26.300000,31.000000,13.000000,188.000000,90.980000,60.980000,785.910000,9.490000,102.150000,30.700000 -9,2023-08-14 17:00:00,0.000000,29.100000,25.000000,14.000000,181.000000,91.570000,61.370000,786.680000,10.850000,102.710000,33.670000 -9,2023-08-14 18:00:00,0.000000,29.100000,25.000000,14.000000,181.000000,92.030000,61.760000,787.450000,11.580000,103.270000,35.240000 -9,2023-08-14 19:00:00,0.000000,29.100000,25.000000,14.000000,181.000000,92.390000,62.150000,788.220000,12.190000,103.830000,36.540000 -9,2023-08-14 20:00:00,0.000000,29.100000,25.000000,14.000000,181.000000,92.670000,62.540000,788.990000,12.680000,104.390000,37.590000 -9,2023-08-14 21:00:00,0.000000,29.100000,25.000000,14.000000,181.000000,92.900000,62.540000,788.990000,13.090000,104.390000,38.370000 -9,2023-08-14 22:00:00,0.000000,29.100000,25.000000,14.000000,181.000000,93.070000,62.540000,788.990000,13.410000,104.390000,38.980000 -9,2023-08-14 23:00:00,0.000000,21.700000,42.000000,11.000000,185.000000,92.730000,62.540000,788.990000,11.000000,104.390000,34.230000 -9,2023-08-15 00:00:00,0.000000,21.700000,42.000000,11.000000,185.000000,92.440000,62.540000,788.990000,10.560000,104.390000,33.310000 -9,2023-08-15 01:00:00,0.000000,21.700000,42.000000,11.000000,185.000000,92.190000,62.540000,788.990000,10.190000,104.390000,32.540000 -9,2023-08-15 02:00:00,0.000000,21.700000,42.000000,11.000000,185.000000,91.980000,62.540000,788.990000,9.880000,104.390000,31.880000 -9,2023-08-15 03:00:00,0.000000,21.700000,42.000000,11.000000,185.000000,91.790000,62.540000,788.990000,9.620000,104.390000,31.310000 -9,2023-08-15 04:00:00,0.000000,21.700000,42.000000,11.000000,185.000000,91.630000,62.540000,788.990000,9.400000,104.390000,30.830000 -9,2023-08-15 05:00:00,0.000000,18.600000,51.000000,12.000000,181.000000,91.200000,62.650000,789.220000,9.310000,104.560000,30.660000 -9,2023-08-15 06:00:00,0.000000,18.600000,51.000000,12.000000,181.000000,90.840000,62.770000,789.450000,8.840000,104.720000,29.620000 -9,2023-08-15 07:00:00,0.000000,18.600000,51.000000,12.000000,181.000000,90.520000,62.890000,789.680000,8.450000,104.890000,28.750000 -9,2023-08-15 08:00:00,0.000000,18.600000,51.000000,12.000000,181.000000,90.250000,63.000000,789.910000,8.130000,105.060000,28.020000 -9,2023-08-15 09:00:00,0.000000,18.600000,51.000000,12.000000,181.000000,90.020000,63.120000,790.130000,7.860000,105.230000,27.400000 -9,2023-08-15 10:00:00,0.000000,18.600000,51.000000,12.000000,181.000000,89.810000,63.240000,790.360000,7.640000,105.390000,26.870000 -9,2023-08-15 11:00:00,0.000000,28.900000,32.000000,9.000000,200.000000,90.270000,63.540000,790.950000,7.010000,105.820000,25.380000 -9,2023-08-15 12:00:00,0.000000,28.900000,32.000000,9.000000,200.000000,90.650000,63.840000,791.540000,7.400000,106.260000,26.390000 -9,2023-08-15 13:00:00,0.000000,28.900000,32.000000,9.000000,200.000000,90.950000,64.140000,792.120000,7.720000,106.690000,27.230000 -9,2023-08-15 14:00:00,0.000000,28.900000,32.000000,9.000000,200.000000,91.190000,64.440000,792.710000,7.990000,107.120000,27.930000 -9,2023-08-15 15:00:00,0.000000,28.900000,32.000000,9.000000,200.000000,91.390000,64.740000,793.300000,8.220000,107.550000,28.520000 -9,2023-08-15 16:00:00,0.000000,28.900000,32.000000,9.000000,200.000000,91.540000,65.050000,793.880000,8.400000,107.970000,29.010000 -9,2023-08-15 17:00:00,0.000000,33.000000,24.000000,1.000000,304.000000,92.090000,65.470000,794.710000,6.070000,108.580000,23.210000 -9,2023-08-15 18:00:00,0.000000,33.000000,24.000000,1.000000,304.000000,92.540000,65.900000,795.540000,6.460000,109.180000,24.330000 -9,2023-08-15 19:00:00,0.000000,33.000000,24.000000,1.000000,304.000000,92.910000,66.320000,796.370000,6.810000,109.790000,25.290000 -9,2023-08-15 20:00:00,0.000000,33.000000,24.000000,1.000000,304.000000,93.210000,66.750000,797.200000,7.100000,110.390000,26.110000 -9,2023-08-15 21:00:00,0.000000,33.000000,24.000000,1.000000,304.000000,93.460000,66.750000,797.200000,7.350000,110.390000,26.740000 -9,2023-08-15 22:00:00,0.000000,33.000000,24.000000,1.000000,304.000000,93.660000,66.750000,797.200000,7.560000,110.390000,27.260000 -9,2023-08-15 23:00:00,0.000000,23.100000,45.000000,8.000000,195.000000,93.200000,66.750000,797.200000,10.090000,110.390000,33.120000 -9,2023-08-16 00:00:00,0.000000,23.100000,45.000000,8.000000,195.000000,92.800000,66.750000,797.200000,9.540000,110.390000,31.910000 -9,2023-08-16 01:00:00,0.000000,23.100000,45.000000,8.000000,195.000000,92.450000,66.750000,797.200000,9.090000,110.390000,30.900000 -9,2023-08-16 02:00:00,0.000000,23.100000,45.000000,8.000000,195.000000,92.160000,66.750000,797.200000,8.720000,110.390000,30.040000 -9,2023-08-16 03:00:00,0.000000,23.100000,45.000000,8.000000,195.000000,91.900000,66.750000,797.200000,8.410000,110.390000,29.310000 -9,2023-08-16 04:00:00,0.000000,23.100000,45.000000,8.000000,195.000000,91.680000,66.750000,797.200000,8.150000,110.390000,28.700000 -9,2023-08-16 05:00:00,0.000000,19.700000,51.000000,12.000000,178.000000,91.260000,66.870000,797.440000,9.390000,110.560000,31.610000 -9,2023-08-16 06:00:00,0.000000,19.700000,51.000000,12.000000,178.000000,90.900000,66.990000,797.670000,8.920000,110.740000,30.550000 -9,2023-08-16 07:00:00,0.000000,19.700000,51.000000,12.000000,178.000000,90.590000,67.120000,797.910000,8.540000,110.910000,29.680000 -9,2023-08-16 08:00:00,0.000000,19.700000,51.000000,12.000000,178.000000,90.330000,67.240000,798.150000,8.220000,111.090000,28.940000 -9,2023-08-16 09:00:00,0.000000,19.700000,51.000000,12.000000,178.000000,90.100000,67.370000,798.380000,7.950000,111.260000,28.320000 -9,2023-08-16 10:00:00,0.000000,19.700000,51.000000,12.000000,178.000000,89.900000,67.490000,798.620000,7.730000,111.440000,27.790000 -9,2023-08-16 11:00:00,0.000000,29.200000,31.000000,16.000000,173.000000,90.450000,67.800000,799.210000,10.240000,111.870000,33.640000 -9,2023-08-16 12:00:00,0.000000,29.200000,31.000000,16.000000,173.000000,90.890000,68.100000,799.800000,10.890000,112.300000,35.110000 -9,2023-08-16 13:00:00,0.000000,29.200000,31.000000,16.000000,173.000000,91.230000,68.410000,800.380000,11.430000,112.730000,36.310000 -9,2023-08-16 14:00:00,0.000000,29.200000,31.000000,16.000000,173.000000,91.500000,68.720000,800.970000,11.880000,113.160000,37.280000 -9,2023-08-16 15:00:00,0.000000,29.200000,31.000000,16.000000,173.000000,91.700000,69.030000,801.560000,12.230000,113.600000,38.070000 -9,2023-08-16 16:00:00,0.000000,29.200000,31.000000,16.000000,173.000000,91.870000,69.330000,802.150000,12.520000,114.030000,38.700000 -9,2023-08-16 17:00:00,0.000000,33.300000,23.000000,14.000000,179.000000,92.610000,69.770000,802.980000,12.560000,114.630000,38.880000 -9,2023-08-16 18:00:00,0.000000,33.300000,23.000000,14.000000,179.000000,93.160000,70.200000,803.800000,13.590000,115.240000,40.990000 -9,2023-08-16 19:00:00,0.000000,33.300000,23.000000,14.000000,179.000000,93.580000,70.630000,804.630000,14.410000,115.840000,42.650000 -9,2023-08-16 20:00:00,0.000000,33.300000,23.000000,14.000000,179.000000,93.900000,71.060000,805.460000,15.050000,116.440000,43.940000 -9,2023-08-16 21:00:00,0.000000,33.300000,23.000000,14.000000,179.000000,94.130000,71.060000,805.460000,15.550000,116.440000,44.870000 -9,2023-08-16 22:00:00,0.000000,33.300000,23.000000,14.000000,179.000000,94.310000,71.060000,805.460000,15.930000,116.440000,45.570000 -9,2023-08-16 23:00:00,0.000000,24.100000,42.000000,10.000000,181.000000,93.830000,71.060000,805.460000,12.190000,116.440000,38.370000 -9,2023-08-17 00:00:00,0.000000,24.100000,42.000000,10.000000,181.000000,93.420000,71.060000,805.460000,11.520000,116.440000,36.970000 -9,2023-08-17 01:00:00,0.000000,24.100000,42.000000,10.000000,181.000000,93.070000,71.060000,805.460000,10.970000,116.440000,35.810000 -9,2023-08-17 02:00:00,0.000000,24.100000,42.000000,10.000000,181.000000,92.780000,71.060000,805.460000,10.520000,116.440000,34.830000 -9,2023-08-17 03:00:00,0.000000,24.100000,42.000000,10.000000,181.000000,92.520000,71.060000,805.460000,10.150000,116.440000,34.010000 -9,2023-08-17 04:00:00,0.000000,24.100000,42.000000,10.000000,181.000000,92.300000,71.060000,805.460000,9.840000,116.440000,33.320000 -9,2023-08-17 05:00:00,0.000000,20.200000,58.000000,10.000000,171.000000,91.610000,71.060000,805.460000,8.930000,116.440000,31.220000 -9,2023-08-17 06:00:00,0.000000,20.200000,58.000000,10.000000,171.000000,91.030000,71.180000,805.680000,8.210000,116.600000,29.530000 -9,2023-08-17 07:00:00,0.000000,20.200000,58.000000,10.000000,171.000000,90.530000,71.290000,805.890000,7.650000,116.750000,28.150000 -9,2023-08-17 08:00:00,0.000000,20.200000,58.000000,10.000000,171.000000,90.100000,71.400000,806.110000,7.200000,116.910000,27.010000 -9,2023-08-17 09:00:00,0.000000,20.200000,58.000000,10.000000,171.000000,89.740000,71.510000,806.330000,6.830000,117.060000,26.070000 -9,2023-08-17 10:00:00,0.000000,20.200000,58.000000,10.000000,171.000000,89.430000,71.620000,806.550000,6.530000,117.220000,25.290000 -9,2023-08-17 11:00:00,0.000000,30.100000,33.000000,11.000000,132.000000,90.000000,71.940000,807.170000,7.460000,117.660000,27.760000 -9,2023-08-17 12:00:00,0.000000,30.100000,33.000000,11.000000,132.000000,90.460000,72.260000,807.790000,7.960000,118.110000,29.070000 -9,2023-08-17 13:00:00,0.000000,30.100000,33.000000,11.000000,132.000000,90.820000,72.580000,808.420000,8.380000,118.550000,30.150000 -9,2023-08-17 14:00:00,0.000000,30.100000,33.000000,11.000000,132.000000,91.110000,72.900000,809.040000,8.730000,118.990000,31.040000 -9,2023-08-17 15:00:00,0.000000,30.100000,33.000000,11.000000,132.000000,91.330000,73.220000,809.670000,9.020000,119.440000,31.770000 -9,2023-08-17 16:00:00,0.000000,30.100000,33.000000,11.000000,132.000000,91.510000,73.540000,810.290000,9.260000,119.880000,32.370000 -9,2023-08-17 17:00:00,0.000000,34.300000,24.000000,16.000000,109.000000,92.370000,74.000000,811.190000,13.440000,120.510000,41.430000 -9,2023-08-17 18:00:00,0.000000,34.300000,24.000000,16.000000,109.000000,93.010000,74.460000,812.090000,14.700000,121.150000,43.960000 -9,2023-08-17 19:00:00,0.000000,34.300000,24.000000,16.000000,109.000000,93.480000,74.920000,812.980000,15.700000,121.780000,45.920000 -9,2023-08-17 20:00:00,0.000000,34.300000,24.000000,16.000000,109.000000,93.820000,75.380000,813.880000,16.480000,122.410000,47.430000 -9,2023-08-17 21:00:00,0.000000,34.300000,24.000000,16.000000,109.000000,94.080000,75.380000,813.880000,17.070000,122.410000,48.500000 -9,2023-08-17 22:00:00,0.000000,34.300000,24.000000,16.000000,109.000000,94.270000,75.380000,813.880000,17.520000,122.410000,49.300000 -9,2023-08-17 23:00:00,0.000000,26.700000,35.000000,10.000000,138.000000,94.050000,75.380000,813.880000,12.560000,122.410000,39.880000 -9,2023-08-18 00:00:00,0.000000,26.700000,35.000000,10.000000,138.000000,93.860000,75.380000,813.880000,12.230000,122.410000,39.200000 -9,2023-08-18 01:00:00,0.000000,26.700000,35.000000,10.000000,138.000000,93.690000,75.380000,813.880000,11.960000,122.410000,38.630000 -9,2023-08-18 02:00:00,0.000000,26.700000,35.000000,10.000000,138.000000,93.550000,75.380000,813.880000,11.730000,122.410000,38.150000 -9,2023-08-18 03:00:00,0.000000,26.700000,35.000000,10.000000,138.000000,93.440000,75.380000,813.880000,11.540000,122.410000,37.740000 -9,2023-08-18 04:00:00,0.000000,26.700000,35.000000,10.000000,138.000000,93.330000,75.380000,813.880000,11.370000,122.410000,37.390000 -9,2023-08-18 05:00:00,0.000000,22.600000,53.000000,8.000000,161.000000,92.680000,75.380000,813.880000,9.380000,122.410000,32.920000 -9,2023-08-18 06:00:00,0.000000,22.600000,53.000000,8.000000,161.000000,92.120000,75.590000,814.270000,8.670000,122.700000,31.260000 -9,2023-08-18 07:00:00,0.000000,22.600000,53.000000,8.000000,161.000000,91.640000,75.800000,814.650000,8.100000,122.990000,29.890000 -9,2023-08-18 08:00:00,0.000000,22.600000,53.000000,8.000000,161.000000,91.230000,76.000000,815.040000,7.640000,123.270000,28.760000 -9,2023-08-18 09:00:00,0.000000,22.600000,53.000000,8.000000,161.000000,90.880000,76.210000,815.420000,7.270000,123.550000,27.830000 -9,2023-08-18 10:00:00,0.000000,22.600000,53.000000,8.000000,161.000000,90.590000,76.420000,815.810000,6.970000,123.840000,27.060000 -9,2023-08-18 11:00:00,0.000000,31.000000,30.000000,9.000000,187.000000,91.080000,76.930000,816.750000,7.870000,124.530000,29.460000 -9,2023-08-18 12:00:00,0.000000,31.000000,30.000000,9.000000,187.000000,91.480000,77.440000,817.690000,8.320000,125.230000,30.660000 -9,2023-08-18 13:00:00,0.000000,31.000000,30.000000,9.000000,187.000000,91.790000,77.940000,818.630000,8.700000,125.920000,31.660000 -9,2023-08-18 14:00:00,0.000000,31.000000,30.000000,9.000000,187.000000,92.040000,78.450000,819.570000,9.010000,126.610000,32.470000 -9,2023-08-18 15:00:00,0.000000,31.000000,30.000000,9.000000,187.000000,92.230000,78.960000,820.510000,9.260000,127.300000,33.140000 -9,2023-08-18 16:00:00,0.000000,31.000000,30.000000,9.000000,187.000000,92.380000,79.470000,821.450000,9.470000,127.980000,33.690000 -9,2023-08-18 17:00:00,0.000000,32.400000,30.000000,7.000000,219.000000,92.560000,80.020000,822.470000,8.770000,128.730000,32.080000 -10,2023-08-03 00:00:00,0.000000,16.000000,64.000000,4.000000,96.000000,85.980000,118.400000,826.100000,2.950000,174.330000,16.240000 -10,2023-08-03 01:00:00,0.000000,16.000000,64.000000,4.000000,96.000000,85.970000,118.400000,826.100000,2.950000,174.330000,16.210000 -10,2023-08-03 02:00:00,0.000000,13.200000,74.000000,2.000000,166.000000,85.730000,118.400000,826.100000,2.580000,174.330000,14.640000 -10,2023-08-03 03:00:00,0.000000,13.200000,74.000000,2.000000,166.000000,85.510000,118.400000,826.100000,2.500000,174.330000,14.300000 -10,2023-08-03 04:00:00,0.000000,13.200000,74.000000,2.000000,166.000000,85.320000,118.400000,826.100000,2.430000,174.330000,14.000000 -10,2023-08-03 05:00:00,0.000000,11.900000,79.000000,2.000000,205.000000,85.020000,118.440000,826.190000,2.330000,174.380000,13.560000 -10,2023-08-03 06:00:00,0.000000,11.900000,79.000000,2.000000,205.000000,84.750000,118.470000,826.270000,2.250000,174.420000,13.170000 -10,2023-08-03 07:00:00,0.000000,11.900000,79.000000,2.000000,205.000000,84.500000,118.510000,826.360000,2.180000,174.460000,12.830000 -10,2023-08-03 08:00:00,0.000000,16.900000,58.000000,4.000000,184.000000,84.590000,118.610000,826.600000,2.440000,174.580000,14.020000 -10,2023-08-03 09:00:00,0.000000,16.900000,58.000000,4.000000,184.000000,84.670000,118.700000,826.830000,2.460000,174.700000,14.150000 -10,2023-08-03 10:00:00,0.000000,16.900000,58.000000,4.000000,184.000000,84.750000,118.800000,827.070000,2.490000,174.820000,14.260000 -10,2023-08-03 11:00:00,0.000000,22.500000,40.000000,2.000000,170.000000,85.320000,119.000000,827.550000,2.430000,175.070000,14.030000 -10,2023-08-03 12:00:00,0.000000,22.500000,40.000000,2.000000,170.000000,85.830000,119.200000,828.030000,2.610000,175.310000,14.820000 -10,2023-08-03 13:00:00,0.000000,22.500000,40.000000,2.000000,170.000000,86.280000,119.400000,828.520000,2.780000,175.550000,15.550000 -10,2023-08-03 14:00:00,0.000000,24.800000,37.000000,3.000000,337.000000,86.870000,119.640000,829.100000,3.180000,175.850000,17.200000 -10,2023-08-03 15:00:00,0.000000,24.800000,37.000000,3.000000,337.000000,87.370000,119.880000,829.680000,3.420000,176.140000,18.160000 -10,2023-08-03 16:00:00,0.000000,24.800000,37.000000,3.000000,337.000000,87.810000,120.120000,830.260000,3.640000,176.430000,19.020000 -10,2023-08-03 17:00:00,0.000000,25.200000,34.000000,8.000000,343.000000,88.370000,120.380000,830.880000,5.070000,176.740000,24.120000 -10,2023-08-03 18:00:00,0.000000,25.200000,34.000000,8.000000,343.000000,88.830000,120.640000,831.500000,5.420000,177.060000,25.280000 -10,2023-08-03 19:00:00,0.000000,25.200000,34.000000,8.000000,343.000000,89.220000,120.900000,832.120000,5.730000,177.370000,26.280000 -10,2023-08-03 20:00:00,0.000000,23.100000,38.000000,4.000000,322.000000,89.330000,121.110000,832.640000,4.760000,177.630000,23.100000 -10,2023-08-03 21:00:00,0.000000,23.100000,38.000000,4.000000,322.000000,89.430000,121.320000,833.150000,4.830000,177.890000,23.330000 -10,2023-08-03 22:00:00,0.000000,23.100000,38.000000,4.000000,322.000000,89.510000,121.320000,833.150000,4.890000,177.890000,23.530000 -10,2023-08-03 23:00:00,0.000000,17.300000,54.000000,5.000000,263.000000,89.320000,121.320000,833.150000,5.000000,177.890000,23.900000 -10,2023-08-04 00:00:00,0.000000,17.300000,54.000000,5.000000,263.000000,89.140000,121.320000,833.150000,4.870000,177.890000,23.490000 -10,2023-08-04 01:00:00,0.000000,17.300000,54.000000,5.000000,263.000000,88.990000,121.320000,833.150000,4.770000,177.890000,23.120000 -10,2023-08-04 02:00:00,0.000000,15.000000,61.000000,6.000000,262.000000,88.680000,121.320000,833.150000,4.790000,177.890000,23.210000 -10,2023-08-04 03:00:00,0.000000,15.000000,61.000000,6.000000,262.000000,88.400000,121.320000,833.150000,4.610000,177.890000,22.570000 -10,2023-08-04 04:00:00,0.000000,15.000000,61.000000,6.000000,262.000000,88.150000,121.320000,833.150000,4.450000,177.890000,22.010000 -10,2023-08-04 05:00:00,0.000000,13.900000,66.000000,7.000000,259.000000,87.810000,121.390000,833.290000,4.450000,177.960000,22.030000 -10,2023-08-04 06:00:00,0.000000,13.900000,66.000000,7.000000,259.000000,87.510000,121.450000,833.430000,4.260000,178.040000,21.360000 -10,2023-08-04 07:00:00,0.000000,13.900000,66.000000,7.000000,259.000000,87.240000,121.510000,833.570000,4.100000,178.110000,20.780000 -10,2023-08-04 08:00:00,0.000000,20.100000,47.000000,6.000000,273.000000,87.320000,121.660000,833.880000,3.950000,178.290000,20.210000 -10,2023-08-04 09:00:00,0.000000,20.100000,47.000000,6.000000,273.000000,87.390000,121.800000,834.200000,3.990000,178.460000,20.360000 -10,2023-08-04 10:00:00,0.000000,20.100000,47.000000,6.000000,273.000000,87.450000,121.950000,834.520000,4.020000,178.640000,20.500000 -10,2023-08-04 11:00:00,0.000000,25.000000,36.000000,11.000000,327.000000,88.020000,122.190000,835.030000,5.610000,178.920000,25.940000 -10,2023-08-04 12:00:00,0.000000,25.000000,36.000000,11.000000,327.000000,88.490000,122.420000,835.550000,6.000000,179.210000,27.180000 -10,2023-08-04 13:00:00,0.000000,25.000000,36.000000,11.000000,327.000000,88.870000,122.660000,836.060000,6.340000,179.490000,28.250000 -10,2023-08-04 14:00:00,0.000000,26.200000,31.000000,10.000000,333.000000,89.430000,122.940000,836.660000,6.530000,179.820000,28.820000 -10,2023-08-04 15:00:00,0.000000,26.200000,31.000000,10.000000,333.000000,89.880000,123.210000,837.260000,6.970000,180.140000,30.130000 -10,2023-08-04 16:00:00,0.000000,26.200000,31.000000,10.000000,333.000000,90.260000,123.480000,837.860000,7.350000,180.470000,31.250000 -10,2023-08-04 17:00:00,0.000000,26.500000,31.000000,9.000000,330.000000,90.570000,123.760000,838.460000,7.310000,180.810000,31.140000 -10,2023-08-04 18:00:00,0.000000,26.500000,31.000000,9.000000,330.000000,90.820000,124.040000,839.070000,7.590000,181.140000,31.930000 -10,2023-08-04 19:00:00,0.000000,26.500000,31.000000,9.000000,330.000000,91.030000,124.320000,839.680000,7.820000,181.470000,32.580000 -10,2023-08-04 20:00:00,0.000000,24.400000,37.000000,4.000000,342.000000,91.030000,124.550000,840.170000,6.080000,181.740000,27.490000 -10,2023-08-04 21:00:00,0.000000,24.400000,37.000000,4.000000,342.000000,91.030000,124.770000,840.660000,6.080000,182.010000,27.490000 -10,2023-08-04 22:00:00,0.000000,24.400000,37.000000,4.000000,342.000000,91.030000,124.770000,840.660000,6.080000,182.010000,27.490000 -10,2023-08-04 23:00:00,0.000000,18.800000,54.000000,4.000000,264.000000,90.690000,124.770000,840.660000,5.780000,182.010000,26.580000 -10,2023-08-05 00:00:00,0.000000,18.800000,54.000000,4.000000,264.000000,90.380000,124.770000,840.660000,5.540000,182.010000,25.780000 -10,2023-08-05 01:00:00,0.000000,18.800000,54.000000,4.000000,264.000000,90.110000,124.770000,840.660000,5.330000,182.010000,25.100000 -10,2023-08-05 02:00:00,0.000000,16.400000,64.000000,5.000000,263.000000,89.620000,124.770000,840.660000,5.220000,182.010000,24.740000 -10,2023-08-05 03:00:00,0.000000,16.400000,64.000000,5.000000,263.000000,89.180000,124.770000,840.660000,4.900000,182.010000,23.680000 -10,2023-08-05 04:00:00,0.000000,16.400000,64.000000,5.000000,263.000000,88.800000,124.770000,840.660000,4.640000,182.010000,22.780000 -10,2023-08-05 05:00:00,0.000000,15.300000,71.000000,4.000000,278.000000,88.300000,124.820000,840.850000,4.110000,182.070000,20.880000 -10,2023-08-05 06:00:00,0.000000,15.300000,71.000000,4.000000,278.000000,87.860000,124.870000,841.040000,3.850000,182.140000,19.950000 -10,2023-08-05 07:00:00,0.000000,15.300000,71.000000,4.000000,278.000000,87.470000,124.920000,841.230000,3.650000,182.200000,19.160000 -10,2023-08-05 08:00:00,0.000000,19.300000,60.000000,2.000000,5.000000,87.430000,125.010000,841.560000,3.280000,182.320000,17.710000 -10,2023-08-05 09:00:00,0.000000,19.300000,60.000000,2.000000,5.000000,87.390000,125.110000,841.900000,3.260000,182.440000,17.640000 -10,2023-08-05 10:00:00,0.000000,19.300000,60.000000,2.000000,5.000000,87.350000,125.200000,842.230000,3.240000,182.550000,17.580000 -10,2023-08-05 11:00:00,0.030000,21.000000,60.000000,11.000000,5.000000,87.350000,125.300000,842.610000,5.100000,182.680000,24.370000 -10,2023-08-05 12:00:00,0.000000,21.000000,60.000000,11.000000,5.000000,87.350000,125.400000,842.980000,5.100000,182.810000,24.380000 -10,2023-08-05 13:00:00,0.000000,21.000000,60.000000,11.000000,5.000000,87.350000,125.500000,843.350000,5.100000,182.940000,24.380000 -10,2023-08-05 14:00:00,0.000000,22.100000,62.000000,6.000000,8.000000,87.330000,125.600000,843.730000,3.950000,183.070000,20.330000 -10,2023-08-05 15:00:00,0.000000,22.100000,62.000000,6.000000,8.000000,87.310000,125.700000,844.110000,3.940000,183.200000,20.300000 -10,2023-08-05 16:00:00,0.000000,22.100000,62.000000,6.000000,8.000000,87.290000,125.800000,844.490000,3.930000,183.330000,20.260000 -10,2023-08-05 17:00:00,0.000000,25.100000,48.000000,12.000000,4.000000,87.500000,125.970000,845.120000,5.480000,183.540000,25.630000 -10,2023-08-05 18:00:00,0.000000,25.100000,48.000000,12.000000,4.000000,87.670000,126.140000,845.740000,5.610000,183.760000,26.070000 -10,2023-08-05 19:00:00,0.000000,25.100000,48.000000,12.000000,4.000000,87.810000,126.310000,846.360000,5.730000,183.970000,26.450000 -10,2023-08-05 20:00:00,0.000000,23.100000,49.000000,8.000000,11.000000,87.840000,126.450000,846.900000,4.700000,184.160000,23.060000 -10,2023-08-05 21:00:00,0.000000,23.100000,49.000000,8.000000,11.000000,87.870000,126.600000,847.440000,4.720000,184.350000,23.120000 -10,2023-08-05 22:00:00,0.000000,23.100000,49.000000,8.000000,11.000000,87.890000,126.600000,847.440000,4.740000,184.350000,23.180000 -10,2023-08-05 23:00:00,0.000000,17.200000,72.000000,2.000000,289.000000,87.520000,126.600000,847.440000,3.320000,184.350000,17.920000 -10,2023-08-06 00:00:00,0.000000,17.200000,72.000000,2.000000,289.000000,87.180000,126.600000,847.440000,3.160000,184.350000,17.300000 -10,2023-08-06 01:00:00,0.000000,17.200000,72.000000,2.000000,289.000000,86.890000,126.600000,847.440000,3.030000,184.350000,16.760000 -10,2023-08-06 02:00:00,0.000000,14.400000,83.000000,6.000000,271.000000,86.230000,126.600000,847.440000,3.380000,184.350000,18.160000 -10,2023-08-06 03:00:00,0.000000,14.400000,83.000000,6.000000,271.000000,85.650000,126.600000,847.440000,3.120000,184.350000,17.100000 -10,2023-08-06 04:00:00,0.000000,14.400000,83.000000,6.000000,271.000000,85.150000,126.600000,847.440000,2.910000,184.350000,16.230000 -10,2023-08-06 05:00:00,0.000000,14.600000,76.000000,8.000000,288.000000,84.920000,126.650000,847.560000,3.120000,184.410000,17.100000 -10,2023-08-06 06:00:00,0.000000,14.600000,76.000000,8.000000,288.000000,84.720000,126.700000,847.680000,3.030000,184.470000,16.770000 -10,2023-08-06 07:00:00,0.000000,14.600000,76.000000,8.000000,288.000000,84.550000,126.750000,847.800000,2.960000,184.530000,16.480000 -10,2023-08-06 08:00:00,0.000000,18.800000,58.000000,8.000000,316.000000,84.690000,126.860000,848.080000,3.020000,184.670000,16.710000 -10,2023-08-06 09:00:00,0.000000,18.800000,58.000000,8.000000,316.000000,84.810000,126.980000,848.360000,3.070000,184.800000,16.920000 -10,2023-08-06 10:00:00,0.000000,18.800000,58.000000,8.000000,316.000000,84.920000,127.090000,848.630000,3.120000,184.940000,17.120000 -10,2023-08-06 11:00:00,0.000000,23.800000,41.000000,11.000000,356.000000,85.660000,127.310000,849.160000,4.020000,185.200000,20.620000 -10,2023-08-06 12:00:00,0.000000,23.800000,41.000000,11.000000,356.000000,86.290000,127.530000,849.680000,4.390000,185.470000,21.970000 -10,2023-08-06 13:00:00,0.000000,23.800000,41.000000,11.000000,356.000000,86.820000,127.750000,850.210000,4.730000,185.730000,23.170000 -10,2023-08-06 14:00:00,0.000000,25.000000,37.000000,13.000000,2.000000,87.470000,128.000000,850.810000,5.740000,186.030000,26.540000 -10,2023-08-06 15:00:00,0.000000,25.000000,37.000000,13.000000,2.000000,88.020000,128.250000,851.420000,6.200000,186.330000,28.000000 -10,2023-08-06 16:00:00,0.000000,25.000000,37.000000,13.000000,2.000000,88.460000,128.500000,852.020000,6.610000,186.630000,29.260000 -10,2023-08-06 17:00:00,0.000000,24.600000,36.000000,12.000000,8.000000,88.850000,128.750000,852.620000,6.640000,186.930000,29.360000 -10,2023-08-06 18:00:00,0.000000,24.600000,36.000000,12.000000,8.000000,89.160000,129.000000,853.220000,6.950000,187.230000,30.280000 -10,2023-08-06 19:00:00,0.000000,24.600000,36.000000,12.000000,8.000000,89.420000,129.250000,853.820000,7.220000,187.530000,31.070000 -10,2023-08-06 20:00:00,0.000000,21.200000,40.000000,12.000000,44.000000,89.420000,129.440000,854.270000,7.220000,187.760000,31.070000 -10,2023-08-06 21:00:00,0.000000,21.200000,40.000000,12.000000,44.000000,89.420000,129.630000,854.730000,7.220000,187.980000,31.080000 -10,2023-08-06 22:00:00,0.000000,21.200000,40.000000,12.000000,44.000000,89.420000,129.630000,854.730000,7.220000,187.980000,31.080000 -10,2023-08-06 23:00:00,0.000000,15.300000,56.000000,4.000000,26.000000,89.190000,129.630000,854.730000,4.660000,187.980000,22.990000 -10,2023-08-07 00:00:00,0.000000,15.300000,56.000000,4.000000,26.000000,88.970000,129.630000,854.730000,4.520000,187.980000,22.500000 -10,2023-08-07 01:00:00,0.000000,15.300000,56.000000,4.000000,26.000000,88.780000,129.630000,854.730000,4.400000,187.980000,22.060000 -10,2023-08-07 02:00:00,0.000000,11.500000,74.000000,4.000000,354.000000,88.210000,129.630000,854.730000,4.050000,187.980000,20.810000 -10,2023-08-07 03:00:00,0.000000,11.500000,74.000000,4.000000,354.000000,87.700000,129.630000,854.730000,3.770000,187.980000,19.740000 -10,2023-08-07 04:00:00,0.000000,11.500000,74.000000,4.000000,354.000000,87.250000,129.630000,854.730000,3.530000,187.980000,18.830000 -10,2023-08-07 05:00:00,0.000000,9.900000,87.000000,2.000000,43.000000,86.510000,129.650000,854.780000,2.880000,188.010000,16.160000 -10,2023-08-07 06:00:00,0.000000,9.900000,87.000000,2.000000,43.000000,85.850000,129.670000,854.830000,2.620000,188.030000,15.050000 -10,2023-08-07 07:00:00,0.000000,9.900000,87.000000,2.000000,43.000000,85.250000,129.690000,854.880000,2.410000,188.060000,14.120000 -10,2023-08-07 08:00:00,0.000000,16.200000,61.000000,8.000000,102.000000,85.250000,129.790000,855.100000,3.260000,188.180000,17.750000 -10,2023-08-07 09:00:00,0.000000,16.200000,61.000000,8.000000,102.000000,85.250000,129.890000,855.320000,3.260000,188.290000,17.760000 -10,2023-08-07 10:00:00,0.000000,16.200000,61.000000,8.000000,102.000000,85.250000,129.980000,855.540000,3.260000,188.400000,17.760000 -10,2023-08-07 11:00:00,0.000000,21.600000,36.000000,14.000000,98.000000,86.030000,130.200000,856.050000,4.920000,188.670000,23.890000 -10,2023-08-07 12:00:00,0.000000,21.600000,36.000000,14.000000,98.000000,86.690000,130.430000,856.560000,5.400000,188.930000,25.510000 -10,2023-08-07 13:00:00,0.000000,21.600000,36.000000,14.000000,98.000000,87.250000,130.650000,857.070000,5.850000,189.200000,26.950000 -10,2023-08-07 14:00:00,0.000000,23.500000,30.000000,15.000000,84.000000,88.030000,130.920000,857.690000,6.880000,189.520000,30.120000 -10,2023-08-07 15:00:00,0.000000,23.500000,30.000000,15.000000,84.000000,88.680000,131.190000,858.320000,7.550000,189.840000,32.080000 -10,2023-08-07 16:00:00,0.000000,23.500000,30.000000,15.000000,84.000000,89.220000,131.460000,858.940000,8.160000,190.160000,33.780000 -10,2023-08-07 17:00:00,0.000000,23.300000,31.000000,18.000000,63.000000,89.630000,131.730000,859.550000,10.060000,190.480000,38.780000 -10,2023-08-07 18:00:00,0.000000,23.300000,31.000000,18.000000,63.000000,89.960000,131.990000,860.160000,10.560000,190.790000,40.010000 -10,2023-08-07 19:00:00,0.000000,23.300000,31.000000,18.000000,63.000000,90.240000,132.260000,860.770000,10.980000,191.110000,41.050000 -10,2023-08-07 20:00:00,0.000000,20.000000,41.000000,15.000000,56.000000,90.240000,132.440000,861.200000,9.440000,191.330000,37.220000 -10,2023-08-07 21:00:00,0.000000,20.000000,41.000000,15.000000,56.000000,90.240000,132.630000,861.620000,9.440000,191.550000,37.220000 -10,2023-08-07 22:00:00,0.000000,20.000000,41.000000,15.000000,56.000000,90.240000,132.630000,861.620000,9.440000,191.550000,37.220000 -10,2023-08-07 23:00:00,0.000000,14.700000,57.000000,7.000000,56.000000,89.860000,132.630000,861.620000,5.970000,191.550000,27.400000 -10,2023-08-08 00:00:00,0.000000,14.700000,57.000000,7.000000,56.000000,89.520000,132.630000,861.620000,5.690000,191.550000,26.510000 -10,2023-08-08 01:00:00,0.000000,14.700000,57.000000,7.000000,56.000000,89.220000,132.630000,861.620000,5.450000,191.550000,25.730000 -10,2023-08-08 02:00:00,0.000000,11.700000,67.000000,4.000000,111.000000,88.770000,132.630000,861.620000,4.390000,191.550000,22.100000 -10,2023-08-08 03:00:00,0.000000,11.700000,67.000000,4.000000,111.000000,88.360000,132.630000,861.620000,4.140000,191.550000,21.190000 -10,2023-08-08 04:00:00,0.000000,11.700000,67.000000,4.000000,111.000000,87.990000,132.630000,861.620000,3.930000,191.550000,20.400000 -10,2023-08-08 05:00:00,0.000000,9.700000,71.000000,3.000000,157.000000,87.590000,132.670000,861.710000,3.520000,191.600000,18.860000 -10,2023-08-08 06:00:00,0.000000,9.700000,71.000000,3.000000,157.000000,87.220000,132.720000,861.800000,3.340000,191.650000,18.150000 -10,2023-08-08 07:00:00,0.000000,9.700000,71.000000,3.000000,157.000000,86.890000,132.760000,861.900000,3.190000,191.700000,17.530000 -10,2023-08-08 08:00:00,0.000000,15.700000,48.000000,4.000000,146.000000,86.900000,132.880000,862.140000,3.360000,191.840000,18.220000 -10,2023-08-08 09:00:00,0.000000,15.700000,48.000000,4.000000,146.000000,86.910000,132.990000,862.380000,3.370000,191.970000,18.240000 -10,2023-08-08 10:00:00,0.000000,15.700000,48.000000,4.000000,146.000000,86.920000,133.110000,862.620000,3.370000,192.110000,18.250000 -10,2023-08-08 11:00:00,0.000000,22.800000,31.000000,8.000000,138.000000,87.600000,133.350000,863.130000,4.550000,192.390000,22.670000 -10,2023-08-08 12:00:00,0.000000,22.800000,31.000000,8.000000,138.000000,88.190000,133.590000,863.630000,4.940000,192.670000,24.040000 -10,2023-08-08 13:00:00,0.000000,22.800000,31.000000,8.000000,138.000000,88.680000,133.830000,864.130000,5.300000,192.950000,25.270000 -10,2023-08-08 14:00:00,0.000000,24.700000,27.000000,10.000000,118.000000,89.350000,134.110000,864.720000,6.460000,193.280000,28.940000 -10,2023-08-08 15:00:00,0.000000,24.700000,27.000000,10.000000,118.000000,89.900000,134.400000,865.320000,6.990000,193.620000,30.550000 -10,2023-08-08 16:00:00,0.000000,24.700000,27.000000,10.000000,118.000000,90.360000,134.680000,865.910000,7.470000,193.950000,31.940000 -10,2023-08-08 17:00:00,0.000000,25.100000,27.000000,11.000000,111.000000,90.770000,134.980000,866.520000,8.320000,194.290000,34.330000 -10,2023-08-08 18:00:00,0.000000,25.100000,27.000000,11.000000,111.000000,91.100000,135.270000,867.130000,8.720000,194.630000,35.420000 -10,2023-08-08 19:00:00,0.000000,25.100000,27.000000,11.000000,111.000000,91.370000,135.560000,867.740000,9.060000,194.970000,36.340000 -10,2023-08-08 20:00:00,0.000000,23.100000,33.000000,9.000000,104.000000,91.370000,135.800000,868.230000,8.200000,195.250000,34.010000 -10,2023-08-08 21:00:00,0.000000,23.100000,33.000000,9.000000,104.000000,91.370000,136.030000,868.730000,8.200000,195.520000,34.020000 -10,2023-08-08 22:00:00,0.000000,23.100000,33.000000,9.000000,104.000000,91.370000,136.030000,868.730000,8.200000,195.520000,34.020000 -10,2023-08-08 23:00:00,0.000000,17.900000,48.000000,9.000000,128.000000,91.070000,136.030000,868.730000,7.850000,195.520000,33.070000 -10,2023-08-09 00:00:00,0.000000,17.900000,48.000000,9.000000,128.000000,90.810000,136.030000,868.730000,7.570000,195.520000,32.260000 -10,2023-08-09 01:00:00,0.000000,17.900000,48.000000,9.000000,128.000000,90.580000,136.030000,868.730000,7.320000,195.520000,31.550000 -10,2023-08-09 02:00:00,0.000000,17.100000,51.000000,12.000000,180.000000,90.280000,136.030000,868.730000,8.160000,195.520000,33.920000 -10,2023-08-09 03:00:00,0.000000,17.100000,51.000000,12.000000,180.000000,90.020000,136.030000,868.730000,7.860000,195.520000,33.100000 -10,2023-08-09 04:00:00,0.000000,17.100000,51.000000,12.000000,180.000000,89.790000,136.030000,868.730000,7.610000,195.520000,32.390000 -10,2023-08-09 05:00:00,0.000000,15.300000,60.000000,9.000000,193.000000,89.380000,136.110000,868.890000,6.170000,195.610000,28.110000 -10,2023-08-09 06:00:00,0.000000,15.300000,60.000000,9.000000,193.000000,89.030000,136.180000,869.050000,5.860000,195.690000,27.140000 -10,2023-08-09 07:00:00,0.000000,15.300000,60.000000,9.000000,193.000000,88.710000,136.250000,869.210000,5.600000,195.780000,26.310000 -10,2023-08-09 08:00:00,0.000000,19.200000,51.000000,10.000000,181.000000,88.700000,136.360000,869.450000,5.880000,195.910000,27.200000 -10,2023-08-09 09:00:00,0.000000,19.200000,51.000000,10.000000,181.000000,88.680000,136.470000,869.700000,5.870000,196.040000,27.160000 -10,2023-08-09 10:00:00,0.000000,19.200000,51.000000,10.000000,181.000000,88.670000,136.590000,869.950000,5.860000,196.170000,27.130000 -10,2023-08-09 11:00:00,0.000000,24.000000,36.000000,13.000000,169.000000,89.000000,136.780000,870.390000,7.140000,196.400000,31.050000 -10,2023-08-09 12:00:00,0.000000,24.000000,36.000000,13.000000,169.000000,89.270000,136.980000,870.820000,7.430000,196.630000,31.880000 -10,2023-08-09 13:00:00,0.000000,24.000000,36.000000,13.000000,169.000000,89.490000,137.180000,871.260000,7.670000,196.860000,32.580000 -10,2023-08-09 14:00:00,0.000000,27.000000,26.000000,11.000000,175.000000,90.190000,137.450000,871.860000,7.660000,197.180000,32.570000 -10,2023-08-09 15:00:00,0.000000,27.000000,26.000000,11.000000,175.000000,90.760000,137.720000,872.460000,8.310000,197.500000,34.380000 -10,2023-08-09 16:00:00,0.000000,27.000000,26.000000,11.000000,175.000000,91.210000,137.990000,873.060000,8.870000,197.820000,35.900000 -10,2023-08-09 17:00:00,0.000000,27.900000,24.000000,9.000000,179.000000,91.700000,138.290000,873.710000,8.590000,198.160000,35.160000 -10,2023-08-09 18:00:00,0.000000,27.900000,24.000000,9.000000,179.000000,92.090000,138.580000,874.360000,9.080000,198.510000,36.470000 -10,2023-08-09 19:00:00,0.000000,27.900000,24.000000,9.000000,179.000000,92.410000,138.880000,875.010000,9.500000,198.850000,37.560000 -10,2023-08-09 20:00:00,0.000000,25.300000,29.000000,6.000000,179.000000,92.410000,139.110000,875.530000,8.160000,199.130000,34.010000 -10,2023-08-09 21:00:00,0.000000,25.300000,29.000000,6.000000,179.000000,92.410000,139.350000,876.050000,8.160000,199.400000,34.020000 -10,2023-08-09 22:00:00,0.000000,25.300000,29.000000,6.000000,179.000000,92.410000,139.350000,876.050000,8.160000,199.400000,34.020000 -10,2023-08-09 23:00:00,0.000000,20.800000,38.000000,9.000000,215.000000,92.260000,139.350000,876.050000,9.300000,199.400000,37.060000 -10,2023-08-10 00:00:00,0.000000,20.800000,38.000000,9.000000,215.000000,92.130000,139.350000,876.050000,9.130000,199.400000,36.610000 -10,2023-08-10 01:00:00,0.000000,20.800000,38.000000,9.000000,215.000000,92.010000,139.350000,876.050000,8.980000,199.400000,36.220000 -10,2023-08-10 02:00:00,0.000000,19.100000,44.000000,9.000000,216.000000,91.740000,139.350000,876.050000,8.640000,199.400000,35.320000 -10,2023-08-10 03:00:00,0.000000,19.100000,44.000000,9.000000,216.000000,91.500000,139.350000,876.050000,8.360000,199.400000,34.550000 -10,2023-08-10 04:00:00,0.000000,19.100000,44.000000,9.000000,216.000000,91.300000,139.350000,876.050000,8.120000,199.400000,33.880000 -10,2023-08-10 05:00:00,0.000000,16.000000,59.000000,8.000000,193.000000,90.740000,139.450000,876.280000,7.130000,199.520000,31.070000 -10,2023-08-10 06:00:00,0.000000,16.000000,59.000000,8.000000,193.000000,90.250000,139.550000,876.510000,6.640000,199.640000,29.640000 -10,2023-08-10 07:00:00,0.000000,16.000000,59.000000,8.000000,193.000000,89.820000,139.660000,876.730000,6.250000,199.760000,28.430000 -10,2023-08-10 08:00:00,0.000000,20.300000,48.000000,10.000000,186.000000,89.750000,139.820000,877.110000,6.840000,199.960000,30.240000 -10,2023-08-10 09:00:00,0.000000,20.300000,48.000000,10.000000,186.000000,89.690000,139.990000,877.480000,6.780000,200.150000,30.060000 -10,2023-08-10 10:00:00,0.000000,20.300000,48.000000,10.000000,186.000000,89.630000,140.160000,877.860000,6.730000,200.350000,29.910000 -10,2023-08-10 11:00:00,0.000000,24.700000,37.000000,11.000000,207.000000,89.780000,140.430000,878.450000,7.230000,200.660000,31.390000 -10,2023-08-10 12:00:00,0.000000,24.700000,37.000000,11.000000,207.000000,89.900000,140.700000,879.050000,7.360000,200.980000,31.770000 -10,2023-08-10 13:00:00,0.000000,24.700000,37.000000,11.000000,207.000000,90.000000,140.970000,879.640000,7.460000,201.290000,32.080000 -10,2023-08-10 14:00:00,0.000000,25.300000,39.000000,14.000000,232.000000,90.040000,141.230000,880.240000,8.730000,201.600000,35.600000 -10,2023-08-10 15:00:00,0.000000,25.300000,39.000000,14.000000,232.000000,90.070000,141.500000,880.830000,8.770000,201.910000,35.710000 -10,2023-08-10 16:00:00,0.000000,25.300000,39.000000,14.000000,232.000000,90.100000,141.770000,881.430000,8.800000,202.230000,35.810000 -10,2023-08-10 17:00:00,0.050000,24.400000,44.000000,10.000000,251.000000,90.100000,142.000000,881.950000,7.190000,202.500000,31.320000 -10,2023-08-10 18:00:00,0.000000,24.400000,44.000000,10.000000,251.000000,90.100000,142.240000,882.470000,7.190000,202.770000,31.330000 -10,2023-08-10 19:00:00,0.000000,24.400000,44.000000,10.000000,251.000000,90.100000,142.470000,882.990000,7.190000,203.040000,31.330000 -10,2023-08-10 20:00:00,0.000000,24.400000,44.000000,10.000000,251.000000,90.100000,142.710000,883.500000,7.190000,203.310000,31.340000 -10,2023-08-10 21:00:00,0.000000,24.400000,44.000000,10.000000,251.000000,90.100000,142.710000,883.500000,7.190000,203.310000,31.340000 -10,2023-08-10 22:00:00,0.000000,24.400000,44.000000,10.000000,251.000000,90.100000,142.710000,883.500000,7.190000,203.310000,31.340000 -10,2023-08-10 23:00:00,0.410000,19.300000,66.000000,5.000000,194.000000,89.560000,142.710000,883.500000,5.180000,203.310000,25.030000 -10,2023-08-11 00:00:00,0.000000,19.300000,66.000000,5.000000,194.000000,89.100000,142.710000,883.500000,4.840000,203.310000,23.890000 -10,2023-08-11 01:00:00,0.000000,19.300000,66.000000,5.000000,194.000000,88.700000,142.710000,883.500000,4.570000,203.310000,22.930000 -10,2023-08-11 02:00:00,0.000000,19.300000,66.000000,5.000000,194.000000,88.350000,142.710000,883.500000,4.350000,203.310000,22.130000 -10,2023-08-11 03:00:00,0.000000,19.300000,66.000000,5.000000,194.000000,88.040000,142.710000,883.500000,4.160000,203.310000,21.460000 -10,2023-08-11 04:00:00,0.000000,19.300000,66.000000,5.000000,194.000000,87.780000,142.710000,883.500000,4.010000,203.310000,20.890000 -10,2023-08-11 05:00:00,0.000000,15.800000,76.000000,5.000000,242.000000,87.260000,142.760000,883.650000,3.720000,203.380000,19.790000 -10,2023-08-11 06:00:00,0.000000,15.800000,76.000000,5.000000,242.000000,86.800000,142.820000,883.790000,3.480000,203.450000,18.870000 -10,2023-08-11 07:00:00,0.000000,15.800000,76.000000,5.000000,242.000000,86.400000,142.880000,883.940000,3.290000,203.510000,18.100000 -10,2023-08-11 08:00:00,0.000000,15.800000,76.000000,5.000000,242.000000,86.050000,142.930000,884.080000,3.130000,203.580000,17.450000 -10,2023-08-11 09:00:00,0.000000,15.800000,76.000000,5.000000,242.000000,85.740000,142.990000,884.220000,3.000000,203.650000,16.900000 -10,2023-08-11 10:00:00,0.000000,15.800000,76.000000,5.000000,242.000000,85.470000,143.050000,884.370000,2.890000,203.720000,16.430000 -10,2023-08-11 11:00:00,0.000000,25.100000,45.000000,2.000000,319.000000,85.920000,143.280000,884.950000,2.650000,203.990000,15.370000 -10,2023-08-11 12:00:00,0.000000,25.100000,45.000000,2.000000,319.000000,86.320000,143.510000,885.540000,2.800000,204.260000,16.040000 -10,2023-08-11 13:00:00,0.000000,25.100000,45.000000,2.000000,319.000000,86.670000,143.740000,886.120000,2.940000,204.540000,16.650000 -10,2023-08-11 14:00:00,0.000000,25.100000,45.000000,2.000000,319.000000,86.980000,143.970000,886.710000,3.070000,204.810000,17.200000 -10,2023-08-11 15:00:00,0.000000,25.100000,45.000000,2.000000,319.000000,87.240000,144.200000,887.290000,3.190000,205.080000,17.700000 -10,2023-08-11 16:00:00,0.000000,25.100000,45.000000,2.000000,319.000000,87.480000,144.430000,887.880000,3.300000,205.350000,18.150000 -10,2023-08-11 17:00:00,0.000000,27.300000,35.000000,8.000000,54.000000,88.150000,144.750000,888.660000,4.920000,205.720000,24.180000 -10,2023-08-11 18:00:00,0.000000,27.300000,35.000000,8.000000,54.000000,88.710000,145.060000,889.450000,5.330000,206.090000,25.580000 -10,2023-08-11 19:00:00,0.000000,27.300000,35.000000,8.000000,54.000000,89.170000,145.370000,890.240000,5.700000,206.460000,26.790000 -10,2023-08-11 20:00:00,0.000000,27.300000,35.000000,8.000000,54.000000,89.560000,145.680000,891.030000,6.020000,206.820000,27.820000 -10,2023-08-11 21:00:00,0.000000,27.300000,35.000000,8.000000,54.000000,89.870000,145.680000,891.030000,6.290000,206.820000,28.690000 -10,2023-08-11 22:00:00,0.000000,27.300000,35.000000,8.000000,54.000000,90.130000,145.680000,891.030000,6.530000,206.820000,29.420000 -10,2023-08-11 23:00:00,0.000000,20.400000,65.000000,6.000000,93.000000,89.610000,145.680000,891.030000,5.480000,206.820000,26.090000 -10,2023-08-12 00:00:00,0.000000,20.400000,65.000000,6.000000,93.000000,89.160000,145.680000,891.030000,5.140000,206.820000,24.950000 -10,2023-08-12 01:00:00,0.000000,20.400000,65.000000,6.000000,93.000000,88.770000,145.680000,891.030000,4.860000,206.820000,24.000000 -10,2023-08-12 02:00:00,0.000000,20.400000,65.000000,6.000000,93.000000,88.440000,145.680000,891.030000,4.640000,206.820000,23.210000 -10,2023-08-12 03:00:00,0.000000,20.400000,65.000000,6.000000,93.000000,88.160000,145.680000,891.030000,4.450000,206.820000,22.550000 -10,2023-08-12 04:00:00,0.000000,20.400000,65.000000,6.000000,93.000000,87.910000,145.680000,891.030000,4.300000,206.820000,22.000000 -10,2023-08-12 05:00:00,0.000000,16.600000,76.000000,6.000000,191.000000,87.360000,145.760000,891.200000,3.970000,206.920000,20.790000 -10,2023-08-12 06:00:00,0.000000,16.600000,76.000000,6.000000,191.000000,86.880000,145.840000,891.370000,3.710000,207.010000,19.780000 -10,2023-08-12 07:00:00,0.000000,16.600000,76.000000,6.000000,191.000000,86.460000,145.920000,891.540000,3.490000,207.100000,18.950000 -10,2023-08-12 08:00:00,0.000000,16.600000,76.000000,6.000000,191.000000,86.100000,146.000000,891.710000,3.320000,207.190000,18.250000 -10,2023-08-12 09:00:00,0.000000,16.600000,76.000000,6.000000,191.000000,85.790000,146.080000,891.880000,3.180000,207.290000,17.670000 -10,2023-08-12 10:00:00,0.000000,16.600000,76.000000,6.000000,191.000000,85.510000,146.160000,892.050000,3.060000,207.380000,17.180000 -10,2023-08-12 11:00:00,0.000000,28.500000,37.000000,4.000000,174.000000,86.420000,146.600000,892.970000,3.140000,207.880000,17.530000 -10,2023-08-12 12:00:00,0.000000,28.500000,37.000000,4.000000,174.000000,87.190000,147.040000,893.890000,3.500000,208.380000,19.000000 -10,2023-08-12 13:00:00,0.000000,28.500000,37.000000,4.000000,174.000000,87.840000,147.470000,894.820000,3.840000,208.880000,20.320000 -10,2023-08-12 14:00:00,0.000000,28.500000,37.000000,4.000000,174.000000,88.380000,147.910000,895.740000,4.150000,209.380000,21.500000 -10,2023-08-12 15:00:00,0.000000,28.500000,37.000000,4.000000,174.000000,88.830000,148.350000,896.660000,4.430000,209.880000,22.520000 -10,2023-08-12 16:00:00,0.000000,28.500000,37.000000,4.000000,174.000000,89.210000,148.780000,897.580000,4.680000,210.380000,23.420000 -10,2023-08-12 17:00:00,4.290000,26.100000,69.000000,4.000000,176.000000,39.460000,84.170000,858.190000,0.040000,135.200000,0.130000 -10,2023-08-12 18:00:00,0.000000,26.100000,69.000000,4.000000,176.000000,42.940000,84.360000,858.580000,0.070000,135.450000,0.240000 -10,2023-08-12 19:00:00,0.000000,26.100000,69.000000,4.000000,176.000000,46.260000,84.550000,858.980000,0.120000,135.700000,0.410000 -10,2023-08-12 20:00:00,0.000000,26.100000,69.000000,4.000000,176.000000,49.400000,84.730000,859.370000,0.190000,135.960000,0.630000 -10,2023-08-12 21:00:00,0.000000,26.100000,69.000000,4.000000,176.000000,52.380000,84.730000,859.370000,0.260000,135.960000,0.880000 -10,2023-08-12 22:00:00,0.000000,26.100000,69.000000,4.000000,176.000000,55.170000,84.730000,859.370000,0.350000,135.960000,1.590000 -10,2023-08-12 23:00:00,0.000000,20.400000,87.000000,2.000000,181.000000,56.030000,84.730000,859.370000,0.340000,135.960000,1.510000 -10,2023-08-13 00:00:00,0.000000,20.400000,87.000000,2.000000,181.000000,56.880000,84.730000,859.370000,0.360000,135.960000,1.740000 -10,2023-08-13 01:00:00,0.000000,20.400000,87.000000,2.000000,181.000000,57.690000,84.730000,859.370000,0.390000,135.960000,1.940000 -10,2023-08-13 02:00:00,0.000000,20.400000,87.000000,2.000000,181.000000,58.480000,84.730000,859.370000,0.410000,135.960000,2.120000 -10,2023-08-13 03:00:00,0.000000,20.400000,87.000000,2.000000,181.000000,59.250000,84.730000,859.370000,0.430000,135.960000,2.300000 -10,2023-08-13 04:00:00,0.000000,20.400000,87.000000,2.000000,181.000000,60.000000,84.730000,859.370000,0.450000,135.960000,2.460000 -10,2023-08-13 05:00:00,3.420000,17.100000,99.000000,6.000000,354.000000,27.640000,66.500000,823.860000,0.000000,110.670000,0.010000 -10,2023-08-13 06:00:00,0.000000,17.100000,99.000000,6.000000,354.000000,27.790000,66.510000,823.880000,0.000000,110.680000,0.010000 -10,2023-08-13 07:00:00,0.000000,17.100000,99.000000,6.000000,354.000000,27.930000,66.510000,823.900000,0.000000,110.680000,0.010000 -10,2023-08-13 08:00:00,0.000000,17.100000,99.000000,6.000000,354.000000,28.080000,66.510000,823.920000,0.000000,110.690000,0.010000 -10,2023-08-13 09:00:00,0.000000,17.100000,99.000000,6.000000,354.000000,28.230000,66.520000,823.940000,0.000000,110.690000,0.010000 -10,2023-08-13 10:00:00,0.000000,17.100000,99.000000,6.000000,354.000000,28.380000,66.520000,823.960000,0.000000,110.700000,0.010000 -10,2023-08-13 11:00:00,2.150000,22.400000,76.000000,4.000000,2.000000,20.320000,58.130000,802.330000,0.000000,98.430000,0.000000 -10,2023-08-13 12:00:00,0.000000,22.400000,76.000000,4.000000,2.000000,23.290000,58.250000,803.040000,0.000000,98.610000,0.000000 -10,2023-08-13 13:00:00,0.000000,22.400000,76.000000,4.000000,2.000000,26.210000,58.360000,803.750000,0.000000,98.790000,0.000000 -10,2023-08-13 14:00:00,0.000000,22.400000,76.000000,4.000000,2.000000,29.090000,58.480000,804.460000,0.000000,98.980000,0.010000 -10,2023-08-13 15:00:00,0.000000,22.400000,76.000000,4.000000,2.000000,31.910000,58.600000,805.170000,0.010000,99.160000,0.020000 -10,2023-08-13 16:00:00,0.000000,22.400000,76.000000,4.000000,2.000000,34.660000,58.720000,805.880000,0.010000,99.340000,0.040000 -10,2023-08-13 17:00:00,4.500000,22.000000,77.000000,8.000000,301.000000,16.660000,44.930000,759.780000,0.000000,78.290000,0.000000 -10,2023-08-13 18:00:00,0.000000,22.000000,77.000000,8.000000,301.000000,20.060000,45.040000,760.450000,0.000000,78.460000,0.000000 -10,2023-08-13 19:00:00,0.000000,22.000000,77.000000,8.000000,301.000000,23.420000,45.150000,761.110000,0.000000,78.640000,0.000000 -10,2023-08-13 20:00:00,0.000000,22.000000,77.000000,8.000000,301.000000,26.720000,45.260000,761.770000,0.000000,78.820000,0.000000 -10,2023-08-13 21:00:00,0.000000,22.000000,77.000000,8.000000,301.000000,29.960000,45.260000,761.770000,0.010000,78.820000,0.010000 -10,2023-08-13 22:00:00,0.000000,22.000000,77.000000,8.000000,301.000000,33.120000,45.260000,761.770000,0.010000,78.820000,0.030000 -10,2023-08-13 23:00:00,0.000000,18.600000,92.000000,9.000000,291.000000,34.350000,45.260000,761.770000,0.020000,78.820000,0.040000 -10,2023-08-14 00:00:00,0.000000,18.600000,92.000000,9.000000,291.000000,35.560000,45.260000,761.770000,0.020000,78.820000,0.050000 -10,2023-08-14 01:00:00,0.000000,18.600000,92.000000,9.000000,291.000000,36.740000,45.260000,761.770000,0.030000,78.820000,0.070000 -10,2023-08-14 02:00:00,0.000000,18.600000,92.000000,9.000000,291.000000,37.910000,45.260000,761.770000,0.040000,78.820000,0.080000 -10,2023-08-14 03:00:00,0.000000,18.600000,92.000000,9.000000,291.000000,39.060000,45.260000,761.770000,0.050000,78.820000,0.110000 -10,2023-08-14 04:00:00,0.000000,18.600000,92.000000,9.000000,291.000000,40.180000,45.260000,761.770000,0.060000,78.820000,0.130000 -10,2023-08-14 05:00:00,0.000000,15.900000,97.000000,7.000000,299.000000,40.550000,45.270000,761.800000,0.050000,78.830000,0.130000 -10,2023-08-14 06:00:00,0.000000,15.900000,97.000000,7.000000,299.000000,40.910000,45.270000,761.820000,0.060000,78.840000,0.140000 -10,2023-08-14 07:00:00,0.000000,15.900000,97.000000,7.000000,299.000000,41.270000,45.280000,761.840000,0.060000,78.850000,0.150000 -10,2023-08-14 08:00:00,0.000000,15.900000,97.000000,7.000000,299.000000,41.620000,45.290000,761.870000,0.070000,78.860000,0.160000 -10,2023-08-14 09:00:00,0.000000,15.900000,97.000000,7.000000,299.000000,41.980000,45.300000,761.890000,0.070000,78.870000,0.170000 -10,2023-08-14 10:00:00,0.000000,15.900000,97.000000,7.000000,299.000000,42.330000,45.300000,761.910000,0.080000,78.880000,0.180000 -10,2023-08-14 11:00:00,0.000000,24.700000,59.000000,7.000000,352.000000,46.580000,45.460000,762.460000,0.150000,79.130000,0.350000 -10,2023-08-14 12:00:00,0.000000,24.700000,59.000000,7.000000,352.000000,50.570000,45.630000,763.020000,0.250000,79.380000,0.590000 -10,2023-08-14 13:00:00,0.000000,24.700000,59.000000,7.000000,352.000000,54.270000,45.790000,763.570000,0.370000,79.640000,0.870000 -10,2023-08-14 14:00:00,0.000000,24.700000,59.000000,7.000000,352.000000,57.700000,45.950000,764.120000,0.500000,79.890000,1.630000 -10,2023-08-14 15:00:00,0.000000,24.700000,59.000000,7.000000,352.000000,60.850000,46.110000,764.670000,0.610000,80.140000,2.310000 -10,2023-08-14 16:00:00,0.000000,24.700000,59.000000,7.000000,352.000000,63.720000,46.270000,765.220000,0.710000,80.390000,2.840000 -10,2023-08-14 17:00:00,0.000000,28.100000,39.000000,8.000000,18.000000,67.840000,46.560000,766.220000,0.870000,80.850000,3.660000 -10,2023-08-14 18:00:00,0.000000,28.100000,39.000000,8.000000,18.000000,71.430000,46.860000,767.220000,0.980000,81.300000,4.190000 -10,2023-08-14 19:00:00,0.000000,28.100000,39.000000,8.000000,18.000000,74.530000,47.150000,768.220000,1.120000,81.760000,4.820000 -10,2023-08-14 20:00:00,0.000000,28.100000,39.000000,8.000000,18.000000,77.180000,47.440000,769.220000,1.320000,82.210000,5.720000 -10,2023-08-14 21:00:00,0.000000,28.100000,39.000000,8.000000,18.000000,79.430000,47.440000,769.220000,1.610000,82.210000,6.890000 -10,2023-08-14 22:00:00,0.000000,28.100000,39.000000,8.000000,18.000000,81.340000,47.440000,769.220000,1.970000,82.210000,8.270000 -10,2023-08-14 23:00:00,0.000000,18.900000,69.000000,2.000000,130.000000,81.520000,47.440000,769.220000,1.490000,82.210000,6.420000 -10,2023-08-15 00:00:00,0.000000,18.900000,69.000000,2.000000,130.000000,81.690000,47.440000,769.220000,1.520000,82.210000,6.540000 -10,2023-08-15 01:00:00,0.000000,18.900000,69.000000,2.000000,130.000000,81.860000,47.440000,769.220000,1.550000,82.210000,6.660000 -10,2023-08-15 02:00:00,0.000000,18.900000,69.000000,2.000000,130.000000,82.000000,47.440000,769.220000,1.580000,82.210000,6.770000 -10,2023-08-15 03:00:00,0.000000,18.900000,69.000000,2.000000,130.000000,82.140000,47.440000,769.220000,1.600000,82.210000,6.870000 -10,2023-08-15 04:00:00,0.000000,18.900000,69.000000,2.000000,130.000000,82.270000,47.440000,769.220000,1.630000,82.210000,6.970000 -10,2023-08-15 05:00:00,0.000000,15.400000,82.000000,5.000000,199.000000,82.240000,47.490000,769.320000,1.890000,82.280000,7.970000 -10,2023-08-15 06:00:00,0.000000,15.400000,82.000000,5.000000,199.000000,82.210000,47.530000,769.410000,1.880000,82.340000,7.950000 -10,2023-08-15 07:00:00,0.000000,15.400000,82.000000,5.000000,199.000000,82.190000,47.570000,769.510000,1.880000,82.400000,7.940000 -10,2023-08-15 08:00:00,0.000000,15.400000,82.000000,5.000000,199.000000,82.170000,47.610000,769.600000,1.870000,82.460000,7.920000 -10,2023-08-15 09:00:00,0.000000,15.400000,82.000000,5.000000,199.000000,82.150000,47.650000,769.700000,1.870000,82.530000,7.910000 -10,2023-08-15 10:00:00,0.000000,15.400000,82.000000,5.000000,199.000000,82.140000,47.690000,769.790000,1.860000,82.590000,7.900000 -10,2023-08-15 11:00:00,0.000000,27.300000,42.000000,8.000000,172.000000,83.430000,47.960000,770.430000,2.550000,83.000000,10.380000 -10,2023-08-15 12:00:00,0.000000,27.300000,42.000000,8.000000,172.000000,84.520000,48.230000,771.060000,2.950000,83.420000,11.720000 -10,2023-08-15 13:00:00,0.000000,27.300000,42.000000,8.000000,172.000000,85.430000,48.510000,771.690000,3.340000,83.840000,12.990000 -10,2023-08-15 14:00:00,0.000000,27.300000,42.000000,8.000000,172.000000,86.200000,48.780000,772.330000,3.720000,84.250000,14.170000 -10,2023-08-15 15:00:00,0.000000,27.300000,42.000000,8.000000,172.000000,86.840000,49.050000,772.960000,4.070000,84.670000,15.230000 -10,2023-08-15 16:00:00,0.000000,27.300000,42.000000,8.000000,172.000000,87.370000,49.320000,773.600000,4.400000,85.080000,16.180000 -10,2023-08-15 17:00:00,0.000000,30.100000,31.000000,12.000000,204.000000,88.470000,49.700000,774.480000,6.290000,85.660000,21.140000 -10,2023-08-15 18:00:00,0.000000,30.100000,31.000000,12.000000,204.000000,89.340000,50.080000,775.370000,7.130000,86.240000,23.190000 -10,2023-08-15 19:00:00,0.000000,30.100000,31.000000,12.000000,204.000000,90.030000,50.460000,776.260000,7.870000,86.820000,24.950000 -10,2023-08-15 20:00:00,0.000000,30.100000,31.000000,12.000000,204.000000,90.570000,50.850000,777.140000,8.510000,87.400000,26.430000 -10,2023-08-15 21:00:00,0.000000,30.100000,31.000000,12.000000,204.000000,91.010000,50.850000,777.140000,9.050000,87.400000,27.570000 -10,2023-08-15 22:00:00,0.000000,30.100000,31.000000,12.000000,204.000000,91.350000,50.850000,777.140000,9.500000,87.400000,28.500000 -10,2023-08-15 23:00:00,0.000000,23.800000,45.000000,10.000000,185.000000,91.210000,50.850000,777.140000,8.430000,87.400000,26.240000 -10,2023-08-16 00:00:00,0.000000,23.800000,45.000000,10.000000,185.000000,91.090000,50.850000,777.140000,8.290000,87.400000,25.940000 -10,2023-08-16 01:00:00,0.000000,23.800000,45.000000,10.000000,185.000000,90.990000,50.850000,777.140000,8.170000,87.400000,25.680000 -10,2023-08-16 02:00:00,0.000000,23.800000,45.000000,10.000000,185.000000,90.910000,50.850000,777.140000,8.070000,87.400000,25.470000 -10,2023-08-16 03:00:00,0.000000,23.800000,45.000000,10.000000,185.000000,90.830000,50.850000,777.140000,7.990000,87.400000,25.280000 -10,2023-08-16 04:00:00,0.000000,23.800000,45.000000,10.000000,185.000000,90.770000,50.850000,777.140000,7.920000,87.400000,25.120000 -10,2023-08-16 05:00:00,0.000000,21.300000,50.000000,12.000000,180.000000,90.530000,50.990000,777.420000,8.460000,87.610000,26.340000 -10,2023-08-16 06:00:00,0.000000,21.300000,50.000000,12.000000,180.000000,90.320000,51.130000,777.700000,8.210000,87.820000,25.840000 -10,2023-08-16 07:00:00,0.000000,21.300000,50.000000,12.000000,180.000000,90.150000,51.270000,777.980000,8.010000,88.030000,25.430000 -10,2023-08-16 08:00:00,0.000000,21.300000,50.000000,12.000000,180.000000,90.000000,51.410000,778.250000,7.840000,88.240000,25.080000 -10,2023-08-16 09:00:00,0.000000,21.300000,50.000000,12.000000,180.000000,89.870000,51.550000,778.530000,7.700000,88.450000,24.790000 -10,2023-08-16 10:00:00,0.000000,21.300000,50.000000,12.000000,180.000000,89.760000,51.690000,778.810000,7.580000,88.660000,24.550000 -10,2023-08-16 11:00:00,0.000000,28.500000,33.000000,18.000000,197.000000,90.230000,51.970000,779.380000,10.960000,89.090000,31.680000 -10,2023-08-16 12:00:00,0.000000,28.500000,33.000000,18.000000,197.000000,90.590000,52.260000,779.950000,11.550000,89.530000,32.890000 -10,2023-08-16 13:00:00,0.000000,28.500000,33.000000,18.000000,197.000000,90.880000,52.550000,780.530000,12.040000,89.960000,33.890000 -10,2023-08-16 14:00:00,0.000000,28.500000,33.000000,18.000000,197.000000,91.110000,52.840000,781.100000,12.430000,90.390000,34.700000 -10,2023-08-16 15:00:00,0.000000,28.500000,33.000000,18.000000,197.000000,91.290000,53.130000,781.670000,12.750000,90.820000,35.360000 -10,2023-08-16 16:00:00,0.000000,28.500000,33.000000,18.000000,197.000000,91.420000,53.410000,782.240000,13.000000,91.250000,35.900000 -10,2023-08-16 17:00:00,0.000000,31.200000,24.000000,14.000000,203.000000,92.080000,53.800000,783.000000,11.670000,91.820000,33.530000 -10,2023-08-16 18:00:00,0.000000,31.200000,24.000000,14.000000,203.000000,92.590000,54.180000,783.760000,12.540000,92.390000,35.270000 -10,2023-08-16 19:00:00,0.000000,31.200000,24.000000,14.000000,203.000000,92.980000,54.560000,784.520000,13.250000,92.960000,36.670000 -10,2023-08-16 20:00:00,0.000000,31.200000,24.000000,14.000000,203.000000,93.280000,54.940000,785.280000,13.810000,93.520000,37.800000 -10,2023-08-16 21:00:00,0.000000,31.200000,24.000000,14.000000,203.000000,93.510000,54.940000,785.280000,14.270000,93.520000,38.590000 -10,2023-08-16 22:00:00,0.000000,31.200000,24.000000,14.000000,203.000000,93.690000,54.940000,785.280000,14.620000,93.520000,39.210000 -10,2023-08-16 23:00:00,0.000000,25.000000,34.000000,12.000000,200.000000,93.540000,54.940000,785.280000,12.950000,93.520000,36.220000 -10,2023-08-17 00:00:00,0.000000,25.000000,34.000000,12.000000,200.000000,93.410000,54.940000,785.280000,12.720000,93.520000,35.800000 -10,2023-08-17 01:00:00,0.000000,25.000000,34.000000,12.000000,200.000000,93.300000,54.940000,785.280000,12.520000,93.520000,35.440000 -10,2023-08-17 02:00:00,0.000000,25.000000,34.000000,12.000000,200.000000,93.210000,54.940000,785.280000,12.360000,93.520000,35.130000 -10,2023-08-17 03:00:00,0.000000,25.000000,34.000000,12.000000,200.000000,93.120000,54.940000,785.280000,12.220000,93.520000,34.870000 -10,2023-08-17 04:00:00,0.000000,25.000000,34.000000,12.000000,200.000000,93.050000,54.940000,785.280000,12.100000,93.520000,34.640000 -10,2023-08-17 05:00:00,0.000000,20.000000,46.000000,11.000000,190.000000,92.590000,54.940000,785.280000,10.780000,93.520000,32.090000 -10,2023-08-17 06:00:00,0.000000,20.000000,46.000000,11.000000,190.000000,92.190000,55.080000,785.530000,10.190000,93.740000,30.930000 -10,2023-08-17 07:00:00,0.000000,20.000000,46.000000,11.000000,190.000000,91.850000,55.230000,785.790000,9.700000,93.950000,29.960000 -10,2023-08-17 08:00:00,0.000000,20.000000,46.000000,11.000000,190.000000,91.550000,55.370000,786.040000,9.300000,94.160000,29.140000 -10,2023-08-17 09:00:00,0.000000,20.000000,46.000000,11.000000,190.000000,91.290000,55.520000,786.300000,8.970000,94.370000,28.450000 -10,2023-08-17 10:00:00,0.000000,20.000000,46.000000,11.000000,190.000000,91.060000,55.660000,786.560000,8.680000,94.590000,27.870000 -10,2023-08-17 11:00:00,0.000000,29.500000,26.000000,18.000000,201.000000,91.630000,56.010000,787.180000,13.390000,95.100000,37.330000 -10,2023-08-17 12:00:00,0.000000,29.500000,26.000000,18.000000,201.000000,92.070000,56.360000,787.800000,14.250000,95.610000,38.980000 -10,2023-08-17 13:00:00,0.000000,29.500000,26.000000,18.000000,201.000000,92.410000,56.710000,788.420000,14.950000,96.130000,40.300000 -10,2023-08-17 14:00:00,0.000000,29.500000,26.000000,18.000000,201.000000,92.670000,57.050000,789.040000,15.510000,96.640000,41.370000 -10,2023-08-17 15:00:00,0.000000,29.500000,26.000000,18.000000,201.000000,92.870000,57.400000,789.650000,15.960000,97.150000,42.230000 -10,2023-08-17 16:00:00,0.000000,29.500000,26.000000,18.000000,201.000000,93.030000,57.750000,790.270000,16.310000,97.660000,42.920000 -10,2023-08-17 17:00:00,0.000000,32.600000,17.000000,14.000000,199.000000,93.780000,58.220000,791.100000,14.810000,98.340000,40.470000 -10,2023-08-17 18:00:00,0.000000,32.600000,17.000000,14.000000,199.000000,94.350000,58.680000,791.930000,16.020000,99.020000,42.710000 -10,2023-08-17 19:00:00,0.000000,32.600000,17.000000,14.000000,199.000000,94.780000,59.150000,792.760000,17.000000,99.700000,44.480000 -10,2023-08-17 20:00:00,0.000000,32.600000,17.000000,14.000000,199.000000,95.100000,59.610000,793.590000,17.760000,100.380000,45.880000 -10,2023-08-17 21:00:00,0.000000,32.600000,17.000000,14.000000,199.000000,95.340000,59.610000,793.590000,18.360000,100.380000,46.850000 -10,2023-08-17 22:00:00,0.000000,32.600000,17.000000,14.000000,199.000000,95.520000,59.610000,793.590000,18.820000,100.380000,47.590000 -10,2023-08-17 23:00:00,0.000000,23.600000,32.000000,9.000000,208.000000,95.190000,59.610000,793.590000,13.970000,100.380000,39.340000 -10,2023-08-18 00:00:00,0.000000,23.600000,32.000000,9.000000,208.000000,94.890000,59.610000,793.590000,13.420000,100.380000,38.320000 -10,2023-08-18 01:00:00,0.000000,23.600000,32.000000,9.000000,208.000000,94.630000,59.610000,793.590000,12.950000,100.380000,37.450000 -10,2023-08-18 02:00:00,0.000000,23.600000,32.000000,9.000000,208.000000,94.410000,59.610000,793.590000,12.550000,100.380000,36.690000 -10,2023-08-18 03:00:00,0.000000,23.600000,32.000000,9.000000,208.000000,94.210000,59.610000,793.590000,12.210000,100.380000,36.040000 -10,2023-08-18 04:00:00,0.000000,23.600000,32.000000,9.000000,208.000000,94.030000,59.610000,793.590000,11.920000,100.380000,35.470000 -10,2023-08-18 05:00:00,0.000000,18.200000,50.000000,7.000000,183.000000,93.380000,59.610000,793.590000,9.840000,100.380000,31.220000 -10,2023-08-18 06:00:00,0.000000,18.200000,50.000000,7.000000,183.000000,92.810000,59.790000,793.920000,9.090000,100.640000,29.610000 -10,2023-08-18 07:00:00,0.000000,18.200000,50.000000,7.000000,183.000000,92.310000,59.970000,794.260000,8.460000,100.900000,28.260000 -10,2023-08-18 08:00:00,0.000000,18.200000,50.000000,7.000000,183.000000,91.870000,60.150000,794.590000,7.950000,101.160000,27.110000 -10,2023-08-18 09:00:00,0.000000,18.200000,50.000000,7.000000,183.000000,91.480000,60.330000,794.920000,7.530000,101.420000,26.130000 -10,2023-08-18 10:00:00,0.000000,18.200000,50.000000,7.000000,183.000000,91.140000,60.510000,795.260000,7.170000,101.680000,25.300000 -10,2023-08-18 11:00:00,0.000000,29.100000,29.000000,14.000000,181.000000,91.500000,61.000000,796.170000,10.750000,102.390000,33.410000 -10,2023-08-18 12:00:00,0.000000,29.100000,29.000000,14.000000,181.000000,91.790000,61.490000,797.080000,11.190000,103.100000,34.440000 -10,2023-08-18 13:00:00,0.000000,29.100000,29.000000,14.000000,181.000000,92.010000,61.980000,797.990000,11.560000,103.800000,35.280000 -10,2023-08-18 14:00:00,0.000000,29.100000,29.000000,14.000000,181.000000,92.190000,62.470000,798.900000,11.850000,104.510000,35.980000 -10,2023-08-18 15:00:00,0.000000,29.100000,29.000000,14.000000,181.000000,92.330000,62.960000,799.820000,12.090000,105.210000,36.560000 -10,2023-08-18 16:00:00,0.000000,29.100000,29.000000,14.000000,181.000000,92.440000,63.450000,800.730000,12.280000,105.920000,37.040000 -10,2023-08-18 17:00:00,0.000000,31.700000,26.000000,17.000000,188.000000,92.800000,64.040000,801.830000,15.020000,106.760000,42.360000 -11,2023-08-03 00:00:00,0.000000,15.300000,67.000000,5.000000,60.000000,85.910000,118.400000,826.100000,3.070000,174.330000,16.740000 -11,2023-08-03 01:00:00,0.000000,15.300000,67.000000,5.000000,60.000000,85.830000,118.400000,826.100000,3.040000,174.330000,16.600000 -11,2023-08-03 02:00:00,0.000000,12.600000,71.000000,3.000000,58.000000,85.650000,118.400000,826.100000,2.680000,174.330000,15.090000 -11,2023-08-03 03:00:00,0.000000,12.600000,71.000000,3.000000,58.000000,85.490000,118.400000,826.100000,2.620000,174.330000,14.840000 -11,2023-08-03 04:00:00,0.000000,12.600000,71.000000,3.000000,58.000000,85.350000,118.400000,826.100000,2.570000,174.330000,14.610000 -11,2023-08-03 05:00:00,0.000000,12.100000,71.000000,2.000000,50.000000,85.220000,118.450000,826.230000,2.400000,174.400000,13.860000 -11,2023-08-03 06:00:00,0.000000,12.100000,71.000000,2.000000,50.000000,85.100000,118.510000,826.360000,2.360000,174.460000,13.690000 -11,2023-08-03 07:00:00,0.000000,12.100000,71.000000,2.000000,50.000000,85.000000,118.560000,826.490000,2.330000,174.530000,13.530000 -11,2023-08-03 08:00:00,0.000000,16.300000,56.000000,4.000000,77.000000,85.060000,118.670000,826.740000,2.600000,174.660000,14.740000 -11,2023-08-03 09:00:00,0.000000,16.300000,56.000000,4.000000,77.000000,85.130000,118.770000,827.000000,2.620000,174.790000,14.840000 -11,2023-08-03 10:00:00,0.000000,16.300000,56.000000,4.000000,77.000000,85.180000,118.880000,827.250000,2.640000,174.920000,14.930000 -11,2023-08-03 11:00:00,0.000000,20.900000,38.000000,7.000000,63.000000,85.790000,119.080000,827.730000,3.340000,175.160000,17.840000 -11,2023-08-03 12:00:00,0.000000,20.900000,38.000000,7.000000,63.000000,86.320000,119.280000,828.220000,3.600000,175.410000,18.840000 -11,2023-08-03 13:00:00,0.000000,20.900000,38.000000,7.000000,63.000000,86.780000,119.480000,828.700000,3.840000,175.650000,19.760000 -11,2023-08-03 14:00:00,0.000000,22.600000,36.000000,10.000000,48.000000,87.330000,119.710000,829.250000,4.830000,175.930000,23.300000 -11,2023-08-03 15:00:00,0.000000,22.600000,36.000000,10.000000,48.000000,87.800000,119.940000,829.800000,5.170000,176.210000,24.430000 -11,2023-08-03 16:00:00,0.000000,22.600000,36.000000,10.000000,48.000000,88.200000,120.170000,830.350000,5.470000,176.480000,25.430000 -11,2023-08-03 17:00:00,0.000000,22.600000,37.000000,10.000000,40.000000,88.500000,120.390000,830.890000,5.720000,176.760000,26.220000 -11,2023-08-03 18:00:00,0.000000,22.600000,37.000000,10.000000,40.000000,88.760000,120.620000,831.430000,5.930000,177.030000,26.900000 -11,2023-08-03 19:00:00,0.000000,22.600000,37.000000,10.000000,40.000000,88.970000,120.850000,831.980000,6.120000,177.310000,27.490000 -11,2023-08-03 20:00:00,0.000000,20.700000,42.000000,6.000000,47.000000,88.970000,121.030000,832.420000,5.000000,177.530000,23.910000 -11,2023-08-03 21:00:00,0.000000,20.700000,42.000000,6.000000,47.000000,88.970000,121.220000,832.870000,5.000000,177.760000,23.910000 -11,2023-08-03 22:00:00,0.000000,20.700000,42.000000,6.000000,47.000000,88.970000,121.220000,832.870000,5.000000,177.760000,23.910000 -11,2023-08-03 23:00:00,0.000000,15.400000,59.000000,2.000000,130.000000,88.740000,121.220000,832.870000,3.960000,177.760000,20.240000 -11,2023-08-04 00:00:00,0.000000,15.400000,59.000000,2.000000,130.000000,88.540000,121.220000,832.870000,3.840000,177.760000,19.810000 -11,2023-08-04 01:00:00,0.000000,15.400000,59.000000,2.000000,130.000000,88.350000,121.220000,832.870000,3.740000,177.760000,19.420000 -11,2023-08-04 02:00:00,0.000000,13.200000,67.000000,5.000000,243.000000,87.980000,121.220000,832.870000,4.120000,177.760000,20.850000 -11,2023-08-04 03:00:00,0.000000,13.200000,67.000000,5.000000,243.000000,87.640000,121.220000,832.870000,3.930000,177.760000,20.140000 -11,2023-08-04 04:00:00,0.000000,13.200000,67.000000,5.000000,243.000000,87.350000,121.220000,832.870000,3.770000,177.760000,19.530000 -11,2023-08-04 05:00:00,0.000000,12.900000,70.000000,6.000000,251.000000,87.010000,121.270000,832.990000,3.780000,177.820000,19.560000 -11,2023-08-04 06:00:00,0.000000,12.900000,70.000000,6.000000,251.000000,86.710000,121.320000,833.110000,3.620000,177.880000,18.960000 -11,2023-08-04 07:00:00,0.000000,12.900000,70.000000,6.000000,251.000000,86.440000,121.370000,833.230000,3.480000,177.950000,18.450000 -11,2023-08-04 08:00:00,0.000000,17.400000,58.000000,3.000000,266.000000,86.440000,121.470000,833.460000,2.990000,178.070000,16.490000 -11,2023-08-04 09:00:00,0.000000,17.400000,58.000000,3.000000,266.000000,86.440000,121.570000,833.690000,2.990000,178.180000,16.490000 -11,2023-08-04 10:00:00,0.000000,17.400000,58.000000,3.000000,266.000000,86.440000,121.670000,833.920000,2.990000,178.300000,16.490000 -11,2023-08-04 11:00:00,0.000000,23.700000,39.000000,1.000000,227.000000,86.860000,121.880000,834.410000,2.870000,178.560000,15.980000 -11,2023-08-04 12:00:00,0.000000,23.700000,39.000000,1.000000,227.000000,87.220000,122.090000,834.900000,3.030000,178.810000,16.630000 -11,2023-08-04 13:00:00,0.000000,23.700000,39.000000,1.000000,227.000000,87.550000,122.300000,835.400000,3.170000,179.070000,17.220000 -11,2023-08-04 14:00:00,0.000000,25.800000,31.000000,5.000000,7.000000,88.240000,122.570000,836.030000,4.280000,179.390000,21.450000 -11,2023-08-04 15:00:00,0.000000,25.800000,31.000000,5.000000,7.000000,88.820000,122.840000,836.660000,4.650000,179.720000,22.770000 -11,2023-08-04 16:00:00,0.000000,25.800000,31.000000,5.000000,7.000000,89.310000,123.110000,837.290000,4.990000,180.040000,23.930000 -11,2023-08-04 17:00:00,0.000000,25.700000,32.000000,8.000000,6.000000,89.710000,123.380000,837.900000,6.150000,180.360000,27.670000 -11,2023-08-04 18:00:00,0.000000,25.700000,32.000000,8.000000,6.000000,90.040000,123.640000,838.520000,6.450000,180.680000,28.590000 -11,2023-08-04 19:00:00,0.000000,25.700000,32.000000,8.000000,6.000000,90.320000,123.910000,839.140000,6.710000,181.000000,29.380000 -11,2023-08-04 20:00:00,0.000000,23.700000,38.000000,5.000000,3.000000,90.320000,124.120000,839.640000,5.770000,181.260000,26.500000 -11,2023-08-04 21:00:00,0.000000,23.700000,38.000000,5.000000,3.000000,90.320000,124.340000,840.140000,5.770000,181.520000,26.510000 -11,2023-08-04 22:00:00,0.000000,23.700000,38.000000,5.000000,3.000000,90.320000,124.340000,840.140000,5.770000,181.520000,26.510000 -11,2023-08-04 23:00:00,0.000000,19.300000,52.000000,5.000000,338.000000,90.090000,124.340000,840.140000,5.590000,181.520000,25.930000 -11,2023-08-05 00:00:00,0.000000,19.300000,52.000000,5.000000,338.000000,89.900000,124.340000,840.140000,5.430000,181.520000,25.440000 -11,2023-08-05 01:00:00,0.000000,19.300000,52.000000,5.000000,338.000000,89.730000,124.340000,840.140000,5.300000,181.520000,25.000000 -11,2023-08-05 02:00:00,0.000000,15.900000,67.000000,5.000000,303.000000,89.200000,124.340000,840.140000,4.920000,181.520000,23.720000 -11,2023-08-05 03:00:00,0.000000,15.900000,67.000000,5.000000,303.000000,88.740000,124.340000,840.140000,4.600000,181.520000,22.640000 -11,2023-08-05 04:00:00,0.000000,15.900000,67.000000,5.000000,303.000000,88.340000,124.340000,840.140000,4.340000,181.520000,21.720000 -11,2023-08-05 05:00:00,0.000000,13.900000,80.000000,5.000000,271.000000,87.620000,124.400000,840.310000,3.920000,181.590000,20.180000 -11,2023-08-05 06:00:00,0.000000,13.900000,80.000000,5.000000,271.000000,86.990000,124.460000,840.480000,3.580000,181.670000,18.900000 -11,2023-08-05 07:00:00,0.000000,13.900000,80.000000,5.000000,271.000000,86.440000,124.520000,840.650000,3.310000,181.740000,17.840000 -11,2023-08-05 08:00:00,0.000000,19.100000,63.000000,4.000000,344.000000,86.440000,124.680000,841.090000,3.150000,181.930000,17.190000 -11,2023-08-05 09:00:00,0.000000,19.100000,63.000000,4.000000,344.000000,86.440000,124.830000,841.540000,3.150000,182.130000,17.190000 -11,2023-08-05 10:00:00,0.000000,19.100000,63.000000,4.000000,344.000000,86.440000,124.990000,841.980000,3.150000,182.320000,17.200000 -11,2023-08-05 11:00:00,0.000000,22.700000,49.000000,7.000000,14.000000,86.650000,125.260000,842.740000,3.770000,182.650000,19.650000 -11,2023-08-05 12:00:00,0.000000,22.700000,49.000000,7.000000,14.000000,86.820000,125.530000,843.500000,3.870000,182.980000,20.020000 -11,2023-08-05 13:00:00,0.000000,22.700000,49.000000,7.000000,14.000000,86.980000,125.800000,844.270000,3.950000,183.310000,20.350000 -11,2023-08-05 14:00:00,0.160000,19.600000,65.000000,14.000000,22.000000,86.870000,125.950000,844.700000,5.540000,183.500000,25.830000 -11,2023-08-05 15:00:00,0.000000,19.600000,65.000000,14.000000,22.000000,86.770000,126.100000,845.130000,5.460000,183.690000,25.590000 -11,2023-08-05 16:00:00,0.000000,19.600000,65.000000,14.000000,22.000000,86.690000,126.260000,845.560000,5.400000,183.880000,25.400000 -11,2023-08-05 17:00:00,0.190000,17.600000,71.000000,8.000000,42.000000,86.440000,126.370000,845.880000,3.850000,184.010000,19.990000 -11,2023-08-05 18:00:00,0.000000,17.600000,71.000000,8.000000,42.000000,86.220000,126.480000,846.200000,3.740000,184.150000,19.550000 -11,2023-08-05 19:00:00,0.000000,17.600000,71.000000,8.000000,42.000000,86.040000,126.590000,846.510000,3.640000,184.290000,19.180000 -11,2023-08-05 20:00:00,0.000000,17.500000,67.000000,6.000000,36.000000,85.980000,126.720000,846.870000,3.260000,184.440000,17.700000 -11,2023-08-05 21:00:00,0.000000,17.500000,67.000000,6.000000,36.000000,85.930000,126.840000,847.230000,3.240000,184.600000,17.610000 -11,2023-08-05 22:00:00,0.000000,17.500000,67.000000,6.000000,36.000000,85.880000,126.840000,847.230000,3.220000,184.600000,17.520000 -11,2023-08-05 23:00:00,0.000000,14.900000,79.000000,3.000000,13.000000,85.520000,126.840000,847.230000,2.630000,184.600000,15.060000 -11,2023-08-06 00:00:00,0.000000,14.900000,79.000000,3.000000,13.000000,85.200000,126.840000,847.230000,2.520000,184.600000,14.560000 -11,2023-08-06 01:00:00,0.000000,14.900000,79.000000,3.000000,13.000000,84.920000,126.840000,847.230000,2.420000,184.600000,14.130000 -11,2023-08-06 02:00:00,0.000000,12.800000,90.000000,3.000000,319.000000,84.250000,126.840000,847.230000,2.210000,184.600000,13.160000 -11,2023-08-06 03:00:00,0.000000,12.800000,90.000000,3.000000,319.000000,83.660000,126.840000,847.230000,2.040000,184.600000,12.360000 -11,2023-08-06 04:00:00,0.000000,12.800000,90.000000,3.000000,319.000000,83.140000,126.840000,847.230000,1.910000,184.600000,11.700000 -11,2023-08-06 05:00:00,0.000000,10.800000,99.000000,5.000000,306.000000,82.020000,126.850000,847.230000,1.840000,184.600000,11.340000 -11,2023-08-06 06:00:00,0.000000,10.800000,99.000000,5.000000,306.000000,81.030000,126.850000,847.230000,1.640000,184.600000,10.310000 -11,2023-08-06 07:00:00,0.000000,10.800000,99.000000,5.000000,306.000000,80.170000,126.850000,847.240000,1.490000,184.600000,9.520000 -11,2023-08-06 08:00:00,0.000000,15.600000,71.000000,5.000000,354.000000,80.370000,126.930000,847.420000,1.520000,184.690000,9.700000 -11,2023-08-06 09:00:00,0.000000,15.600000,71.000000,5.000000,354.000000,80.570000,127.000000,847.590000,1.550000,184.780000,9.880000 -11,2023-08-06 10:00:00,0.000000,15.600000,71.000000,5.000000,354.000000,80.750000,127.080000,847.770000,1.580000,184.870000,10.040000 -11,2023-08-06 11:00:00,0.000000,20.400000,36.000000,11.000000,32.000000,82.060000,127.300000,848.300000,2.500000,185.140000,14.470000 -11,2023-08-06 12:00:00,0.000000,20.400000,36.000000,11.000000,32.000000,83.190000,127.520000,848.820000,2.880000,185.410000,16.130000 -11,2023-08-06 13:00:00,0.000000,20.400000,36.000000,11.000000,32.000000,84.170000,127.750000,849.350000,3.270000,185.680000,17.760000 -11,2023-08-06 14:00:00,0.000000,21.600000,31.000000,13.000000,28.000000,85.280000,128.010000,849.960000,4.210000,185.990000,21.350000 -11,2023-08-06 15:00:00,0.000000,21.600000,31.000000,13.000000,28.000000,86.220000,128.270000,850.570000,4.800000,186.300000,23.440000 -11,2023-08-06 16:00:00,0.000000,21.600000,31.000000,13.000000,28.000000,87.010000,128.530000,851.180000,5.370000,186.610000,25.370000 -11,2023-08-06 17:00:00,0.000000,21.400000,31.000000,13.000000,35.000000,87.670000,128.790000,851.790000,5.910000,186.920000,27.090000 -11,2023-08-06 18:00:00,0.000000,21.400000,31.000000,13.000000,35.000000,88.230000,129.040000,852.390000,6.400000,187.220000,28.610000 -11,2023-08-06 19:00:00,0.000000,21.400000,31.000000,13.000000,35.000000,88.700000,129.300000,852.990000,6.840000,187.530000,29.950000 -11,2023-08-06 20:00:00,0.000000,18.800000,39.000000,9.000000,50.000000,88.750000,129.490000,853.450000,5.640000,187.760000,26.250000 -11,2023-08-06 21:00:00,0.000000,18.800000,39.000000,9.000000,50.000000,88.800000,129.690000,853.900000,5.680000,187.990000,26.390000 -11,2023-08-06 22:00:00,0.000000,18.800000,39.000000,9.000000,50.000000,88.850000,129.690000,853.900000,5.710000,187.990000,26.500000 -11,2023-08-06 23:00:00,0.000000,13.100000,61.000000,4.000000,51.000000,88.550000,129.690000,853.900000,4.260000,187.990000,21.560000 -11,2023-08-07 00:00:00,0.000000,13.100000,61.000000,4.000000,51.000000,88.290000,129.690000,853.900000,4.100000,187.990000,20.980000 -11,2023-08-07 01:00:00,0.000000,13.100000,61.000000,4.000000,51.000000,88.050000,129.690000,853.900000,3.960000,187.990000,20.470000 -11,2023-08-07 02:00:00,0.000000,9.900000,80.000000,3.000000,21.000000,87.430000,129.690000,853.900000,3.450000,187.990000,18.500000 -11,2023-08-07 03:00:00,0.000000,9.900000,80.000000,3.000000,21.000000,86.870000,129.690000,853.900000,3.180000,187.990000,17.440000 -11,2023-08-07 04:00:00,0.000000,9.900000,80.000000,3.000000,21.000000,86.370000,129.690000,853.900000,2.970000,187.990000,16.540000 -11,2023-08-07 05:00:00,0.000000,8.600000,87.000000,3.000000,27.000000,85.710000,129.700000,853.950000,2.700000,188.020000,15.410000 -11,2023-08-07 06:00:00,0.000000,8.600000,87.000000,3.000000,27.000000,85.110000,129.720000,854.000000,2.480000,188.040000,14.460000 -11,2023-08-07 07:00:00,0.000000,8.600000,87.000000,3.000000,27.000000,84.570000,129.740000,854.040000,2.310000,188.060000,13.650000 -11,2023-08-07 08:00:00,0.000000,14.100000,56.000000,6.000000,75.000000,84.640000,129.830000,854.270000,2.710000,188.170000,15.460000 -11,2023-08-07 09:00:00,0.000000,14.100000,56.000000,6.000000,75.000000,84.710000,129.930000,854.500000,2.740000,188.280000,15.570000 -11,2023-08-07 10:00:00,0.000000,14.100000,56.000000,6.000000,75.000000,84.770000,130.020000,854.730000,2.760000,188.390000,15.670000 -11,2023-08-07 11:00:00,0.000000,20.000000,39.000000,12.000000,82.000000,85.430000,130.200000,855.190000,4.090000,188.610000,20.950000 -11,2023-08-07 12:00:00,0.000000,20.000000,39.000000,12.000000,82.000000,85.990000,130.390000,855.650000,4.420000,188.840000,22.160000 -11,2023-08-07 13:00:00,0.000000,20.000000,39.000000,12.000000,82.000000,86.470000,130.570000,856.100000,4.730000,189.060000,23.260000 -11,2023-08-07 14:00:00,0.000000,22.200000,33.000000,13.000000,73.000000,87.190000,130.800000,856.680000,5.510000,189.340000,25.880000 -11,2023-08-07 15:00:00,0.000000,22.200000,33.000000,13.000000,73.000000,87.790000,131.040000,857.260000,6.000000,189.610000,27.460000 -11,2023-08-07 16:00:00,0.000000,22.200000,33.000000,13.000000,73.000000,88.290000,131.270000,857.840000,6.450000,189.890000,28.850000 -11,2023-08-07 17:00:00,0.000000,22.200000,32.000000,15.000000,63.000000,88.760000,131.500000,858.420000,7.640000,190.180000,32.320000 -11,2023-08-07 18:00:00,0.000000,22.200000,32.000000,15.000000,63.000000,89.150000,131.740000,859.010000,8.080000,190.460000,33.560000 -11,2023-08-07 19:00:00,0.000000,22.200000,32.000000,15.000000,63.000000,89.480000,131.980000,859.600000,8.460000,190.740000,34.620000 -11,2023-08-07 20:00:00,0.000000,19.600000,38.000000,12.000000,59.000000,89.480000,132.160000,860.050000,7.270000,190.960000,31.310000 -11,2023-08-07 21:00:00,0.000000,19.600000,38.000000,12.000000,59.000000,89.480000,132.340000,860.510000,7.270000,191.180000,31.320000 -11,2023-08-07 22:00:00,0.000000,19.600000,38.000000,12.000000,59.000000,89.480000,132.340000,860.510000,7.270000,191.180000,31.320000 -11,2023-08-07 23:00:00,0.000000,14.000000,51.000000,7.000000,83.000000,89.300000,132.340000,860.510000,5.510000,191.180000,25.910000 -11,2023-08-08 00:00:00,0.000000,14.000000,51.000000,7.000000,83.000000,89.140000,132.340000,860.510000,5.380000,191.180000,25.500000 -11,2023-08-08 01:00:00,0.000000,14.000000,51.000000,7.000000,83.000000,88.990000,132.340000,860.510000,5.270000,191.180000,25.140000 -11,2023-08-08 02:00:00,0.000000,12.000000,51.000000,8.000000,124.000000,88.830000,132.340000,860.510000,5.420000,191.180000,25.630000 -11,2023-08-08 03:00:00,0.000000,12.000000,51.000000,8.000000,124.000000,88.690000,132.340000,860.510000,5.310000,191.180000,25.270000 -11,2023-08-08 04:00:00,0.000000,12.000000,51.000000,8.000000,124.000000,88.570000,132.340000,860.510000,5.220000,191.180000,24.950000 -11,2023-08-08 05:00:00,0.000000,9.800000,61.000000,6.000000,140.000000,88.270000,132.400000,860.630000,4.520000,191.240000,22.550000 -11,2023-08-08 06:00:00,0.000000,9.800000,61.000000,6.000000,140.000000,87.990000,132.450000,860.750000,4.350000,191.310000,21.930000 -11,2023-08-08 07:00:00,0.000000,9.800000,61.000000,6.000000,140.000000,87.750000,132.510000,860.870000,4.190000,191.380000,21.390000 -11,2023-08-08 08:00:00,0.000000,14.800000,48.000000,7.000000,155.000000,87.750000,132.610000,861.100000,4.410000,191.500000,22.170000 -11,2023-08-08 09:00:00,0.000000,14.800000,48.000000,7.000000,155.000000,87.750000,132.720000,861.330000,4.410000,191.620000,22.180000 -11,2023-08-08 10:00:00,0.000000,14.800000,48.000000,7.000000,155.000000,87.750000,132.820000,861.560000,4.410000,191.740000,22.180000 -11,2023-08-08 11:00:00,0.000000,22.400000,34.000000,3.000000,158.000000,88.130000,133.030000,862.020000,3.810000,191.990000,19.980000 -11,2023-08-08 12:00:00,0.000000,22.400000,34.000000,3.000000,158.000000,88.470000,133.240000,862.490000,4.000000,192.240000,20.690000 -11,2023-08-08 13:00:00,0.000000,22.400000,34.000000,3.000000,158.000000,88.760000,133.460000,862.950000,4.170000,192.490000,21.330000 -11,2023-08-08 14:00:00,0.000000,25.400000,27.000000,7.000000,346.000000,89.420000,133.740000,863.570000,5.610000,192.820000,26.260000 -11,2023-08-08 15:00:00,0.000000,25.400000,27.000000,7.000000,346.000000,89.960000,134.020000,864.180000,6.060000,193.150000,27.720000 -11,2023-08-08 16:00:00,0.000000,25.400000,27.000000,7.000000,346.000000,90.420000,134.300000,864.800000,6.470000,193.480000,28.990000 -11,2023-08-08 17:00:00,0.000000,25.300000,27.000000,13.000000,33.000000,90.830000,134.580000,865.410000,9.290000,193.810000,36.900000 -11,2023-08-08 18:00:00,0.000000,25.300000,27.000000,13.000000,33.000000,91.170000,134.850000,866.020000,9.750000,194.130000,38.080000 -11,2023-08-08 19:00:00,0.000000,25.300000,27.000000,13.000000,33.000000,91.440000,135.130000,866.640000,10.130000,194.460000,39.070000 -11,2023-08-08 20:00:00,0.000000,22.200000,35.000000,8.000000,46.000000,91.440000,135.340000,867.090000,7.880000,194.700000,33.110000 -11,2023-08-08 21:00:00,0.000000,22.200000,35.000000,8.000000,46.000000,91.440000,135.540000,867.540000,7.880000,194.940000,33.120000 -11,2023-08-08 22:00:00,0.000000,22.200000,35.000000,8.000000,46.000000,91.440000,135.540000,867.540000,7.880000,194.940000,33.120000 -11,2023-08-08 23:00:00,0.000000,15.500000,54.000000,5.000000,19.000000,91.020000,135.540000,867.540000,6.380000,194.940000,28.730000 -11,2023-08-09 00:00:00,0.000000,15.500000,54.000000,5.000000,19.000000,90.640000,135.540000,867.540000,6.040000,194.940000,27.690000 -11,2023-08-09 01:00:00,0.000000,15.500000,54.000000,5.000000,19.000000,90.310000,135.540000,867.540000,5.760000,194.940000,26.800000 -11,2023-08-09 02:00:00,0.000000,12.700000,64.000000,4.000000,273.000000,89.800000,135.540000,867.540000,5.090000,194.940000,24.610000 -11,2023-08-09 03:00:00,0.000000,12.700000,64.000000,4.000000,273.000000,89.350000,135.540000,867.540000,4.770000,194.940000,23.510000 -11,2023-08-09 04:00:00,0.000000,12.700000,64.000000,4.000000,273.000000,88.940000,135.540000,867.540000,4.500000,194.940000,22.560000 -11,2023-08-09 05:00:00,0.000000,11.300000,70.000000,5.000000,246.000000,88.440000,135.590000,867.640000,4.400000,195.000000,22.210000 -11,2023-08-09 06:00:00,0.000000,11.300000,70.000000,5.000000,246.000000,87.980000,135.640000,867.730000,4.130000,195.060000,21.200000 -11,2023-08-09 07:00:00,0.000000,11.300000,70.000000,5.000000,246.000000,87.580000,135.690000,867.820000,3.890000,195.110000,20.330000 -11,2023-08-09 08:00:00,0.000000,17.300000,48.000000,3.000000,205.000000,87.580000,135.810000,868.060000,3.520000,195.250000,18.900000 -11,2023-08-09 09:00:00,0.000000,17.300000,48.000000,3.000000,205.000000,87.580000,135.930000,868.300000,3.520000,195.390000,18.900000 -11,2023-08-09 10:00:00,0.000000,17.300000,48.000000,3.000000,205.000000,87.580000,136.060000,868.540000,3.520000,195.540000,18.900000 -11,2023-08-09 11:00:00,0.000000,25.200000,29.000000,4.000000,154.000000,88.280000,136.330000,869.070000,4.100000,195.850000,21.100000 -11,2023-08-09 12:00:00,0.000000,25.200000,29.000000,4.000000,154.000000,88.880000,136.600000,869.600000,4.460000,196.160000,22.440000 -11,2023-08-09 13:00:00,0.000000,25.200000,29.000000,4.000000,154.000000,89.390000,136.870000,870.140000,4.800000,196.480000,23.630000 -11,2023-08-09 14:00:00,0.000000,27.600000,25.000000,7.000000,134.000000,90.130000,137.200000,870.780000,6.210000,196.860000,28.260000 -11,2023-08-09 15:00:00,0.000000,27.600000,25.000000,7.000000,134.000000,90.740000,137.530000,871.430000,6.780000,197.240000,29.980000 -11,2023-08-09 16:00:00,0.000000,27.600000,25.000000,7.000000,134.000000,91.240000,137.860000,872.070000,7.270000,197.620000,31.460000 -11,2023-08-09 17:00:00,0.000000,27.900000,25.000000,9.000000,124.000000,91.670000,138.200000,872.730000,8.560000,198.010000,35.070000 -11,2023-08-09 18:00:00,0.000000,27.900000,25.000000,9.000000,124.000000,92.030000,138.530000,873.390000,9.000000,198.400000,36.250000 -11,2023-08-09 19:00:00,0.000000,27.900000,25.000000,9.000000,124.000000,92.310000,138.870000,874.050000,9.370000,198.780000,37.230000 -11,2023-08-09 20:00:00,0.000000,25.000000,30.000000,6.000000,117.000000,92.310000,139.140000,874.560000,8.050000,199.090000,33.710000 -11,2023-08-09 21:00:00,0.000000,25.000000,30.000000,6.000000,117.000000,92.310000,139.400000,875.080000,8.050000,199.390000,33.710000 -11,2023-08-09 22:00:00,0.000000,25.000000,30.000000,6.000000,117.000000,92.310000,139.400000,875.080000,8.050000,199.390000,33.710000 -11,2023-08-09 23:00:00,0.000000,18.300000,45.000000,5.000000,158.000000,92.010000,139.400000,875.080000,7.340000,199.390000,31.680000 -11,2023-08-10 00:00:00,0.000000,18.300000,45.000000,5.000000,158.000000,91.740000,139.400000,875.080000,7.060000,199.390000,30.880000 -11,2023-08-10 01:00:00,0.000000,18.300000,45.000000,5.000000,158.000000,91.500000,139.400000,875.080000,6.830000,199.390000,30.180000 -11,2023-08-10 02:00:00,0.000000,15.800000,54.000000,7.000000,182.000000,91.050000,139.400000,875.080000,7.080000,199.390000,30.930000 -11,2023-08-10 03:00:00,0.000000,15.800000,54.000000,7.000000,182.000000,90.650000,139.400000,875.080000,6.690000,199.390000,29.760000 -11,2023-08-10 04:00:00,0.000000,15.800000,54.000000,7.000000,182.000000,90.290000,139.400000,875.080000,6.360000,199.390000,28.760000 -11,2023-08-10 05:00:00,0.000000,15.500000,57.000000,7.000000,168.000000,89.910000,139.490000,875.270000,6.020000,199.500000,27.710000 -11,2023-08-10 06:00:00,0.000000,15.500000,57.000000,7.000000,168.000000,89.580000,139.580000,875.450000,5.740000,199.600000,26.810000 -11,2023-08-10 07:00:00,0.000000,15.500000,57.000000,7.000000,168.000000,89.280000,139.670000,875.640000,5.500000,199.710000,26.030000 -11,2023-08-10 08:00:00,0.000000,19.500000,45.000000,8.000000,159.000000,89.280000,139.820000,875.940000,5.780000,199.880000,26.950000 -11,2023-08-10 09:00:00,0.000000,19.500000,45.000000,8.000000,159.000000,89.280000,139.970000,876.250000,5.780000,200.060000,26.960000 -11,2023-08-10 10:00:00,0.000000,19.500000,45.000000,8.000000,159.000000,89.280000,140.120000,876.550000,5.780000,200.230000,26.960000 -11,2023-08-10 11:00:00,0.000000,24.800000,31.000000,11.000000,156.000000,89.700000,140.390000,877.080000,7.150000,200.530000,31.150000 -11,2023-08-10 12:00:00,0.000000,24.800000,31.000000,11.000000,156.000000,90.060000,140.650000,877.600000,7.520000,200.830000,32.230000 -11,2023-08-10 13:00:00,0.000000,24.800000,31.000000,11.000000,156.000000,90.350000,140.910000,878.130000,7.840000,201.130000,33.140000 -11,2023-08-10 14:00:00,0.000000,26.000000,25.000000,11.000000,176.000000,90.880000,141.210000,878.750000,8.450000,201.480000,34.860000 -11,2023-08-10 15:00:00,0.000000,26.000000,25.000000,11.000000,176.000000,91.310000,141.510000,879.360000,8.990000,201.830000,36.300000 -11,2023-08-10 16:00:00,0.000000,26.000000,25.000000,11.000000,176.000000,91.660000,141.820000,879.980000,9.450000,202.180000,37.520000 -11,2023-08-10 17:00:00,0.000000,26.300000,23.000000,9.000000,152.000000,92.030000,142.140000,880.620000,9.010000,202.540000,36.360000 -11,2023-08-10 18:00:00,0.000000,26.300000,23.000000,9.000000,152.000000,92.340000,142.450000,881.260000,9.400000,202.910000,37.410000 -11,2023-08-10 19:00:00,0.000000,26.300000,23.000000,9.000000,152.000000,92.580000,142.770000,881.910000,9.730000,203.270000,38.280000 -11,2023-08-10 20:00:00,0.000000,26.300000,23.000000,9.000000,152.000000,92.780000,143.090000,882.550000,10.010000,203.640000,39.000000 -11,2023-08-10 21:00:00,0.000000,26.300000,23.000000,9.000000,152.000000,92.950000,143.090000,882.550000,10.250000,203.640000,39.590000 -11,2023-08-10 22:00:00,0.000000,26.300000,23.000000,9.000000,152.000000,93.080000,143.090000,882.550000,10.440000,203.640000,40.070000 -11,2023-08-10 23:00:00,0.000000,22.000000,40.000000,11.000000,165.000000,92.800000,143.090000,882.550000,11.110000,203.640000,41.700000 -11,2023-08-11 00:00:00,0.000000,22.000000,40.000000,11.000000,165.000000,92.560000,143.090000,882.550000,10.740000,203.640000,40.790000 -11,2023-08-11 01:00:00,0.000000,22.000000,40.000000,11.000000,165.000000,92.350000,143.090000,882.550000,10.420000,203.640000,40.030000 -11,2023-08-11 02:00:00,0.000000,22.000000,40.000000,11.000000,165.000000,92.170000,143.090000,882.550000,10.160000,203.640000,39.370000 -11,2023-08-11 03:00:00,0.000000,22.000000,40.000000,11.000000,165.000000,92.020000,143.090000,882.550000,9.940000,203.640000,38.810000 -11,2023-08-11 04:00:00,0.000000,22.000000,40.000000,11.000000,165.000000,91.880000,143.090000,882.550000,9.750000,203.640000,38.320000 -11,2023-08-11 05:00:00,0.000000,19.300000,55.000000,5.000000,168.000000,91.400000,143.190000,882.870000,6.730000,203.770000,29.970000 -11,2023-08-11 06:00:00,0.000000,19.300000,55.000000,5.000000,168.000000,90.970000,143.300000,883.200000,6.340000,203.900000,28.770000 -11,2023-08-11 07:00:00,0.000000,19.300000,55.000000,5.000000,168.000000,90.600000,143.410000,883.520000,6.010000,204.020000,27.760000 -11,2023-08-11 08:00:00,0.000000,19.300000,55.000000,5.000000,168.000000,90.280000,143.510000,883.840000,5.740000,204.150000,26.890000 -11,2023-08-11 09:00:00,0.000000,19.300000,55.000000,5.000000,168.000000,90.000000,143.620000,884.160000,5.510000,204.280000,26.140000 -11,2023-08-11 10:00:00,0.000000,19.300000,55.000000,5.000000,168.000000,89.750000,143.720000,884.490000,5.310000,204.410000,25.510000 -11,2023-08-11 11:00:00,0.000000,24.500000,54.000000,4.000000,191.000000,89.640000,143.870000,884.940000,4.980000,204.590000,24.360000 -11,2023-08-11 12:00:00,0.000000,24.500000,54.000000,4.000000,191.000000,89.540000,144.020000,885.390000,4.910000,204.770000,24.140000 -11,2023-08-11 13:00:00,0.000000,24.500000,54.000000,4.000000,191.000000,89.460000,144.170000,885.850000,4.850000,204.950000,23.950000 -11,2023-08-11 14:00:00,0.000000,24.500000,54.000000,4.000000,191.000000,89.390000,144.320000,886.300000,4.800000,205.130000,23.780000 -11,2023-08-11 15:00:00,0.000000,24.500000,54.000000,4.000000,191.000000,89.330000,144.470000,886.750000,4.760000,205.310000,23.640000 -11,2023-08-11 16:00:00,0.000000,24.500000,54.000000,4.000000,191.000000,89.280000,144.620000,887.200000,4.730000,205.490000,23.520000 -11,2023-08-11 17:00:00,0.000000,27.700000,42.000000,6.000000,64.000000,89.410000,144.840000,887.890000,5.330000,205.770000,25.570000 -11,2023-08-11 18:00:00,0.000000,27.700000,42.000000,6.000000,64.000000,89.520000,145.070000,888.580000,5.410000,206.040000,25.850000 -11,2023-08-11 19:00:00,0.000000,27.700000,42.000000,6.000000,64.000000,89.610000,145.290000,889.270000,5.480000,206.320000,26.080000 -11,2023-08-11 20:00:00,0.000000,27.700000,42.000000,6.000000,64.000000,89.680000,145.520000,889.960000,5.540000,206.590000,26.280000 -11,2023-08-11 21:00:00,0.000000,27.700000,42.000000,6.000000,64.000000,89.750000,145.520000,889.960000,5.590000,206.590000,26.450000 -11,2023-08-11 22:00:00,0.000000,27.700000,42.000000,6.000000,64.000000,89.800000,145.520000,889.960000,5.630000,206.590000,26.580000 -11,2023-08-11 23:00:00,0.000000,21.100000,63.000000,4.000000,82.000000,89.410000,145.520000,889.960000,4.810000,206.590000,23.830000 -11,2023-08-12 00:00:00,0.000000,21.100000,63.000000,4.000000,82.000000,89.070000,145.520000,889.960000,4.590000,206.590000,23.030000 -11,2023-08-12 01:00:00,0.000000,21.100000,63.000000,4.000000,82.000000,88.780000,145.520000,889.960000,4.400000,206.590000,22.360000 -11,2023-08-12 02:00:00,0.000000,21.100000,63.000000,4.000000,82.000000,88.520000,145.520000,889.960000,4.240000,206.590000,21.780000 -11,2023-08-12 03:00:00,0.000000,21.100000,63.000000,4.000000,82.000000,88.300000,145.520000,889.960000,4.110000,206.590000,21.300000 -11,2023-08-12 04:00:00,0.000000,21.100000,63.000000,4.000000,82.000000,88.110000,145.520000,889.960000,4.000000,206.590000,20.880000 -11,2023-08-12 05:00:00,0.000000,15.900000,86.000000,6.000000,211.000000,87.140000,145.560000,890.040000,3.850000,206.630000,20.320000 -11,2023-08-12 06:00:00,0.000000,15.900000,86.000000,6.000000,211.000000,86.310000,145.600000,890.120000,3.420000,206.680000,18.640000 -11,2023-08-12 07:00:00,0.000000,15.900000,86.000000,6.000000,211.000000,85.590000,145.630000,890.190000,3.090000,206.720000,17.300000 -11,2023-08-12 08:00:00,0.000000,15.900000,86.000000,6.000000,211.000000,84.960000,145.670000,890.270000,2.830000,206.760000,16.220000 -11,2023-08-12 09:00:00,0.000000,15.900000,86.000000,6.000000,211.000000,84.430000,145.710000,890.350000,2.630000,206.810000,15.340000 -11,2023-08-12 10:00:00,0.000000,15.900000,86.000000,6.000000,211.000000,83.960000,145.750000,890.420000,2.470000,206.850000,14.630000 -11,2023-08-12 11:00:00,0.000000,29.300000,35.000000,8.000000,165.000000,85.380000,146.140000,891.230000,3.320000,207.300000,18.250000 -11,2023-08-12 12:00:00,0.000000,29.300000,35.000000,8.000000,165.000000,86.550000,146.540000,892.030000,3.910000,207.750000,20.570000 -11,2023-08-12 13:00:00,0.000000,29.300000,35.000000,8.000000,165.000000,87.500000,146.930000,892.830000,4.480000,208.210000,22.680000 -11,2023-08-12 14:00:00,0.000000,29.300000,35.000000,8.000000,165.000000,88.280000,147.330000,893.640000,5.010000,208.660000,24.540000 -11,2023-08-12 15:00:00,0.000000,29.300000,35.000000,8.000000,165.000000,88.920000,147.730000,894.440000,5.490000,209.110000,26.160000 -11,2023-08-12 16:00:00,0.000000,29.300000,35.000000,8.000000,165.000000,89.440000,148.120000,895.240000,5.920000,209.560000,27.540000 -11,2023-08-12 17:00:00,0.000000,29.800000,41.000000,11.000000,211.000000,89.670000,148.490000,895.990000,7.110000,209.980000,31.220000 -11,2023-08-12 18:00:00,0.000000,29.800000,41.000000,11.000000,211.000000,89.850000,148.860000,896.740000,7.300000,210.400000,31.780000 -11,2023-08-12 19:00:00,0.000000,29.800000,41.000000,11.000000,211.000000,90.000000,149.230000,897.490000,7.460000,210.820000,32.240000 -11,2023-08-12 20:00:00,0.000000,29.800000,41.000000,11.000000,211.000000,90.120000,149.600000,898.240000,7.590000,211.240000,32.620000 -11,2023-08-12 21:00:00,0.000000,29.800000,41.000000,11.000000,211.000000,90.220000,149.600000,898.240000,7.690000,211.240000,32.920000 -11,2023-08-12 22:00:00,0.000000,29.800000,41.000000,11.000000,211.000000,90.290000,149.600000,898.240000,7.780000,211.240000,33.160000 -11,2023-08-12 23:00:00,0.000000,22.000000,55.000000,7.000000,230.000000,90.020000,149.600000,898.240000,6.120000,211.240000,28.210000 -11,2023-08-13 00:00:00,0.000000,22.000000,55.000000,7.000000,230.000000,89.790000,149.600000,898.240000,5.920000,211.240000,27.580000 -11,2023-08-13 01:00:00,0.000000,22.000000,55.000000,7.000000,230.000000,89.600000,149.600000,898.240000,5.750000,211.240000,27.040000 -11,2023-08-13 02:00:00,0.000000,22.000000,55.000000,7.000000,230.000000,89.430000,149.600000,898.240000,5.610000,211.240000,26.590000 -11,2023-08-13 03:00:00,0.000000,22.000000,55.000000,7.000000,230.000000,89.280000,149.600000,898.240000,5.500000,211.240000,26.210000 -11,2023-08-13 04:00:00,0.000000,22.000000,55.000000,7.000000,230.000000,89.150000,149.600000,898.240000,5.400000,211.240000,25.880000 -11,2023-08-13 05:00:00,0.000000,17.200000,67.000000,6.000000,282.000000,88.690000,149.660000,898.940000,4.800000,211.350000,23.860000 -11,2023-08-13 06:00:00,0.000000,17.200000,67.000000,6.000000,282.000000,88.290000,149.710000,899.650000,4.540000,211.450000,22.920000 -11,2023-08-13 07:00:00,0.000000,17.200000,67.000000,6.000000,282.000000,87.940000,149.770000,900.350000,4.310000,211.560000,22.120000 -11,2023-08-13 08:00:00,0.000000,17.200000,67.000000,6.000000,282.000000,87.640000,149.830000,901.050000,4.130000,211.660000,21.440000 -11,2023-08-13 09:00:00,0.000000,17.200000,67.000000,6.000000,282.000000,87.370000,149.880000,901.750000,3.970000,211.770000,20.860000 -11,2023-08-13 10:00:00,0.000000,17.200000,67.000000,6.000000,282.000000,87.140000,149.940000,902.450000,3.850000,211.870000,20.370000 -11,2023-08-13 11:00:00,5.540000,17.300000,87.000000,5.000000,258.000000,29.520000,108.130000,845.010000,0.000000,163.850000,0.010000 -11,2023-08-13 12:00:00,0.000000,17.300000,87.000000,5.000000,258.000000,31.060000,108.150000,845.290000,0.010000,163.880000,0.020000 -11,2023-08-13 13:00:00,0.000000,17.300000,87.000000,5.000000,258.000000,32.570000,108.180000,845.570000,0.010000,163.920000,0.030000 -11,2023-08-13 14:00:00,0.000000,17.300000,87.000000,5.000000,258.000000,34.060000,108.200000,845.840000,0.010000,163.960000,0.050000 -11,2023-08-13 15:00:00,0.000000,17.300000,87.000000,5.000000,258.000000,35.520000,108.220000,846.120000,0.020000,164.000000,0.060000 -11,2023-08-13 16:00:00,0.000000,17.300000,87.000000,5.000000,258.000000,36.960000,108.240000,846.400000,0.020000,164.040000,0.090000 -11,2023-08-13 17:00:00,11.760000,16.200000,97.000000,15.000000,298.000000,6.750000,71.770000,723.940000,0.000000,115.030000,0.000000 -11,2023-08-13 18:00:00,0.000000,16.200000,97.000000,15.000000,298.000000,7.390000,71.770000,724.000000,0.000000,115.040000,0.000000 -11,2023-08-13 19:00:00,0.000000,16.200000,97.000000,15.000000,298.000000,8.030000,71.780000,724.060000,0.000000,115.050000,0.000000 -11,2023-08-13 20:00:00,0.000000,16.200000,97.000000,15.000000,298.000000,8.660000,71.780000,724.120000,0.000000,115.050000,0.000000 -11,2023-08-13 21:00:00,0.000000,16.200000,97.000000,15.000000,298.000000,9.300000,71.780000,724.120000,0.000000,115.050000,0.000000 -11,2023-08-13 22:00:00,0.000000,16.200000,97.000000,15.000000,298.000000,9.940000,71.780000,724.120000,0.000000,115.050000,0.000000 -11,2023-08-13 23:00:00,6.550000,16.200000,98.000000,12.000000,252.000000,3.190000,59.800000,655.870000,0.000000,97.400000,0.000000 -11,2023-08-14 00:00:00,0.000000,16.200000,98.000000,12.000000,252.000000,3.590000,59.800000,655.870000,0.000000,97.400000,0.000000 -11,2023-08-14 01:00:00,0.000000,16.200000,98.000000,12.000000,252.000000,3.990000,59.800000,655.870000,0.000000,97.400000,0.000000 -11,2023-08-14 02:00:00,0.000000,16.200000,98.000000,12.000000,252.000000,4.390000,59.800000,655.870000,0.000000,97.400000,0.000000 -11,2023-08-14 03:00:00,0.000000,16.200000,98.000000,12.000000,252.000000,4.790000,59.800000,655.870000,0.000000,97.400000,0.000000 -11,2023-08-14 04:00:00,0.000000,16.200000,98.000000,12.000000,252.000000,5.190000,59.800000,655.870000,0.000000,97.400000,0.000000 -11,2023-08-14 05:00:00,0.060000,16.000000,96.000000,9.000000,223.000000,5.690000,59.810000,655.960000,0.000000,97.410000,0.000000 -11,2023-08-14 06:00:00,0.000000,16.000000,96.000000,9.000000,223.000000,6.380000,59.810000,656.050000,0.000000,97.420000,0.000000 -11,2023-08-14 07:00:00,0.000000,16.000000,96.000000,9.000000,223.000000,7.070000,59.820000,656.140000,0.000000,97.430000,0.000000 -11,2023-08-14 08:00:00,0.000000,16.000000,96.000000,9.000000,223.000000,7.760000,59.830000,656.220000,0.000000,97.450000,0.000000 -11,2023-08-14 09:00:00,0.000000,16.000000,96.000000,9.000000,223.000000,8.450000,59.840000,656.310000,0.000000,97.460000,0.000000 -11,2023-08-14 10:00:00,0.000000,16.000000,96.000000,9.000000,223.000000,9.140000,59.850000,656.400000,0.000000,97.470000,0.000000 -11,2023-08-14 11:00:00,0.420000,19.000000,86.000000,11.000000,219.000000,11.040000,59.880000,656.770000,0.000000,97.530000,0.000000 -11,2023-08-14 12:00:00,0.000000,19.000000,86.000000,11.000000,219.000000,13.430000,59.910000,657.140000,0.000000,97.580000,0.000000 -11,2023-08-14 13:00:00,0.000000,19.000000,86.000000,11.000000,219.000000,15.810000,59.950000,657.510000,0.000000,97.640000,0.000000 -11,2023-08-14 14:00:00,0.000000,19.000000,86.000000,11.000000,219.000000,18.170000,59.980000,657.890000,0.000000,97.690000,0.000000 -11,2023-08-14 15:00:00,0.000000,19.000000,86.000000,11.000000,219.000000,20.520000,60.010000,658.260000,0.000000,97.750000,0.000000 -11,2023-08-14 16:00:00,0.000000,19.000000,86.000000,11.000000,219.000000,22.840000,60.050000,658.630000,0.000000,97.800000,0.000000 -11,2023-08-14 17:00:00,0.350000,21.300000,70.000000,7.000000,259.000000,25.860000,60.130000,659.550000,0.000000,97.940000,0.000000 -11,2023-08-14 18:00:00,0.000000,21.300000,70.000000,7.000000,259.000000,29.490000,60.210000,660.460000,0.000000,98.070000,0.010000 -11,2023-08-14 19:00:00,0.000000,21.300000,70.000000,7.000000,259.000000,33.040000,60.300000,661.380000,0.010000,98.210000,0.030000 -11,2023-08-14 20:00:00,0.000000,21.300000,70.000000,7.000000,259.000000,36.470000,60.380000,662.300000,0.020000,98.340000,0.070000 -11,2023-08-14 21:00:00,0.000000,21.300000,70.000000,7.000000,259.000000,39.780000,60.380000,662.300000,0.050000,98.340000,0.130000 -11,2023-08-14 22:00:00,0.000000,21.300000,70.000000,7.000000,259.000000,42.970000,60.380000,662.300000,0.080000,98.340000,0.230000 -11,2023-08-14 23:00:00,0.000000,17.000000,94.000000,5.000000,101.000000,43.600000,60.380000,662.300000,0.080000,98.340000,0.230000 -11,2023-08-15 00:00:00,0.000000,17.000000,94.000000,5.000000,101.000000,44.220000,60.380000,662.300000,0.090000,98.340000,0.260000 -11,2023-08-15 01:00:00,0.000000,17.000000,94.000000,5.000000,101.000000,44.830000,60.380000,662.300000,0.100000,98.340000,0.280000 -11,2023-08-15 02:00:00,0.000000,17.000000,94.000000,5.000000,101.000000,45.440000,60.380000,662.300000,0.110000,98.340000,0.310000 -11,2023-08-15 03:00:00,0.000000,17.000000,94.000000,5.000000,101.000000,46.040000,60.380000,662.300000,0.120000,98.340000,0.340000 -11,2023-08-15 04:00:00,0.000000,17.000000,94.000000,5.000000,101.000000,46.630000,60.380000,662.300000,0.130000,98.340000,0.370000 -11,2023-08-15 05:00:00,0.000000,14.200000,100.000000,2.000000,124.000000,46.630000,60.380000,662.300000,0.120000,98.340000,0.320000 -11,2023-08-15 06:00:00,0.000000,14.200000,100.000000,2.000000,124.000000,46.630000,60.380000,662.300000,0.120000,98.340000,0.320000 -11,2023-08-15 07:00:00,0.000000,14.200000,100.000000,2.000000,124.000000,46.630000,60.380000,662.300000,0.120000,98.340000,0.320000 -11,2023-08-15 08:00:00,0.000000,14.200000,100.000000,2.000000,124.000000,46.630000,60.380000,662.300000,0.120000,98.340000,0.320000 -11,2023-08-15 09:00:00,0.000000,14.200000,100.000000,2.000000,124.000000,46.630000,60.380000,662.300000,0.120000,98.340000,0.320000 -11,2023-08-15 10:00:00,0.000000,14.200000,100.000000,2.000000,124.000000,46.630000,60.380000,662.300000,0.120000,98.340000,0.320000 -11,2023-08-15 11:00:00,0.010000,19.900000,72.000000,5.000000,78.000000,48.950000,60.400000,662.930000,0.180000,98.390000,0.510000 -11,2023-08-15 12:00:00,0.000000,19.900000,72.000000,5.000000,78.000000,51.240000,60.520000,663.560000,0.240000,98.570000,0.670000 -11,2023-08-15 13:00:00,0.000000,19.900000,72.000000,5.000000,78.000000,53.420000,60.640000,664.190000,0.310000,98.740000,0.850000 -11,2023-08-15 14:00:00,0.000000,19.900000,72.000000,5.000000,78.000000,55.500000,60.750000,664.820000,0.370000,98.910000,1.200000 -11,2023-08-15 15:00:00,0.000000,19.900000,72.000000,5.000000,78.000000,57.460000,60.870000,665.450000,0.440000,99.080000,1.750000 -11,2023-08-15 16:00:00,0.000000,19.900000,72.000000,5.000000,78.000000,59.310000,60.990000,666.080000,0.500000,99.250000,2.180000 -11,2023-08-15 17:00:00,0.000000,21.000000,71.000000,14.000000,33.000000,61.720000,61.120000,666.780000,0.920000,99.440000,4.550000 -11,2023-08-15 18:00:00,0.000000,21.000000,71.000000,14.000000,33.000000,63.930000,61.240000,667.480000,1.020000,99.630000,5.090000 -11,2023-08-15 19:00:00,0.000000,21.000000,71.000000,14.000000,33.000000,65.950000,61.370000,668.180000,1.110000,99.820000,5.530000 -11,2023-08-15 20:00:00,0.000000,21.000000,71.000000,14.000000,33.000000,67.790000,61.500000,668.880000,1.180000,100.010000,5.890000 -11,2023-08-15 21:00:00,0.000000,21.000000,71.000000,14.000000,33.000000,69.470000,61.500000,668.880000,1.240000,100.010000,6.200000 -11,2023-08-15 22:00:00,0.000000,21.000000,71.000000,14.000000,33.000000,70.990000,61.500000,668.880000,1.310000,100.010000,6.500000 -11,2023-08-15 23:00:00,1.760000,16.000000,96.000000,7.000000,324.000000,50.880000,57.260000,668.880000,0.260000,94.330000,0.690000 -11,2023-08-16 00:00:00,0.000000,16.000000,96.000000,7.000000,324.000000,51.250000,57.260000,668.880000,0.270000,94.330000,0.720000 -11,2023-08-16 01:00:00,0.000000,16.000000,96.000000,7.000000,324.000000,51.610000,57.260000,668.880000,0.280000,94.330000,0.750000 -11,2023-08-16 02:00:00,0.000000,16.000000,96.000000,7.000000,324.000000,51.970000,57.260000,668.880000,0.290000,94.330000,0.780000 -11,2023-08-16 03:00:00,0.000000,16.000000,96.000000,7.000000,324.000000,52.320000,57.260000,668.880000,0.300000,94.330000,0.810000 -11,2023-08-16 04:00:00,0.000000,16.000000,96.000000,7.000000,324.000000,52.670000,57.260000,668.880000,0.320000,94.330000,0.840000 -11,2023-08-16 05:00:00,0.110000,15.200000,96.000000,8.000000,339.000000,53.020000,57.270000,668.930000,0.340000,94.340000,0.920000 -11,2023-08-16 06:00:00,0.000000,15.200000,96.000000,8.000000,339.000000,53.360000,57.280000,668.980000,0.360000,94.360000,0.950000 -11,2023-08-16 07:00:00,0.000000,15.200000,96.000000,8.000000,339.000000,53.700000,57.280000,669.030000,0.370000,94.370000,0.990000 -11,2023-08-16 08:00:00,0.000000,15.200000,96.000000,8.000000,339.000000,54.040000,57.290000,669.070000,0.380000,94.380000,1.130000 -11,2023-08-16 09:00:00,0.000000,15.200000,96.000000,8.000000,339.000000,54.370000,57.300000,669.120000,0.390000,94.400000,1.260000 -11,2023-08-16 10:00:00,0.000000,15.200000,96.000000,8.000000,339.000000,54.690000,57.310000,669.170000,0.410000,94.410000,1.370000 -11,2023-08-16 11:00:00,0.170000,18.700000,70.000000,12.000000,343.000000,57.170000,57.400000,669.610000,0.610000,94.540000,2.730000 -11,2023-08-16 12:00:00,0.000000,18.700000,70.000000,12.000000,343.000000,59.470000,57.480000,670.060000,0.720000,94.660000,3.370000 -11,2023-08-16 13:00:00,0.000000,18.700000,70.000000,12.000000,343.000000,61.610000,57.570000,670.500000,0.820000,94.790000,3.910000 -11,2023-08-16 14:00:00,0.000000,18.700000,70.000000,12.000000,343.000000,63.600000,57.650000,670.950000,0.910000,94.920000,4.360000 -11,2023-08-16 15:00:00,0.000000,18.700000,70.000000,12.000000,343.000000,65.430000,57.740000,671.390000,0.980000,95.050000,4.730000 -11,2023-08-16 16:00:00,0.000000,18.700000,70.000000,12.000000,343.000000,67.120000,57.830000,671.840000,1.040000,95.170000,5.040000 -11,2023-08-16 17:00:00,0.000000,21.300000,51.000000,15.000000,356.000000,69.780000,57.990000,672.690000,1.320000,95.420000,6.370000 -11,2023-08-16 18:00:00,0.000000,21.300000,51.000000,15.000000,356.000000,72.130000,58.150000,673.550000,1.430000,95.660000,6.870000 -11,2023-08-16 19:00:00,0.000000,21.300000,51.000000,15.000000,356.000000,74.200000,58.320000,674.400000,1.560000,95.900000,7.460000 -11,2023-08-16 20:00:00,0.000000,21.300000,51.000000,15.000000,356.000000,76.020000,58.480000,675.250000,1.730000,96.150000,8.180000 -11,2023-08-16 21:00:00,0.000000,21.300000,51.000000,15.000000,356.000000,77.600000,58.480000,675.250000,1.940000,96.150000,9.020000 -11,2023-08-16 22:00:00,0.000000,21.300000,51.000000,15.000000,356.000000,78.980000,58.480000,675.250000,2.190000,96.150000,9.980000 -11,2023-08-16 23:00:00,0.000000,15.700000,71.000000,4.000000,67.000000,79.260000,58.480000,675.250000,1.290000,96.150000,6.250000 -11,2023-08-17 00:00:00,0.000000,15.700000,71.000000,4.000000,67.000000,79.520000,58.480000,675.250000,1.320000,96.150000,6.410000 -11,2023-08-17 01:00:00,0.000000,15.700000,71.000000,4.000000,67.000000,79.770000,58.480000,675.250000,1.360000,96.150000,6.560000 -11,2023-08-17 02:00:00,0.000000,15.700000,71.000000,4.000000,67.000000,80.000000,58.480000,675.250000,1.390000,96.150000,6.700000 -11,2023-08-17 03:00:00,0.000000,15.700000,71.000000,4.000000,67.000000,80.210000,58.480000,675.250000,1.420000,96.150000,6.840000 -11,2023-08-17 04:00:00,0.000000,15.700000,71.000000,4.000000,67.000000,80.410000,58.480000,675.250000,1.450000,96.150000,6.980000 -11,2023-08-17 05:00:00,0.000000,10.900000,93.000000,3.000000,257.000000,80.080000,58.480000,675.250000,1.330000,96.150000,6.450000 -11,2023-08-17 06:00:00,0.000000,10.900000,93.000000,3.000000,257.000000,79.790000,58.500000,675.300000,1.290000,96.170000,6.270000 -11,2023-08-17 07:00:00,0.000000,10.900000,93.000000,3.000000,257.000000,79.530000,58.510000,675.340000,1.260000,96.190000,6.110000 -11,2023-08-17 08:00:00,0.000000,10.900000,93.000000,3.000000,257.000000,79.300000,58.530000,675.390000,1.230000,96.210000,5.980000 -11,2023-08-17 09:00:00,0.000000,10.900000,93.000000,3.000000,257.000000,79.090000,58.540000,675.430000,1.210000,96.230000,5.870000 -11,2023-08-17 10:00:00,0.000000,10.900000,93.000000,3.000000,257.000000,78.900000,58.560000,675.470000,1.190000,96.250000,5.770000 -11,2023-08-17 11:00:00,0.000000,20.700000,50.000000,6.000000,45.000000,79.900000,58.750000,676.060000,1.520000,96.530000,7.300000 -11,2023-08-17 12:00:00,0.000000,20.700000,50.000000,6.000000,45.000000,80.790000,58.950000,676.650000,1.670000,96.810000,7.970000 -11,2023-08-17 13:00:00,0.000000,20.700000,50.000000,6.000000,45.000000,81.580000,59.150000,677.240000,1.830000,97.100000,8.640000 -11,2023-08-17 14:00:00,0.000000,20.700000,50.000000,6.000000,45.000000,82.280000,59.340000,677.830000,1.990000,97.380000,9.300000 -11,2023-08-17 15:00:00,0.000000,20.700000,50.000000,6.000000,45.000000,82.900000,59.540000,678.420000,2.150000,97.660000,9.950000 -11,2023-08-17 16:00:00,0.000000,20.700000,50.000000,6.000000,45.000000,83.440000,59.740000,679.000000,2.310000,97.930000,10.570000 -11,2023-08-17 17:00:00,0.000000,23.000000,45.000000,14.000000,30.000000,84.280000,59.990000,679.750000,3.860000,98.290000,15.880000 -11,2023-08-17 18:00:00,0.000000,23.000000,45.000000,14.000000,30.000000,84.980000,60.240000,680.490000,4.250000,98.640000,17.100000 -11,2023-08-17 19:00:00,0.000000,23.000000,45.000000,14.000000,30.000000,85.580000,60.480000,681.240000,4.620000,99.000000,18.210000 -11,2023-08-17 20:00:00,0.000000,23.000000,45.000000,14.000000,30.000000,86.080000,60.730000,681.980000,4.950000,99.350000,19.210000 -11,2023-08-17 21:00:00,0.000000,23.000000,45.000000,14.000000,30.000000,86.500000,60.730000,681.980000,5.260000,99.350000,20.070000 -11,2023-08-17 22:00:00,0.000000,23.000000,45.000000,14.000000,30.000000,86.860000,60.730000,681.980000,5.530000,99.350000,20.810000 -11,2023-08-17 23:00:00,0.000000,14.400000,76.000000,1.000000,325.000000,86.500000,60.730000,681.980000,2.730000,99.350000,12.210000 -11,2023-08-18 00:00:00,0.000000,14.400000,76.000000,1.000000,325.000000,86.190000,60.730000,681.980000,2.610000,99.350000,11.780000 -11,2023-08-18 01:00:00,0.000000,14.400000,76.000000,1.000000,325.000000,85.900000,60.730000,681.980000,2.510000,99.350000,11.400000 -11,2023-08-18 02:00:00,0.000000,14.400000,76.000000,1.000000,325.000000,85.650000,60.730000,681.980000,2.420000,99.350000,11.070000 -11,2023-08-18 03:00:00,0.000000,14.400000,76.000000,1.000000,325.000000,85.420000,60.730000,681.980000,2.340000,99.350000,10.790000 -11,2023-08-18 04:00:00,0.000000,14.400000,76.000000,1.000000,325.000000,85.210000,60.730000,681.980000,2.280000,99.350000,10.530000 -11,2023-08-18 05:00:00,0.000000,10.700000,93.000000,5.000000,239.000000,84.310000,60.730000,681.980000,2.470000,99.350000,11.240000 -11,2023-08-18 06:00:00,0.000000,10.700000,93.000000,5.000000,239.000000,83.520000,60.750000,682.030000,2.220000,99.380000,10.310000 -11,2023-08-18 07:00:00,0.000000,10.700000,93.000000,5.000000,239.000000,82.820000,60.780000,682.080000,2.030000,99.410000,9.560000 -11,2023-08-18 08:00:00,0.000000,10.700000,93.000000,5.000000,239.000000,82.200000,60.800000,682.130000,1.880000,99.440000,8.950000 -11,2023-08-18 09:00:00,0.000000,10.700000,93.000000,5.000000,239.000000,81.650000,60.820000,682.180000,1.760000,99.460000,8.450000 -11,2023-08-18 10:00:00,0.000000,10.700000,93.000000,5.000000,239.000000,81.160000,60.840000,682.230000,1.660000,99.490000,8.050000 -11,2023-08-18 11:00:00,0.000000,23.200000,41.000000,8.000000,168.000000,82.360000,61.220000,683.170000,2.230000,100.030000,10.380000 -11,2023-08-18 12:00:00,0.000000,23.200000,41.000000,8.000000,168.000000,83.390000,61.610000,684.100000,2.540000,100.570000,11.590000 -11,2023-08-18 13:00:00,0.000000,23.200000,41.000000,8.000000,168.000000,84.280000,61.990000,685.030000,2.860000,101.110000,12.780000 -11,2023-08-18 14:00:00,0.000000,23.200000,41.000000,8.000000,168.000000,85.050000,62.370000,685.960000,3.170000,101.640000,13.900000 -11,2023-08-18 15:00:00,0.000000,23.200000,41.000000,8.000000,168.000000,85.700000,62.760000,686.900000,3.470000,102.180000,14.950000 -11,2023-08-18 16:00:00,0.000000,23.200000,41.000000,8.000000,168.000000,86.260000,63.140000,687.830000,3.760000,102.710000,15.920000 -11,2023-08-18 17:00:00,0.000000,27.100000,33.000000,5.000000,233.000000,87.150000,63.690000,689.160000,3.660000,103.480000,15.670000 -12,2023-08-03 00:00:00,0.000000,14.500000,60.000000,5.000000,15.000000,86.000000,118.400000,826.100000,3.110000,174.330000,16.900000 -12,2023-08-03 01:00:00,0.000000,14.500000,60.000000,5.000000,15.000000,86.000000,118.400000,826.100000,3.110000,174.330000,16.900000 -12,2023-08-03 02:00:00,0.000000,11.900000,69.000000,2.000000,321.000000,85.840000,118.400000,826.100000,2.620000,174.330000,14.820000 -12,2023-08-03 03:00:00,0.000000,11.900000,69.000000,2.000000,321.000000,85.700000,118.400000,826.100000,2.570000,174.330000,14.600000 -12,2023-08-03 04:00:00,0.000000,11.900000,69.000000,2.000000,321.000000,85.580000,118.400000,826.100000,2.520000,174.330000,14.400000 -12,2023-08-03 05:00:00,0.000000,10.100000,78.000000,4.000000,277.000000,85.240000,118.430000,826.180000,2.660000,174.370000,15.010000 -12,2023-08-03 06:00:00,0.000000,10.100000,78.000000,4.000000,277.000000,84.940000,118.470000,826.260000,2.550000,174.420000,14.550000 -12,2023-08-03 07:00:00,0.000000,10.100000,78.000000,4.000000,277.000000,84.670000,118.500000,826.350000,2.460000,174.460000,14.140000 -12,2023-08-03 08:00:00,0.000000,16.500000,56.000000,2.000000,309.000000,84.760000,118.600000,826.590000,2.250000,174.580000,13.200000 -12,2023-08-03 09:00:00,0.000000,16.500000,56.000000,2.000000,309.000000,84.850000,118.700000,826.840000,2.280000,174.700000,13.320000 -12,2023-08-03 10:00:00,0.000000,16.500000,56.000000,2.000000,309.000000,84.920000,118.800000,827.090000,2.300000,174.820000,13.430000 -12,2023-08-03 11:00:00,0.000000,22.000000,41.000000,4.000000,40.000000,85.480000,118.990000,827.560000,2.750000,175.050000,15.410000 -12,2023-08-03 12:00:00,0.000000,22.000000,41.000000,4.000000,40.000000,85.960000,119.180000,828.030000,2.940000,175.290000,16.230000 -12,2023-08-03 13:00:00,0.000000,22.000000,41.000000,4.000000,40.000000,86.390000,119.370000,828.500000,3.130000,175.520000,16.980000 -12,2023-08-03 14:00:00,0.000000,24.000000,34.000000,7.000000,10.000000,87.100000,119.610000,829.090000,4.020000,175.810000,20.430000 -12,2023-08-03 15:00:00,0.000000,24.000000,34.000000,7.000000,10.000000,87.700000,119.850000,829.680000,4.380000,176.100000,21.730000 -12,2023-08-03 16:00:00,0.000000,24.000000,34.000000,7.000000,10.000000,88.200000,120.090000,830.280000,4.710000,176.390000,22.890000 -12,2023-08-03 17:00:00,0.000000,24.200000,33.000000,7.000000,5.000000,88.680000,120.330000,830.890000,5.040000,176.690000,24.020000 -12,2023-08-03 18:00:00,0.000000,24.200000,33.000000,7.000000,5.000000,89.070000,120.580000,831.490000,5.340000,176.990000,25.010000 -12,2023-08-03 19:00:00,0.000000,24.200000,33.000000,7.000000,5.000000,89.410000,120.830000,832.100000,5.600000,177.290000,25.870000 -12,2023-08-03 20:00:00,0.000000,22.100000,40.000000,4.000000,5.000000,89.420000,121.020000,832.580000,4.820000,177.530000,23.300000 -12,2023-08-03 21:00:00,0.000000,22.100000,40.000000,4.000000,5.000000,89.430000,121.210000,833.060000,4.830000,177.760000,23.330000 -12,2023-08-03 22:00:00,0.000000,22.100000,40.000000,4.000000,5.000000,89.440000,121.210000,833.060000,4.830000,177.760000,23.350000 -12,2023-08-03 23:00:00,0.000000,15.900000,61.000000,3.000000,289.000000,89.110000,121.210000,833.060000,4.390000,177.760000,21.800000 -12,2023-08-04 00:00:00,0.000000,15.900000,61.000000,3.000000,289.000000,88.820000,121.210000,833.060000,4.210000,177.760000,21.150000 -12,2023-08-04 01:00:00,0.000000,15.900000,61.000000,3.000000,289.000000,88.560000,121.210000,833.060000,4.050000,177.760000,20.590000 -12,2023-08-04 02:00:00,0.000000,12.900000,72.000000,6.000000,269.000000,88.030000,121.210000,833.060000,4.370000,177.760000,21.740000 -12,2023-08-04 03:00:00,0.000000,12.900000,72.000000,6.000000,269.000000,87.570000,121.210000,833.060000,4.090000,177.760000,20.730000 -12,2023-08-04 04:00:00,0.000000,12.900000,72.000000,6.000000,269.000000,87.160000,121.210000,833.060000,3.860000,177.760000,19.870000 -12,2023-08-04 05:00:00,0.000000,12.000000,79.000000,7.000000,273.000000,86.590000,121.250000,833.150000,3.740000,177.810000,19.440000 -12,2023-08-04 06:00:00,0.000000,12.000000,79.000000,7.000000,273.000000,86.090000,121.280000,833.250000,3.490000,177.850000,18.460000 -12,2023-08-04 07:00:00,0.000000,12.000000,79.000000,7.000000,273.000000,85.650000,121.320000,833.340000,3.280000,177.890000,17.640000 -12,2023-08-04 08:00:00,0.000000,18.500000,58.000000,6.000000,290.000000,85.660000,121.420000,833.610000,3.120000,178.020000,17.010000 -12,2023-08-04 09:00:00,0.000000,18.500000,58.000000,6.000000,290.000000,85.670000,121.530000,833.890000,3.130000,178.150000,17.030000 -12,2023-08-04 10:00:00,0.000000,18.500000,58.000000,6.000000,290.000000,85.680000,121.630000,834.160000,3.130000,178.280000,17.040000 -12,2023-08-04 11:00:00,0.000000,22.900000,45.000000,7.000000,359.000000,86.100000,121.820000,834.640000,3.490000,178.500000,18.490000 -12,2023-08-04 12:00:00,0.000000,22.900000,45.000000,7.000000,359.000000,86.470000,122.000000,835.110000,3.680000,178.720000,19.210000 -12,2023-08-04 13:00:00,0.000000,22.900000,45.000000,7.000000,359.000000,86.780000,122.180000,835.590000,3.840000,178.940000,19.840000 -12,2023-08-04 14:00:00,0.000000,24.100000,41.000000,9.000000,20.000000,87.230000,122.390000,836.130000,4.530000,179.200000,22.340000 -12,2023-08-04 15:00:00,0.000000,24.100000,41.000000,9.000000,20.000000,87.610000,122.600000,836.680000,4.780000,179.450000,23.210000 -12,2023-08-04 16:00:00,0.000000,24.100000,41.000000,9.000000,20.000000,87.920000,122.800000,837.230000,5.010000,179.710000,23.980000 -12,2023-08-04 17:00:00,0.000000,25.400000,37.000000,8.000000,12.000000,88.370000,123.050000,837.860000,5.070000,180.000000,24.200000 -12,2023-08-04 18:00:00,0.000000,25.400000,37.000000,8.000000,12.000000,88.740000,123.290000,838.490000,5.350000,180.300000,25.130000 -12,2023-08-04 19:00:00,0.000000,25.400000,37.000000,8.000000,12.000000,89.050000,123.530000,839.120000,5.590000,180.590000,25.920000 -12,2023-08-04 20:00:00,0.000000,23.800000,41.000000,4.000000,4.000000,89.120000,123.730000,839.650000,4.620000,180.840000,22.690000 -12,2023-08-04 21:00:00,0.000000,23.800000,41.000000,4.000000,4.000000,89.190000,123.940000,840.190000,4.660000,181.090000,22.840000 -12,2023-08-04 22:00:00,0.000000,23.800000,41.000000,4.000000,4.000000,89.240000,123.940000,840.190000,4.700000,181.090000,22.970000 -12,2023-08-04 23:00:00,0.000000,17.500000,59.000000,4.000000,271.000000,88.980000,123.940000,840.190000,4.530000,181.090000,22.370000 -12,2023-08-05 00:00:00,0.000000,17.500000,59.000000,4.000000,271.000000,88.750000,123.940000,840.190000,4.380000,181.090000,21.850000 -12,2023-08-05 01:00:00,0.000000,17.500000,59.000000,4.000000,271.000000,88.550000,123.940000,840.190000,4.250000,181.090000,21.400000 -12,2023-08-05 02:00:00,0.000000,14.800000,71.000000,7.000000,267.000000,88.040000,123.940000,840.190000,4.600000,181.090000,22.630000 -12,2023-08-05 03:00:00,0.000000,14.800000,71.000000,7.000000,267.000000,87.590000,123.940000,840.190000,4.320000,181.090000,21.620000 -12,2023-08-05 04:00:00,0.000000,14.800000,71.000000,7.000000,267.000000,87.200000,123.940000,840.190000,4.080000,181.090000,20.780000 -12,2023-08-05 05:00:00,0.000000,14.600000,78.000000,8.000000,273.000000,86.650000,123.990000,840.330000,3.970000,181.160000,20.360000 -12,2023-08-05 06:00:00,0.000000,14.600000,78.000000,8.000000,273.000000,86.170000,124.050000,840.470000,3.710000,181.230000,19.390000 -12,2023-08-05 07:00:00,0.000000,14.600000,78.000000,8.000000,273.000000,85.760000,124.110000,840.600000,3.500000,181.300000,18.580000 -12,2023-08-05 08:00:00,0.000000,19.900000,61.000000,10.000000,296.000000,85.760000,124.250000,840.940000,3.870000,181.470000,20.000000 -12,2023-08-05 09:00:00,0.000000,19.900000,61.000000,10.000000,296.000000,85.760000,124.390000,841.280000,3.870000,181.630000,20.000000 -12,2023-08-05 10:00:00,0.000000,19.900000,61.000000,10.000000,296.000000,85.760000,124.520000,841.630000,3.870000,181.800000,20.000000 -12,2023-08-05 11:00:00,0.000000,24.800000,43.000000,10.000000,308.000000,86.340000,124.800000,842.300000,4.200000,182.130000,21.230000 -12,2023-08-05 12:00:00,0.000000,24.800000,43.000000,10.000000,308.000000,86.830000,125.070000,842.970000,4.500000,182.460000,22.310000 -12,2023-08-05 13:00:00,0.000000,24.800000,43.000000,10.000000,308.000000,87.240000,125.350000,843.640000,4.770000,182.800000,23.270000 -12,2023-08-05 14:00:00,0.080000,23.700000,46.000000,10.000000,318.000000,86.310000,125.040000,844.240000,4.180000,182.500000,21.160000 -12,2023-08-05 15:00:00,0.000000,23.700000,46.000000,10.000000,318.000000,86.660000,125.280000,844.830000,4.400000,182.790000,21.950000 -12,2023-08-05 16:00:00,0.000000,23.700000,46.000000,10.000000,318.000000,86.970000,125.520000,845.430000,4.590000,183.090000,22.650000 -12,2023-08-05 17:00:00,0.640000,23.500000,48.000000,9.000000,336.000000,78.380000,122.380000,845.990000,1.530000,179.760000,9.700000 -12,2023-08-05 18:00:00,0.000000,23.500000,48.000000,9.000000,336.000000,79.770000,122.620000,846.560000,1.750000,180.040000,10.820000 -12,2023-08-05 19:00:00,0.000000,23.500000,48.000000,9.000000,336.000000,80.960000,122.850000,847.130000,1.980000,180.320000,12.020000 -12,2023-08-05 20:00:00,0.820000,20.100000,70.000000,6.000000,356.000000,70.540000,118.960000,847.390000,0.860000,176.110000,5.740000 -12,2023-08-05 21:00:00,0.000000,20.100000,70.000000,6.000000,356.000000,71.680000,119.070000,847.660000,0.890000,176.240000,5.960000 -12,2023-08-05 22:00:00,0.000000,20.100000,70.000000,6.000000,356.000000,72.730000,119.070000,847.660000,0.930000,176.240000,6.190000 -12,2023-08-05 23:00:00,0.000000,16.500000,78.000000,8.000000,353.000000,73.350000,119.070000,847.660000,1.060000,176.240000,6.970000 -12,2023-08-06 00:00:00,0.000000,16.500000,78.000000,8.000000,353.000000,73.930000,119.070000,847.660000,1.080000,176.240000,7.140000 -12,2023-08-06 01:00:00,0.000000,16.500000,78.000000,8.000000,353.000000,74.470000,119.070000,847.660000,1.110000,176.240000,7.310000 -12,2023-08-06 02:00:00,0.000000,14.300000,81.000000,7.000000,331.000000,74.820000,119.070000,847.660000,1.080000,176.240000,7.100000 -12,2023-08-06 03:00:00,0.000000,14.300000,81.000000,7.000000,331.000000,75.160000,119.070000,847.660000,1.100000,176.240000,7.220000 -12,2023-08-06 04:00:00,0.000000,14.300000,81.000000,7.000000,331.000000,75.470000,119.070000,847.660000,1.120000,176.240000,7.340000 -12,2023-08-06 05:00:00,0.000000,12.900000,92.000000,8.000000,316.000000,75.500000,119.080000,847.700000,1.180000,176.260000,7.700000 -12,2023-08-06 06:00:00,0.000000,12.900000,92.000000,8.000000,316.000000,75.530000,119.100000,847.740000,1.180000,176.280000,7.710000 -12,2023-08-06 07:00:00,0.000000,12.900000,92.000000,8.000000,316.000000,75.550000,119.120000,847.780000,1.180000,176.300000,7.720000 -12,2023-08-06 08:00:00,0.000000,17.700000,67.000000,7.000000,345.000000,76.300000,119.210000,848.010000,1.180000,176.420000,7.700000 -12,2023-08-06 09:00:00,0.000000,17.700000,67.000000,7.000000,345.000000,76.990000,119.300000,848.230000,1.240000,176.530000,8.040000 -12,2023-08-06 10:00:00,0.000000,17.700000,67.000000,7.000000,345.000000,77.620000,119.400000,848.460000,1.300000,176.650000,8.390000 -12,2023-08-06 11:00:00,0.000000,21.900000,39.000000,10.000000,16.000000,79.330000,119.630000,849.000000,1.760000,176.930000,10.840000 -12,2023-08-06 12:00:00,0.000000,21.900000,39.000000,10.000000,16.000000,80.810000,119.850000,849.540000,2.050000,177.200000,12.290000 -12,2023-08-06 13:00:00,0.000000,21.900000,39.000000,10.000000,16.000000,82.090000,120.080000,850.090000,2.380000,177.480000,13.830000 -12,2023-08-06 14:00:00,0.000000,22.900000,35.000000,13.000000,21.000000,83.450000,120.330000,850.700000,3.290000,177.790000,17.690000 -12,2023-08-06 15:00:00,0.000000,22.900000,35.000000,13.000000,21.000000,84.610000,120.590000,851.310000,3.840000,178.110000,19.820000 -12,2023-08-06 16:00:00,0.000000,22.900000,35.000000,13.000000,21.000000,85.590000,120.850000,851.930000,4.400000,178.420000,21.850000 -12,2023-08-06 17:00:00,0.000000,22.200000,35.000000,13.000000,37.000000,86.370000,121.090000,852.520000,4.910000,178.720000,23.620000 -12,2023-08-06 18:00:00,0.000000,22.200000,35.000000,13.000000,37.000000,87.030000,121.340000,853.110000,5.390000,179.020000,25.230000 -12,2023-08-06 19:00:00,0.000000,22.200000,35.000000,13.000000,37.000000,87.590000,121.580000,853.690000,5.830000,179.320000,26.660000 -12,2023-08-06 20:00:00,0.000000,19.300000,40.000000,9.000000,59.000000,87.780000,121.770000,854.150000,4.900000,179.550000,23.630000 -12,2023-08-06 21:00:00,0.000000,19.300000,40.000000,9.000000,59.000000,87.950000,121.960000,854.600000,5.020000,179.780000,24.040000 -12,2023-08-06 22:00:00,0.000000,19.300000,40.000000,9.000000,59.000000,88.090000,121.960000,854.600000,5.130000,179.780000,24.390000 -12,2023-08-06 23:00:00,0.000000,14.300000,59.000000,4.000000,63.000000,87.930000,121.960000,854.600000,3.890000,179.780000,20.040000 -12,2023-08-07 00:00:00,0.000000,14.300000,59.000000,4.000000,63.000000,87.770000,121.960000,854.600000,3.810000,179.780000,19.730000 -12,2023-08-07 01:00:00,0.000000,14.300000,59.000000,4.000000,63.000000,87.640000,121.960000,854.600000,3.730000,179.780000,19.450000 -12,2023-08-07 02:00:00,0.000000,11.800000,74.000000,1.000000,198.000000,87.250000,121.960000,854.600000,3.040000,179.780000,16.690000 -12,2023-08-07 03:00:00,0.000000,11.800000,74.000000,1.000000,198.000000,86.890000,121.960000,854.600000,2.890000,179.780000,16.070000 -12,2023-08-07 04:00:00,0.000000,11.800000,74.000000,1.000000,198.000000,86.570000,121.960000,854.600000,2.760000,179.780000,15.530000 -12,2023-08-07 05:00:00,0.000000,10.000000,83.000000,2.000000,202.000000,86.040000,121.990000,854.660000,2.690000,179.810000,15.230000 -12,2023-08-07 06:00:00,0.000000,10.000000,83.000000,2.000000,202.000000,85.550000,122.010000,854.720000,2.510000,179.840000,14.460000 -12,2023-08-07 07:00:00,0.000000,10.000000,83.000000,2.000000,202.000000,85.120000,122.040000,854.770000,2.370000,179.880000,13.800000 -12,2023-08-07 08:00:00,0.000000,15.500000,57.000000,4.000000,154.000000,85.140000,122.130000,854.970000,2.630000,179.990000,14.960000 -12,2023-08-07 09:00:00,0.000000,15.500000,57.000000,4.000000,154.000000,85.170000,122.230000,855.170000,2.640000,180.100000,15.000000 -12,2023-08-07 10:00:00,0.000000,15.500000,57.000000,4.000000,154.000000,85.190000,122.320000,855.380000,2.640000,180.210000,15.040000 -12,2023-08-07 11:00:00,0.000000,22.800000,33.000000,7.000000,150.000000,86.050000,122.550000,855.870000,3.470000,180.490000,18.430000 -12,2023-08-07 12:00:00,0.000000,22.800000,33.000000,7.000000,150.000000,86.780000,122.780000,856.360000,3.840000,180.770000,19.880000 -12,2023-08-07 13:00:00,0.000000,22.800000,33.000000,7.000000,150.000000,87.400000,123.010000,856.860000,4.200000,181.040000,21.210000 -12,2023-08-07 14:00:00,0.000000,25.900000,27.000000,7.000000,138.000000,88.310000,123.310000,857.510000,4.780000,181.410000,23.260000 -12,2023-08-07 15:00:00,0.000000,25.900000,27.000000,7.000000,138.000000,89.060000,123.610000,858.160000,5.330000,181.770000,25.110000 -12,2023-08-07 16:00:00,0.000000,25.900000,27.000000,7.000000,138.000000,89.690000,123.920000,858.810000,5.830000,182.130000,26.730000 -12,2023-08-07 17:00:00,0.000000,25.800000,28.000000,7.000000,146.000000,90.170000,124.210000,859.440000,6.250000,182.490000,28.030000 -12,2023-08-07 18:00:00,0.000000,25.800000,28.000000,7.000000,146.000000,90.570000,124.510000,860.080000,6.610000,182.840000,29.150000 -12,2023-08-07 19:00:00,0.000000,25.800000,28.000000,7.000000,146.000000,90.900000,124.800000,860.720000,6.930000,183.200000,30.110000 -12,2023-08-07 20:00:00,0.000000,23.400000,35.000000,5.000000,112.000000,90.900000,125.040000,861.210000,6.270000,183.480000,28.130000 -12,2023-08-07 21:00:00,0.000000,23.400000,35.000000,5.000000,112.000000,90.900000,125.270000,861.710000,6.270000,183.750000,28.130000 -12,2023-08-07 22:00:00,0.000000,23.400000,35.000000,5.000000,112.000000,90.900000,125.270000,861.710000,6.270000,183.750000,28.130000 -12,2023-08-07 23:00:00,0.000000,18.600000,48.000000,4.000000,110.000000,90.700000,125.270000,861.710000,5.790000,183.750000,26.640000 -12,2023-08-08 00:00:00,0.000000,18.600000,48.000000,4.000000,110.000000,90.520000,125.270000,861.710000,5.640000,183.750000,26.170000 -12,2023-08-08 01:00:00,0.000000,18.600000,48.000000,4.000000,110.000000,90.360000,125.270000,861.710000,5.510000,183.750000,25.760000 -12,2023-08-08 02:00:00,0.000000,15.900000,56.000000,4.000000,155.000000,90.020000,125.270000,861.710000,5.260000,183.750000,24.920000 -12,2023-08-08 03:00:00,0.000000,15.900000,56.000000,4.000000,155.000000,89.730000,125.270000,861.710000,5.040000,183.750000,24.190000 -12,2023-08-08 04:00:00,0.000000,15.900000,56.000000,4.000000,155.000000,89.460000,125.270000,861.710000,4.850000,183.750000,23.550000 -12,2023-08-08 05:00:00,0.000000,14.200000,66.000000,3.000000,144.000000,89.020000,125.320000,861.870000,4.330000,183.820000,21.730000 -12,2023-08-08 06:00:00,0.000000,14.200000,66.000000,3.000000,144.000000,88.620000,125.370000,862.030000,4.090000,183.890000,20.860000 -12,2023-08-08 07:00:00,0.000000,14.200000,66.000000,3.000000,144.000000,88.270000,125.430000,862.190000,3.890000,183.950000,20.120000 -12,2023-08-08 08:00:00,0.000000,18.300000,55.000000,6.000000,125.000000,88.210000,125.520000,862.470000,4.480000,184.070000,22.280000 -12,2023-08-08 09:00:00,0.000000,18.300000,55.000000,6.000000,125.000000,88.160000,125.610000,862.750000,4.450000,184.180000,22.160000 -12,2023-08-08 10:00:00,0.000000,18.300000,55.000000,6.000000,125.000000,88.110000,125.700000,863.020000,4.420000,184.300000,22.060000 -12,2023-08-08 11:00:00,0.490000,21.100000,51.000000,14.000000,120.000000,84.590000,125.820000,863.380000,4.030000,184.440000,20.650000 -12,2023-08-08 12:00:00,0.000000,21.100000,51.000000,14.000000,120.000000,84.990000,125.940000,863.740000,4.260000,184.590000,21.480000 -12,2023-08-08 13:00:00,0.000000,21.100000,51.000000,14.000000,120.000000,85.330000,126.060000,864.100000,4.460000,184.740000,22.220000 -12,2023-08-08 14:00:00,0.250000,23.400000,37.000000,12.000000,133.000000,84.470000,126.230000,864.630000,3.590000,184.960000,18.990000 -12,2023-08-08 15:00:00,0.000000,23.400000,37.000000,12.000000,133.000000,85.410000,126.410000,865.160000,4.080000,185.170000,20.850000 -12,2023-08-08 16:00:00,0.000000,23.400000,37.000000,12.000000,133.000000,86.210000,126.580000,865.690000,4.560000,185.390000,22.580000 -12,2023-08-08 17:00:00,0.000000,24.000000,30.000000,11.000000,97.000000,87.150000,126.780000,866.300000,4.950000,185.640000,23.950000 -12,2023-08-08 18:00:00,0.000000,24.000000,30.000000,11.000000,97.000000,87.930000,126.980000,866.910000,5.540000,185.890000,25.900000 -12,2023-08-08 19:00:00,0.000000,24.000000,30.000000,11.000000,97.000000,88.590000,127.190000,867.520000,6.090000,186.150000,27.640000 -12,2023-08-08 20:00:00,0.000000,21.300000,33.000000,10.000000,77.000000,88.910000,127.350000,868.020000,6.070000,186.350000,27.570000 -12,2023-08-08 21:00:00,0.000000,21.300000,33.000000,10.000000,77.000000,89.190000,127.510000,868.510000,6.310000,186.550000,28.330000 -12,2023-08-08 22:00:00,0.000000,21.300000,33.000000,10.000000,77.000000,89.420000,127.510000,868.510000,6.520000,186.550000,28.980000 -12,2023-08-08 23:00:00,0.000000,15.500000,48.000000,7.000000,106.000000,89.320000,127.510000,868.510000,5.530000,186.550000,25.870000 -12,2023-08-09 00:00:00,0.000000,15.500000,48.000000,7.000000,106.000000,89.230000,127.510000,868.510000,5.460000,186.550000,25.650000 -12,2023-08-09 01:00:00,0.000000,15.500000,48.000000,7.000000,106.000000,89.150000,127.510000,868.510000,5.400000,186.550000,25.450000 -12,2023-08-09 02:00:00,0.000000,13.000000,57.000000,6.000000,141.000000,88.890000,127.510000,868.510000,4.940000,186.550000,23.930000 -12,2023-08-09 03:00:00,0.000000,13.000000,57.000000,6.000000,141.000000,88.650000,127.510000,868.510000,4.780000,186.550000,23.360000 -12,2023-08-09 04:00:00,0.000000,13.000000,57.000000,6.000000,141.000000,88.440000,127.510000,868.510000,4.630000,186.550000,22.860000 -12,2023-08-09 05:00:00,0.000000,10.900000,70.000000,5.000000,129.000000,87.980000,127.560000,868.640000,4.130000,186.610000,21.050000 -12,2023-08-09 06:00:00,0.000000,10.900000,70.000000,5.000000,129.000000,87.580000,127.600000,868.760000,3.890000,186.660000,20.190000 -12,2023-08-09 07:00:00,0.000000,10.900000,70.000000,5.000000,129.000000,87.210000,127.650000,868.890000,3.700000,186.720000,19.440000 -12,2023-08-09 08:00:00,0.000000,15.800000,56.000000,7.000000,137.000000,87.210000,127.740000,869.140000,4.090000,186.830000,20.900000 -12,2023-08-09 09:00:00,0.000000,15.800000,56.000000,7.000000,137.000000,87.210000,127.830000,869.390000,4.080000,186.940000,20.900000 -12,2023-08-09 10:00:00,0.000000,15.800000,56.000000,7.000000,137.000000,87.200000,127.920000,869.640000,4.080000,187.050000,20.890000 -12,2023-08-09 11:00:00,0.000000,20.500000,46.000000,8.000000,106.000000,87.330000,128.070000,870.060000,4.370000,187.240000,21.940000 -12,2023-08-09 12:00:00,0.000000,20.500000,46.000000,8.000000,106.000000,87.430000,128.220000,870.470000,4.440000,187.420000,22.180000 -12,2023-08-09 13:00:00,0.000000,20.500000,46.000000,8.000000,106.000000,87.530000,128.370000,870.890000,4.500000,187.600000,22.400000 -12,2023-08-09 14:00:00,0.000000,22.900000,38.000000,10.000000,90.000000,87.910000,128.560000,871.440000,5.250000,187.850000,25.000000 -12,2023-08-09 15:00:00,0.000000,22.900000,38.000000,10.000000,90.000000,88.240000,128.760000,871.990000,5.510000,188.090000,25.840000 -12,2023-08-09 16:00:00,0.000000,22.900000,38.000000,10.000000,90.000000,88.520000,128.960000,872.540000,5.730000,188.330000,26.560000 -12,2023-08-09 17:00:00,0.000000,23.200000,37.000000,12.000000,85.000000,88.800000,129.170000,873.110000,6.600000,188.590000,29.270000 -12,2023-08-09 18:00:00,0.000000,23.200000,37.000000,12.000000,85.000000,89.040000,129.370000,873.680000,6.830000,188.840000,29.960000 -12,2023-08-09 19:00:00,0.000000,23.200000,37.000000,12.000000,85.000000,89.240000,129.580000,874.250000,7.030000,189.090000,30.550000 -12,2023-08-09 20:00:00,0.000000,21.400000,41.000000,9.000000,88.000000,89.240000,129.750000,874.730000,6.040000,189.300000,27.570000 -12,2023-08-09 21:00:00,0.000000,21.400000,41.000000,9.000000,88.000000,89.240000,129.920000,875.210000,6.040000,189.510000,27.580000 -12,2023-08-09 22:00:00,0.000000,21.400000,41.000000,9.000000,88.000000,89.240000,129.920000,875.210000,6.040000,189.510000,27.580000 -12,2023-08-09 23:00:00,0.000000,16.700000,55.000000,6.000000,94.000000,89.040000,129.920000,875.210000,5.050000,189.510000,24.350000 -12,2023-08-10 00:00:00,0.000000,16.700000,55.000000,6.000000,94.000000,88.860000,129.920000,875.210000,4.920000,189.510000,23.930000 -12,2023-08-10 01:00:00,0.000000,16.700000,55.000000,6.000000,94.000000,88.710000,129.920000,875.210000,4.820000,189.510000,23.550000 -12,2023-08-10 02:00:00,0.000000,14.400000,64.000000,7.000000,128.000000,88.350000,129.920000,875.210000,4.810000,189.510000,23.530000 -12,2023-08-10 03:00:00,0.000000,14.400000,64.000000,7.000000,128.000000,88.030000,129.920000,875.210000,4.600000,189.510000,22.790000 -12,2023-08-10 04:00:00,0.000000,14.400000,64.000000,7.000000,128.000000,87.750000,129.920000,875.210000,4.420000,189.510000,22.150000 -12,2023-08-10 05:00:00,0.000000,13.000000,73.000000,7.000000,145.000000,87.280000,129.970000,875.360000,4.130000,189.580000,21.120000 -12,2023-08-10 06:00:00,0.000000,13.000000,73.000000,7.000000,145.000000,86.870000,130.030000,875.510000,3.890000,189.640000,20.240000 -12,2023-08-10 07:00:00,0.000000,13.000000,73.000000,7.000000,145.000000,86.510000,130.080000,875.660000,3.700000,189.700000,19.500000 -12,2023-08-10 08:00:00,0.000000,16.700000,59.000000,8.000000,153.000000,86.510000,130.180000,875.940000,3.890000,189.830000,20.230000 -12,2023-08-10 09:00:00,0.000000,16.700000,59.000000,8.000000,153.000000,86.510000,130.280000,876.230000,3.890000,189.950000,20.230000 -12,2023-08-10 10:00:00,0.000000,16.700000,59.000000,8.000000,153.000000,86.510000,130.380000,876.520000,3.890000,190.070000,20.230000 -12,2023-08-10 11:00:00,0.000000,20.500000,48.000000,10.000000,151.000000,86.680000,130.540000,876.980000,4.410000,190.270000,22.140000 -12,2023-08-10 12:00:00,0.000000,20.500000,48.000000,10.000000,151.000000,86.830000,130.700000,877.450000,4.500000,190.470000,22.480000 -12,2023-08-10 13:00:00,0.000000,20.500000,48.000000,10.000000,151.000000,86.960000,130.860000,877.910000,4.590000,190.670000,22.780000 -12,2023-08-10 14:00:00,0.000000,21.600000,42.000000,9.000000,155.000000,87.260000,131.050000,878.460000,4.550000,190.900000,22.650000 -12,2023-08-10 15:00:00,0.000000,21.600000,42.000000,9.000000,155.000000,87.510000,131.240000,879.020000,4.720000,191.140000,23.250000 -12,2023-08-10 16:00:00,0.000000,21.600000,42.000000,9.000000,155.000000,87.730000,131.430000,879.570000,4.870000,191.370000,23.770000 -12,2023-08-10 17:00:00,0.000000,21.900000,40.000000,8.000000,147.000000,87.980000,131.630000,880.150000,4.800000,191.620000,23.530000 -12,2023-08-10 18:00:00,0.000000,21.900000,40.000000,8.000000,147.000000,88.190000,131.840000,880.740000,4.950000,191.870000,24.050000 -12,2023-08-10 19:00:00,0.000000,21.900000,40.000000,8.000000,147.000000,88.380000,132.040000,881.320000,5.080000,192.120000,24.500000 -12,2023-08-10 20:00:00,0.000000,21.900000,40.000000,8.000000,147.000000,88.530000,132.240000,881.900000,5.190000,192.370000,24.890000 -12,2023-08-10 21:00:00,0.000000,21.900000,40.000000,8.000000,147.000000,88.670000,132.240000,881.900000,5.290000,192.370000,25.220000 -12,2023-08-10 22:00:00,0.000000,21.900000,40.000000,8.000000,147.000000,88.780000,132.240000,881.900000,5.380000,192.370000,25.510000 -12,2023-08-10 23:00:00,0.000000,17.000000,55.000000,6.000000,143.000000,88.640000,132.240000,881.900000,4.770000,192.370000,23.440000 -12,2023-08-11 00:00:00,0.000000,17.000000,55.000000,6.000000,143.000000,88.510000,132.240000,881.900000,4.680000,192.370000,23.150000 -12,2023-08-11 01:00:00,0.000000,17.000000,55.000000,6.000000,143.000000,88.400000,132.240000,881.900000,4.610000,192.370000,22.890000 -12,2023-08-11 02:00:00,0.000000,17.000000,55.000000,6.000000,143.000000,88.300000,132.240000,881.900000,4.540000,192.370000,22.660000 -12,2023-08-11 03:00:00,0.000000,17.000000,55.000000,6.000000,143.000000,88.220000,132.240000,881.900000,4.490000,192.370000,22.460000 -12,2023-08-11 04:00:00,0.000000,17.000000,55.000000,6.000000,143.000000,88.140000,132.240000,881.900000,4.440000,192.370000,22.290000 -12,2023-08-11 05:00:00,0.000000,15.300000,63.000000,6.000000,177.000000,87.890000,132.330000,882.110000,4.280000,192.470000,21.710000 -12,2023-08-11 06:00:00,0.000000,15.300000,63.000000,6.000000,177.000000,87.660000,132.410000,882.320000,4.140000,192.570000,21.220000 -12,2023-08-11 07:00:00,0.000000,15.300000,63.000000,6.000000,177.000000,87.460000,132.500000,882.520000,4.030000,192.680000,20.790000 -12,2023-08-11 08:00:00,0.000000,15.300000,63.000000,6.000000,177.000000,87.280000,132.580000,882.730000,3.930000,192.780000,20.420000 -12,2023-08-11 09:00:00,0.000000,15.300000,63.000000,6.000000,177.000000,87.130000,132.670000,882.940000,3.840000,192.880000,20.090000 -12,2023-08-11 10:00:00,0.000000,15.300000,63.000000,6.000000,177.000000,86.990000,132.760000,883.150000,3.760000,192.990000,19.810000 -12,2023-08-11 11:00:00,0.000000,22.600000,40.000000,12.000000,159.000000,87.400000,132.980000,883.680000,5.400000,193.250000,25.590000 -12,2023-08-11 12:00:00,0.000000,22.600000,40.000000,12.000000,159.000000,87.740000,133.200000,884.210000,5.670000,193.520000,26.480000 -12,2023-08-11 13:00:00,0.000000,22.600000,40.000000,12.000000,159.000000,88.030000,133.420000,884.740000,5.910000,193.780000,27.260000 -12,2023-08-11 14:00:00,0.000000,22.600000,40.000000,12.000000,159.000000,88.280000,133.640000,885.270000,6.120000,194.040000,27.930000 -12,2023-08-11 15:00:00,0.000000,22.600000,40.000000,12.000000,159.000000,88.480000,133.860000,885.800000,6.310000,194.310000,28.500000 -12,2023-08-11 16:00:00,0.000000,22.600000,40.000000,12.000000,159.000000,88.660000,134.080000,886.330000,6.470000,194.570000,29.000000 -12,2023-08-11 17:00:00,0.000000,25.200000,36.000000,13.000000,219.000000,89.040000,134.350000,886.990000,7.180000,194.900000,31.130000 -12,2023-08-11 18:00:00,0.000000,25.200000,36.000000,13.000000,219.000000,89.350000,134.630000,887.650000,7.510000,195.230000,32.090000 -12,2023-08-11 19:00:00,0.000000,25.200000,36.000000,13.000000,219.000000,89.600000,134.900000,888.310000,7.790000,195.560000,32.900000 -12,2023-08-11 20:00:00,0.000000,25.200000,36.000000,13.000000,219.000000,89.810000,135.180000,888.970000,8.030000,195.890000,33.570000 -12,2023-08-11 21:00:00,0.000000,25.200000,36.000000,13.000000,219.000000,89.990000,135.180000,888.970000,8.230000,195.890000,34.130000 -12,2023-08-11 22:00:00,0.000000,25.200000,36.000000,13.000000,219.000000,90.130000,135.180000,888.970000,8.400000,195.890000,34.590000 -12,2023-08-11 23:00:00,0.000000,19.300000,42.000000,11.000000,215.000000,90.130000,135.180000,888.970000,7.600000,195.890000,32.350000 -12,2023-08-12 00:00:00,0.000000,19.300000,42.000000,11.000000,215.000000,90.130000,135.180000,888.970000,7.600000,195.890000,32.350000 -12,2023-08-12 01:00:00,0.000000,19.300000,42.000000,11.000000,215.000000,90.130000,135.180000,888.970000,7.600000,195.890000,32.350000 -12,2023-08-12 02:00:00,0.000000,19.300000,42.000000,11.000000,215.000000,90.130000,135.180000,888.970000,7.600000,195.890000,32.350000 -12,2023-08-12 03:00:00,0.000000,19.300000,42.000000,11.000000,215.000000,90.130000,135.180000,888.970000,7.600000,195.890000,32.350000 -12,2023-08-12 04:00:00,0.000000,19.300000,42.000000,11.000000,215.000000,90.130000,135.180000,888.970000,7.600000,195.890000,32.350000 -12,2023-08-12 05:00:00,0.000000,15.400000,52.000000,12.000000,206.000000,89.850000,135.290000,889.210000,7.670000,196.020000,32.560000 -12,2023-08-12 06:00:00,0.000000,15.400000,52.000000,12.000000,206.000000,89.600000,135.400000,889.440000,7.400000,196.150000,31.800000 -12,2023-08-12 07:00:00,0.000000,15.400000,52.000000,12.000000,206.000000,89.380000,135.510000,889.670000,7.170000,196.280000,31.140000 -12,2023-08-12 08:00:00,0.000000,15.400000,52.000000,12.000000,206.000000,89.190000,135.620000,889.900000,6.980000,196.410000,30.570000 -12,2023-08-12 09:00:00,0.000000,15.400000,52.000000,12.000000,206.000000,89.020000,135.730000,890.140000,6.810000,196.540000,30.080000 -12,2023-08-12 10:00:00,0.000000,15.400000,52.000000,12.000000,206.000000,88.870000,135.840000,890.370000,6.670000,196.670000,29.650000 -12,2023-08-12 11:00:00,0.000000,22.600000,31.000000,17.000000,231.000000,89.310000,136.090000,890.890000,9.130000,196.960000,36.570000 -12,2023-08-12 12:00:00,0.000000,22.600000,31.000000,17.000000,231.000000,89.670000,136.340000,891.420000,9.620000,197.260000,37.840000 -12,2023-08-12 13:00:00,0.000000,22.600000,31.000000,17.000000,231.000000,89.960000,136.590000,891.940000,10.030000,197.550000,38.900000 -12,2023-08-12 14:00:00,0.000000,22.600000,31.000000,17.000000,231.000000,90.210000,136.840000,892.460000,10.390000,197.840000,39.800000 -12,2023-08-12 15:00:00,0.000000,22.600000,31.000000,17.000000,231.000000,90.410000,137.090000,892.990000,10.690000,198.140000,40.550000 -12,2023-08-12 16:00:00,0.000000,22.600000,31.000000,17.000000,231.000000,90.570000,137.340000,893.510000,10.950000,198.430000,41.180000 -12,2023-08-12 17:00:00,0.000000,24.600000,26.000000,17.000000,251.000000,90.990000,137.640000,894.150000,11.620000,198.790000,42.790000 -12,2023-08-12 18:00:00,0.000000,24.600000,26.000000,17.000000,251.000000,91.320000,137.950000,894.780000,12.190000,199.140000,44.130000 -12,2023-08-12 19:00:00,0.000000,24.600000,26.000000,17.000000,251.000000,91.590000,138.250000,895.410000,12.670000,199.500000,45.240000 -12,2023-08-12 20:00:00,0.000000,24.600000,26.000000,17.000000,251.000000,91.810000,138.550000,896.050000,13.070000,199.850000,46.150000 -12,2023-08-12 21:00:00,0.000000,24.600000,26.000000,17.000000,251.000000,91.990000,138.550000,896.050000,13.400000,199.850000,46.880000 -12,2023-08-12 22:00:00,0.000000,24.600000,26.000000,17.000000,251.000000,92.130000,138.550000,896.050000,13.670000,199.850000,47.480000 -12,2023-08-12 23:00:00,0.000000,17.700000,48.000000,8.000000,278.000000,91.750000,138.550000,896.050000,8.220000,199.850000,34.200000 -12,2023-08-13 00:00:00,0.000000,17.700000,48.000000,8.000000,278.000000,91.410000,138.550000,896.050000,7.840000,199.850000,33.120000 -12,2023-08-13 01:00:00,0.000000,17.700000,48.000000,8.000000,278.000000,91.110000,138.550000,896.050000,7.510000,199.850000,32.200000 -12,2023-08-13 02:00:00,0.000000,17.700000,48.000000,8.000000,278.000000,90.850000,138.550000,896.050000,7.230000,199.850000,31.400000 -12,2023-08-13 03:00:00,0.000000,17.700000,48.000000,8.000000,278.000000,90.610000,138.550000,896.050000,7.000000,199.850000,30.700000 -12,2023-08-13 04:00:00,0.000000,17.700000,48.000000,8.000000,278.000000,90.410000,138.550000,896.050000,6.800000,199.850000,30.100000 -12,2023-08-13 05:00:00,0.000000,13.800000,73.000000,9.000000,259.000000,89.580000,138.600000,896.200000,6.350000,199.910000,28.740000 -12,2023-08-13 06:00:00,0.000000,13.800000,73.000000,9.000000,259.000000,88.860000,138.660000,896.360000,5.720000,199.980000,26.780000 -12,2023-08-13 07:00:00,0.000000,13.800000,73.000000,9.000000,259.000000,88.230000,138.710000,896.510000,5.230000,200.040000,25.160000 -12,2023-08-13 08:00:00,0.000000,13.800000,73.000000,9.000000,259.000000,87.690000,138.760000,896.670000,4.840000,200.110000,23.820000 -12,2023-08-13 09:00:00,0.000000,13.800000,73.000000,9.000000,259.000000,87.210000,138.810000,896.820000,4.520000,200.170000,22.710000 -12,2023-08-13 10:00:00,0.000000,13.800000,73.000000,9.000000,259.000000,86.790000,138.870000,896.980000,4.260000,200.230000,21.770000 -12,2023-08-13 11:00:00,0.000000,22.500000,51.000000,11.000000,254.000000,86.910000,139.030000,897.460000,4.790000,200.440000,23.660000 -12,2023-08-13 12:00:00,0.000000,22.500000,51.000000,11.000000,254.000000,87.010000,139.200000,897.950000,4.860000,200.640000,23.890000 -12,2023-08-13 13:00:00,0.000000,22.500000,51.000000,11.000000,254.000000,87.090000,139.360000,898.430000,4.910000,200.840000,24.100000 -12,2023-08-13 14:00:00,0.000000,22.500000,51.000000,11.000000,254.000000,87.160000,139.520000,898.920000,4.970000,201.040000,24.280000 -12,2023-08-13 15:00:00,0.000000,22.500000,51.000000,11.000000,254.000000,87.230000,139.690000,899.410000,5.010000,201.240000,24.430000 -12,2023-08-13 16:00:00,0.000000,22.500000,51.000000,11.000000,254.000000,87.280000,139.850000,899.890000,5.050000,201.440000,24.560000 -12,2023-08-13 17:00:00,0.000000,26.400000,36.000000,8.000000,237.000000,87.910000,140.130000,900.690000,4.750000,201.770000,23.530000 -12,2023-08-13 18:00:00,0.000000,26.400000,36.000000,8.000000,237.000000,88.430000,140.400000,901.500000,5.120000,202.110000,24.810000 -12,2023-08-13 19:00:00,0.000000,26.400000,36.000000,8.000000,237.000000,88.860000,140.670000,902.300000,5.450000,202.440000,25.910000 -12,2023-08-13 20:00:00,0.000000,26.400000,36.000000,8.000000,237.000000,89.230000,140.940000,903.100000,5.740000,202.770000,26.870000 -12,2023-08-13 21:00:00,0.000000,26.400000,36.000000,8.000000,237.000000,89.530000,140.940000,903.100000,5.990000,202.770000,27.670000 -12,2023-08-13 22:00:00,0.000000,26.400000,36.000000,8.000000,237.000000,89.780000,140.940000,903.100000,6.210000,202.770000,28.360000 -12,2023-08-13 23:00:00,0.000000,22.000000,41.000000,13.000000,201.000000,89.780000,140.940000,903.100000,7.990000,202.770000,33.600000 -12,2023-08-14 00:00:00,0.000000,22.000000,41.000000,13.000000,201.000000,89.780000,140.940000,903.100000,7.990000,202.770000,33.600000 -12,2023-08-14 01:00:00,0.000000,22.000000,41.000000,13.000000,201.000000,89.780000,140.940000,903.100000,7.990000,202.770000,33.600000 -12,2023-08-14 02:00:00,0.000000,22.000000,41.000000,13.000000,201.000000,89.780000,140.940000,903.100000,7.990000,202.770000,33.600000 -12,2023-08-14 03:00:00,0.000000,22.000000,41.000000,13.000000,201.000000,89.780000,140.940000,903.100000,7.990000,202.770000,33.600000 -12,2023-08-14 04:00:00,0.000000,22.000000,41.000000,13.000000,201.000000,89.780000,140.940000,903.100000,7.990000,202.770000,33.600000 -12,2023-08-14 05:00:00,0.000000,19.300000,44.000000,13.000000,185.000000,89.780000,141.070000,903.380000,7.990000,202.920000,33.600000 -12,2023-08-14 06:00:00,0.000000,19.300000,44.000000,13.000000,185.000000,89.780000,141.200000,903.670000,7.990000,203.070000,33.610000 -12,2023-08-14 07:00:00,0.000000,19.300000,44.000000,13.000000,185.000000,89.780000,141.330000,903.950000,7.990000,203.230000,33.610000 -12,2023-08-14 08:00:00,0.000000,19.300000,44.000000,13.000000,185.000000,89.780000,141.460000,904.240000,7.990000,203.380000,33.610000 -12,2023-08-14 09:00:00,0.000000,19.300000,44.000000,13.000000,185.000000,89.780000,141.590000,904.520000,7.990000,203.540000,33.610000 -12,2023-08-14 10:00:00,0.000000,19.300000,44.000000,13.000000,185.000000,89.780000,141.730000,904.810000,7.990000,203.690000,33.620000 -12,2023-08-14 11:00:00,0.000000,25.200000,36.000000,15.000000,199.000000,89.960000,141.940000,905.270000,9.070000,203.940000,36.570000 -12,2023-08-14 12:00:00,0.000000,25.200000,36.000000,15.000000,199.000000,90.110000,142.150000,905.740000,9.270000,204.190000,37.090000 -12,2023-08-14 13:00:00,0.000000,25.200000,36.000000,15.000000,199.000000,90.230000,142.370000,906.200000,9.430000,204.440000,37.530000 -12,2023-08-14 14:00:00,0.000000,25.200000,36.000000,15.000000,199.000000,90.330000,142.580000,906.670000,9.570000,204.690000,37.880000 -12,2023-08-14 15:00:00,0.000000,25.200000,36.000000,15.000000,199.000000,90.410000,142.800000,907.130000,9.680000,204.940000,38.180000 -12,2023-08-14 16:00:00,0.000000,25.200000,36.000000,15.000000,199.000000,90.480000,143.010000,907.600000,9.770000,205.190000,38.420000 -12,2023-08-14 17:00:00,0.000000,31.400000,27.000000,18.000000,254.000000,91.250000,143.360000,908.360000,12.680000,205.600000,45.430000 -12,2023-08-14 18:00:00,0.000000,31.400000,27.000000,18.000000,254.000000,91.830000,143.710000,909.120000,13.780000,206.010000,47.890000 -12,2023-08-14 19:00:00,0.000000,31.400000,27.000000,18.000000,254.000000,92.280000,144.060000,909.880000,14.670000,206.420000,49.830000 -12,2023-08-14 20:00:00,0.000000,31.400000,27.000000,18.000000,254.000000,92.610000,144.410000,910.640000,15.380000,206.830000,51.330000 -12,2023-08-14 21:00:00,0.000000,31.400000,27.000000,18.000000,254.000000,92.870000,144.410000,910.640000,15.940000,206.830000,52.490000 -12,2023-08-14 22:00:00,0.000000,31.400000,27.000000,18.000000,254.000000,93.060000,144.410000,910.640000,16.380000,206.830000,53.380000 -12,2023-08-14 23:00:00,0.000000,25.200000,33.000000,11.000000,265.000000,93.030000,144.410000,910.640000,11.460000,206.830000,42.620000 -12,2023-08-15 00:00:00,0.000000,25.200000,33.000000,11.000000,265.000000,93.000000,144.410000,910.640000,11.420000,206.830000,42.530000 -12,2023-08-15 01:00:00,0.000000,25.200000,33.000000,11.000000,265.000000,92.980000,144.410000,910.640000,11.390000,206.830000,42.440000 -12,2023-08-15 02:00:00,0.000000,25.200000,33.000000,11.000000,265.000000,92.960000,144.410000,910.640000,11.360000,206.830000,42.370000 -12,2023-08-15 03:00:00,0.000000,25.200000,33.000000,11.000000,265.000000,92.950000,144.410000,910.640000,11.330000,206.830000,42.310000 -12,2023-08-15 04:00:00,0.000000,25.200000,33.000000,11.000000,265.000000,92.930000,144.410000,910.640000,11.310000,206.830000,42.250000 -12,2023-08-15 05:00:00,0.000000,19.200000,39.000000,10.000000,240.000000,92.670000,144.570000,910.930000,10.360000,207.010000,39.950000 -12,2023-08-15 06:00:00,0.000000,19.200000,39.000000,10.000000,240.000000,92.440000,144.730000,911.220000,10.030000,207.190000,39.120000 -12,2023-08-15 07:00:00,0.000000,19.200000,39.000000,10.000000,240.000000,92.230000,144.890000,911.510000,9.750000,207.370000,38.400000 -12,2023-08-15 08:00:00,0.000000,19.200000,39.000000,10.000000,240.000000,92.050000,145.050000,911.810000,9.500000,207.550000,37.770000 -12,2023-08-15 09:00:00,0.000000,19.200000,39.000000,10.000000,240.000000,91.900000,145.200000,912.100000,9.290000,207.730000,37.220000 -12,2023-08-15 10:00:00,0.000000,19.200000,39.000000,10.000000,240.000000,91.760000,145.360000,912.390000,9.110000,207.910000,36.740000 -12,2023-08-15 11:00:00,0.000000,25.500000,25.000000,13.000000,271.000000,92.010000,145.650000,912.910000,10.980000,208.240000,41.500000 -12,2023-08-15 12:00:00,0.000000,25.500000,25.000000,13.000000,271.000000,92.220000,145.930000,913.440000,11.310000,208.560000,42.290000 -12,2023-08-15 13:00:00,0.000000,25.500000,25.000000,13.000000,271.000000,92.380000,146.220000,913.970000,11.580000,208.890000,42.940000 -12,2023-08-15 14:00:00,0.000000,25.500000,25.000000,13.000000,271.000000,92.520000,146.500000,914.490000,11.800000,209.210000,43.480000 -12,2023-08-15 15:00:00,0.000000,25.500000,25.000000,13.000000,271.000000,92.630000,146.790000,915.020000,11.980000,209.540000,43.910000 -12,2023-08-15 16:00:00,0.000000,25.500000,25.000000,13.000000,271.000000,92.720000,147.070000,915.540000,12.130000,209.860000,44.270000 -12,2023-08-15 17:00:00,0.000000,28.400000,19.000000,16.000000,288.000000,93.210000,147.440000,916.220000,15.120000,210.280000,50.870000 -12,2023-08-15 18:00:00,0.000000,28.400000,19.000000,16.000000,288.000000,93.590000,147.800000,916.890000,15.950000,210.700000,52.600000 -12,2023-08-15 19:00:00,0.000000,28.400000,19.000000,16.000000,288.000000,93.890000,148.170000,917.560000,16.620000,211.110000,53.990000 -12,2023-08-15 20:00:00,0.000000,28.400000,19.000000,16.000000,288.000000,94.120000,148.530000,918.230000,17.170000,211.530000,55.080000 -12,2023-08-15 21:00:00,0.000000,28.400000,19.000000,16.000000,288.000000,94.300000,148.530000,918.230000,17.600000,211.530000,55.940000 -12,2023-08-15 22:00:00,0.000000,28.400000,19.000000,16.000000,288.000000,94.440000,148.530000,918.230000,17.940000,211.530000,56.610000 -12,2023-08-15 23:00:00,0.000000,19.800000,37.000000,8.000000,315.000000,94.070000,148.530000,918.230000,11.400000,211.530000,42.570000 -12,2023-08-16 00:00:00,0.000000,19.800000,37.000000,8.000000,315.000000,93.750000,148.530000,918.230000,10.900000,211.530000,41.360000 -12,2023-08-16 01:00:00,0.000000,19.800000,37.000000,8.000000,315.000000,93.460000,148.530000,918.230000,10.470000,211.530000,40.300000 -12,2023-08-16 02:00:00,0.000000,19.800000,37.000000,8.000000,315.000000,93.210000,148.530000,918.230000,10.100000,211.530000,39.380000 -12,2023-08-16 03:00:00,0.000000,19.800000,37.000000,8.000000,315.000000,92.980000,148.530000,918.230000,9.780000,211.530000,38.580000 -12,2023-08-16 04:00:00,0.000000,19.800000,37.000000,8.000000,315.000000,92.780000,148.530000,918.230000,9.510000,211.530000,37.870000 -12,2023-08-16 05:00:00,0.000000,14.200000,61.000000,7.000000,307.000000,92.010000,148.620000,918.430000,8.120000,211.620000,34.120000 -12,2023-08-16 06:00:00,0.000000,14.200000,61.000000,7.000000,307.000000,91.330000,148.700000,918.630000,7.370000,211.720000,32.010000 -12,2023-08-16 07:00:00,0.000000,14.200000,61.000000,7.000000,307.000000,90.730000,148.780000,918.830000,6.770000,211.820000,30.220000 -12,2023-08-16 08:00:00,0.000000,14.200000,61.000000,7.000000,307.000000,90.200000,148.870000,919.030000,6.280000,211.910000,28.720000 -12,2023-08-16 09:00:00,0.000000,14.200000,61.000000,7.000000,307.000000,89.740000,148.950000,919.230000,5.870000,212.010000,27.430000 -12,2023-08-16 10:00:00,0.000000,14.200000,61.000000,7.000000,307.000000,89.320000,149.030000,919.430000,5.530000,212.110000,26.340000 -12,2023-08-16 11:00:00,0.000000,23.000000,40.000000,12.000000,331.000000,89.380000,149.250000,919.960000,7.170000,212.370000,31.430000 -12,2023-08-16 12:00:00,0.000000,23.000000,40.000000,12.000000,331.000000,89.420000,149.480000,920.490000,7.210000,212.630000,31.560000 -12,2023-08-16 13:00:00,0.000000,23.000000,40.000000,12.000000,331.000000,89.450000,149.700000,921.020000,7.250000,212.890000,31.670000 -12,2023-08-16 14:00:00,0.000000,23.000000,40.000000,12.000000,331.000000,89.480000,149.920000,921.550000,7.280000,213.150000,31.770000 -12,2023-08-16 15:00:00,0.000000,23.000000,40.000000,12.000000,331.000000,89.510000,150.140000,922.080000,7.310000,213.410000,31.850000 -12,2023-08-16 16:00:00,0.000000,23.000000,40.000000,12.000000,331.000000,89.530000,150.360000,922.610000,7.330000,213.670000,31.920000 -12,2023-08-16 17:00:00,0.000000,24.600000,29.000000,14.000000,9.000000,90.000000,150.650000,923.300000,8.670000,214.010000,35.690000 -12,2023-08-16 18:00:00,0.000000,24.600000,29.000000,14.000000,9.000000,90.380000,150.940000,923.990000,9.160000,214.340000,37.010000 -12,2023-08-16 19:00:00,0.000000,24.600000,29.000000,14.000000,9.000000,90.700000,151.230000,924.690000,9.580000,214.680000,38.110000 -12,2023-08-16 20:00:00,0.000000,24.600000,29.000000,14.000000,9.000000,90.950000,151.520000,925.380000,9.940000,215.020000,39.040000 -12,2023-08-16 21:00:00,0.000000,24.600000,29.000000,14.000000,9.000000,91.160000,151.520000,925.380000,10.240000,215.020000,39.800000 -12,2023-08-16 22:00:00,0.000000,24.600000,29.000000,14.000000,9.000000,91.330000,151.520000,925.380000,10.490000,215.020000,40.420000 -12,2023-08-16 23:00:00,0.000000,17.900000,53.000000,3.000000,50.000000,90.980000,151.520000,925.380000,5.730000,215.020000,27.040000 -12,2023-08-17 00:00:00,0.000000,17.900000,53.000000,3.000000,50.000000,90.670000,151.520000,925.380000,5.490000,215.020000,26.220000 -12,2023-08-17 01:00:00,0.000000,17.900000,53.000000,3.000000,50.000000,90.390000,151.520000,925.380000,5.270000,215.020000,25.510000 -12,2023-08-17 02:00:00,0.000000,17.900000,53.000000,3.000000,50.000000,90.140000,151.520000,925.380000,5.090000,215.020000,24.890000 -12,2023-08-17 03:00:00,0.000000,17.900000,53.000000,3.000000,50.000000,89.920000,151.520000,925.380000,4.930000,215.020000,24.340000 -12,2023-08-17 04:00:00,0.000000,17.900000,53.000000,3.000000,50.000000,89.720000,151.520000,925.380000,4.790000,215.020000,23.860000 -12,2023-08-17 05:00:00,0.000000,14.200000,63.000000,11.000000,26.000000,89.230000,151.520000,925.380000,6.680000,215.020000,29.990000 -12,2023-08-17 06:00:00,0.000000,14.200000,63.000000,11.000000,26.000000,88.800000,151.600000,925.610000,6.280000,215.120000,28.760000 -12,2023-08-17 07:00:00,0.000000,14.200000,63.000000,11.000000,26.000000,88.420000,151.690000,925.840000,5.940000,215.230000,27.720000 -12,2023-08-17 08:00:00,0.000000,14.200000,63.000000,11.000000,26.000000,88.090000,151.780000,926.070000,5.670000,215.330000,26.830000 -12,2023-08-17 09:00:00,0.000000,14.200000,63.000000,11.000000,26.000000,87.800000,151.860000,926.300000,5.440000,215.430000,26.070000 -12,2023-08-17 10:00:00,0.000000,14.200000,63.000000,11.000000,26.000000,87.550000,151.950000,926.530000,5.250000,215.530000,25.430000 -12,2023-08-17 11:00:00,0.000000,19.000000,42.000000,19.000000,20.000000,87.710000,152.130000,927.020000,8.030000,215.750000,33.960000 -12,2023-08-17 12:00:00,0.000000,19.000000,42.000000,19.000000,20.000000,87.850000,152.320000,927.520000,8.190000,215.970000,34.410000 -12,2023-08-17 13:00:00,0.000000,19.000000,42.000000,19.000000,20.000000,87.960000,152.500000,928.010000,8.330000,216.190000,34.790000 -12,2023-08-17 14:00:00,0.000000,19.000000,42.000000,19.000000,20.000000,88.060000,152.690000,928.500000,8.450000,216.410000,35.120000 -12,2023-08-17 15:00:00,0.000000,19.000000,42.000000,19.000000,20.000000,88.150000,152.870000,928.990000,8.550000,216.630000,35.400000 -12,2023-08-17 16:00:00,0.000000,19.000000,42.000000,19.000000,20.000000,88.220000,153.060000,929.480000,8.640000,216.840000,35.640000 -12,2023-08-17 17:00:00,0.000000,20.600000,38.000000,17.000000,25.000000,88.440000,153.270000,930.060000,8.070000,217.100000,34.070000 -12,2023-08-17 18:00:00,0.000000,20.600000,38.000000,17.000000,25.000000,88.630000,153.490000,930.640000,8.290000,217.360000,34.700000 -12,2023-08-17 19:00:00,0.000000,20.600000,38.000000,17.000000,25.000000,88.790000,153.710000,931.220000,8.480000,217.620000,35.230000 -12,2023-08-17 20:00:00,0.000000,20.600000,38.000000,17.000000,25.000000,88.920000,153.920000,931.800000,8.640000,217.870000,35.680000 -12,2023-08-17 21:00:00,0.000000,20.600000,38.000000,17.000000,25.000000,89.040000,153.920000,931.800000,8.780000,217.870000,36.060000 -12,2023-08-17 22:00:00,0.000000,20.600000,38.000000,17.000000,25.000000,89.130000,153.920000,931.800000,8.900000,217.870000,36.380000 -12,2023-08-17 23:00:00,0.000000,15.600000,55.000000,4.000000,284.000000,88.940000,153.920000,931.800000,4.500000,217.870000,22.870000 -12,2023-08-18 00:00:00,0.000000,15.600000,55.000000,4.000000,284.000000,88.780000,153.920000,931.800000,4.400000,217.870000,22.490000 -12,2023-08-18 01:00:00,0.000000,15.600000,55.000000,4.000000,284.000000,88.630000,153.920000,931.800000,4.300000,217.870000,22.150000 -12,2023-08-18 02:00:00,0.000000,15.600000,55.000000,4.000000,284.000000,88.490000,153.920000,931.800000,4.220000,217.870000,21.840000 -12,2023-08-18 03:00:00,0.000000,15.600000,55.000000,4.000000,284.000000,88.370000,153.920000,931.800000,4.150000,217.870000,21.580000 -12,2023-08-18 04:00:00,0.000000,15.600000,55.000000,4.000000,284.000000,88.260000,153.920000,931.800000,4.080000,217.870000,21.340000 -12,2023-08-18 05:00:00,0.000000,12.800000,68.000000,3.000000,288.000000,87.900000,153.920000,931.800000,3.690000,217.870000,19.820000 -12,2023-08-18 06:00:00,0.000000,12.800000,68.000000,3.000000,288.000000,87.580000,154.020000,932.040000,3.520000,217.980000,19.160000 -12,2023-08-18 07:00:00,0.000000,12.800000,68.000000,3.000000,288.000000,87.280000,154.110000,932.280000,3.380000,218.090000,18.580000 -12,2023-08-18 08:00:00,0.000000,12.800000,68.000000,3.000000,288.000000,87.020000,154.210000,932.520000,3.250000,218.210000,18.080000 -12,2023-08-18 09:00:00,0.000000,12.800000,68.000000,3.000000,288.000000,86.780000,154.300000,932.760000,3.140000,218.320000,17.640000 -12,2023-08-18 10:00:00,0.000000,12.800000,68.000000,3.000000,288.000000,86.570000,154.400000,933.000000,3.050000,218.430000,17.250000 -12,2023-08-18 11:00:00,0.000000,21.700000,42.000000,5.000000,91.000000,86.890000,154.700000,933.760000,3.530000,218.780000,19.220000 -12,2023-08-18 12:00:00,0.000000,21.700000,42.000000,5.000000,91.000000,87.180000,155.000000,934.520000,3.680000,219.130000,19.790000 -12,2023-08-18 13:00:00,0.000000,21.700000,42.000000,5.000000,91.000000,87.420000,155.300000,935.270000,3.810000,219.480000,20.300000 -12,2023-08-18 14:00:00,0.000000,21.700000,42.000000,5.000000,91.000000,87.640000,155.600000,936.030000,3.930000,219.840000,20.760000 -12,2023-08-18 15:00:00,0.000000,21.700000,42.000000,5.000000,91.000000,87.820000,155.900000,936.790000,4.030000,220.190000,21.160000 -12,2023-08-18 16:00:00,0.000000,21.700000,42.000000,5.000000,91.000000,87.980000,156.200000,937.550000,4.130000,220.540000,21.520000 -12,2023-08-18 17:00:00,0.000000,25.100000,28.000000,8.000000,76.000000,88.730000,156.650000,938.710000,5.340000,221.080000,25.810000 -13,2023-08-03 00:00:00,0.000000,16.800000,57.000000,7.000000,58.000000,86.000000,118.400000,826.100000,3.440000,174.330000,18.210000 -13,2023-08-03 01:00:00,0.000000,16.800000,57.000000,7.000000,58.000000,86.000000,118.400000,826.100000,3.440000,174.330000,18.210000 -13,2023-08-03 02:00:00,0.000000,14.900000,63.000000,5.000000,53.000000,85.980000,118.400000,826.100000,3.110000,174.330000,16.870000 -13,2023-08-03 03:00:00,0.000000,14.900000,63.000000,5.000000,53.000000,85.970000,118.400000,826.100000,3.100000,174.330000,16.840000 -13,2023-08-03 04:00:00,0.000000,14.900000,63.000000,5.000000,53.000000,85.960000,118.400000,826.100000,3.090000,174.330000,16.820000 -13,2023-08-03 05:00:00,0.000000,14.800000,67.000000,6.000000,57.000000,85.860000,118.460000,826.280000,3.210000,174.410000,17.290000 -13,2023-08-03 06:00:00,0.000000,14.800000,67.000000,6.000000,57.000000,85.780000,118.510000,826.470000,3.170000,174.480000,17.140000 -13,2023-08-03 07:00:00,0.000000,14.800000,67.000000,6.000000,57.000000,85.700000,118.570000,826.650000,3.140000,174.550000,17.010000 -13,2023-08-03 08:00:00,0.000000,16.600000,65.000000,6.000000,82.000000,85.700000,118.640000,826.870000,3.140000,174.640000,17.010000 -13,2023-08-03 09:00:00,0.000000,16.600000,65.000000,6.000000,82.000000,85.700000,118.710000,827.090000,3.140000,174.720000,17.020000 -13,2023-08-03 10:00:00,0.000000,16.600000,65.000000,6.000000,82.000000,85.700000,118.770000,827.310000,3.140000,174.810000,17.020000 -13,2023-08-03 11:00:00,0.000000,20.800000,54.000000,7.000000,50.000000,85.840000,118.890000,827.690000,3.360000,174.950000,17.910000 -13,2023-08-03 12:00:00,0.000000,20.800000,54.000000,7.000000,50.000000,85.950000,119.000000,828.060000,3.420000,175.100000,18.140000 -13,2023-08-03 13:00:00,0.000000,20.800000,54.000000,7.000000,50.000000,86.050000,119.120000,828.440000,3.470000,175.240000,18.330000 -13,2023-08-03 14:00:00,0.000000,23.300000,39.000000,11.000000,32.000000,86.660000,119.300000,829.020000,4.620000,175.470000,22.570000 -13,2023-08-03 15:00:00,0.000000,23.300000,39.000000,11.000000,32.000000,87.180000,119.480000,829.590000,4.970000,175.700000,23.770000 -13,2023-08-03 16:00:00,0.000000,23.300000,39.000000,11.000000,32.000000,87.610000,119.660000,830.170000,5.290000,175.920000,24.820000 -13,2023-08-03 17:00:00,0.000000,23.000000,38.000000,13.000000,35.000000,88.000000,119.830000,830.750000,6.190000,176.150000,27.690000 -13,2023-08-03 18:00:00,0.000000,23.000000,38.000000,13.000000,35.000000,88.340000,120.010000,831.330000,6.500000,176.370000,28.610000 -13,2023-08-03 19:00:00,0.000000,23.000000,38.000000,13.000000,35.000000,88.610000,120.190000,831.910000,6.760000,176.600000,29.400000 -13,2023-08-03 20:00:00,0.000000,20.700000,42.000000,7.000000,57.000000,88.650000,120.330000,832.380000,5.020000,176.780000,23.960000 -13,2023-08-03 21:00:00,0.000000,20.700000,42.000000,7.000000,57.000000,88.680000,120.480000,832.850000,5.050000,176.960000,24.040000 -13,2023-08-03 22:00:00,0.000000,20.700000,42.000000,7.000000,57.000000,88.710000,120.480000,832.850000,5.070000,176.960000,24.110000 -13,2023-08-03 23:00:00,0.000000,15.700000,58.000000,0.000000,124.000000,88.570000,120.480000,832.850000,3.490000,176.960000,18.440000 -13,2023-08-04 00:00:00,0.000000,15.700000,58.000000,0.000000,124.000000,88.440000,120.480000,832.850000,3.420000,176.960000,18.190000 -13,2023-08-04 01:00:00,0.000000,15.700000,58.000000,0.000000,124.000000,88.320000,120.480000,832.850000,3.360000,176.960000,17.960000 -13,2023-08-04 02:00:00,0.000000,13.700000,65.000000,3.000000,232.000000,88.010000,120.480000,832.850000,3.750000,176.960000,19.440000 -13,2023-08-04 03:00:00,0.000000,13.700000,65.000000,3.000000,232.000000,87.740000,120.480000,832.850000,3.600000,176.960000,18.890000 -13,2023-08-04 04:00:00,0.000000,13.700000,65.000000,3.000000,232.000000,87.500000,120.480000,832.850000,3.480000,176.960000,18.410000 -13,2023-08-04 05:00:00,0.000000,14.200000,66.000000,5.000000,285.000000,87.250000,120.540000,833.020000,3.710000,177.040000,19.310000 -13,2023-08-04 06:00:00,0.000000,14.200000,66.000000,5.000000,285.000000,87.020000,120.610000,833.180000,3.600000,177.120000,18.870000 -13,2023-08-04 07:00:00,0.000000,14.200000,66.000000,5.000000,285.000000,86.830000,120.670000,833.350000,3.500000,177.200000,18.490000 -13,2023-08-04 08:00:00,0.000000,17.800000,58.000000,4.000000,304.000000,86.830000,120.770000,833.610000,3.330000,177.320000,17.820000 -13,2023-08-04 09:00:00,0.000000,17.800000,58.000000,4.000000,304.000000,86.830000,120.870000,833.870000,3.330000,177.440000,17.820000 -13,2023-08-04 10:00:00,0.000000,17.800000,58.000000,4.000000,304.000000,86.830000,120.970000,834.130000,3.330000,177.560000,17.820000 -13,2023-08-04 11:00:00,0.000000,22.700000,45.000000,6.000000,332.000000,87.080000,121.140000,834.590000,3.810000,177.780000,19.700000 -13,2023-08-04 12:00:00,0.000000,22.700000,45.000000,6.000000,332.000000,87.300000,121.320000,835.050000,3.930000,177.990000,20.160000 -13,2023-08-04 13:00:00,0.000000,22.700000,45.000000,6.000000,332.000000,87.480000,121.500000,835.510000,4.040000,178.210000,20.560000 -13,2023-08-04 14:00:00,0.000000,24.700000,41.000000,12.000000,339.000000,87.860000,121.710000,836.070000,5.770000,178.470000,26.440000 -13,2023-08-04 15:00:00,0.000000,24.700000,41.000000,12.000000,339.000000,88.180000,121.920000,836.630000,6.040000,178.730000,27.290000 -13,2023-08-04 16:00:00,0.000000,24.700000,41.000000,12.000000,339.000000,88.450000,122.130000,837.180000,6.270000,178.990000,28.020000 -13,2023-08-04 17:00:00,0.000000,24.800000,39.000000,15.000000,337.000000,88.750000,122.350000,837.760000,7.620000,179.260000,31.970000 -13,2023-08-04 18:00:00,0.000000,24.800000,39.000000,15.000000,337.000000,89.000000,122.570000,838.340000,7.900000,179.530000,32.750000 -13,2023-08-04 19:00:00,0.000000,24.800000,39.000000,15.000000,337.000000,89.200000,122.800000,838.920000,8.130000,179.800000,33.400000 -13,2023-08-04 20:00:00,0.000000,23.400000,42.000000,11.000000,326.000000,89.220000,122.990000,839.430000,6.670000,180.030000,29.240000 -13,2023-08-04 21:00:00,0.000000,23.400000,42.000000,11.000000,326.000000,89.240000,123.180000,839.940000,6.690000,180.270000,29.300000 -13,2023-08-04 22:00:00,0.000000,23.400000,42.000000,11.000000,326.000000,89.260000,123.180000,839.940000,6.700000,180.270000,29.340000 -13,2023-08-04 23:00:00,0.000000,18.900000,58.000000,7.000000,294.000000,89.010000,123.180000,839.940000,5.290000,180.270000,24.940000 -13,2023-08-05 00:00:00,0.000000,18.900000,58.000000,7.000000,294.000000,88.800000,123.180000,839.940000,5.130000,180.270000,24.410000 -13,2023-08-05 01:00:00,0.000000,18.900000,58.000000,7.000000,294.000000,88.610000,123.180000,839.940000,4.990000,180.270000,23.960000 -13,2023-08-05 02:00:00,0.000000,16.400000,74.000000,7.000000,284.000000,88.010000,123.180000,839.940000,4.580000,180.270000,22.550000 -13,2023-08-05 03:00:00,0.000000,16.400000,74.000000,7.000000,284.000000,87.490000,123.180000,839.940000,4.260000,180.270000,21.380000 -13,2023-08-05 04:00:00,0.000000,16.400000,74.000000,7.000000,284.000000,87.040000,123.180000,839.940000,3.990000,180.270000,20.420000 -13,2023-08-05 05:00:00,0.000000,14.500000,88.000000,6.000000,277.000000,86.130000,123.210000,840.010000,3.340000,180.300000,17.910000 -13,2023-08-05 06:00:00,0.000000,14.500000,88.000000,6.000000,277.000000,85.340000,123.230000,840.080000,2.990000,180.330000,16.500000 -13,2023-08-05 07:00:00,0.000000,14.500000,88.000000,6.000000,277.000000,84.660000,123.260000,840.160000,2.720000,180.360000,15.360000 -13,2023-08-05 08:00:00,0.000000,19.100000,68.000000,6.000000,316.000000,84.660000,123.340000,840.420000,2.720000,180.470000,15.370000 -13,2023-08-05 09:00:00,0.000000,19.100000,68.000000,6.000000,316.000000,84.660000,123.430000,840.680000,2.720000,180.580000,15.370000 -13,2023-08-05 10:00:00,0.000000,19.100000,68.000000,6.000000,316.000000,84.660000,123.520000,840.940000,2.720000,180.690000,15.370000 -13,2023-08-05 11:00:00,0.000000,22.800000,51.000000,8.000000,340.000000,85.060000,123.690000,841.440000,3.180000,180.900000,17.290000 -13,2023-08-05 12:00:00,0.000000,22.800000,51.000000,8.000000,340.000000,85.410000,123.860000,841.940000,3.340000,181.110000,17.930000 -13,2023-08-05 13:00:00,0.000000,22.800000,51.000000,8.000000,340.000000,85.720000,124.030000,842.440000,3.480000,181.320000,18.500000 -13,2023-08-05 14:00:00,0.000000,23.800000,45.000000,12.000000,9.000000,86.210000,124.230000,843.030000,4.560000,181.570000,22.510000 -13,2023-08-05 15:00:00,0.000000,23.800000,45.000000,12.000000,9.000000,86.640000,124.440000,843.630000,4.840000,181.820000,23.490000 -13,2023-08-05 16:00:00,0.000000,23.800000,45.000000,12.000000,9.000000,86.990000,124.640000,844.220000,5.100000,182.080000,24.340000 -13,2023-08-05 17:00:00,0.050000,23.500000,43.000000,12.000000,20.000000,87.340000,124.850000,844.830000,5.360000,182.330000,25.200000 -13,2023-08-05 18:00:00,0.000000,23.500000,43.000000,12.000000,20.000000,87.630000,125.050000,845.430000,5.580000,182.590000,25.960000 -13,2023-08-05 19:00:00,0.000000,23.500000,43.000000,12.000000,20.000000,87.880000,125.260000,846.040000,5.790000,182.840000,26.610000 -13,2023-08-05 20:00:00,0.000000,21.600000,47.000000,8.000000,30.000000,87.920000,125.430000,846.540000,4.750000,183.050000,23.200000 -13,2023-08-05 21:00:00,0.000000,21.600000,47.000000,8.000000,30.000000,87.950000,125.600000,847.050000,4.770000,183.260000,23.280000 -13,2023-08-05 22:00:00,0.000000,21.600000,47.000000,8.000000,30.000000,87.970000,125.600000,847.050000,4.790000,183.260000,23.340000 -13,2023-08-05 23:00:00,0.000000,17.400000,61.000000,3.000000,14.000000,87.820000,125.600000,847.050000,3.650000,183.260000,19.180000 -13,2023-08-06 00:00:00,0.000000,17.400000,61.000000,3.000000,14.000000,87.690000,125.600000,847.050000,3.580000,183.260000,18.910000 -13,2023-08-06 01:00:00,0.000000,17.400000,61.000000,3.000000,14.000000,87.570000,125.600000,847.050000,3.510000,183.260000,18.670000 -13,2023-08-06 02:00:00,0.000000,13.900000,77.000000,6.000000,311.000000,87.020000,125.600000,847.050000,3.780000,183.260000,19.710000 -13,2023-08-06 03:00:00,0.000000,13.900000,77.000000,6.000000,311.000000,86.550000,125.600000,847.050000,3.540000,183.260000,18.760000 -13,2023-08-06 04:00:00,0.000000,13.900000,77.000000,6.000000,311.000000,86.130000,125.600000,847.050000,3.330000,183.260000,17.960000 -13,2023-08-06 05:00:00,0.000000,12.900000,82.000000,7.000000,312.000000,85.590000,125.640000,847.140000,3.250000,183.310000,17.620000 -13,2023-08-06 06:00:00,0.000000,12.900000,82.000000,7.000000,312.000000,85.110000,125.670000,847.240000,3.040000,183.350000,16.780000 -13,2023-08-06 07:00:00,0.000000,12.900000,82.000000,7.000000,312.000000,84.700000,125.710000,847.330000,2.870000,183.390000,16.080000 -13,2023-08-06 08:00:00,0.000000,17.100000,63.000000,8.000000,5.000000,84.700000,125.800000,847.590000,3.020000,183.510000,16.700000 -13,2023-08-06 09:00:00,0.000000,17.100000,63.000000,8.000000,5.000000,84.700000,125.900000,847.850000,3.020000,183.630000,16.700000 -13,2023-08-06 10:00:00,0.000000,17.100000,63.000000,8.000000,5.000000,84.700000,125.990000,848.110000,3.020000,183.740000,16.710000 -13,2023-08-06 11:00:00,0.000000,21.500000,46.000000,14.000000,32.000000,85.240000,126.170000,848.610000,4.400000,183.970000,22.000000 -13,2023-08-06 12:00:00,0.000000,21.500000,46.000000,14.000000,32.000000,85.700000,126.360000,849.110000,4.700000,184.190000,23.030000 -13,2023-08-06 13:00:00,0.000000,21.500000,46.000000,14.000000,32.000000,86.090000,126.540000,849.610000,4.960000,184.410000,23.950000 -13,2023-08-06 14:00:00,0.010000,22.200000,41.000000,17.000000,38.000000,86.630000,126.750000,850.180000,6.230000,184.670000,28.020000 -13,2023-08-06 15:00:00,0.000000,22.200000,41.000000,17.000000,38.000000,87.080000,126.950000,850.740000,6.630000,184.920000,29.270000 -13,2023-08-06 16:00:00,0.000000,22.200000,41.000000,17.000000,38.000000,87.450000,127.160000,851.310000,7.000000,185.180000,30.360000 -13,2023-08-06 17:00:00,0.000000,21.900000,39.000000,17.000000,50.000000,87.820000,127.370000,851.890000,7.370000,185.430000,31.450000 -13,2023-08-06 18:00:00,0.000000,21.900000,39.000000,17.000000,50.000000,88.120000,127.590000,852.460000,7.700000,185.690000,32.390000 -13,2023-08-06 19:00:00,0.000000,21.900000,39.000000,17.000000,50.000000,88.380000,127.800000,853.040000,7.990000,185.950000,33.200000 -13,2023-08-06 20:00:00,0.000000,19.200000,45.000000,14.000000,70.000000,88.380000,127.960000,853.480000,6.870000,186.150000,30.010000 -13,2023-08-06 21:00:00,0.000000,19.200000,45.000000,14.000000,70.000000,88.380000,128.120000,853.920000,6.870000,186.340000,30.010000 -13,2023-08-06 22:00:00,0.000000,19.200000,45.000000,14.000000,70.000000,88.380000,128.120000,853.920000,6.870000,186.340000,30.010000 -13,2023-08-06 23:00:00,0.000000,14.300000,59.000000,4.000000,87.000000,88.180000,128.120000,853.920000,4.030000,186.340000,20.710000 -13,2023-08-07 00:00:00,0.000000,14.300000,59.000000,4.000000,87.000000,88.000000,128.120000,853.920000,3.930000,186.340000,20.330000 -13,2023-08-07 01:00:00,0.000000,14.300000,59.000000,4.000000,87.000000,87.840000,128.120000,853.920000,3.840000,186.340000,20.000000 -13,2023-08-07 02:00:00,0.000000,11.000000,73.000000,1.000000,308.000000,87.450000,128.120000,853.920000,3.130000,186.340000,17.180000 -13,2023-08-07 03:00:00,0.000000,11.000000,73.000000,1.000000,308.000000,87.100000,128.120000,853.920000,2.970000,186.340000,16.540000 -13,2023-08-07 04:00:00,0.000000,11.000000,73.000000,1.000000,308.000000,86.780000,128.120000,853.920000,2.840000,186.340000,15.980000 -13,2023-08-07 05:00:00,0.000000,9.400000,81.000000,2.000000,315.000000,86.280000,128.150000,854.000000,2.780000,186.380000,15.740000 -13,2023-08-07 06:00:00,0.000000,9.400000,81.000000,2.000000,315.000000,85.830000,128.180000,854.090000,2.610000,186.420000,15.000000 -13,2023-08-07 07:00:00,0.000000,9.400000,81.000000,2.000000,315.000000,85.420000,128.210000,854.170000,2.470000,186.460000,14.360000 -13,2023-08-07 08:00:00,0.000000,14.400000,64.000000,4.000000,63.000000,85.420000,128.290000,854.390000,2.730000,186.550000,15.510000 -13,2023-08-07 09:00:00,0.000000,14.400000,64.000000,4.000000,63.000000,85.420000,128.370000,854.600000,2.730000,186.650000,15.520000 -13,2023-08-07 10:00:00,0.000000,14.400000,64.000000,4.000000,63.000000,85.420000,128.450000,854.820000,2.730000,186.750000,15.520000 -13,2023-08-07 11:00:00,0.000000,19.500000,43.000000,11.000000,71.000000,85.840000,128.630000,855.300000,4.120000,186.970000,21.030000 -13,2023-08-07 12:00:00,0.000000,19.500000,43.000000,11.000000,71.000000,86.210000,128.810000,855.770000,4.340000,187.180000,21.830000 -13,2023-08-07 13:00:00,0.000000,19.500000,43.000000,11.000000,71.000000,86.530000,128.990000,856.250000,4.530000,187.400000,22.530000 -13,2023-08-07 14:00:00,0.000000,20.900000,35.000000,15.000000,55.000000,87.120000,129.210000,856.840000,6.030000,187.670000,27.510000 -13,2023-08-07 15:00:00,0.000000,20.900000,35.000000,15.000000,55.000000,87.620000,129.430000,857.440000,6.480000,187.930000,28.890000 -13,2023-08-07 16:00:00,0.000000,20.900000,35.000000,15.000000,55.000000,88.040000,129.650000,858.030000,6.880000,188.200000,30.100000 -13,2023-08-07 17:00:00,0.000000,20.100000,38.000000,15.000000,56.000000,88.270000,129.850000,858.570000,7.110000,188.450000,30.780000 -13,2023-08-07 18:00:00,0.000000,20.100000,38.000000,15.000000,56.000000,88.460000,130.050000,859.100000,7.320000,188.690000,31.380000 -13,2023-08-07 19:00:00,0.000000,20.100000,38.000000,15.000000,56.000000,88.630000,130.250000,859.640000,7.490000,188.930000,31.880000 -13,2023-08-07 20:00:00,0.000000,17.700000,47.000000,10.000000,59.000000,88.630000,130.400000,860.040000,5.820000,189.110000,26.880000 -13,2023-08-07 21:00:00,0.000000,17.700000,47.000000,10.000000,59.000000,88.630000,130.540000,860.430000,5.820000,189.290000,26.880000 -13,2023-08-07 22:00:00,0.000000,17.700000,47.000000,10.000000,59.000000,88.630000,130.540000,860.430000,5.820000,189.290000,26.880000 -13,2023-08-07 23:00:00,0.000000,12.500000,70.000000,4.000000,48.000000,88.170000,130.540000,860.430000,4.030000,189.290000,20.750000 -13,2023-08-08 00:00:00,0.000000,12.500000,70.000000,4.000000,48.000000,87.760000,130.540000,860.430000,3.800000,189.290000,19.880000 -13,2023-08-08 01:00:00,0.000000,12.500000,70.000000,4.000000,48.000000,87.390000,130.540000,860.430000,3.610000,189.290000,19.140000 -13,2023-08-08 02:00:00,0.000000,10.000000,84.000000,1.000000,120.000000,86.780000,130.540000,860.430000,2.840000,189.290000,16.030000 -13,2023-08-08 03:00:00,0.000000,10.000000,84.000000,1.000000,120.000000,86.220000,130.540000,860.430000,2.630000,189.290000,15.100000 -13,2023-08-08 04:00:00,0.000000,10.000000,84.000000,1.000000,120.000000,85.720000,130.540000,860.430000,2.450000,189.290000,14.300000 -13,2023-08-08 05:00:00,0.000000,8.900000,91.000000,4.000000,193.000000,84.920000,130.560000,860.470000,2.550000,189.310000,14.760000 -13,2023-08-08 06:00:00,0.000000,8.900000,91.000000,4.000000,193.000000,84.210000,130.570000,860.500000,2.310000,189.320000,13.690000 -13,2023-08-08 07:00:00,0.000000,8.900000,91.000000,4.000000,193.000000,83.570000,130.580000,860.530000,2.130000,189.340000,12.810000 -13,2023-08-08 08:00:00,0.000000,14.600000,63.000000,5.000000,169.000000,83.630000,130.660000,860.720000,2.250000,189.430000,13.410000 -13,2023-08-08 09:00:00,0.000000,14.600000,63.000000,5.000000,169.000000,83.680000,130.740000,860.910000,2.270000,189.530000,13.490000 -13,2023-08-08 10:00:00,0.000000,14.600000,63.000000,5.000000,169.000000,83.730000,130.820000,861.100000,2.280000,189.620000,13.560000 -13,2023-08-08 11:00:00,0.000000,21.800000,38.000000,9.000000,144.000000,84.610000,131.030000,861.590000,3.140000,189.880000,17.300000 -13,2023-08-08 12:00:00,0.000000,21.800000,38.000000,9.000000,144.000000,85.370000,131.250000,862.090000,3.490000,190.130000,18.690000 -13,2023-08-08 13:00:00,0.000000,21.800000,38.000000,9.000000,144.000000,86.020000,131.460000,862.590000,3.820000,190.380000,19.970000 -13,2023-08-08 14:00:00,0.000000,24.100000,33.000000,10.000000,111.000000,86.870000,131.720000,863.210000,4.530000,190.690000,22.570000 -13,2023-08-08 15:00:00,0.000000,24.100000,33.000000,10.000000,111.000000,87.580000,131.980000,863.830000,5.010000,191.000000,24.260000 -13,2023-08-08 16:00:00,0.000000,24.100000,33.000000,10.000000,111.000000,88.180000,132.240000,864.450000,5.460000,191.320000,25.760000 -13,2023-08-08 17:00:00,0.000000,24.700000,34.000000,13.000000,93.000000,88.700000,132.510000,865.080000,6.840000,191.630000,30.050000 -13,2023-08-08 18:00:00,0.000000,24.700000,34.000000,13.000000,93.000000,89.120000,132.780000,865.710000,7.270000,191.950000,31.320000 -13,2023-08-08 19:00:00,0.000000,24.700000,34.000000,13.000000,93.000000,89.470000,133.040000,866.340000,7.640000,192.270000,32.400000 -13,2023-08-08 20:00:00,0.000000,22.400000,39.000000,12.000000,77.000000,89.510000,133.260000,866.850000,7.310000,192.530000,31.450000 -13,2023-08-08 21:00:00,0.000000,22.400000,39.000000,12.000000,77.000000,89.540000,133.470000,867.360000,7.350000,192.780000,31.560000 -13,2023-08-08 22:00:00,0.000000,22.400000,39.000000,12.000000,77.000000,89.570000,133.470000,867.360000,7.380000,192.780000,31.650000 -13,2023-08-08 23:00:00,0.000000,17.000000,56.000000,7.000000,93.000000,89.310000,133.470000,867.360000,5.520000,192.780000,25.990000 -13,2023-08-09 00:00:00,0.000000,17.000000,56.000000,7.000000,93.000000,89.080000,133.470000,867.360000,5.340000,192.780000,25.400000 -13,2023-08-09 01:00:00,0.000000,17.000000,56.000000,7.000000,93.000000,88.880000,133.470000,867.360000,5.190000,192.780000,24.890000 -13,2023-08-09 02:00:00,0.000000,14.100000,64.000000,8.000000,165.000000,88.490000,133.470000,867.360000,5.160000,192.780000,24.800000 -13,2023-08-09 03:00:00,0.000000,14.100000,64.000000,8.000000,165.000000,88.150000,133.470000,867.360000,4.910000,192.780000,23.950000 -13,2023-08-09 04:00:00,0.000000,14.100000,64.000000,8.000000,165.000000,87.840000,133.470000,867.360000,4.710000,192.780000,23.230000 -13,2023-08-09 05:00:00,0.000000,11.900000,71.000000,6.000000,156.000000,87.420000,133.520000,867.460000,4.000000,192.840000,20.710000 -13,2023-08-09 06:00:00,0.000000,11.900000,71.000000,6.000000,156.000000,87.050000,133.570000,867.560000,3.800000,192.890000,19.930000 -13,2023-08-09 07:00:00,0.000000,11.900000,71.000000,6.000000,156.000000,86.710000,133.610000,867.670000,3.620000,192.940000,19.250000 -13,2023-08-09 08:00:00,0.000000,17.100000,53.000000,8.000000,149.000000,86.710000,133.710000,867.900000,4.000000,193.070000,20.710000 -13,2023-08-09 09:00:00,0.000000,17.100000,53.000000,8.000000,149.000000,86.710000,133.820000,868.130000,4.000000,193.190000,20.710000 -13,2023-08-09 10:00:00,0.000000,17.100000,53.000000,8.000000,149.000000,86.710000,133.920000,868.360000,4.000000,193.310000,20.720000 -13,2023-08-09 11:00:00,0.000000,23.500000,36.000000,12.000000,146.000000,87.340000,134.130000,868.820000,5.350000,193.560000,25.440000 -13,2023-08-09 12:00:00,0.000000,23.500000,36.000000,12.000000,146.000000,87.860000,134.340000,869.290000,5.770000,193.800000,26.800000 -13,2023-08-09 13:00:00,0.000000,23.500000,36.000000,12.000000,146.000000,88.300000,134.550000,869.750000,6.140000,194.050000,27.980000 -13,2023-08-09 14:00:00,0.000000,25.900000,27.000000,14.000000,152.000000,89.150000,134.820000,870.370000,7.670000,194.370000,32.530000 -13,2023-08-09 15:00:00,0.000000,25.900000,27.000000,14.000000,152.000000,89.840000,135.100000,870.980000,8.470000,194.700000,34.750000 -13,2023-08-09 16:00:00,0.000000,25.900000,27.000000,14.000000,152.000000,90.390000,135.370000,871.590000,9.180000,195.020000,36.640000 -13,2023-08-09 17:00:00,0.000000,26.100000,24.000000,14.000000,155.000000,90.990000,135.660000,872.240000,9.990000,195.360000,38.730000 -13,2023-08-09 18:00:00,0.000000,26.100000,24.000000,14.000000,155.000000,91.470000,135.950000,872.880000,10.690000,195.710000,40.490000 -13,2023-08-09 19:00:00,0.000000,26.100000,24.000000,14.000000,155.000000,91.850000,136.240000,873.530000,11.290000,196.050000,41.940000 -13,2023-08-09 20:00:00,0.000000,23.600000,27.000000,9.000000,157.000000,91.930000,136.480000,874.060000,8.880000,196.330000,35.880000 -13,2023-08-09 21:00:00,0.000000,23.600000,27.000000,9.000000,157.000000,92.000000,136.720000,874.600000,8.960000,196.610000,36.120000 -13,2023-08-09 22:00:00,0.000000,23.600000,27.000000,9.000000,157.000000,92.060000,136.720000,874.600000,9.040000,196.610000,36.310000 -13,2023-08-09 23:00:00,0.000000,18.900000,36.000000,9.000000,149.000000,91.960000,136.720000,874.600000,8.920000,196.610000,35.990000 -13,2023-08-10 00:00:00,0.000000,18.900000,36.000000,9.000000,149.000000,91.880000,136.720000,874.600000,8.810000,196.610000,35.720000 -13,2023-08-10 01:00:00,0.000000,18.900000,36.000000,9.000000,149.000000,91.800000,136.720000,874.600000,8.720000,196.610000,35.470000 -13,2023-08-10 02:00:00,0.000000,17.900000,40.000000,9.000000,133.000000,91.640000,136.720000,874.600000,8.520000,196.610000,34.920000 -13,2023-08-10 03:00:00,0.000000,17.900000,40.000000,9.000000,133.000000,91.490000,136.720000,874.600000,8.340000,196.610000,34.440000 -13,2023-08-10 04:00:00,0.000000,17.900000,40.000000,9.000000,133.000000,91.360000,136.720000,874.600000,8.180000,196.610000,34.010000 -13,2023-08-10 05:00:00,0.000000,17.700000,43.000000,9.000000,131.000000,91.170000,136.860000,874.880000,7.970000,196.770000,33.420000 -13,2023-08-10 06:00:00,0.000000,17.700000,43.000000,9.000000,131.000000,91.010000,136.990000,875.160000,7.790000,196.920000,32.910000 -13,2023-08-10 07:00:00,0.000000,17.700000,43.000000,9.000000,131.000000,90.860000,137.130000,875.440000,7.630000,197.080000,32.460000 -13,2023-08-10 08:00:00,0.000000,20.000000,38.000000,11.000000,136.000000,90.860000,137.300000,875.800000,8.430000,197.280000,34.710000 -13,2023-08-10 09:00:00,0.000000,20.000000,38.000000,11.000000,136.000000,90.860000,137.470000,876.150000,8.430000,197.470000,34.720000 -13,2023-08-10 10:00:00,0.000000,20.000000,38.000000,11.000000,136.000000,90.860000,137.630000,876.510000,8.430000,197.670000,34.720000 -13,2023-08-10 11:00:00,0.000000,23.300000,32.000000,13.000000,139.000000,90.930000,137.860000,876.980000,9.420000,197.930000,37.340000 -13,2023-08-10 12:00:00,0.000000,23.300000,32.000000,13.000000,139.000000,90.980000,138.090000,877.460000,9.490000,198.200000,37.530000 -13,2023-08-10 13:00:00,0.000000,23.300000,32.000000,13.000000,139.000000,91.030000,138.310000,877.930000,9.550000,198.460000,37.700000 -13,2023-08-10 14:00:00,0.000000,25.300000,29.000000,15.000000,146.000000,91.250000,138.580000,878.490000,10.910000,198.770000,41.090000 -13,2023-08-10 15:00:00,0.000000,25.300000,29.000000,15.000000,146.000000,91.430000,138.850000,879.050000,11.190000,199.080000,41.790000 -13,2023-08-10 16:00:00,0.000000,25.300000,29.000000,15.000000,146.000000,91.580000,139.110000,879.610000,11.430000,199.390000,42.360000 -13,2023-08-10 17:00:00,0.000000,25.100000,30.000000,15.000000,148.000000,91.650000,139.370000,880.160000,11.550000,199.690000,42.650000 -13,2023-08-10 18:00:00,0.000000,25.100000,30.000000,15.000000,148.000000,91.710000,139.630000,880.700000,11.640000,199.990000,42.880000 -13,2023-08-10 19:00:00,0.000000,25.100000,30.000000,15.000000,148.000000,91.760000,139.890000,881.250000,11.720000,200.290000,43.070000 -13,2023-08-10 20:00:00,0.000000,25.100000,30.000000,15.000000,148.000000,91.790000,140.150000,881.790000,11.780000,200.600000,43.220000 -13,2023-08-10 21:00:00,0.000000,25.100000,30.000000,15.000000,148.000000,91.820000,140.150000,881.790000,11.830000,200.600000,43.340000 -13,2023-08-10 22:00:00,0.000000,25.100000,30.000000,15.000000,148.000000,91.850000,140.150000,881.790000,11.870000,200.600000,43.440000 -13,2023-08-10 23:00:00,0.000000,22.000000,42.000000,9.000000,161.000000,91.690000,140.150000,881.790000,8.580000,200.600000,35.180000 -13,2023-08-11 00:00:00,0.000000,22.000000,42.000000,9.000000,161.000000,91.550000,140.150000,881.790000,8.410000,200.600000,34.730000 -13,2023-08-11 01:00:00,0.000000,22.000000,42.000000,9.000000,161.000000,91.430000,140.150000,881.790000,8.270000,200.600000,34.340000 -13,2023-08-11 02:00:00,0.000000,22.000000,42.000000,9.000000,161.000000,91.330000,140.150000,881.790000,8.150000,200.600000,34.010000 -13,2023-08-11 03:00:00,0.000000,22.000000,42.000000,9.000000,161.000000,91.240000,140.150000,881.790000,8.050000,200.600000,33.720000 -13,2023-08-11 04:00:00,0.000000,22.000000,42.000000,9.000000,161.000000,91.160000,140.150000,881.790000,7.960000,200.600000,33.470000 -13,2023-08-11 05:00:00,0.000000,19.300000,51.000000,7.000000,139.000000,90.840000,140.320000,882.190000,6.880000,200.790000,30.360000 -13,2023-08-11 06:00:00,0.000000,19.300000,51.000000,7.000000,139.000000,90.570000,140.490000,882.590000,6.610000,200.990000,29.560000 -13,2023-08-11 07:00:00,0.000000,19.300000,51.000000,7.000000,139.000000,90.320000,140.660000,882.980000,6.390000,201.190000,28.880000 -13,2023-08-11 08:00:00,0.000000,19.300000,51.000000,7.000000,139.000000,90.110000,140.820000,883.380000,6.190000,201.390000,28.290000 -13,2023-08-11 09:00:00,0.000000,19.300000,51.000000,7.000000,139.000000,89.930000,140.990000,883.780000,6.030000,201.590000,27.780000 -13,2023-08-11 10:00:00,0.000000,19.300000,51.000000,7.000000,139.000000,89.760000,141.160000,884.170000,5.890000,201.780000,27.350000 -13,2023-08-11 11:00:00,0.000000,25.300000,41.000000,8.000000,144.000000,89.780000,141.450000,884.860000,6.210000,202.130000,28.350000 -13,2023-08-11 12:00:00,0.000000,25.300000,41.000000,8.000000,144.000000,89.790000,141.750000,885.550000,6.220000,202.470000,28.380000 -13,2023-08-11 13:00:00,0.000000,25.300000,41.000000,8.000000,144.000000,89.790000,142.040000,886.230000,6.230000,202.810000,28.410000 -13,2023-08-11 14:00:00,0.000000,25.300000,41.000000,8.000000,144.000000,89.800000,142.330000,886.920000,6.230000,203.160000,28.440000 -13,2023-08-11 15:00:00,0.000000,25.300000,41.000000,8.000000,144.000000,89.810000,142.620000,887.610000,6.240000,203.500000,28.460000 -13,2023-08-11 16:00:00,0.000000,25.300000,41.000000,8.000000,144.000000,89.810000,142.920000,888.300000,6.240000,203.840000,28.480000 -13,2023-08-11 17:00:00,2.970000,23.000000,74.000000,5.000000,151.000000,48.930000,94.540000,867.780000,0.180000,148.610000,0.640000 -13,2023-08-11 18:00:00,0.000000,23.000000,74.000000,5.000000,151.000000,51.380000,94.660000,868.050000,0.250000,148.760000,0.870000 -13,2023-08-11 19:00:00,0.000000,23.000000,74.000000,5.000000,151.000000,53.710000,94.770000,868.310000,0.320000,148.910000,1.450000 -13,2023-08-11 20:00:00,0.000000,23.000000,74.000000,5.000000,151.000000,55.920000,94.880000,868.570000,0.390000,149.060000,2.100000 -13,2023-08-11 21:00:00,0.000000,23.000000,74.000000,5.000000,151.000000,57.990000,94.880000,868.570000,0.460000,149.060000,2.660000 -13,2023-08-11 22:00:00,0.000000,23.000000,74.000000,5.000000,151.000000,59.950000,94.880000,868.570000,0.520000,149.060000,3.160000 -13,2023-08-11 23:00:00,0.000000,18.000000,91.000000,2.000000,190.000000,60.390000,94.880000,868.570000,0.460000,149.060000,2.700000 -13,2023-08-12 00:00:00,0.000000,18.000000,91.000000,2.000000,190.000000,60.830000,94.880000,868.570000,0.480000,149.060000,2.790000 -13,2023-08-12 01:00:00,0.000000,18.000000,91.000000,2.000000,190.000000,61.260000,94.880000,868.570000,0.490000,149.060000,2.880000 -13,2023-08-12 02:00:00,0.000000,18.000000,91.000000,2.000000,190.000000,61.680000,94.880000,868.570000,0.500000,149.060000,2.970000 -13,2023-08-12 03:00:00,0.000000,18.000000,91.000000,2.000000,190.000000,62.090000,94.880000,868.570000,0.510000,149.060000,3.050000 -13,2023-08-12 04:00:00,0.000000,18.000000,91.000000,2.000000,190.000000,62.490000,94.880000,868.570000,0.520000,149.060000,3.130000 -13,2023-08-12 05:00:00,0.000000,14.800000,98.000000,4.000000,230.000000,62.570000,94.890000,868.590000,0.580000,149.060000,3.550000 -13,2023-08-12 06:00:00,0.000000,14.800000,98.000000,4.000000,230.000000,62.640000,94.890000,868.600000,0.580000,149.070000,3.560000 -13,2023-08-12 07:00:00,0.000000,14.800000,98.000000,4.000000,230.000000,62.720000,94.900000,868.610000,0.580000,149.070000,3.580000 -13,2023-08-12 08:00:00,0.000000,14.800000,98.000000,4.000000,230.000000,62.790000,94.900000,868.620000,0.580000,149.080000,3.590000 -13,2023-08-12 09:00:00,0.000000,14.800000,98.000000,4.000000,230.000000,62.870000,94.900000,868.640000,0.590000,149.090000,3.610000 -13,2023-08-12 10:00:00,0.000000,14.800000,98.000000,4.000000,230.000000,62.940000,94.910000,868.650000,0.590000,149.090000,3.620000 -13,2023-08-12 11:00:00,0.000000,25.700000,47.000000,6.000000,180.000000,66.230000,95.160000,869.310000,0.750000,149.430000,4.700000 -13,2023-08-12 12:00:00,0.000000,25.700000,47.000000,6.000000,180.000000,69.160000,95.420000,869.970000,0.820000,149.770000,5.200000 -13,2023-08-12 13:00:00,0.000000,25.700000,47.000000,6.000000,180.000000,71.760000,95.670000,870.620000,0.900000,150.100000,5.670000 -13,2023-08-12 14:00:00,0.000000,25.700000,47.000000,6.000000,180.000000,74.060000,95.920000,871.280000,0.990000,150.440000,6.210000 -13,2023-08-12 15:00:00,0.000000,25.700000,47.000000,6.000000,180.000000,76.080000,96.170000,871.940000,1.100000,150.770000,6.910000 -13,2023-08-12 16:00:00,0.000000,25.700000,47.000000,6.000000,180.000000,77.850000,96.430000,872.600000,1.260000,151.110000,7.780000 -13,2023-08-12 17:00:00,0.000000,26.800000,32.000000,12.000000,175.000000,80.340000,96.770000,873.500000,2.160000,151.570000,12.250000 -13,2023-08-12 18:00:00,0.000000,26.800000,32.000000,12.000000,175.000000,82.410000,97.120000,874.400000,2.740000,152.030000,14.800000 -13,2023-08-12 19:00:00,0.000000,26.800000,32.000000,12.000000,175.000000,84.130000,97.470000,875.300000,3.430000,152.480000,17.530000 -13,2023-08-12 20:00:00,0.000000,26.800000,32.000000,12.000000,175.000000,85.560000,97.810000,876.200000,4.160000,152.940000,20.230000 -13,2023-08-12 21:00:00,0.000000,26.800000,32.000000,12.000000,175.000000,86.720000,97.810000,876.200000,4.910000,152.940000,22.760000 -13,2023-08-12 22:00:00,0.000000,26.800000,32.000000,12.000000,175.000000,87.680000,97.810000,876.200000,5.620000,152.940000,25.050000 -13,2023-08-12 23:00:00,0.000000,21.200000,45.000000,10.000000,174.000000,87.790000,97.810000,876.200000,5.160000,152.940000,23.590000 -13,2023-08-13 00:00:00,0.000000,21.200000,45.000000,10.000000,174.000000,87.880000,97.810000,876.200000,5.230000,152.940000,23.810000 -13,2023-08-13 01:00:00,0.000000,21.200000,45.000000,10.000000,174.000000,87.960000,97.810000,876.200000,5.290000,152.940000,24.000000 -13,2023-08-13 02:00:00,0.000000,21.200000,45.000000,10.000000,174.000000,88.020000,97.810000,876.200000,5.340000,152.940000,24.160000 -13,2023-08-13 03:00:00,0.000000,21.200000,45.000000,10.000000,174.000000,88.080000,97.810000,876.200000,5.380000,152.940000,24.300000 -13,2023-08-13 04:00:00,0.000000,21.200000,45.000000,10.000000,174.000000,88.130000,97.810000,876.200000,5.420000,152.940000,24.420000 -13,2023-08-13 05:00:00,0.000000,19.100000,50.000000,16.000000,250.000000,88.130000,97.950000,876.490000,7.340000,153.130000,30.070000 -13,2023-08-13 06:00:00,0.000000,19.100000,50.000000,16.000000,250.000000,88.130000,98.100000,876.770000,7.340000,153.310000,30.080000 -13,2023-08-13 07:00:00,0.000000,19.100000,50.000000,16.000000,250.000000,88.130000,98.240000,877.060000,7.340000,153.490000,30.090000 -13,2023-08-13 08:00:00,0.000000,19.100000,50.000000,16.000000,250.000000,88.130000,98.380000,877.340000,7.340000,153.680000,30.100000 -13,2023-08-13 09:00:00,0.000000,19.100000,50.000000,16.000000,250.000000,88.130000,98.520000,877.630000,7.340000,153.860000,30.110000 -13,2023-08-13 10:00:00,0.000000,19.100000,50.000000,16.000000,250.000000,88.130000,98.660000,877.910000,7.340000,154.040000,30.120000 -13,2023-08-13 11:00:00,0.000000,22.400000,28.000000,21.000000,244.000000,88.830000,98.910000,878.420000,10.440000,154.370000,38.070000 -13,2023-08-13 12:00:00,0.000000,22.400000,28.000000,21.000000,244.000000,89.400000,99.160000,878.920000,11.330000,154.690000,40.190000 -13,2023-08-13 13:00:00,0.000000,22.400000,28.000000,21.000000,244.000000,89.870000,99.410000,879.420000,12.120000,155.010000,41.990000 -13,2023-08-13 14:00:00,0.000000,22.400000,28.000000,21.000000,244.000000,90.250000,99.660000,879.930000,12.800000,155.340000,43.510000 -13,2023-08-13 15:00:00,0.000000,22.400000,28.000000,21.000000,244.000000,90.570000,99.910000,880.430000,13.380000,155.660000,44.780000 -13,2023-08-13 16:00:00,0.000000,22.400000,28.000000,21.000000,244.000000,90.820000,100.160000,880.930000,13.880000,155.980000,45.850000 -13,2023-08-13 17:00:00,0.000000,24.000000,25.000000,18.000000,259.000000,91.210000,100.450000,881.510000,12.610000,156.350000,43.160000 -13,2023-08-13 18:00:00,0.000000,24.000000,25.000000,18.000000,259.000000,91.520000,100.730000,882.090000,13.190000,156.720000,44.440000 -13,2023-08-13 19:00:00,0.000000,24.000000,25.000000,18.000000,259.000000,91.780000,101.020000,882.660000,13.670000,157.090000,45.490000 -13,2023-08-13 20:00:00,0.000000,24.000000,25.000000,18.000000,259.000000,91.980000,101.310000,883.240000,14.080000,157.460000,46.370000 -13,2023-08-13 21:00:00,0.000000,24.000000,25.000000,18.000000,259.000000,92.150000,101.310000,883.240000,14.410000,157.460000,47.060000 -13,2023-08-13 22:00:00,0.000000,24.000000,25.000000,18.000000,259.000000,92.280000,101.310000,883.240000,14.680000,157.460000,47.620000 -13,2023-08-13 23:00:00,0.000000,18.800000,41.000000,7.000000,262.000000,92.060000,101.310000,883.240000,8.180000,157.460000,32.580000 -13,2023-08-14 00:00:00,0.000000,18.800000,41.000000,7.000000,262.000000,91.860000,101.310000,883.240000,7.950000,157.460000,31.980000 -13,2023-08-14 01:00:00,0.000000,18.800000,41.000000,7.000000,262.000000,91.690000,101.310000,883.240000,7.760000,157.460000,31.450000 -13,2023-08-14 02:00:00,0.000000,18.800000,41.000000,7.000000,262.000000,91.530000,101.310000,883.240000,7.590000,157.460000,30.990000 -13,2023-08-14 03:00:00,0.000000,18.800000,41.000000,7.000000,262.000000,91.390000,101.310000,883.240000,7.440000,157.460000,30.580000 -13,2023-08-14 04:00:00,0.000000,18.800000,41.000000,7.000000,262.000000,91.270000,101.310000,883.240000,7.310000,157.460000,30.220000 -13,2023-08-14 05:00:00,0.000000,16.800000,53.000000,11.000000,203.000000,90.840000,101.430000,883.460000,8.410000,157.610000,33.200000 -13,2023-08-14 06:00:00,0.000000,16.800000,53.000000,11.000000,203.000000,90.460000,101.540000,883.690000,7.970000,157.770000,32.030000 -13,2023-08-14 07:00:00,0.000000,16.800000,53.000000,11.000000,203.000000,90.130000,101.660000,883.910000,7.600000,157.920000,31.050000 -13,2023-08-14 08:00:00,0.000000,16.800000,53.000000,11.000000,203.000000,89.850000,101.780000,884.140000,7.300000,158.070000,30.210000 -13,2023-08-14 09:00:00,0.000000,16.800000,53.000000,11.000000,203.000000,89.600000,101.900000,884.360000,7.040000,158.230000,29.490000 -13,2023-08-14 10:00:00,0.000000,16.800000,53.000000,11.000000,203.000000,89.380000,102.020000,884.590000,6.820000,158.380000,28.870000 -13,2023-08-14 11:00:00,0.000000,27.100000,28.000000,31.000000,272.000000,90.160000,102.370000,885.230000,20.900000,158.820000,59.420000 -13,2023-08-14 12:00:00,0.000000,27.100000,28.000000,31.000000,272.000000,90.760000,102.710000,885.880000,22.780000,159.260000,62.660000 -13,2023-08-14 13:00:00,0.000000,27.100000,28.000000,31.000000,272.000000,91.220000,103.050000,886.520000,24.330000,159.690000,65.240000 -13,2023-08-14 14:00:00,0.000000,27.100000,28.000000,31.000000,272.000000,91.580000,103.390000,887.170000,25.580000,160.130000,67.280000 -13,2023-08-14 15:00:00,0.000000,27.100000,28.000000,31.000000,272.000000,91.840000,103.740000,887.810000,26.580000,160.570000,68.890000 -13,2023-08-14 16:00:00,0.000000,27.100000,28.000000,31.000000,272.000000,92.050000,104.080000,888.460000,27.360000,161.010000,70.140000 -13,2023-08-14 17:00:00,0.000000,26.300000,22.000000,28.000000,290.000000,92.470000,104.430000,889.120000,24.970000,161.460000,66.430000 -13,2023-08-14 18:00:00,0.000000,26.300000,22.000000,28.000000,290.000000,92.800000,104.790000,889.790000,26.140000,161.910000,68.340000 -13,2023-08-14 19:00:00,0.000000,26.300000,22.000000,28.000000,290.000000,93.050000,105.140000,890.460000,27.080000,162.360000,69.840000 -13,2023-08-14 20:00:00,0.000000,26.300000,22.000000,28.000000,290.000000,93.250000,105.500000,891.120000,27.830000,162.810000,71.020000 -13,2023-08-14 21:00:00,0.000000,26.300000,22.000000,28.000000,290.000000,93.390000,105.500000,891.120000,28.410000,162.810000,71.910000 -13,2023-08-14 22:00:00,0.000000,26.300000,22.000000,28.000000,290.000000,93.510000,105.500000,891.120000,28.870000,162.810000,72.600000 -13,2023-08-14 23:00:00,0.000000,21.800000,28.000000,16.000000,292.000000,93.480000,105.500000,891.120000,15.700000,162.810000,50.040000 -13,2023-08-15 00:00:00,0.000000,21.800000,28.000000,16.000000,292.000000,93.450000,105.500000,891.120000,15.640000,162.810000,49.920000 -13,2023-08-15 01:00:00,0.000000,21.800000,28.000000,16.000000,292.000000,93.420000,105.500000,891.120000,15.580000,162.810000,49.800000 -13,2023-08-15 02:00:00,0.000000,21.800000,28.000000,16.000000,292.000000,93.400000,105.500000,891.120000,15.530000,162.810000,49.710000 -13,2023-08-15 03:00:00,0.000000,21.800000,28.000000,16.000000,292.000000,93.380000,105.500000,891.120000,15.490000,162.810000,49.620000 -13,2023-08-15 04:00:00,0.000000,21.800000,28.000000,16.000000,292.000000,93.360000,105.500000,891.120000,15.450000,162.810000,49.550000 -13,2023-08-15 05:00:00,0.000000,17.600000,38.000000,9.000000,278.000000,93.070000,105.640000,891.390000,10.420000,163.000000,38.530000 -13,2023-08-15 06:00:00,0.000000,17.600000,38.000000,9.000000,278.000000,92.800000,105.790000,891.670000,10.040000,163.180000,37.620000 -13,2023-08-15 07:00:00,0.000000,17.600000,38.000000,9.000000,278.000000,92.570000,105.940000,891.940000,9.710000,163.370000,36.830000 -13,2023-08-15 08:00:00,0.000000,17.600000,38.000000,9.000000,278.000000,92.360000,106.090000,892.210000,9.430000,163.550000,36.130000 -13,2023-08-15 09:00:00,0.000000,17.600000,38.000000,9.000000,278.000000,92.170000,106.230000,892.480000,9.180000,163.740000,35.520000 -13,2023-08-15 10:00:00,0.000000,17.600000,38.000000,9.000000,278.000000,92.000000,106.380000,892.760000,8.970000,163.930000,34.980000 -13,2023-08-15 11:00:00,0.000000,25.100000,25.000000,6.000000,278.000000,92.170000,106.660000,893.280000,7.900000,164.280000,32.160000 -13,2023-08-15 12:00:00,0.000000,25.100000,25.000000,6.000000,278.000000,92.320000,106.940000,893.800000,8.060000,164.640000,32.610000 -13,2023-08-15 13:00:00,0.000000,25.100000,25.000000,6.000000,278.000000,92.430000,107.220000,894.320000,8.190000,164.990000,32.990000 -13,2023-08-15 14:00:00,0.000000,25.100000,25.000000,6.000000,278.000000,92.530000,107.510000,894.850000,8.310000,165.350000,33.310000 -13,2023-08-15 15:00:00,0.000000,25.100000,25.000000,6.000000,278.000000,92.610000,107.790000,895.370000,8.400000,165.700000,33.580000 -13,2023-08-15 16:00:00,0.000000,25.100000,25.000000,6.000000,278.000000,92.680000,108.070000,895.890000,8.490000,166.060000,33.820000 -13,2023-08-15 17:00:00,0.000000,29.600000,24.000000,6.000000,322.000000,92.940000,108.440000,896.580000,8.800000,166.530000,34.650000 -13,2023-08-15 18:00:00,0.000000,29.600000,24.000000,6.000000,322.000000,93.140000,108.810000,897.270000,9.050000,166.990000,35.340000 -13,2023-08-15 19:00:00,0.000000,29.600000,24.000000,6.000000,322.000000,93.310000,109.180000,897.960000,9.270000,167.460000,35.900000 -13,2023-08-15 20:00:00,0.000000,29.600000,24.000000,6.000000,322.000000,93.440000,109.550000,898.640000,9.440000,167.930000,36.370000 -13,2023-08-15 21:00:00,0.000000,29.600000,24.000000,6.000000,322.000000,93.550000,109.550000,898.640000,9.580000,167.930000,36.730000 -13,2023-08-15 22:00:00,0.000000,29.600000,24.000000,6.000000,322.000000,93.640000,109.550000,898.640000,9.700000,167.930000,37.020000 -13,2023-08-15 23:00:00,0.000000,21.700000,41.000000,8.000000,191.000000,93.280000,109.550000,898.640000,10.200000,167.930000,38.260000 -13,2023-08-16 00:00:00,0.000000,21.700000,41.000000,8.000000,191.000000,92.960000,109.550000,898.640000,9.760000,167.930000,37.180000 -13,2023-08-16 01:00:00,0.000000,21.700000,41.000000,8.000000,191.000000,92.690000,109.550000,898.640000,9.390000,167.930000,36.250000 -13,2023-08-16 02:00:00,0.000000,21.700000,41.000000,8.000000,191.000000,92.450000,109.550000,898.640000,9.080000,167.930000,35.450000 -13,2023-08-16 03:00:00,0.000000,21.700000,41.000000,8.000000,191.000000,92.240000,109.550000,898.640000,8.820000,167.930000,34.770000 -13,2023-08-16 04:00:00,0.000000,21.700000,41.000000,8.000000,191.000000,92.050000,109.550000,898.640000,8.590000,167.930000,34.170000 -13,2023-08-16 05:00:00,0.000000,22.300000,43.000000,11.000000,224.000000,91.840000,109.730000,898.970000,9.690000,168.150000,37.010000 -13,2023-08-16 06:00:00,0.000000,22.300000,43.000000,11.000000,224.000000,91.650000,109.900000,899.300000,9.440000,168.370000,36.390000 -13,2023-08-16 07:00:00,0.000000,22.300000,43.000000,11.000000,224.000000,91.490000,110.080000,899.630000,9.230000,168.590000,35.860000 -13,2023-08-16 08:00:00,0.000000,22.300000,43.000000,11.000000,224.000000,91.360000,110.260000,899.960000,9.050000,168.810000,35.420000 -13,2023-08-16 09:00:00,0.000000,22.300000,43.000000,11.000000,224.000000,91.240000,110.430000,900.290000,8.900000,169.030000,35.030000 -13,2023-08-16 10:00:00,0.000000,22.300000,43.000000,11.000000,224.000000,91.140000,110.610000,900.620000,8.770000,169.250000,34.710000 -13,2023-08-16 11:00:00,0.000000,29.500000,30.000000,12.000000,328.000000,91.470000,110.940000,901.240000,9.670000,169.660000,37.020000 -13,2023-08-16 12:00:00,0.000000,29.500000,30.000000,12.000000,328.000000,91.730000,111.270000,901.860000,10.030000,170.070000,37.940000 -13,2023-08-16 13:00:00,0.000000,29.500000,30.000000,12.000000,328.000000,91.930000,111.600000,902.480000,10.330000,170.490000,38.690000 -13,2023-08-16 14:00:00,0.000000,29.500000,30.000000,12.000000,328.000000,92.090000,111.930000,903.100000,10.570000,170.900000,39.290000 -13,2023-08-16 15:00:00,0.000000,29.500000,30.000000,12.000000,328.000000,92.220000,112.260000,903.720000,10.760000,171.310000,39.770000 -13,2023-08-16 16:00:00,0.000000,29.500000,30.000000,12.000000,328.000000,92.320000,112.580000,904.340000,10.920000,171.720000,40.160000 -13,2023-08-16 17:00:00,0.000000,29.700000,27.000000,16.000000,355.000000,92.560000,112.930000,905.000000,13.810000,172.160000,46.690000 -13,2023-08-16 18:00:00,0.000000,29.700000,27.000000,16.000000,355.000000,92.740000,113.280000,905.650000,14.160000,172.590000,47.470000 -13,2023-08-16 19:00:00,0.000000,29.700000,27.000000,16.000000,355.000000,92.880000,113.630000,906.300000,14.450000,173.020000,48.090000 -13,2023-08-16 20:00:00,0.000000,29.700000,27.000000,16.000000,355.000000,92.990000,113.980000,906.960000,14.670000,173.460000,48.580000 -13,2023-08-16 21:00:00,0.000000,29.700000,27.000000,16.000000,355.000000,93.080000,113.980000,906.960000,14.840000,173.460000,48.940000 -13,2023-08-16 22:00:00,0.000000,29.700000,27.000000,16.000000,355.000000,93.140000,113.980000,906.960000,14.980000,173.460000,49.220000 -13,2023-08-16 23:00:00,0.000000,21.500000,41.000000,7.000000,53.000000,92.850000,113.980000,906.960000,9.140000,173.460000,35.830000 -13,2023-08-17 00:00:00,0.000000,21.500000,41.000000,7.000000,53.000000,92.590000,113.980000,906.960000,8.810000,173.460000,34.990000 -13,2023-08-17 01:00:00,0.000000,21.500000,41.000000,7.000000,53.000000,92.370000,113.980000,906.960000,8.540000,173.460000,34.270000 -13,2023-08-17 02:00:00,0.000000,21.500000,41.000000,7.000000,53.000000,92.170000,113.980000,906.960000,8.300000,173.460000,33.640000 -13,2023-08-17 03:00:00,0.000000,21.500000,41.000000,7.000000,53.000000,92.000000,113.980000,906.960000,8.100000,173.460000,33.090000 -13,2023-08-17 04:00:00,0.000000,21.500000,41.000000,7.000000,53.000000,91.840000,113.980000,906.960000,7.930000,173.460000,32.620000 -13,2023-08-17 05:00:00,0.000000,17.400000,55.000000,7.000000,86.000000,91.330000,113.980000,906.960000,7.370000,173.460000,31.070000 -13,2023-08-17 06:00:00,0.000000,17.400000,55.000000,7.000000,86.000000,90.880000,114.090000,907.180000,6.920000,173.590000,29.760000 -13,2023-08-17 07:00:00,0.000000,17.400000,55.000000,7.000000,86.000000,90.490000,114.200000,907.410000,6.540000,173.730000,28.650000 -13,2023-08-17 08:00:00,0.000000,17.400000,55.000000,7.000000,86.000000,90.140000,114.300000,907.630000,6.220000,173.870000,27.710000 -13,2023-08-17 09:00:00,0.000000,17.400000,55.000000,7.000000,86.000000,89.840000,114.410000,907.860000,5.960000,174.000000,26.900000 -13,2023-08-17 10:00:00,0.000000,17.400000,55.000000,7.000000,86.000000,89.570000,114.520000,908.080000,5.730000,174.140000,26.200000 -13,2023-08-17 11:00:00,0.000000,24.900000,32.000000,17.000000,109.000000,89.940000,114.790000,908.620000,10.010000,174.470000,38.080000 -13,2023-08-17 12:00:00,0.000000,24.900000,32.000000,17.000000,109.000000,90.240000,115.050000,909.150000,10.450000,174.800000,39.170000 -13,2023-08-17 13:00:00,0.000000,24.900000,32.000000,17.000000,109.000000,90.490000,115.310000,909.690000,10.820000,175.120000,40.080000 -13,2023-08-17 14:00:00,0.000000,24.900000,32.000000,17.000000,109.000000,90.680000,115.570000,910.230000,11.130000,175.450000,40.830000 -13,2023-08-17 15:00:00,0.000000,24.900000,32.000000,17.000000,109.000000,90.840000,115.830000,910.770000,11.380000,175.780000,41.440000 -13,2023-08-17 16:00:00,0.000000,24.900000,32.000000,17.000000,109.000000,90.970000,116.100000,911.300000,11.590000,176.100000,41.950000 -13,2023-08-17 17:00:00,0.000000,29.700000,25.000000,23.000000,112.000000,91.660000,116.480000,912.090000,17.290000,176.580000,54.000000 -13,2023-08-17 18:00:00,0.000000,29.700000,25.000000,23.000000,112.000000,92.180000,116.860000,912.870000,18.610000,177.060000,56.540000 -13,2023-08-17 19:00:00,0.000000,29.700000,25.000000,23.000000,112.000000,92.570000,117.240000,913.660000,19.670000,177.530000,58.530000 -13,2023-08-17 20:00:00,0.000000,29.700000,25.000000,23.000000,112.000000,92.870000,117.630000,914.440000,20.520000,178.010000,60.080000 -13,2023-08-17 21:00:00,0.000000,29.700000,25.000000,23.000000,112.000000,93.100000,117.630000,914.440000,21.180000,178.010000,61.260000 -13,2023-08-17 22:00:00,0.000000,29.700000,25.000000,23.000000,112.000000,93.270000,117.630000,914.440000,21.690000,178.010000,62.150000 -13,2023-08-17 23:00:00,0.000000,23.800000,33.000000,14.000000,117.000000,93.170000,117.630000,914.440000,13.610000,178.010000,46.550000 -13,2023-08-18 00:00:00,0.000000,23.800000,33.000000,14.000000,117.000000,93.100000,117.630000,914.440000,13.460000,178.010000,46.220000 -13,2023-08-18 01:00:00,0.000000,23.800000,33.000000,14.000000,117.000000,93.030000,117.630000,914.440000,13.330000,178.010000,45.950000 -13,2023-08-18 02:00:00,0.000000,23.800000,33.000000,14.000000,117.000000,92.970000,117.630000,914.440000,13.220000,178.010000,45.710000 -13,2023-08-18 03:00:00,0.000000,23.800000,33.000000,14.000000,117.000000,92.920000,117.630000,914.440000,13.130000,178.010000,45.500000 -13,2023-08-18 04:00:00,0.000000,23.800000,33.000000,14.000000,117.000000,92.880000,117.630000,914.440000,13.050000,178.010000,45.330000 -13,2023-08-18 05:00:00,0.000000,21.200000,35.000000,11.000000,120.000000,92.740000,117.630000,914.440000,11.010000,178.010000,40.650000 -13,2023-08-18 06:00:00,0.000000,21.200000,35.000000,11.000000,120.000000,92.620000,117.890000,914.940000,10.830000,178.340000,40.240000 -13,2023-08-18 07:00:00,0.000000,21.200000,35.000000,11.000000,120.000000,92.520000,118.160000,915.440000,10.670000,178.670000,39.870000 -13,2023-08-18 08:00:00,0.000000,21.200000,35.000000,11.000000,120.000000,92.430000,118.430000,915.940000,10.540000,178.990000,39.560000 -13,2023-08-18 09:00:00,0.000000,21.200000,35.000000,11.000000,120.000000,92.350000,118.690000,916.440000,10.420000,179.320000,39.280000 -13,2023-08-18 10:00:00,0.000000,21.200000,35.000000,11.000000,120.000000,92.280000,118.960000,916.940000,10.320000,179.650000,39.050000 -13,2023-08-18 11:00:00,0.000000,27.300000,28.000000,8.000000,152.000000,92.370000,119.380000,917.740000,8.980000,180.170000,35.670000 -13,2023-08-18 12:00:00,0.000000,27.300000,28.000000,8.000000,152.000000,92.440000,119.810000,918.540000,9.070000,180.700000,35.920000 -13,2023-08-18 13:00:00,0.000000,27.300000,28.000000,8.000000,152.000000,92.490000,120.240000,919.340000,9.140000,181.220000,36.130000 -13,2023-08-18 14:00:00,0.000000,27.300000,28.000000,8.000000,152.000000,92.540000,120.660000,920.140000,9.200000,181.740000,36.300000 -13,2023-08-18 15:00:00,0.000000,27.300000,28.000000,8.000000,152.000000,92.580000,121.090000,920.940000,9.250000,182.260000,36.450000 -13,2023-08-18 16:00:00,0.000000,27.300000,28.000000,8.000000,152.000000,92.610000,121.510000,921.730000,9.290000,182.780000,36.570000 -13,2023-08-18 17:00:00,0.000000,26.600000,41.000000,18.000000,270.000000,92.430000,121.850000,922.360000,15.000000,183.190000,49.720000 -14,2023-08-03 00:00:00,0.000000,15.600000,66.000000,5.000000,64.000000,85.940000,118.400000,826.100000,3.080000,174.330000,16.780000 -14,2023-08-03 01:00:00,0.000000,15.600000,66.000000,5.000000,64.000000,85.880000,118.400000,826.100000,3.060000,174.330000,16.680000 -14,2023-08-03 02:00:00,0.000000,12.800000,79.000000,3.000000,65.000000,85.510000,118.400000,826.100000,2.630000,174.330000,14.860000 -14,2023-08-03 03:00:00,0.000000,12.800000,79.000000,3.000000,65.000000,85.180000,118.400000,826.100000,2.510000,174.330000,14.350000 -14,2023-08-03 04:00:00,0.000000,12.800000,79.000000,3.000000,65.000000,84.890000,118.400000,826.100000,2.410000,174.330000,13.910000 -14,2023-08-03 05:00:00,0.000000,11.600000,85.000000,0.000000,297.000000,84.530000,118.430000,826.180000,1.980000,174.380000,11.880000 -14,2023-08-03 06:00:00,0.000000,11.600000,85.000000,0.000000,297.000000,84.210000,118.470000,826.270000,1.890000,174.420000,11.470000 -14,2023-08-03 07:00:00,0.000000,11.600000,85.000000,0.000000,297.000000,83.920000,118.500000,826.350000,1.820000,174.460000,11.110000 -14,2023-08-03 08:00:00,0.000000,17.200000,61.000000,1.000000,22.000000,84.000000,118.630000,826.660000,1.930000,174.620000,11.680000 -14,2023-08-03 09:00:00,0.000000,17.200000,61.000000,1.000000,22.000000,84.070000,118.760000,826.970000,1.950000,174.770000,11.770000 -14,2023-08-03 10:00:00,0.000000,17.200000,61.000000,1.000000,22.000000,84.140000,118.890000,827.280000,1.970000,174.930000,11.870000 -14,2023-08-03 11:00:00,0.000000,22.700000,40.000000,5.000000,59.000000,84.880000,119.170000,827.940000,2.660000,175.270000,15.030000 -14,2023-08-03 12:00:00,0.000000,22.700000,40.000000,5.000000,59.000000,85.510000,119.440000,828.610000,2.910000,175.610000,16.080000 -14,2023-08-03 13:00:00,0.000000,22.700000,40.000000,5.000000,59.000000,86.070000,119.720000,829.280000,3.140000,175.940000,17.040000 -14,2023-08-03 14:00:00,0.000000,24.200000,38.000000,8.000000,32.000000,86.710000,120.040000,830.040000,4.000000,176.330000,20.370000 -14,2023-08-03 15:00:00,0.000000,24.200000,38.000000,8.000000,32.000000,87.260000,120.350000,830.790000,4.330000,176.710000,21.560000 -14,2023-08-03 16:00:00,0.000000,24.200000,38.000000,8.000000,32.000000,87.720000,120.670000,831.550000,4.620000,177.090000,22.610000 -14,2023-08-03 17:00:00,1.480000,20.600000,62.000000,5.000000,256.000000,68.000000,120.820000,831.920000,0.750000,177.280000,5.050000 -14,2023-08-03 18:00:00,0.000000,20.600000,62.000000,5.000000,256.000000,69.610000,120.980000,832.290000,0.790000,177.460000,5.320000 -14,2023-08-03 19:00:00,0.000000,20.600000,62.000000,5.000000,256.000000,71.090000,121.130000,832.670000,0.830000,177.650000,5.580000 -14,2023-08-03 20:00:00,0.000000,19.300000,71.000000,7.000000,202.000000,72.140000,121.240000,832.930000,0.960000,177.780000,6.370000 -14,2023-08-03 21:00:00,0.000000,19.300000,71.000000,7.000000,202.000000,73.120000,121.350000,833.190000,1.000000,177.920000,6.610000 -14,2023-08-03 22:00:00,0.000000,19.300000,71.000000,7.000000,202.000000,74.020000,121.350000,833.190000,1.040000,177.920000,6.860000 -14,2023-08-03 23:00:00,0.010000,15.600000,90.000000,6.000000,234.000000,74.030000,121.350000,833.190000,0.990000,177.920000,6.550000 -14,2023-08-04 00:00:00,0.000000,15.600000,90.000000,6.000000,234.000000,74.160000,121.350000,833.190000,0.990000,177.920000,6.590000 -14,2023-08-04 01:00:00,0.000000,15.600000,90.000000,6.000000,234.000000,74.290000,121.350000,833.190000,1.000000,177.920000,6.630000 -14,2023-08-04 02:00:00,0.000000,13.800000,99.000000,5.000000,244.000000,74.240000,121.350000,833.190000,0.950000,177.920000,6.310000 -14,2023-08-04 03:00:00,0.000000,13.800000,99.000000,5.000000,244.000000,74.190000,121.350000,833.190000,0.940000,177.920000,6.290000 -14,2023-08-04 04:00:00,0.000000,13.800000,99.000000,5.000000,244.000000,74.140000,121.350000,833.190000,0.940000,177.920000,6.280000 -14,2023-08-04 05:00:00,0.000000,12.600000,98.000000,5.000000,254.000000,74.140000,121.350000,833.200000,0.940000,177.920000,6.280000 -14,2023-08-04 06:00:00,0.000000,12.600000,98.000000,5.000000,254.000000,74.140000,121.360000,833.210000,0.940000,177.920000,6.280000 -14,2023-08-04 07:00:00,0.000000,12.600000,98.000000,5.000000,254.000000,74.140000,121.360000,833.220000,0.940000,177.930000,6.280000 -14,2023-08-04 08:00:00,0.000000,18.100000,72.000000,5.000000,273.000000,74.830000,121.430000,833.400000,0.980000,178.020000,6.490000 -14,2023-08-04 09:00:00,0.000000,18.100000,72.000000,5.000000,273.000000,75.460000,121.510000,833.580000,1.010000,178.110000,6.710000 -14,2023-08-04 10:00:00,0.000000,18.100000,72.000000,5.000000,273.000000,76.050000,121.580000,833.760000,1.050000,178.200000,6.940000 -14,2023-08-04 11:00:00,0.000000,23.900000,42.000000,7.000000,325.000000,77.910000,121.800000,834.300000,1.330000,178.470000,8.580000 -14,2023-08-04 12:00:00,0.000000,23.900000,42.000000,7.000000,325.000000,79.520000,122.020000,834.830000,1.540000,178.730000,9.740000 -14,2023-08-04 13:00:00,0.000000,23.900000,42.000000,7.000000,325.000000,80.920000,122.240000,835.370000,1.790000,179.000000,11.020000 -14,2023-08-04 14:00:00,0.000000,25.200000,37.000000,9.000000,336.000000,82.470000,122.500000,836.000000,2.370000,179.310000,13.830000 -14,2023-08-04 15:00:00,0.000000,25.200000,37.000000,9.000000,336.000000,83.780000,122.760000,836.620000,2.810000,179.620000,15.740000 -14,2023-08-04 16:00:00,0.000000,25.200000,37.000000,9.000000,336.000000,84.880000,123.010000,837.250000,3.260000,179.930000,17.610000 -14,2023-08-04 17:00:00,0.000000,25.900000,33.000000,8.000000,331.000000,85.990000,123.300000,837.950000,3.610000,180.280000,19.000000 -14,2023-08-04 18:00:00,0.000000,25.900000,33.000000,8.000000,331.000000,86.910000,123.580000,838.650000,4.120000,180.630000,20.900000 -14,2023-08-04 19:00:00,0.000000,25.900000,33.000000,8.000000,331.000000,87.690000,123.870000,839.340000,4.600000,180.970000,22.620000 -14,2023-08-04 20:00:00,0.000000,24.000000,38.000000,4.000000,336.000000,88.040000,124.110000,839.920000,3.950000,181.260000,20.300000 -14,2023-08-04 21:00:00,0.000000,24.000000,38.000000,4.000000,336.000000,88.340000,124.340000,840.500000,4.130000,181.540000,20.960000 -14,2023-08-04 22:00:00,0.000000,24.000000,38.000000,4.000000,336.000000,88.600000,124.340000,840.500000,4.290000,181.540000,21.520000 -14,2023-08-04 23:00:00,0.000000,18.200000,55.000000,5.000000,279.000000,88.500000,124.340000,840.500000,4.440000,181.540000,22.090000 -14,2023-08-05 00:00:00,0.000000,18.200000,55.000000,5.000000,279.000000,88.410000,124.340000,840.500000,4.390000,181.540000,21.890000 -14,2023-08-05 01:00:00,0.000000,18.200000,55.000000,5.000000,279.000000,88.340000,124.340000,840.500000,4.340000,181.540000,21.720000 -14,2023-08-05 02:00:00,0.000000,16.200000,69.000000,6.000000,300.000000,87.920000,124.340000,840.500000,4.300000,181.540000,21.580000 -14,2023-08-05 03:00:00,0.000000,16.200000,69.000000,6.000000,300.000000,87.560000,124.340000,840.500000,4.080000,181.540000,20.790000 -14,2023-08-05 04:00:00,0.000000,16.200000,69.000000,6.000000,300.000000,87.240000,124.340000,840.500000,3.900000,181.540000,20.130000 -14,2023-08-05 05:00:00,0.000000,16.400000,82.000000,6.000000,298.000000,86.570000,124.410000,840.720000,3.550000,181.630000,18.770000 -14,2023-08-05 06:00:00,0.000000,16.400000,82.000000,6.000000,298.000000,85.990000,124.480000,840.940000,3.270000,181.720000,17.670000 -14,2023-08-05 07:00:00,0.000000,16.400000,82.000000,6.000000,298.000000,85.480000,124.550000,841.160000,3.040000,181.810000,16.770000 -14,2023-08-05 08:00:00,0.000000,19.200000,65.000000,8.000000,326.000000,85.480000,124.720000,841.680000,3.370000,182.010000,18.070000 -14,2023-08-05 09:00:00,0.000000,19.200000,65.000000,8.000000,326.000000,85.480000,124.880000,842.200000,3.370000,182.220000,18.080000 -14,2023-08-05 10:00:00,0.000000,19.200000,65.000000,8.000000,326.000000,85.480000,125.050000,842.710000,3.370000,182.420000,18.080000 -14,2023-08-05 11:00:00,0.010000,20.200000,52.000000,10.000000,334.000000,85.540000,125.100000,843.460000,3.750000,182.530000,19.580000 -14,2023-08-05 12:00:00,0.000000,20.200000,52.000000,10.000000,334.000000,85.730000,125.340000,844.220000,3.860000,182.820000,19.980000 -14,2023-08-05 13:00:00,0.000000,20.200000,52.000000,10.000000,334.000000,85.900000,125.580000,844.970000,3.950000,183.120000,20.330000 -14,2023-08-05 14:00:00,0.910000,17.000000,76.000000,9.000000,322.000000,72.950000,121.730000,845.280000,1.090000,179.010000,7.220000 -14,2023-08-05 15:00:00,0.000000,17.000000,76.000000,9.000000,322.000000,73.660000,121.830000,845.590000,1.130000,179.140000,7.420000 -14,2023-08-05 16:00:00,0.000000,17.000000,76.000000,9.000000,322.000000,74.320000,121.930000,845.900000,1.160000,179.260000,7.630000 -14,2023-08-05 17:00:00,0.590000,15.500000,84.000000,7.000000,288.000000,67.360000,119.540000,846.080000,0.820000,176.680000,5.470000 -14,2023-08-05 18:00:00,0.000000,15.500000,84.000000,7.000000,288.000000,68.010000,119.600000,846.270000,0.840000,176.750000,5.580000 -14,2023-08-05 19:00:00,0.000000,15.500000,84.000000,7.000000,288.000000,68.620000,119.660000,846.460000,0.850000,176.830000,5.690000 -14,2023-08-05 20:00:00,0.000000,16.700000,73.000000,5.000000,271.000000,69.590000,119.770000,846.800000,0.790000,176.970000,5.310000 -14,2023-08-05 21:00:00,0.000000,16.700000,73.000000,5.000000,271.000000,70.490000,119.880000,847.140000,0.820000,177.100000,5.470000 -14,2023-08-05 22:00:00,0.000000,16.700000,73.000000,5.000000,271.000000,71.340000,119.880000,847.140000,0.840000,177.100000,5.620000 -14,2023-08-05 23:00:00,0.000000,13.600000,90.000000,5.000000,242.000000,71.540000,119.880000,847.140000,0.850000,177.100000,5.660000 -14,2023-08-06 00:00:00,0.000000,13.600000,90.000000,5.000000,242.000000,71.730000,119.880000,847.140000,0.850000,177.100000,5.700000 -14,2023-08-06 01:00:00,0.000000,13.600000,90.000000,5.000000,242.000000,71.910000,119.880000,847.140000,0.860000,177.100000,5.740000 -14,2023-08-06 02:00:00,0.000000,11.700000,98.000000,4.000000,255.000000,71.920000,119.880000,847.140000,0.820000,177.100000,5.460000 -14,2023-08-06 03:00:00,0.000000,11.700000,98.000000,4.000000,255.000000,71.920000,119.880000,847.140000,0.820000,177.100000,5.460000 -14,2023-08-06 04:00:00,0.000000,11.700000,98.000000,4.000000,255.000000,71.920000,119.880000,847.140000,0.820000,177.100000,5.460000 -14,2023-08-06 05:00:00,0.000000,10.600000,98.000000,2.000000,231.000000,71.930000,119.880000,847.150000,0.740000,177.110000,4.940000 -14,2023-08-06 06:00:00,0.000000,10.600000,98.000000,2.000000,231.000000,71.930000,119.880000,847.160000,0.740000,177.110000,4.940000 -14,2023-08-06 07:00:00,0.000000,10.600000,98.000000,2.000000,231.000000,71.930000,119.890000,847.170000,0.740000,177.110000,4.940000 -14,2023-08-06 08:00:00,0.010000,15.000000,79.000000,3.000000,148.000000,72.400000,119.930000,847.310000,0.790000,177.170000,5.290000 -14,2023-08-06 09:00:00,0.000000,15.000000,79.000000,3.000000,148.000000,72.850000,119.970000,847.450000,0.800000,177.220000,5.380000 -14,2023-08-06 10:00:00,0.000000,15.000000,79.000000,3.000000,148.000000,73.270000,120.010000,847.590000,0.820000,177.270000,5.480000 -14,2023-08-06 11:00:00,0.000000,19.200000,54.000000,6.000000,107.000000,74.640000,120.130000,847.990000,1.020000,177.430000,6.740000 -14,2023-08-06 12:00:00,0.000000,19.200000,54.000000,6.000000,107.000000,75.880000,120.250000,848.400000,1.090000,177.580000,7.190000 -14,2023-08-06 13:00:00,0.000000,19.200000,54.000000,6.000000,107.000000,77.000000,120.370000,848.800000,1.180000,177.730000,7.710000 -14,2023-08-06 14:00:00,0.000000,21.500000,38.000000,9.000000,82.000000,78.760000,120.560000,849.430000,1.580000,177.970000,9.960000 -14,2023-08-06 15:00:00,0.000000,21.500000,38.000000,9.000000,82.000000,80.290000,120.750000,850.050000,1.840000,178.210000,11.290000 -14,2023-08-06 16:00:00,0.000000,21.500000,38.000000,9.000000,82.000000,81.620000,120.940000,850.680000,2.140000,178.450000,12.740000 -14,2023-08-06 17:00:00,0.000000,21.900000,38.000000,11.000000,75.000000,82.840000,121.130000,851.320000,2.750000,178.690000,15.480000 -14,2023-08-06 18:00:00,0.000000,21.900000,38.000000,11.000000,75.000000,83.890000,121.320000,851.970000,3.150000,178.940000,17.150000 -14,2023-08-06 19:00:00,0.000000,21.900000,38.000000,11.000000,75.000000,84.780000,121.510000,852.610000,3.560000,179.180000,18.760000 -14,2023-08-06 20:00:00,0.000000,19.300000,44.000000,11.000000,79.000000,85.260000,121.660000,853.100000,3.800000,179.370000,19.680000 -14,2023-08-06 21:00:00,0.000000,19.300000,44.000000,11.000000,79.000000,85.670000,121.810000,853.600000,4.020000,179.560000,20.510000 -14,2023-08-06 22:00:00,0.000000,19.300000,44.000000,11.000000,79.000000,86.020000,121.810000,853.600000,4.220000,179.560000,21.260000 -14,2023-08-06 23:00:00,0.000000,14.200000,59.000000,7.000000,84.000000,86.020000,121.810000,853.600000,3.450000,179.560000,18.360000 -14,2023-08-07 00:00:00,0.000000,14.200000,59.000000,7.000000,84.000000,86.020000,121.810000,853.600000,3.450000,179.560000,18.360000 -14,2023-08-07 01:00:00,0.000000,14.200000,59.000000,7.000000,84.000000,86.020000,121.810000,853.600000,3.450000,179.560000,18.360000 -14,2023-08-07 02:00:00,0.000000,11.400000,69.000000,4.000000,93.000000,85.850000,121.810000,853.600000,2.900000,179.560000,16.110000 -14,2023-08-07 03:00:00,0.000000,11.400000,69.000000,4.000000,93.000000,85.690000,121.810000,853.600000,2.830000,179.560000,15.840000 -14,2023-08-07 04:00:00,0.000000,11.400000,69.000000,4.000000,93.000000,85.550000,121.810000,853.600000,2.780000,179.560000,15.600000 -14,2023-08-07 05:00:00,0.000000,9.900000,75.000000,3.000000,80.000000,85.290000,121.840000,853.690000,2.550000,179.600000,14.620000 -14,2023-08-07 06:00:00,0.000000,9.900000,75.000000,3.000000,80.000000,85.060000,121.880000,853.780000,2.470000,179.650000,14.260000 -14,2023-08-07 07:00:00,0.000000,9.900000,75.000000,3.000000,80.000000,84.860000,121.920000,853.880000,2.400000,179.690000,13.950000 -14,2023-08-07 08:00:00,0.000000,14.600000,54.000000,4.000000,103.000000,84.940000,122.010000,854.120000,2.550000,179.810000,14.640000 -14,2023-08-07 09:00:00,0.000000,14.600000,54.000000,4.000000,103.000000,85.020000,122.110000,854.350000,2.580000,179.920000,14.760000 -14,2023-08-07 10:00:00,0.000000,14.600000,54.000000,4.000000,103.000000,85.090000,122.200000,854.590000,2.610000,180.040000,14.870000 -14,2023-08-07 11:00:00,0.000000,20.100000,40.000000,7.000000,94.000000,85.620000,122.370000,855.030000,3.260000,180.250000,17.620000 -14,2023-08-07 12:00:00,0.000000,20.100000,40.000000,7.000000,94.000000,86.080000,122.550000,855.460000,3.480000,180.460000,18.490000 -14,2023-08-07 13:00:00,0.000000,20.100000,40.000000,7.000000,94.000000,86.490000,122.720000,855.900000,3.690000,180.680000,19.290000 -14,2023-08-07 14:00:00,0.000000,22.700000,36.000000,10.000000,101.000000,87.090000,122.940000,856.450000,4.670000,180.940000,22.870000 -14,2023-08-07 15:00:00,0.000000,22.700000,36.000000,10.000000,101.000000,87.600000,123.150000,856.990000,5.020000,181.210000,24.080000 -14,2023-08-07 16:00:00,0.000000,22.700000,36.000000,10.000000,101.000000,88.030000,123.370000,857.540000,5.340000,181.470000,25.150000 -14,2023-08-07 17:00:00,0.000000,23.000000,34.000000,12.000000,93.000000,88.490000,123.600000,858.110000,6.310000,181.750000,28.210000 -14,2023-08-07 18:00:00,0.000000,23.000000,34.000000,12.000000,93.000000,88.870000,123.820000,858.690000,6.670000,182.030000,29.290000 -14,2023-08-07 19:00:00,0.000000,23.000000,34.000000,12.000000,93.000000,89.190000,124.050000,859.260000,6.980000,182.300000,30.220000 -14,2023-08-07 20:00:00,0.000000,20.800000,37.000000,12.000000,85.000000,89.290000,124.240000,859.740000,7.080000,182.540000,30.520000 -14,2023-08-07 21:00:00,0.000000,20.800000,37.000000,12.000000,85.000000,89.370000,124.430000,860.220000,7.170000,182.770000,30.780000 -14,2023-08-07 22:00:00,0.000000,20.800000,37.000000,12.000000,85.000000,89.440000,124.430000,860.220000,7.240000,182.770000,30.990000 -14,2023-08-07 23:00:00,0.000000,17.300000,43.000000,10.000000,94.000000,89.440000,124.430000,860.220000,6.550000,182.770000,28.950000 -14,2023-08-08 00:00:00,0.000000,17.300000,43.000000,10.000000,94.000000,89.440000,124.430000,860.220000,6.550000,182.770000,28.950000 -14,2023-08-08 01:00:00,0.000000,17.300000,43.000000,10.000000,94.000000,89.440000,124.430000,860.220000,6.550000,182.770000,28.950000 -14,2023-08-08 02:00:00,0.000000,15.600000,47.000000,9.000000,139.000000,89.360000,124.430000,860.220000,6.150000,182.770000,27.740000 -14,2023-08-08 03:00:00,0.000000,15.600000,47.000000,9.000000,139.000000,89.280000,124.430000,860.220000,6.080000,182.770000,27.540000 -14,2023-08-08 04:00:00,0.000000,15.600000,47.000000,9.000000,139.000000,89.220000,124.430000,860.220000,6.030000,182.770000,27.360000 -14,2023-08-08 05:00:00,0.000000,14.300000,53.000000,8.000000,163.000000,89.020000,124.530000,860.430000,5.570000,182.880000,25.930000 -14,2023-08-08 06:00:00,0.000000,14.300000,53.000000,8.000000,163.000000,88.850000,124.620000,860.640000,5.440000,183.000000,25.490000 -14,2023-08-08 07:00:00,0.000000,14.300000,53.000000,8.000000,163.000000,88.700000,124.720000,860.860000,5.320000,183.120000,25.110000 -14,2023-08-08 08:00:00,0.000000,17.700000,42.000000,10.000000,154.000000,88.700000,124.870000,861.180000,5.880000,183.290000,26.930000 -14,2023-08-08 09:00:00,0.000000,17.700000,42.000000,10.000000,154.000000,88.700000,125.020000,861.510000,5.880000,183.470000,26.930000 -14,2023-08-08 10:00:00,0.000000,17.700000,42.000000,10.000000,154.000000,88.700000,125.160000,861.830000,5.880000,183.650000,26.940000 -14,2023-08-08 11:00:00,0.000000,21.200000,33.000000,12.000000,132.000000,89.010000,125.370000,862.300000,6.810000,183.900000,29.760000 -14,2023-08-08 12:00:00,0.000000,21.200000,33.000000,12.000000,132.000000,89.280000,125.590000,862.770000,7.070000,184.160000,30.540000 -14,2023-08-08 13:00:00,0.000000,21.200000,33.000000,12.000000,132.000000,89.500000,125.800000,863.240000,7.300000,184.410000,31.210000 -14,2023-08-08 14:00:00,0.000000,21.900000,30.000000,14.000000,105.000000,89.820000,126.030000,863.750000,8.460000,184.690000,34.430000 -14,2023-08-08 15:00:00,0.000000,21.900000,30.000000,14.000000,105.000000,90.090000,126.260000,864.260000,8.790000,184.970000,35.320000 -14,2023-08-08 16:00:00,0.000000,21.900000,30.000000,14.000000,105.000000,90.310000,126.490000,864.770000,9.070000,185.240000,36.090000 -14,2023-08-08 17:00:00,0.000000,21.100000,31.000000,15.000000,106.000000,90.440000,126.710000,865.250000,9.720000,185.500000,37.750000 -14,2023-08-08 18:00:00,0.000000,21.100000,31.000000,15.000000,106.000000,90.550000,126.920000,865.730000,9.860000,185.760000,38.130000 -14,2023-08-08 19:00:00,0.000000,21.100000,31.000000,15.000000,106.000000,90.630000,127.140000,866.210000,9.990000,186.020000,38.450000 -14,2023-08-08 20:00:00,0.000000,19.700000,35.000000,11.000000,106.000000,90.630000,127.330000,866.620000,8.160000,186.250000,33.690000 -14,2023-08-08 21:00:00,0.000000,19.700000,35.000000,11.000000,106.000000,90.630000,127.520000,867.040000,8.160000,186.470000,33.690000 -14,2023-08-08 22:00:00,0.000000,19.700000,35.000000,11.000000,106.000000,90.630000,127.520000,867.040000,8.160000,186.470000,33.690000 -14,2023-08-08 23:00:00,0.000000,16.400000,47.000000,9.000000,106.000000,90.430000,127.520000,867.040000,7.170000,186.470000,30.880000 -14,2023-08-09 00:00:00,0.000000,16.400000,47.000000,9.000000,106.000000,90.240000,127.520000,867.040000,6.980000,186.470000,30.340000 -14,2023-08-09 01:00:00,0.000000,16.400000,47.000000,9.000000,106.000000,90.080000,127.520000,867.040000,6.820000,186.470000,29.870000 -14,2023-08-09 02:00:00,0.000000,14.900000,54.000000,9.000000,110.000000,89.770000,127.520000,867.040000,6.530000,186.470000,28.990000 -14,2023-08-09 03:00:00,0.000000,14.900000,54.000000,9.000000,110.000000,89.500000,127.520000,867.040000,6.270000,186.470000,28.220000 -14,2023-08-09 04:00:00,0.000000,14.900000,54.000000,9.000000,110.000000,89.260000,127.520000,867.040000,6.060000,186.470000,27.550000 -14,2023-08-09 05:00:00,0.000000,13.700000,61.000000,8.000000,98.000000,88.890000,127.600000,867.240000,5.460000,186.580000,25.660000 -14,2023-08-09 06:00:00,0.000000,13.700000,61.000000,8.000000,98.000000,88.560000,127.690000,867.440000,5.210000,186.680000,24.840000 -14,2023-08-09 07:00:00,0.000000,13.700000,61.000000,8.000000,98.000000,88.270000,127.780000,867.640000,5.000000,186.790000,24.130000 -14,2023-08-09 08:00:00,0.000000,18.300000,47.000000,13.000000,104.000000,88.270000,127.940000,868.000000,6.440000,186.980000,28.720000 -14,2023-08-09 09:00:00,0.000000,18.300000,47.000000,13.000000,104.000000,88.270000,128.100000,868.360000,6.440000,187.170000,28.730000 -14,2023-08-09 10:00:00,0.000000,18.300000,47.000000,13.000000,104.000000,88.270000,128.260000,868.730000,6.440000,187.370000,28.730000 -14,2023-08-09 11:00:00,0.000000,21.600000,35.000000,18.000000,125.000000,88.630000,128.500000,869.270000,8.710000,187.660000,35.210000 -14,2023-08-09 12:00:00,0.000000,21.600000,35.000000,18.000000,125.000000,88.920000,128.750000,869.820000,9.090000,187.950000,36.220000 -14,2023-08-09 13:00:00,0.000000,21.600000,35.000000,18.000000,125.000000,89.170000,128.990000,870.370000,9.420000,188.240000,37.080000 -14,2023-08-09 14:00:00,0.000000,20.900000,36.000000,18.000000,133.000000,89.320000,129.220000,870.880000,9.620000,188.510000,37.600000 -14,2023-08-09 15:00:00,0.000000,20.900000,36.000000,18.000000,133.000000,89.440000,129.440000,871.400000,9.790000,188.780000,38.040000 -14,2023-08-09 16:00:00,0.000000,20.900000,36.000000,18.000000,133.000000,89.540000,129.670000,871.920000,9.930000,189.050000,38.410000 -14,2023-08-09 17:00:00,0.030000,19.200000,44.000000,15.000000,110.000000,89.540000,129.850000,872.320000,8.540000,189.270000,34.790000 -14,2023-08-09 18:00:00,0.000000,19.200000,44.000000,15.000000,110.000000,89.540000,130.030000,872.730000,8.540000,189.480000,34.800000 -14,2023-08-09 19:00:00,0.000000,19.200000,44.000000,15.000000,110.000000,89.540000,130.210000,873.140000,8.540000,189.700000,34.800000 -14,2023-08-09 20:00:00,0.000000,19.100000,45.000000,13.000000,89.000000,89.540000,130.390000,873.530000,7.720000,189.910000,32.560000 -14,2023-08-09 21:00:00,0.000000,19.100000,45.000000,13.000000,89.000000,89.540000,130.560000,873.930000,7.720000,190.120000,32.560000 -14,2023-08-09 22:00:00,0.000000,19.100000,45.000000,13.000000,89.000000,89.540000,130.560000,873.930000,7.720000,190.120000,32.560000 -14,2023-08-09 23:00:00,0.000000,18.200000,45.000000,9.000000,100.000000,89.530000,130.560000,873.930000,6.300000,190.120000,28.390000 -14,2023-08-10 00:00:00,0.000000,18.200000,45.000000,9.000000,100.000000,89.520000,130.560000,873.930000,6.290000,190.120000,28.370000 -14,2023-08-10 01:00:00,0.000000,18.200000,45.000000,9.000000,100.000000,89.510000,130.560000,873.930000,6.290000,190.120000,28.350000 -14,2023-08-10 02:00:00,0.000000,17.300000,46.000000,7.000000,100.000000,89.470000,130.560000,873.930000,5.650000,190.120000,26.340000 -14,2023-08-10 03:00:00,0.000000,17.300000,46.000000,7.000000,100.000000,89.430000,130.560000,873.930000,5.620000,190.120000,26.240000 -14,2023-08-10 04:00:00,0.000000,17.300000,46.000000,7.000000,100.000000,89.400000,130.560000,873.930000,5.590000,190.120000,26.160000 -14,2023-08-10 05:00:00,0.000000,16.300000,50.000000,8.000000,95.000000,89.270000,130.680000,874.480000,5.780000,190.280000,26.750000 -14,2023-08-10 06:00:00,0.000000,16.300000,50.000000,8.000000,95.000000,89.160000,130.810000,875.040000,5.680000,190.440000,26.460000 -14,2023-08-10 07:00:00,0.000000,16.300000,50.000000,8.000000,95.000000,89.060000,130.930000,875.590000,5.600000,190.600000,26.200000 -14,2023-08-10 08:00:00,0.030000,18.300000,48.000000,9.000000,106.000000,88.340000,130.320000,875.940000,5.310000,189.970000,25.240000 -14,2023-08-10 09:00:00,0.000000,18.300000,48.000000,9.000000,106.000000,88.340000,130.460000,876.590000,5.310000,190.170000,25.240000 -14,2023-08-10 10:00:00,0.000000,18.300000,48.000000,9.000000,106.000000,88.340000,130.600000,877.250000,5.310000,190.360000,25.250000 -14,2023-08-10 11:00:00,1.220000,17.800000,65.000000,9.000000,99.000000,65.850000,110.900000,865.160000,0.860000,167.970000,5.640000 -14,2023-08-10 12:00:00,0.000000,17.800000,65.000000,9.000000,99.000000,67.520000,110.990000,865.590000,0.910000,168.100000,5.970000 -14,2023-08-10 13:00:00,0.000000,17.800000,65.000000,9.000000,99.000000,69.060000,111.080000,866.010000,0.960000,168.220000,6.260000 -14,2023-08-10 14:00:00,3.140000,16.600000,83.000000,8.000000,90.000000,35.510000,82.220000,834.000000,0.020000,131.920000,0.070000 -14,2023-08-10 15:00:00,0.000000,16.600000,83.000000,8.000000,90.000000,37.480000,82.260000,834.190000,0.030000,131.980000,0.100000 -14,2023-08-10 16:00:00,0.000000,16.600000,83.000000,8.000000,90.000000,39.390000,82.300000,834.380000,0.050000,132.040000,0.150000 -14,2023-08-10 17:00:00,2.050000,16.600000,84.000000,6.000000,79.000000,26.570000,70.300000,813.530000,0.000000,115.620000,0.010000 -14,2023-08-10 18:00:00,0.000000,16.600000,84.000000,6.000000,79.000000,28.460000,70.340000,813.710000,0.000000,115.680000,0.010000 -14,2023-08-10 19:00:00,0.000000,16.600000,84.000000,6.000000,79.000000,30.320000,70.380000,813.890000,0.010000,115.740000,0.020000 -14,2023-08-10 20:00:00,0.000000,16.600000,84.000000,6.000000,79.000000,32.160000,70.420000,814.070000,0.010000,115.800000,0.030000 -14,2023-08-10 21:00:00,0.000000,16.600000,84.000000,6.000000,79.000000,33.960000,70.420000,814.070000,0.010000,115.800000,0.040000 -14,2023-08-10 22:00:00,0.000000,16.600000,84.000000,6.000000,79.000000,35.730000,70.420000,814.070000,0.020000,115.800000,0.060000 -14,2023-08-10 23:00:00,0.220000,13.700000,97.000000,3.000000,169.000000,34.340000,69.230000,811.820000,0.010000,114.130000,0.040000 -14,2023-08-11 00:00:00,0.000000,13.700000,97.000000,3.000000,169.000000,34.630000,69.230000,811.820000,0.010000,114.130000,0.040000 -14,2023-08-11 01:00:00,0.000000,13.700000,97.000000,3.000000,169.000000,34.920000,69.230000,811.820000,0.010000,114.130000,0.040000 -14,2023-08-11 02:00:00,0.000000,13.700000,97.000000,3.000000,169.000000,35.200000,69.230000,811.820000,0.010000,114.130000,0.040000 -14,2023-08-11 03:00:00,0.000000,13.700000,97.000000,3.000000,169.000000,35.480000,69.230000,811.820000,0.020000,114.130000,0.050000 -14,2023-08-11 04:00:00,0.000000,13.700000,97.000000,3.000000,169.000000,35.760000,69.230000,811.820000,0.020000,114.130000,0.050000 -14,2023-08-11 05:00:00,0.070000,11.500000,98.000000,3.000000,198.000000,35.940000,69.240000,811.830000,0.020000,114.140000,0.050000 -14,2023-08-11 06:00:00,0.000000,11.500000,98.000000,3.000000,198.000000,36.110000,69.240000,811.850000,0.020000,114.140000,0.050000 -14,2023-08-11 07:00:00,0.000000,11.500000,98.000000,3.000000,198.000000,36.280000,69.240000,811.870000,0.020000,114.150000,0.060000 -14,2023-08-11 08:00:00,0.000000,11.500000,98.000000,3.000000,198.000000,36.450000,69.250000,811.880000,0.020000,114.150000,0.060000 -14,2023-08-11 09:00:00,0.000000,11.500000,98.000000,3.000000,198.000000,36.620000,69.250000,811.900000,0.020000,114.160000,0.060000 -14,2023-08-11 10:00:00,0.000000,11.500000,98.000000,3.000000,198.000000,36.790000,69.250000,811.920000,0.020000,114.160000,0.060000 -14,2023-08-11 11:00:00,0.100000,18.600000,69.000000,3.000000,120.000000,39.350000,69.330000,812.320000,0.040000,114.280000,0.110000 -14,2023-08-11 12:00:00,0.000000,18.600000,69.000000,3.000000,120.000000,41.830000,69.410000,812.730000,0.060000,114.400000,0.170000 -14,2023-08-11 13:00:00,0.000000,18.600000,69.000000,3.000000,120.000000,44.230000,69.500000,813.130000,0.080000,114.520000,0.260000 -14,2023-08-11 14:00:00,0.000000,18.600000,69.000000,3.000000,120.000000,46.540000,69.580000,813.540000,0.120000,114.640000,0.370000 -14,2023-08-11 15:00:00,0.000000,18.600000,69.000000,3.000000,120.000000,48.760000,69.660000,813.940000,0.160000,114.760000,0.500000 -14,2023-08-11 16:00:00,0.000000,18.600000,69.000000,3.000000,120.000000,50.890000,69.740000,814.350000,0.210000,114.880000,0.650000 -14,2023-08-11 17:00:00,0.000000,23.200000,45.000000,6.000000,66.000000,54.980000,69.930000,815.300000,0.380000,115.160000,1.560000 -14,2023-08-11 18:00:00,0.000000,23.200000,45.000000,6.000000,66.000000,58.750000,70.120000,816.260000,0.510000,115.440000,2.560000 -14,2023-08-11 19:00:00,0.000000,23.200000,45.000000,6.000000,66.000000,62.190000,70.310000,817.210000,0.630000,115.720000,3.340000 -14,2023-08-11 20:00:00,0.000000,23.200000,45.000000,6.000000,66.000000,65.320000,70.490000,818.170000,0.720000,116.000000,3.930000 -14,2023-08-11 21:00:00,0.000000,23.200000,45.000000,6.000000,66.000000,68.140000,70.490000,818.170000,0.800000,116.000000,4.380000 -14,2023-08-11 22:00:00,0.000000,23.200000,45.000000,6.000000,66.000000,70.680000,70.490000,818.170000,0.860000,116.000000,4.770000 -14,2023-08-11 23:00:00,0.000000,16.600000,75.000000,7.000000,120.000000,71.510000,70.490000,818.170000,0.940000,116.000000,5.170000 -14,2023-08-12 00:00:00,0.000000,16.600000,75.000000,7.000000,120.000000,72.290000,70.490000,818.170000,0.960000,116.000000,5.310000 -14,2023-08-12 01:00:00,0.000000,16.600000,75.000000,7.000000,120.000000,73.010000,70.490000,818.170000,0.990000,116.000000,5.470000 -14,2023-08-12 02:00:00,0.000000,16.600000,75.000000,7.000000,120.000000,73.690000,70.490000,818.170000,1.020000,116.000000,5.630000 -14,2023-08-12 03:00:00,0.000000,16.600000,75.000000,7.000000,120.000000,74.320000,70.490000,818.170000,1.050000,116.000000,5.790000 -14,2023-08-12 04:00:00,0.000000,16.600000,75.000000,7.000000,120.000000,74.910000,70.490000,818.170000,1.080000,116.000000,5.970000 -14,2023-08-12 05:00:00,0.000000,13.500000,87.000000,6.000000,160.000000,75.060000,70.520000,818.270000,1.040000,116.040000,5.730000 -14,2023-08-12 06:00:00,0.000000,13.500000,87.000000,6.000000,160.000000,75.210000,70.550000,818.370000,1.050000,116.090000,5.780000 -14,2023-08-12 07:00:00,0.000000,13.500000,87.000000,6.000000,160.000000,75.350000,70.580000,818.470000,1.060000,116.130000,5.830000 -14,2023-08-12 08:00:00,0.000000,13.500000,87.000000,6.000000,160.000000,75.490000,70.610000,818.570000,1.070000,116.170000,5.870000 -14,2023-08-12 09:00:00,0.000000,13.500000,87.000000,6.000000,160.000000,75.620000,70.640000,818.670000,1.070000,116.210000,5.920000 -14,2023-08-12 10:00:00,0.000000,13.500000,87.000000,6.000000,160.000000,75.750000,70.670000,818.760000,1.080000,116.250000,5.970000 -14,2023-08-12 11:00:00,0.000000,21.600000,57.000000,6.000000,87.000000,76.930000,70.830000,819.310000,1.170000,116.480000,6.440000 -14,2023-08-12 12:00:00,0.000000,21.600000,57.000000,6.000000,87.000000,77.980000,70.990000,819.860000,1.270000,116.710000,6.960000 -14,2023-08-12 13:00:00,0.000000,21.600000,57.000000,6.000000,87.000000,78.930000,71.150000,820.410000,1.380000,116.950000,7.520000 -14,2023-08-12 14:00:00,0.000000,21.600000,57.000000,6.000000,87.000000,79.770000,71.310000,820.960000,1.500000,117.180000,8.100000 -14,2023-08-12 15:00:00,0.000000,21.600000,57.000000,6.000000,87.000000,80.530000,71.470000,821.510000,1.630000,117.410000,8.690000 -14,2023-08-12 16:00:00,0.000000,21.600000,57.000000,6.000000,87.000000,81.200000,71.630000,822.060000,1.750000,117.640000,9.280000 -14,2023-08-12 17:00:00,0.000000,24.300000,50.000000,10.000000,50.000000,82.200000,71.850000,822.810000,2.420000,117.950000,12.110000 -14,2023-08-12 18:00:00,0.000000,24.300000,50.000000,10.000000,50.000000,83.070000,72.070000,823.560000,2.690000,118.270000,13.220000 -14,2023-08-12 19:00:00,0.000000,24.300000,50.000000,10.000000,50.000000,83.810000,72.290000,824.310000,2.970000,118.580000,14.270000 -14,2023-08-12 20:00:00,0.000000,24.300000,50.000000,10.000000,50.000000,84.440000,72.510000,825.060000,3.230000,118.900000,15.250000 -14,2023-08-12 21:00:00,0.000000,24.300000,50.000000,10.000000,50.000000,84.980000,72.510000,825.060000,3.480000,118.900000,16.120000 -14,2023-08-12 22:00:00,0.000000,24.300000,50.000000,10.000000,50.000000,85.440000,72.510000,825.060000,3.700000,118.900000,16.920000 -14,2023-08-12 23:00:00,0.000000,17.100000,75.000000,3.000000,34.000000,85.270000,72.510000,825.060000,2.540000,118.900000,12.650000 -14,2023-08-13 00:00:00,0.000000,17.100000,75.000000,3.000000,34.000000,85.110000,72.510000,825.060000,2.490000,118.900000,12.440000 -14,2023-08-13 01:00:00,0.000000,17.100000,75.000000,3.000000,34.000000,84.970000,72.510000,825.060000,2.440000,118.900000,12.250000 -14,2023-08-13 02:00:00,0.000000,17.100000,75.000000,3.000000,34.000000,84.850000,72.510000,825.060000,2.400000,118.900000,12.090000 -14,2023-08-13 03:00:00,0.000000,17.100000,75.000000,3.000000,34.000000,84.750000,72.510000,825.060000,2.370000,118.900000,11.950000 -14,2023-08-13 04:00:00,0.000000,17.100000,75.000000,3.000000,34.000000,84.650000,72.510000,825.060000,2.340000,118.900000,11.830000 -14,2023-08-13 05:00:00,0.010000,13.900000,95.000000,3.000000,137.000000,83.690000,72.520000,825.090000,2.050000,118.910000,10.650000 -14,2023-08-13 06:00:00,0.000000,13.900000,95.000000,3.000000,137.000000,82.850000,72.530000,825.120000,1.840000,118.930000,9.730000 -14,2023-08-13 07:00:00,0.000000,13.900000,95.000000,3.000000,137.000000,82.120000,72.540000,825.150000,1.680000,118.950000,9.000000 -14,2023-08-13 08:00:00,0.000000,13.900000,95.000000,3.000000,137.000000,81.470000,72.560000,825.190000,1.550000,118.960000,8.420000 -14,2023-08-13 09:00:00,0.000000,13.900000,95.000000,3.000000,137.000000,80.900000,72.570000,825.220000,1.460000,118.980000,7.950000 -14,2023-08-13 10:00:00,0.000000,13.900000,95.000000,3.000000,137.000000,80.400000,72.580000,825.250000,1.380000,118.990000,7.570000 -14,2023-08-13 11:00:00,0.000000,25.800000,50.000000,7.000000,106.000000,81.530000,72.820000,825.910000,1.920000,119.330000,10.080000 -14,2023-08-13 12:00:00,0.000000,25.800000,50.000000,7.000000,106.000000,82.510000,73.060000,826.570000,2.160000,119.670000,11.130000 -14,2023-08-13 13:00:00,0.000000,25.800000,50.000000,7.000000,106.000000,83.350000,73.300000,827.230000,2.400000,120.010000,12.150000 -14,2023-08-13 14:00:00,0.000000,25.800000,50.000000,7.000000,106.000000,84.080000,73.540000,827.890000,2.640000,120.350000,13.130000 -14,2023-08-13 15:00:00,0.000000,25.800000,50.000000,7.000000,106.000000,84.700000,73.780000,828.560000,2.870000,120.690000,14.030000 -14,2023-08-13 16:00:00,0.000000,25.800000,50.000000,7.000000,106.000000,85.230000,74.020000,829.220000,3.090000,121.030000,14.870000 -14,2023-08-13 17:00:00,0.010000,28.000000,42.000000,16.000000,61.000000,86.180000,74.340000,830.090000,5.560000,121.480000,22.920000 -14,2023-08-13 18:00:00,0.000000,28.000000,42.000000,16.000000,61.000000,86.950000,74.650000,830.960000,6.200000,121.920000,24.790000 -14,2023-08-13 19:00:00,0.000000,28.000000,42.000000,16.000000,61.000000,87.580000,74.970000,831.840000,6.770000,122.370000,26.410000 -14,2023-08-13 20:00:00,0.000000,28.000000,42.000000,16.000000,61.000000,88.080000,75.290000,832.710000,7.280000,122.810000,27.780000 -14,2023-08-13 21:00:00,0.000000,28.000000,42.000000,16.000000,61.000000,88.480000,75.290000,832.710000,7.710000,122.810000,28.900000 -14,2023-08-13 22:00:00,0.000000,28.000000,42.000000,16.000000,61.000000,88.800000,75.290000,832.710000,8.080000,122.810000,29.830000 -14,2023-08-13 23:00:00,0.000000,18.700000,57.000000,6.000000,68.000000,88.640000,75.290000,832.710000,4.770000,122.810000,20.650000 -14,2023-08-14 00:00:00,0.000000,18.700000,57.000000,6.000000,68.000000,88.500000,75.290000,832.710000,4.670000,122.810000,20.350000 -14,2023-08-14 01:00:00,0.000000,18.700000,57.000000,6.000000,68.000000,88.370000,75.290000,832.710000,4.590000,122.810000,20.090000 -14,2023-08-14 02:00:00,0.000000,18.700000,57.000000,6.000000,68.000000,88.270000,75.290000,832.710000,4.520000,122.810000,19.860000 -14,2023-08-14 03:00:00,0.000000,18.700000,57.000000,6.000000,68.000000,88.170000,75.290000,832.710000,4.460000,122.810000,19.660000 -14,2023-08-14 04:00:00,0.000000,18.700000,57.000000,6.000000,68.000000,88.090000,75.290000,832.710000,4.400000,122.810000,19.490000 -14,2023-08-14 05:00:00,0.000000,14.400000,58.000000,2.000000,181.000000,87.950000,75.380000,832.900000,3.530000,122.940000,16.560000 -14,2023-08-14 06:00:00,0.000000,14.400000,58.000000,2.000000,181.000000,87.830000,75.470000,833.090000,3.470000,123.060000,16.350000 -14,2023-08-14 07:00:00,0.000000,14.400000,58.000000,2.000000,181.000000,87.710000,75.560000,833.280000,3.410000,123.190000,16.160000 -14,2023-08-14 08:00:00,0.000000,14.400000,58.000000,2.000000,181.000000,87.610000,75.650000,833.480000,3.360000,123.310000,15.990000 -14,2023-08-14 09:00:00,0.000000,14.400000,58.000000,2.000000,181.000000,87.520000,75.740000,833.670000,3.320000,123.440000,15.840000 -14,2023-08-14 10:00:00,0.000000,14.400000,58.000000,2.000000,181.000000,87.440000,75.830000,833.860000,3.280000,123.560000,15.700000 -14,2023-08-14 11:00:00,0.000000,25.400000,35.000000,8.000000,81.000000,88.030000,76.100000,834.450000,4.830000,123.950000,20.920000 -14,2023-08-14 12:00:00,0.000000,25.400000,35.000000,8.000000,81.000000,88.520000,76.380000,835.040000,5.180000,124.330000,22.030000 -14,2023-08-14 13:00:00,0.000000,25.400000,35.000000,8.000000,81.000000,88.930000,76.650000,835.620000,5.500000,124.710000,23.010000 -14,2023-08-14 14:00:00,0.000000,25.400000,35.000000,8.000000,81.000000,89.280000,76.930000,836.210000,5.780000,125.090000,23.850000 -14,2023-08-14 15:00:00,0.000000,25.400000,35.000000,8.000000,81.000000,89.570000,77.210000,836.800000,6.020000,125.470000,24.580000 -14,2023-08-14 16:00:00,0.000000,25.400000,35.000000,8.000000,81.000000,89.810000,77.480000,837.390000,6.240000,125.850000,25.210000 -14,2023-08-14 17:00:00,0.000000,27.700000,30.000000,12.000000,63.000000,90.320000,77.820000,838.110000,8.210000,126.320000,30.470000 -14,2023-08-14 18:00:00,0.000000,27.700000,30.000000,12.000000,63.000000,90.730000,78.160000,838.830000,8.700000,126.790000,31.740000 -14,2023-08-14 19:00:00,0.000000,27.700000,30.000000,12.000000,63.000000,91.060000,78.500000,839.560000,9.120000,127.260000,32.800000 -14,2023-08-14 20:00:00,0.000000,27.700000,30.000000,12.000000,63.000000,91.320000,78.840000,840.280000,9.480000,127.720000,33.680000 -14,2023-08-14 21:00:00,0.000000,27.700000,30.000000,12.000000,63.000000,91.540000,78.840000,840.280000,9.770000,127.720000,34.370000 -14,2023-08-14 22:00:00,0.000000,27.700000,30.000000,12.000000,63.000000,91.710000,78.840000,840.280000,10.010000,127.720000,34.920000 -14,2023-08-14 23:00:00,0.000000,17.900000,58.000000,5.000000,89.000000,91.170000,78.840000,840.280000,6.510000,127.720000,26.130000 -14,2023-08-15 00:00:00,0.000000,17.900000,58.000000,5.000000,89.000000,90.690000,78.840000,840.280000,6.090000,127.720000,24.930000 -14,2023-08-15 01:00:00,0.000000,17.900000,58.000000,5.000000,89.000000,90.280000,78.840000,840.280000,5.730000,127.720000,23.910000 -14,2023-08-15 02:00:00,0.000000,17.900000,58.000000,5.000000,89.000000,89.910000,78.840000,840.280000,5.440000,127.720000,23.050000 -14,2023-08-15 03:00:00,0.000000,17.900000,58.000000,5.000000,89.000000,89.590000,78.840000,840.280000,5.200000,127.720000,22.300000 -14,2023-08-15 04:00:00,0.000000,17.900000,58.000000,5.000000,89.000000,89.310000,78.840000,840.280000,4.990000,127.720000,21.670000 -14,2023-08-15 05:00:00,0.000000,13.700000,75.000000,3.000000,192.000000,88.670000,78.890000,840.390000,4.110000,127.790000,18.850000 -14,2023-08-15 06:00:00,0.000000,13.700000,75.000000,3.000000,192.000000,88.100000,78.940000,840.490000,3.790000,127.860000,17.760000 -14,2023-08-15 07:00:00,0.000000,13.700000,75.000000,3.000000,192.000000,87.590000,78.990000,840.600000,3.530000,127.930000,16.830000 -14,2023-08-15 08:00:00,0.000000,13.700000,75.000000,3.000000,192.000000,87.150000,79.040000,840.700000,3.310000,128.000000,16.050000 -14,2023-08-15 09:00:00,0.000000,13.700000,75.000000,3.000000,192.000000,86.750000,79.090000,840.800000,3.130000,128.060000,15.370000 -14,2023-08-15 10:00:00,0.000000,13.700000,75.000000,3.000000,192.000000,86.390000,79.140000,840.910000,2.970000,128.130000,14.790000 -14,2023-08-15 11:00:00,0.000000,27.500000,36.000000,9.000000,120.000000,87.240000,79.430000,841.530000,4.540000,128.540000,20.300000 -14,2023-08-15 12:00:00,0.000000,27.500000,36.000000,9.000000,120.000000,87.950000,79.730000,842.150000,5.020000,128.940000,21.850000 -14,2023-08-15 13:00:00,0.000000,27.500000,36.000000,9.000000,120.000000,88.530000,80.030000,842.770000,5.460000,129.350000,23.200000 -14,2023-08-15 14:00:00,0.000000,27.500000,36.000000,9.000000,120.000000,89.000000,80.320000,843.400000,5.840000,129.750000,24.380000 -14,2023-08-15 15:00:00,0.000000,27.500000,36.000000,9.000000,120.000000,89.390000,80.620000,844.020000,6.180000,130.150000,25.380000 -14,2023-08-15 16:00:00,0.000000,27.500000,36.000000,9.000000,120.000000,89.720000,80.910000,844.640000,6.470000,130.560000,26.230000 -14,2023-08-15 17:00:00,0.000000,32.600000,31.000000,11.000000,107.000000,90.460000,81.340000,845.540000,7.970000,131.140000,30.290000 -14,2023-08-15 18:00:00,0.000000,32.600000,31.000000,11.000000,107.000000,91.050000,81.770000,846.440000,8.660000,131.720000,32.080000 -14,2023-08-15 19:00:00,0.000000,32.600000,31.000000,11.000000,107.000000,91.500000,82.190000,847.340000,9.230000,132.300000,33.530000 -14,2023-08-15 20:00:00,0.000000,32.600000,31.000000,11.000000,107.000000,91.850000,82.620000,848.240000,9.700000,132.880000,34.700000 -14,2023-08-15 21:00:00,0.000000,32.600000,31.000000,11.000000,107.000000,92.120000,82.620000,848.240000,10.080000,132.880000,35.590000 -14,2023-08-15 22:00:00,0.000000,32.600000,31.000000,11.000000,107.000000,92.320000,82.620000,848.240000,10.380000,132.880000,36.280000 -14,2023-08-15 23:00:00,0.000000,24.200000,49.000000,8.000000,144.000000,91.950000,82.620000,848.240000,8.460000,132.880000,31.690000 -14,2023-08-16 00:00:00,0.000000,24.200000,49.000000,8.000000,144.000000,91.630000,82.620000,848.240000,8.090000,132.880000,30.740000 -14,2023-08-16 01:00:00,0.000000,24.200000,49.000000,8.000000,144.000000,91.360000,82.620000,848.240000,7.780000,132.880000,29.940000 -14,2023-08-16 02:00:00,0.000000,24.200000,49.000000,8.000000,144.000000,91.120000,82.620000,848.240000,7.530000,132.880000,29.280000 -14,2023-08-16 03:00:00,0.000000,24.200000,49.000000,8.000000,144.000000,90.930000,82.620000,848.240000,7.320000,132.880000,28.720000 -14,2023-08-16 04:00:00,0.000000,24.200000,49.000000,8.000000,144.000000,90.760000,82.620000,848.240000,7.140000,132.880000,28.250000 -14,2023-08-16 05:00:00,0.010000,21.300000,69.000000,9.000000,206.000000,89.980000,82.710000,848.410000,6.720000,133.000000,27.100000 -14,2023-08-16 06:00:00,0.000000,21.300000,69.000000,9.000000,206.000000,89.320000,82.790000,848.580000,6.120000,133.120000,25.400000 -14,2023-08-16 07:00:00,0.000000,21.300000,69.000000,9.000000,206.000000,88.770000,82.880000,848.750000,5.650000,133.230000,24.050000 -14,2023-08-16 08:00:00,0.000000,21.300000,69.000000,9.000000,206.000000,88.310000,82.960000,848.920000,5.290000,133.350000,22.950000 -14,2023-08-16 09:00:00,0.000000,21.300000,69.000000,9.000000,206.000000,87.920000,83.050000,849.090000,5.000000,133.460000,22.070000 -14,2023-08-16 10:00:00,0.000000,21.300000,69.000000,9.000000,206.000000,87.590000,83.140000,849.260000,4.770000,133.580000,21.350000 -14,2023-08-16 11:00:00,0.000000,32.500000,36.000000,6.000000,220.000000,88.470000,83.480000,849.940000,4.650000,134.040000,20.990000 -14,2023-08-16 12:00:00,0.000000,32.500000,36.000000,6.000000,220.000000,89.170000,83.820000,850.630000,5.150000,134.500000,22.590000 -14,2023-08-16 13:00:00,0.000000,32.500000,36.000000,6.000000,220.000000,89.740000,84.160000,851.310000,5.590000,134.960000,23.960000 -14,2023-08-16 14:00:00,0.000000,32.500000,36.000000,6.000000,220.000000,90.200000,84.500000,851.990000,5.960000,135.420000,25.110000 -14,2023-08-16 15:00:00,0.000000,32.500000,36.000000,6.000000,220.000000,90.560000,84.840000,852.670000,6.280000,135.880000,26.070000 -14,2023-08-16 16:00:00,0.000000,32.500000,36.000000,6.000000,220.000000,90.850000,85.180000,853.350000,6.550000,136.340000,26.860000 -14,2023-08-16 17:00:00,0.000000,35.600000,26.000000,9.000000,323.000000,91.770000,85.650000,854.280000,8.680000,136.970000,32.550000 -14,2023-08-16 18:00:00,0.000000,35.600000,26.000000,9.000000,323.000000,92.460000,86.120000,855.220000,9.570000,137.600000,34.800000 -14,2023-08-16 19:00:00,0.000000,35.600000,26.000000,9.000000,323.000000,92.990000,86.590000,856.160000,10.310000,138.230000,36.580000 -14,2023-08-16 20:00:00,0.000000,35.600000,26.000000,9.000000,323.000000,93.380000,87.060000,857.090000,10.890000,138.860000,37.980000 -14,2023-08-16 21:00:00,0.000000,35.600000,26.000000,9.000000,323.000000,93.680000,87.060000,857.090000,11.350000,138.860000,39.020000 -14,2023-08-16 22:00:00,0.000000,35.600000,26.000000,9.000000,323.000000,93.910000,87.060000,857.090000,11.710000,138.860000,39.820000 -14,2023-08-16 23:00:00,0.000000,25.000000,52.000000,4.000000,258.000000,93.280000,87.060000,857.090000,8.340000,138.860000,31.830000 -14,2023-08-17 00:00:00,0.000000,25.000000,52.000000,4.000000,258.000000,92.730000,87.060000,857.090000,7.730000,138.860000,30.250000 -14,2023-08-17 01:00:00,0.000000,25.000000,52.000000,4.000000,258.000000,92.270000,87.060000,857.090000,7.240000,138.860000,28.940000 -14,2023-08-17 02:00:00,0.000000,25.000000,52.000000,4.000000,258.000000,91.870000,87.060000,857.090000,6.840000,138.860000,27.840000 -14,2023-08-17 03:00:00,0.000000,25.000000,52.000000,4.000000,258.000000,91.530000,87.060000,857.090000,6.520000,138.860000,26.930000 -14,2023-08-17 04:00:00,0.000000,25.000000,52.000000,4.000000,258.000000,91.230000,87.060000,857.090000,6.250000,138.860000,26.160000 -14,2023-08-17 05:00:00,0.000000,21.700000,70.000000,6.000000,274.000000,90.390000,87.060000,857.090000,6.130000,138.860000,25.820000 -14,2023-08-17 06:00:00,0.000000,21.700000,70.000000,6.000000,274.000000,89.680000,87.150000,857.290000,5.540000,138.980000,24.060000 -14,2023-08-17 07:00:00,0.000000,21.700000,70.000000,6.000000,274.000000,89.080000,87.240000,857.480000,5.080000,139.100000,22.640000 -14,2023-08-17 08:00:00,0.000000,21.700000,70.000000,6.000000,274.000000,88.570000,87.330000,857.680000,4.720000,139.230000,21.500000 -14,2023-08-17 09:00:00,0.000000,21.700000,70.000000,6.000000,274.000000,88.140000,87.430000,857.870000,4.440000,139.350000,20.580000 -14,2023-08-17 10:00:00,0.000000,21.700000,70.000000,6.000000,274.000000,87.770000,87.520000,858.070000,4.210000,139.470000,19.820000 -14,2023-08-17 11:00:00,0.000000,31.700000,40.000000,6.000000,324.000000,88.410000,87.840000,858.770000,4.610000,139.910000,21.180000 -14,2023-08-17 12:00:00,0.000000,31.700000,40.000000,6.000000,324.000000,88.920000,88.170000,859.480000,4.960000,140.350000,22.340000 -14,2023-08-17 13:00:00,0.000000,31.700000,40.000000,6.000000,324.000000,89.340000,88.500000,860.180000,5.270000,140.790000,23.340000 -14,2023-08-17 14:00:00,0.000000,31.700000,40.000000,6.000000,324.000000,89.680000,88.830000,860.880000,5.530000,141.230000,24.170000 -14,2023-08-17 15:00:00,0.000000,31.700000,40.000000,6.000000,324.000000,89.950000,89.160000,861.590000,5.750000,141.670000,24.870000 -14,2023-08-17 16:00:00,0.000000,31.700000,40.000000,6.000000,324.000000,90.170000,89.490000,862.290000,5.940000,142.100000,25.460000 -14,2023-08-17 17:00:00,0.000000,33.400000,32.000000,10.000000,340.000000,90.810000,89.900000,863.170000,7.960000,142.650000,31.120000 -14,2023-08-17 18:00:00,0.000000,33.400000,32.000000,10.000000,340.000000,91.300000,90.300000,864.050000,8.540000,143.200000,32.660000 -14,2023-08-17 19:00:00,0.000000,33.400000,32.000000,10.000000,340.000000,91.680000,90.710000,864.920000,9.010000,143.740000,33.890000 -14,2023-08-17 20:00:00,0.000000,33.400000,32.000000,10.000000,340.000000,91.980000,91.120000,865.800000,9.400000,144.280000,34.880000 -14,2023-08-17 21:00:00,0.000000,33.400000,32.000000,10.000000,340.000000,92.200000,91.120000,865.800000,9.700000,144.280000,35.630000 -14,2023-08-17 22:00:00,0.000000,33.400000,32.000000,10.000000,340.000000,92.380000,91.120000,865.800000,9.950000,144.280000,36.210000 -14,2023-08-17 23:00:00,0.000000,24.300000,56.000000,4.000000,273.000000,91.840000,91.120000,865.800000,6.820000,144.280000,28.120000 -14,2023-08-18 00:00:00,0.000000,24.300000,56.000000,4.000000,273.000000,91.390000,91.120000,865.800000,6.390000,144.280000,26.890000 -14,2023-08-18 01:00:00,0.000000,24.300000,56.000000,4.000000,273.000000,90.990000,91.120000,865.800000,6.040000,144.280000,25.870000 -14,2023-08-18 02:00:00,0.000000,24.300000,56.000000,4.000000,273.000000,90.660000,91.120000,865.800000,5.760000,144.280000,25.020000 -14,2023-08-18 03:00:00,0.000000,24.300000,56.000000,4.000000,273.000000,90.370000,91.120000,865.800000,5.520000,144.280000,24.310000 -14,2023-08-18 04:00:00,0.000000,24.300000,56.000000,4.000000,273.000000,90.120000,91.120000,865.800000,5.330000,144.280000,23.710000 -14,2023-08-18 05:00:00,0.000000,20.500000,69.000000,7.000000,263.000000,89.460000,91.120000,865.800000,5.650000,144.280000,24.690000 -14,2023-08-18 06:00:00,0.000000,20.500000,69.000000,7.000000,263.000000,88.910000,91.250000,866.080000,5.210000,144.450000,23.350000 -14,2023-08-18 07:00:00,0.000000,20.500000,69.000000,7.000000,263.000000,88.440000,91.380000,866.360000,4.870000,144.630000,22.260000 -14,2023-08-18 08:00:00,0.000000,20.500000,69.000000,7.000000,263.000000,88.030000,91.510000,866.630000,4.600000,144.800000,21.380000 -14,2023-08-18 09:00:00,0.000000,20.500000,69.000000,7.000000,263.000000,87.690000,91.640000,866.910000,4.380000,144.970000,20.640000 -14,2023-08-18 10:00:00,0.000000,20.500000,69.000000,7.000000,263.000000,87.400000,91.770000,867.190000,4.200000,145.140000,20.040000 -14,2023-08-18 11:00:00,0.000000,31.200000,40.000000,7.000000,328.000000,88.090000,92.240000,868.200000,4.630000,145.760000,21.540000 -14,2023-08-18 12:00:00,0.000000,31.200000,40.000000,7.000000,328.000000,88.650000,92.710000,869.210000,5.020000,146.380000,22.840000 -14,2023-08-18 13:00:00,0.000000,31.200000,40.000000,7.000000,328.000000,89.110000,93.180000,870.230000,5.360000,147.000000,23.950000 -14,2023-08-18 14:00:00,0.000000,31.200000,40.000000,7.000000,328.000000,89.470000,93.650000,871.240000,5.650000,147.620000,24.890000 -14,2023-08-18 15:00:00,0.000000,31.200000,40.000000,7.000000,328.000000,89.770000,94.120000,872.250000,5.900000,148.240000,25.670000 -14,2023-08-18 16:00:00,0.000000,31.200000,40.000000,7.000000,328.000000,90.020000,94.590000,873.260000,6.110000,148.860000,26.330000 -14,2023-08-18 17:00:00,0.000000,32.200000,35.000000,9.000000,17.000000,90.470000,95.120000,874.420000,7.210000,149.570000,29.530000 -15,2023-08-03 00:00:00,0.000000,15.900000,62.000000,6.000000,97.000000,86.000000,118.400000,826.100000,3.270000,174.330000,17.540000 -15,2023-08-03 01:00:00,0.000000,15.900000,62.000000,6.000000,97.000000,86.000000,118.400000,826.100000,3.270000,174.330000,17.540000 -15,2023-08-03 02:00:00,0.000000,13.600000,68.000000,5.000000,101.000000,85.870000,118.400000,826.100000,3.050000,174.330000,16.660000 -15,2023-08-03 03:00:00,0.000000,13.600000,68.000000,5.000000,101.000000,85.750000,118.400000,826.100000,3.000000,174.330000,16.450000 -15,2023-08-03 04:00:00,0.000000,13.600000,68.000000,5.000000,101.000000,85.640000,118.400000,826.100000,2.960000,174.330000,16.270000 -15,2023-08-03 05:00:00,0.000000,12.900000,71.000000,5.000000,90.000000,85.470000,118.470000,826.280000,2.890000,174.420000,15.990000 -15,2023-08-03 06:00:00,0.000000,12.900000,71.000000,5.000000,90.000000,85.330000,118.530000,826.450000,2.830000,174.500000,15.740000 -15,2023-08-03 07:00:00,0.000000,12.900000,71.000000,5.000000,90.000000,85.190000,118.600000,826.630000,2.780000,174.580000,15.530000 -15,2023-08-03 08:00:00,0.000000,16.600000,58.000000,7.000000,89.000000,85.220000,118.720000,826.960000,3.090000,174.730000,16.800000 -15,2023-08-03 09:00:00,0.000000,16.600000,58.000000,7.000000,89.000000,85.240000,118.840000,827.280000,3.100000,174.870000,16.840000 -15,2023-08-03 10:00:00,0.000000,16.600000,58.000000,7.000000,89.000000,85.260000,118.960000,827.610000,3.110000,175.020000,16.880000 -15,2023-08-03 11:00:00,0.000000,21.000000,45.000000,9.000000,83.000000,85.690000,119.160000,828.170000,3.650000,175.280000,19.010000 -15,2023-08-03 12:00:00,0.000000,21.000000,45.000000,9.000000,83.000000,86.060000,119.370000,828.730000,3.840000,175.530000,19.750000 -15,2023-08-03 13:00:00,0.000000,21.000000,45.000000,9.000000,83.000000,86.380000,119.580000,829.290000,4.020000,175.790000,20.420000 -15,2023-08-03 14:00:00,0.000000,24.000000,39.000000,13.000000,55.000000,86.990000,119.860000,830.030000,5.360000,176.130000,25.050000 -15,2023-08-03 15:00:00,0.000000,24.000000,39.000000,13.000000,55.000000,87.500000,120.130000,830.780000,5.760000,176.470000,26.350000 -15,2023-08-03 16:00:00,0.000000,24.000000,39.000000,13.000000,55.000000,87.920000,120.410000,831.530000,6.120000,176.810000,27.480000 -15,2023-08-03 17:00:00,1.940000,20.700000,76.000000,8.000000,52.000000,59.180000,97.440000,831.770000,0.580000,150.740000,3.580000 -15,2023-08-03 18:00:00,0.000000,20.700000,76.000000,8.000000,52.000000,60.980000,97.530000,832.010000,0.650000,150.850000,4.060000 -15,2023-08-03 19:00:00,0.000000,20.700000,76.000000,8.000000,52.000000,62.670000,97.620000,832.250000,0.710000,150.970000,4.480000 -15,2023-08-03 20:00:00,0.390000,20.100000,67.000000,4.000000,63.000000,59.820000,94.180000,832.570000,0.490000,146.830000,2.910000 -15,2023-08-03 21:00:00,0.000000,20.100000,67.000000,4.000000,63.000000,61.700000,94.300000,832.880000,0.550000,146.990000,3.340000 -15,2023-08-03 22:00:00,0.000000,20.100000,67.000000,4.000000,63.000000,63.470000,94.300000,832.880000,0.600000,146.990000,3.700000 -15,2023-08-03 23:00:00,0.000000,15.300000,86.000000,1.000000,281.000000,63.930000,94.300000,832.880000,0.530000,146.990000,3.170000 -15,2023-08-04 00:00:00,0.000000,15.300000,86.000000,1.000000,281.000000,64.380000,94.300000,832.880000,0.540000,146.990000,3.250000 -15,2023-08-04 01:00:00,0.000000,15.300000,86.000000,1.000000,281.000000,64.820000,94.300000,832.880000,0.550000,146.990000,3.320000 -15,2023-08-04 02:00:00,0.000000,13.300000,93.000000,4.000000,248.000000,65.060000,94.300000,832.880000,0.650000,146.990000,4.000000 -15,2023-08-04 03:00:00,0.000000,13.300000,93.000000,4.000000,248.000000,65.300000,94.300000,832.880000,0.650000,146.990000,4.040000 -15,2023-08-04 04:00:00,0.000000,13.300000,93.000000,4.000000,248.000000,65.530000,94.300000,832.880000,0.660000,146.990000,4.080000 -15,2023-08-04 05:00:00,0.000000,11.700000,98.000000,5.000000,246.000000,65.580000,94.300000,832.890000,0.690000,146.990000,4.310000 -15,2023-08-04 06:00:00,0.000000,11.700000,98.000000,5.000000,246.000000,65.630000,94.300000,832.900000,0.690000,147.000000,4.320000 -15,2023-08-04 07:00:00,0.000000,11.700000,98.000000,5.000000,246.000000,65.680000,94.300000,832.910000,0.700000,147.000000,4.330000 -15,2023-08-04 08:00:00,0.000000,17.400000,75.000000,5.000000,271.000000,66.770000,94.360000,833.090000,0.720000,147.070000,4.520000 -15,2023-08-04 09:00:00,0.000000,17.400000,75.000000,5.000000,271.000000,67.810000,94.410000,833.260000,0.750000,147.140000,4.690000 -15,2023-08-04 10:00:00,0.000000,17.400000,75.000000,5.000000,271.000000,68.780000,94.460000,833.430000,0.770000,147.210000,4.840000 -15,2023-08-04 11:00:00,0.000000,21.900000,55.000000,7.000000,319.000000,70.800000,94.590000,833.840000,0.910000,147.380000,5.720000 -15,2023-08-04 12:00:00,0.000000,21.900000,55.000000,7.000000,319.000000,72.610000,94.720000,834.260000,0.970000,147.550000,6.090000 -15,2023-08-04 13:00:00,0.000000,21.900000,55.000000,7.000000,319.000000,74.240000,94.840000,834.670000,1.050000,147.720000,6.520000 -15,2023-08-04 14:00:00,0.000000,24.000000,45.000000,9.000000,297.000000,76.310000,95.020000,835.240000,1.300000,147.960000,7.970000 -15,2023-08-04 15:00:00,0.000000,24.000000,45.000000,9.000000,297.000000,78.110000,95.200000,835.810000,1.490000,148.190000,8.980000 -15,2023-08-04 16:00:00,0.000000,24.000000,45.000000,9.000000,297.000000,79.670000,95.370000,836.380000,1.730000,148.430000,10.150000 -15,2023-08-04 17:00:00,0.010000,26.300000,36.000000,10.000000,335.000000,81.570000,95.610000,837.150000,2.240000,148.740000,12.540000 -15,2023-08-04 18:00:00,0.000000,26.300000,36.000000,10.000000,335.000000,83.170000,95.840000,837.910000,2.730000,149.060000,14.650000 -15,2023-08-04 19:00:00,0.000000,26.300000,36.000000,10.000000,335.000000,84.510000,96.080000,838.670000,3.260000,149.370000,16.770000 -15,2023-08-04 20:00:00,0.000000,23.900000,44.000000,8.000000,339.000000,85.180000,96.250000,839.250000,3.230000,149.610000,16.670000 -15,2023-08-04 21:00:00,0.000000,23.900000,44.000000,8.000000,339.000000,85.750000,96.430000,839.830000,3.500000,149.850000,17.700000 -15,2023-08-04 22:00:00,0.000000,23.900000,44.000000,8.000000,339.000000,86.240000,96.430000,839.830000,3.750000,149.850000,18.630000 -15,2023-08-04 23:00:00,0.000000,19.300000,65.000000,8.000000,331.000000,86.240000,96.430000,839.830000,3.740000,149.850000,18.620000 -15,2023-08-05 00:00:00,0.000000,19.300000,65.000000,8.000000,331.000000,86.230000,96.430000,839.830000,3.740000,149.850000,18.610000 -15,2023-08-05 01:00:00,0.000000,19.300000,65.000000,8.000000,331.000000,86.230000,96.430000,839.830000,3.740000,149.850000,18.600000 -15,2023-08-05 02:00:00,0.000000,17.200000,81.000000,7.000000,284.000000,85.720000,96.430000,839.830000,3.310000,149.850000,17.000000 -15,2023-08-05 03:00:00,0.000000,17.200000,81.000000,7.000000,284.000000,85.290000,96.430000,839.830000,3.120000,149.850000,16.250000 -15,2023-08-05 04:00:00,0.000000,17.200000,81.000000,7.000000,284.000000,84.910000,96.430000,839.830000,2.960000,149.850000,15.620000 -15,2023-08-05 05:00:00,0.000000,15.600000,92.000000,7.000000,296.000000,84.020000,96.450000,839.870000,2.620000,149.870000,14.240000 -15,2023-08-05 06:00:00,0.000000,15.600000,92.000000,7.000000,296.000000,83.260000,96.470000,839.910000,2.370000,149.900000,13.170000 -15,2023-08-05 07:00:00,0.000000,15.600000,92.000000,7.000000,296.000000,82.600000,96.490000,839.940000,2.180000,149.920000,12.330000 -15,2023-08-05 08:00:00,0.000000,19.600000,58.000000,8.000000,318.000000,82.980000,96.610000,840.200000,2.410000,150.080000,13.320000 -15,2023-08-05 09:00:00,0.000000,19.600000,58.000000,8.000000,318.000000,83.310000,96.730000,840.450000,2.510000,150.240000,13.780000 -15,2023-08-05 10:00:00,0.000000,19.600000,58.000000,8.000000,318.000000,83.610000,96.850000,840.710000,2.610000,150.390000,14.210000 -15,2023-08-05 11:00:00,0.000000,24.200000,32.000000,10.000000,340.000000,84.880000,97.120000,841.250000,3.430000,150.730000,17.480000 -15,2023-08-05 12:00:00,0.000000,24.200000,32.000000,10.000000,340.000000,85.960000,97.380000,841.800000,3.980000,151.070000,19.520000 -15,2023-08-05 13:00:00,0.000000,24.200000,32.000000,10.000000,340.000000,86.860000,97.640000,842.340000,4.520000,151.410000,21.410000 -15,2023-08-05 14:00:00,0.000000,25.900000,25.000000,12.000000,353.000000,88.030000,97.970000,843.010000,5.910000,151.820000,25.880000 -15,2023-08-05 15:00:00,0.000000,25.900000,25.000000,12.000000,353.000000,88.990000,98.290000,843.670000,6.790000,152.240000,28.480000 -15,2023-08-05 16:00:00,0.000000,25.900000,25.000000,12.000000,353.000000,89.780000,98.610000,844.340000,7.600000,152.650000,30.760000 -15,2023-08-05 17:00:00,0.000000,25.500000,26.000000,12.000000,7.000000,90.350000,98.920000,844.980000,8.250000,153.040000,32.530000 -15,2023-08-05 18:00:00,0.000000,25.500000,26.000000,12.000000,7.000000,90.820000,99.230000,845.620000,8.820000,153.440000,34.040000 -15,2023-08-05 19:00:00,0.000000,25.500000,26.000000,12.000000,7.000000,91.210000,99.540000,846.260000,9.320000,153.840000,35.320000 -15,2023-08-05 20:00:00,0.000000,22.800000,37.000000,8.000000,19.000000,91.210000,99.760000,846.730000,7.620000,154.120000,30.900000 -15,2023-08-05 21:00:00,0.000000,22.800000,37.000000,8.000000,19.000000,91.210000,99.980000,847.190000,7.620000,154.410000,30.910000 -15,2023-08-05 22:00:00,0.000000,22.800000,37.000000,8.000000,19.000000,91.210000,99.980000,847.190000,7.620000,154.410000,30.910000 -15,2023-08-05 23:00:00,0.000000,17.300000,58.000000,3.000000,321.000000,90.760000,99.980000,847.190000,5.550000,154.410000,24.900000 -15,2023-08-06 00:00:00,0.000000,17.300000,58.000000,3.000000,321.000000,90.360000,99.980000,847.190000,5.250000,154.410000,23.930000 -15,2023-08-06 01:00:00,0.000000,17.300000,58.000000,3.000000,321.000000,90.010000,99.980000,847.190000,4.990000,154.410000,23.090000 -15,2023-08-06 02:00:00,0.000000,14.200000,72.000000,7.000000,318.000000,89.290000,99.980000,847.190000,5.500000,154.410000,24.740000 -15,2023-08-06 03:00:00,0.000000,14.200000,72.000000,7.000000,318.000000,88.660000,99.980000,847.190000,5.030000,154.410000,23.220000 -15,2023-08-06 04:00:00,0.000000,14.200000,72.000000,7.000000,318.000000,88.110000,99.980000,847.190000,4.650000,154.410000,21.960000 -15,2023-08-06 05:00:00,0.000000,13.100000,83.000000,7.000000,330.000000,87.280000,100.020000,847.270000,4.130000,154.450000,20.170000 -15,2023-08-06 06:00:00,0.000000,13.100000,83.000000,7.000000,330.000000,86.560000,100.050000,847.360000,3.720000,154.500000,18.710000 -15,2023-08-06 07:00:00,0.000000,13.100000,83.000000,7.000000,330.000000,85.930000,100.090000,847.440000,3.410000,154.540000,17.530000 -15,2023-08-06 08:00:00,0.000000,18.000000,66.000000,7.000000,357.000000,85.910000,100.180000,847.670000,3.400000,154.660000,17.510000 -15,2023-08-06 09:00:00,0.000000,18.000000,66.000000,7.000000,357.000000,85.900000,100.270000,847.910000,3.390000,154.780000,17.490000 -15,2023-08-06 10:00:00,0.000000,18.000000,66.000000,7.000000,357.000000,85.890000,100.360000,848.140000,3.390000,154.900000,17.470000 -15,2023-08-06 11:00:00,0.000000,22.700000,42.000000,12.000000,13.000000,86.410000,100.580000,848.670000,4.690000,155.180000,22.140000 -15,2023-08-06 12:00:00,0.000000,22.700000,42.000000,12.000000,13.000000,86.850000,100.790000,849.190000,4.990000,155.450000,23.150000 -15,2023-08-06 13:00:00,0.000000,22.700000,42.000000,12.000000,13.000000,87.220000,101.000000,849.720000,5.270000,155.730000,24.040000 -15,2023-08-06 14:00:00,0.000000,23.600000,34.000000,16.000000,28.000000,87.870000,101.260000,850.350000,7.070000,156.060000,29.480000 -15,2023-08-06 15:00:00,0.000000,23.600000,34.000000,16.000000,28.000000,88.410000,101.510000,850.990000,7.640000,156.390000,31.070000 -15,2023-08-06 16:00:00,0.000000,23.600000,34.000000,16.000000,28.000000,88.850000,101.770000,851.620000,8.140000,156.710000,32.440000 -15,2023-08-06 17:00:00,0.000000,22.700000,35.000000,17.000000,40.000000,89.150000,102.000000,852.210000,8.930000,157.020000,34.520000 -15,2023-08-06 18:00:00,0.000000,22.700000,35.000000,17.000000,40.000000,89.400000,102.240000,852.810000,9.250000,157.330000,35.350000 -15,2023-08-06 19:00:00,0.000000,22.700000,35.000000,17.000000,40.000000,89.600000,102.480000,853.400000,9.520000,157.630000,36.050000 -15,2023-08-06 20:00:00,0.000000,19.800000,42.000000,12.000000,48.000000,89.600000,102.660000,853.840000,7.400000,157.860000,30.500000 -15,2023-08-06 21:00:00,0.000000,19.800000,42.000000,12.000000,48.000000,89.600000,102.830000,854.280000,7.400000,158.090000,30.510000 -15,2023-08-06 22:00:00,0.000000,19.800000,42.000000,12.000000,48.000000,89.600000,102.830000,854.280000,7.400000,158.090000,30.510000 -15,2023-08-06 23:00:00,0.000000,14.500000,61.000000,6.000000,25.000000,89.210000,102.830000,854.280000,5.180000,158.090000,23.850000 -15,2023-08-07 00:00:00,0.000000,14.500000,61.000000,6.000000,25.000000,88.870000,102.830000,854.280000,4.930000,158.090000,23.040000 -15,2023-08-07 01:00:00,0.000000,14.500000,61.000000,6.000000,25.000000,88.570000,102.830000,854.280000,4.720000,158.090000,22.340000 -15,2023-08-07 02:00:00,0.000000,11.800000,75.000000,5.000000,20.000000,87.980000,102.830000,854.280000,4.120000,158.090000,20.280000 -15,2023-08-07 03:00:00,0.000000,11.800000,75.000000,5.000000,20.000000,87.460000,102.830000,854.280000,3.830000,158.090000,19.210000 -15,2023-08-07 04:00:00,0.000000,11.800000,75.000000,5.000000,20.000000,86.990000,102.830000,854.280000,3.580000,158.090000,18.300000 -15,2023-08-07 05:00:00,0.000000,10.400000,83.000000,2.000000,54.000000,86.410000,102.860000,854.350000,2.840000,158.130000,15.370000 -15,2023-08-07 06:00:00,0.000000,10.400000,83.000000,2.000000,54.000000,85.890000,102.890000,854.410000,2.630000,158.170000,14.530000 -15,2023-08-07 07:00:00,0.000000,10.400000,83.000000,2.000000,54.000000,85.420000,102.920000,854.480000,2.470000,158.210000,13.810000 -15,2023-08-07 08:00:00,0.000000,15.700000,58.000000,4.000000,110.000000,85.420000,103.030000,854.700000,2.730000,158.340000,14.930000 -15,2023-08-07 09:00:00,0.000000,15.700000,58.000000,4.000000,110.000000,85.420000,103.130000,854.930000,2.730000,158.470000,14.930000 -15,2023-08-07 10:00:00,0.000000,15.700000,58.000000,4.000000,110.000000,85.420000,103.240000,855.160000,2.730000,158.610000,14.940000 -15,2023-08-07 11:00:00,0.000000,22.100000,33.000000,10.000000,104.000000,86.250000,103.490000,855.700000,4.150000,158.920000,20.410000 -15,2023-08-07 12:00:00,0.000000,22.100000,33.000000,10.000000,104.000000,86.960000,103.730000,856.240000,4.590000,159.240000,21.940000 -15,2023-08-07 13:00:00,0.000000,22.100000,33.000000,10.000000,104.000000,87.560000,103.980000,856.780000,5.000000,159.550000,23.330000 -15,2023-08-07 14:00:00,0.000000,23.400000,29.000000,15.000000,74.000000,88.330000,104.270000,857.400000,7.180000,159.920000,29.970000 -15,2023-08-07 15:00:00,0.000000,23.400000,29.000000,15.000000,74.000000,88.960000,104.550000,858.020000,7.860000,160.280000,31.870000 -15,2023-08-07 16:00:00,0.000000,23.400000,29.000000,15.000000,74.000000,89.480000,104.840000,858.640000,8.470000,160.640000,33.520000 -15,2023-08-07 17:00:00,0.000000,22.500000,30.000000,20.000000,66.000000,89.860000,105.100000,859.220000,11.500000,160.980000,40.960000 -15,2023-08-07 18:00:00,0.000000,22.500000,30.000000,20.000000,66.000000,90.160000,105.370000,859.800000,12.010000,161.320000,42.150000 -15,2023-08-07 19:00:00,0.000000,22.500000,30.000000,20.000000,66.000000,90.410000,105.640000,860.380000,12.450000,161.650000,43.150000 -15,2023-08-07 20:00:00,0.000000,19.100000,34.000000,14.000000,67.000000,90.410000,105.840000,860.820000,9.200000,161.910000,35.470000 -15,2023-08-07 21:00:00,0.000000,19.100000,34.000000,14.000000,67.000000,90.410000,106.040000,861.260000,9.200000,162.170000,35.490000 -15,2023-08-07 22:00:00,0.000000,19.100000,34.000000,14.000000,67.000000,90.410000,106.040000,861.260000,9.200000,162.170000,35.490000 -15,2023-08-07 23:00:00,0.000000,13.500000,50.000000,6.000000,75.000000,90.160000,106.040000,861.260000,5.930000,162.170000,26.390000 -15,2023-08-08 00:00:00,0.000000,13.500000,50.000000,6.000000,75.000000,89.930000,106.040000,861.260000,5.740000,162.170000,25.800000 -15,2023-08-08 01:00:00,0.000000,13.500000,50.000000,6.000000,75.000000,89.720000,106.040000,861.260000,5.570000,162.170000,25.270000 -15,2023-08-08 02:00:00,0.000000,11.100000,61.000000,6.000000,116.000000,89.310000,106.040000,861.260000,5.250000,162.170000,24.250000 -15,2023-08-08 03:00:00,0.000000,11.100000,61.000000,6.000000,116.000000,88.940000,106.040000,861.260000,4.980000,162.170000,23.360000 -15,2023-08-08 04:00:00,0.000000,11.100000,61.000000,6.000000,116.000000,88.610000,106.040000,861.260000,4.750000,162.170000,22.590000 -15,2023-08-08 05:00:00,0.000000,10.600000,61.000000,7.000000,141.000000,88.300000,106.100000,861.390000,4.780000,162.240000,22.690000 -15,2023-08-08 06:00:00,0.000000,10.600000,61.000000,7.000000,141.000000,88.020000,106.160000,861.520000,4.590000,162.320000,22.060000 -15,2023-08-08 07:00:00,0.000000,10.600000,61.000000,7.000000,141.000000,87.770000,106.220000,861.650000,4.430000,162.390000,21.500000 -15,2023-08-08 08:00:00,0.000000,16.000000,45.000000,9.000000,144.000000,87.770000,106.340000,861.910000,4.900000,162.540000,23.110000 -15,2023-08-08 09:00:00,0.000000,16.000000,45.000000,9.000000,144.000000,87.770000,106.450000,862.170000,4.900000,162.690000,23.110000 -15,2023-08-08 10:00:00,0.000000,16.000000,45.000000,9.000000,144.000000,87.770000,106.570000,862.430000,4.900000,162.840000,23.120000 -15,2023-08-08 11:00:00,0.000000,22.600000,35.000000,11.000000,135.000000,88.210000,106.780000,862.900000,5.770000,163.100000,25.930000 -15,2023-08-08 12:00:00,0.000000,22.600000,35.000000,11.000000,135.000000,88.580000,106.990000,863.360000,6.090000,163.360000,26.910000 -15,2023-08-08 13:00:00,0.000000,22.600000,35.000000,11.000000,135.000000,88.900000,107.200000,863.830000,6.370000,163.630000,27.770000 -15,2023-08-08 14:00:00,0.000000,25.100000,30.000000,13.000000,107.000000,89.460000,107.460000,864.410000,7.630000,163.960000,31.410000 -15,2023-08-08 15:00:00,0.000000,25.100000,30.000000,13.000000,107.000000,89.920000,107.720000,864.990000,8.150000,164.290000,32.840000 -15,2023-08-08 16:00:00,0.000000,25.100000,30.000000,13.000000,107.000000,90.290000,107.980000,865.570000,8.600000,164.620000,34.050000 -15,2023-08-08 17:00:00,0.000000,25.400000,29.000000,16.000000,95.000000,90.670000,108.250000,866.170000,10.550000,164.960000,38.960000 -15,2023-08-08 18:00:00,0.000000,25.400000,29.000000,16.000000,95.000000,90.970000,108.520000,866.770000,11.020000,165.300000,40.080000 -15,2023-08-08 19:00:00,0.000000,25.400000,29.000000,16.000000,95.000000,91.210000,108.790000,867.370000,11.410000,165.640000,41.000000 -15,2023-08-08 20:00:00,0.000000,22.900000,34.000000,14.000000,89.000000,91.210000,109.010000,867.850000,10.310000,165.910000,38.430000 -15,2023-08-08 21:00:00,0.000000,22.900000,34.000000,14.000000,89.000000,91.210000,109.220000,868.330000,10.310000,166.190000,38.440000 -15,2023-08-08 22:00:00,0.000000,22.900000,34.000000,14.000000,89.000000,91.210000,109.220000,868.330000,10.310000,166.190000,38.440000 -15,2023-08-08 23:00:00,0.000000,19.000000,44.000000,11.000000,103.000000,91.030000,109.220000,868.330000,8.640000,166.190000,34.230000 -15,2023-08-09 00:00:00,0.000000,19.000000,44.000000,11.000000,103.000000,90.870000,109.220000,868.330000,8.450000,166.190000,33.720000 -15,2023-08-09 01:00:00,0.000000,19.000000,44.000000,11.000000,103.000000,90.730000,109.220000,868.330000,8.280000,166.190000,33.280000 -15,2023-08-09 02:00:00,0.000000,17.100000,52.000000,10.000000,124.000000,90.400000,109.220000,868.330000,7.510000,166.190000,31.180000 -15,2023-08-09 03:00:00,0.000000,17.100000,52.000000,10.000000,124.000000,90.120000,109.220000,868.330000,7.210000,166.190000,30.330000 -15,2023-08-09 04:00:00,0.000000,17.100000,52.000000,10.000000,124.000000,89.860000,109.220000,868.330000,6.950000,166.190000,29.590000 -15,2023-08-09 05:00:00,0.000000,15.000000,63.000000,8.000000,129.000000,89.380000,109.290000,868.510000,5.870000,166.270000,26.350000 -15,2023-08-09 06:00:00,0.000000,15.000000,63.000000,8.000000,129.000000,88.960000,109.360000,868.680000,5.520000,166.360000,25.270000 -15,2023-08-09 07:00:00,0.000000,15.000000,63.000000,8.000000,129.000000,88.590000,109.430000,868.850000,5.240000,166.450000,24.350000 -15,2023-08-09 08:00:00,0.000000,18.200000,55.000000,10.000000,127.000000,88.480000,109.530000,869.110000,5.700000,166.580000,25.840000 -15,2023-08-09 09:00:00,0.000000,18.200000,55.000000,10.000000,127.000000,88.380000,109.630000,869.370000,5.620000,166.710000,25.600000 -15,2023-08-09 10:00:00,0.000000,18.200000,55.000000,10.000000,127.000000,88.300000,109.730000,869.630000,5.550000,166.830000,25.390000 -15,2023-08-09 11:00:00,0.000000,22.300000,43.000000,12.000000,138.000000,88.400000,109.900000,870.050000,6.240000,167.050000,27.510000 -15,2023-08-09 12:00:00,0.000000,22.300000,43.000000,12.000000,138.000000,88.490000,110.060000,870.470000,6.320000,167.260000,27.760000 -15,2023-08-09 13:00:00,0.000000,22.300000,43.000000,12.000000,138.000000,88.570000,110.230000,870.900000,6.380000,167.470000,27.970000 -15,2023-08-09 14:00:00,0.000000,24.400000,35.000000,12.000000,131.000000,88.960000,110.440000,871.440000,6.750000,167.740000,29.070000 -15,2023-08-09 15:00:00,0.000000,24.400000,35.000000,12.000000,131.000000,89.280000,110.660000,871.990000,7.080000,168.010000,30.020000 -15,2023-08-09 16:00:00,0.000000,24.400000,35.000000,12.000000,131.000000,89.550000,110.870000,872.530000,7.350000,168.280000,30.820000 -15,2023-08-09 17:00:00,0.000000,24.800000,30.000000,14.000000,131.000000,89.990000,111.110000,873.140000,8.660000,168.580000,34.380000 -15,2023-08-09 18:00:00,0.000000,24.800000,30.000000,14.000000,131.000000,90.340000,111.340000,873.740000,9.110000,168.880000,35.560000 -15,2023-08-09 19:00:00,0.000000,24.800000,30.000000,14.000000,131.000000,90.630000,111.580000,874.340000,9.490000,169.180000,36.560000 -15,2023-08-09 20:00:00,0.000000,22.600000,33.000000,13.000000,125.000000,90.680000,111.780000,874.850000,9.090000,169.440000,35.540000 -15,2023-08-09 21:00:00,0.000000,22.600000,33.000000,13.000000,125.000000,90.720000,111.980000,875.350000,9.140000,169.690000,35.690000 -15,2023-08-09 22:00:00,0.000000,22.600000,33.000000,13.000000,125.000000,90.750000,111.980000,875.350000,9.190000,169.690000,35.800000 -15,2023-08-09 23:00:00,0.000000,19.000000,43.000000,12.000000,120.000000,90.650000,111.980000,875.350000,8.610000,169.690000,34.300000 -15,2023-08-10 00:00:00,0.000000,19.000000,43.000000,12.000000,120.000000,90.560000,111.980000,875.350000,8.500000,169.690000,34.010000 -15,2023-08-10 01:00:00,0.000000,19.000000,43.000000,12.000000,120.000000,90.480000,111.980000,875.350000,8.410000,169.690000,33.760000 -15,2023-08-10 02:00:00,0.000000,17.400000,46.000000,12.000000,122.000000,90.320000,111.980000,875.350000,8.210000,169.690000,33.240000 -15,2023-08-10 03:00:00,0.000000,17.400000,46.000000,12.000000,122.000000,90.180000,111.980000,875.350000,8.040000,169.690000,32.780000 -15,2023-08-10 04:00:00,0.000000,17.400000,46.000000,12.000000,122.000000,90.050000,111.980000,875.350000,7.900000,169.690000,32.390000 -15,2023-08-10 05:00:00,0.000000,16.000000,52.000000,11.000000,121.000000,89.790000,112.080000,875.590000,7.230000,169.820000,30.540000 -15,2023-08-10 06:00:00,0.000000,16.000000,52.000000,11.000000,121.000000,89.560000,112.190000,875.830000,7.000000,169.950000,29.870000 -15,2023-08-10 07:00:00,0.000000,16.000000,52.000000,11.000000,121.000000,89.360000,112.290000,876.070000,6.800000,170.080000,29.290000 -15,2023-08-10 08:00:00,0.000000,18.800000,46.000000,17.000000,134.000000,89.360000,112.430000,876.390000,9.200000,170.260000,35.860000 -15,2023-08-10 09:00:00,0.000000,18.800000,46.000000,17.000000,134.000000,89.360000,112.570000,876.710000,9.200000,170.440000,35.860000 -15,2023-08-10 10:00:00,0.000000,18.800000,46.000000,17.000000,134.000000,89.360000,112.710000,877.030000,9.200000,170.610000,35.870000 -15,2023-08-10 11:00:00,0.000000,23.100000,37.000000,17.000000,134.000000,89.510000,112.930000,877.520000,9.400000,170.880000,36.410000 -15,2023-08-10 12:00:00,0.000000,23.100000,37.000000,17.000000,134.000000,89.640000,113.140000,878.010000,9.580000,171.150000,36.850000 -15,2023-08-10 13:00:00,0.000000,23.100000,37.000000,17.000000,134.000000,89.740000,113.360000,878.490000,9.720000,171.420000,37.230000 -15,2023-08-10 14:00:00,0.000000,25.700000,33.000000,20.000000,152.000000,90.080000,113.620000,879.100000,11.880000,171.750000,42.410000 -15,2023-08-10 15:00:00,0.000000,25.700000,33.000000,20.000000,152.000000,90.360000,113.890000,879.710000,12.360000,172.080000,43.510000 -15,2023-08-10 16:00:00,0.000000,25.700000,33.000000,20.000000,152.000000,90.580000,114.160000,880.310000,12.750000,172.420000,44.410000 -15,2023-08-10 17:00:00,0.000000,24.600000,35.000000,22.000000,154.000000,90.640000,114.400000,880.860000,14.220000,172.720000,47.590000 -15,2023-08-10 18:00:00,0.000000,24.600000,35.000000,22.000000,154.000000,90.680000,114.640000,881.410000,14.310000,173.020000,47.800000 -15,2023-08-10 19:00:00,0.000000,24.600000,35.000000,22.000000,154.000000,90.720000,114.880000,881.960000,14.380000,173.320000,47.970000 -15,2023-08-10 20:00:00,0.000000,24.600000,35.000000,22.000000,154.000000,90.750000,115.120000,882.510000,14.440000,173.620000,48.110000 -15,2023-08-10 21:00:00,0.000000,24.600000,35.000000,22.000000,154.000000,90.770000,115.120000,882.510000,14.490000,173.620000,48.210000 -15,2023-08-10 22:00:00,0.000000,24.600000,35.000000,22.000000,154.000000,90.790000,115.120000,882.510000,14.530000,173.620000,48.300000 -15,2023-08-10 23:00:00,0.440000,17.600000,74.000000,7.000000,156.000000,89.880000,115.120000,882.510000,5.990000,173.620000,26.990000 -15,2023-08-11 00:00:00,0.000000,17.600000,74.000000,7.000000,156.000000,89.100000,115.120000,882.510000,5.360000,173.620000,24.990000 -15,2023-08-11 01:00:00,0.000000,17.600000,74.000000,7.000000,156.000000,88.440000,115.120000,882.510000,4.870000,173.620000,23.360000 -15,2023-08-11 02:00:00,0.000000,17.600000,74.000000,7.000000,156.000000,87.860000,115.120000,882.510000,4.490000,173.620000,22.040000 -15,2023-08-11 03:00:00,0.000000,17.600000,74.000000,7.000000,156.000000,87.370000,115.120000,882.510000,4.180000,173.620000,20.960000 -15,2023-08-11 04:00:00,0.000000,17.600000,74.000000,7.000000,156.000000,86.950000,115.120000,882.510000,3.940000,173.620000,20.060000 -15,2023-08-11 05:00:00,0.050000,15.400000,92.000000,9.000000,192.000000,85.720000,115.140000,882.570000,3.660000,173.650000,19.040000 -15,2023-08-11 06:00:00,0.000000,15.400000,92.000000,9.000000,192.000000,84.680000,115.160000,882.620000,3.170000,173.670000,17.120000 -15,2023-08-11 07:00:00,0.000000,15.400000,92.000000,9.000000,192.000000,83.790000,115.180000,882.670000,2.810000,173.700000,15.650000 -15,2023-08-11 08:00:00,0.000000,15.400000,92.000000,9.000000,192.000000,83.030000,115.200000,882.730000,2.550000,173.720000,14.510000 -15,2023-08-11 09:00:00,0.000000,15.400000,92.000000,9.000000,192.000000,82.380000,115.220000,882.780000,2.350000,173.740000,13.620000 -15,2023-08-11 10:00:00,0.000000,15.400000,92.000000,9.000000,192.000000,81.830000,115.240000,882.830000,2.200000,173.770000,12.910000 -15,2023-08-11 11:00:00,0.000000,24.200000,51.000000,15.000000,193.000000,82.790000,115.430000,883.400000,3.340000,174.020000,17.810000 -15,2023-08-11 12:00:00,0.000000,24.200000,51.000000,15.000000,193.000000,83.600000,115.630000,883.960000,3.710000,174.270000,19.240000 -15,2023-08-11 13:00:00,0.000000,24.200000,51.000000,15.000000,193.000000,84.280000,115.820000,884.520000,4.070000,174.520000,20.560000 -15,2023-08-11 14:00:00,0.000000,24.200000,51.000000,15.000000,193.000000,84.860000,116.020000,885.090000,4.400000,174.770000,21.760000 -15,2023-08-11 15:00:00,0.000000,24.200000,51.000000,15.000000,193.000000,85.340000,116.210000,885.650000,4.700000,175.020000,22.820000 -15,2023-08-11 16:00:00,0.000000,24.200000,51.000000,15.000000,193.000000,85.750000,116.410000,886.210000,4.980000,175.270000,23.760000 -15,2023-08-11 17:00:00,0.000000,27.100000,33.000000,16.000000,208.000000,86.930000,116.730000,887.130000,6.180000,175.670000,27.620000 -15,2023-08-11 18:00:00,0.000000,27.100000,33.000000,16.000000,208.000000,87.870000,117.050000,888.040000,7.070000,176.080000,30.290000 -15,2023-08-11 19:00:00,0.000000,27.100000,33.000000,16.000000,208.000000,88.640000,117.370000,888.960000,7.890000,176.480000,32.610000 -15,2023-08-11 20:00:00,0.000000,27.100000,33.000000,16.000000,208.000000,89.250000,117.680000,889.870000,8.610000,176.890000,34.590000 -15,2023-08-11 21:00:00,0.000000,27.100000,33.000000,16.000000,208.000000,89.740000,117.680000,889.870000,9.240000,176.890000,36.230000 -15,2023-08-11 22:00:00,0.000000,27.100000,33.000000,16.000000,208.000000,90.130000,117.680000,889.870000,9.780000,176.890000,37.590000 -15,2023-08-11 23:00:00,0.000000,19.900000,54.000000,7.000000,173.000000,89.880000,117.680000,889.870000,5.990000,176.890000,27.090000 -15,2023-08-12 00:00:00,0.000000,19.900000,54.000000,7.000000,173.000000,89.660000,117.680000,889.870000,5.810000,176.890000,26.510000 -15,2023-08-12 01:00:00,0.000000,19.900000,54.000000,7.000000,173.000000,89.470000,117.680000,889.870000,5.650000,176.890000,26.020000 -15,2023-08-12 02:00:00,0.000000,19.900000,54.000000,7.000000,173.000000,89.310000,117.680000,889.870000,5.520000,176.890000,25.600000 -15,2023-08-12 03:00:00,0.000000,19.900000,54.000000,7.000000,173.000000,89.170000,117.680000,889.870000,5.410000,176.890000,25.230000 -15,2023-08-12 04:00:00,0.000000,19.900000,54.000000,7.000000,173.000000,89.040000,117.680000,889.870000,5.310000,176.890000,24.920000 -15,2023-08-12 05:00:00,1.610000,17.000000,78.000000,9.000000,184.000000,59.200000,102.540000,872.350000,0.610000,158.510000,3.880000 -15,2023-08-12 06:00:00,0.000000,17.000000,78.000000,9.000000,184.000000,60.690000,102.580000,872.710000,0.670000,158.570000,4.300000 -15,2023-08-12 07:00:00,0.000000,17.000000,78.000000,9.000000,184.000000,62.090000,102.620000,873.080000,0.730000,158.630000,4.680000 -15,2023-08-12 08:00:00,0.000000,17.000000,78.000000,9.000000,184.000000,63.420000,102.660000,873.440000,0.770000,158.690000,5.000000 -15,2023-08-12 09:00:00,0.000000,17.000000,78.000000,9.000000,184.000000,64.670000,102.700000,873.800000,0.820000,158.760000,5.290000 -15,2023-08-12 10:00:00,0.000000,17.000000,78.000000,9.000000,184.000000,65.840000,102.740000,874.170000,0.860000,158.820000,5.530000 -15,2023-08-12 11:00:00,9.870000,18.600000,83.000000,3.000000,232.000000,16.700000,57.940000,764.810000,0.000000,97.430000,0.000000 -15,2023-08-12 12:00:00,0.000000,18.600000,83.000000,3.000000,232.000000,18.600000,57.970000,765.120000,0.000000,97.480000,0.000000 -15,2023-08-12 13:00:00,0.000000,18.600000,83.000000,3.000000,232.000000,20.480000,58.010000,765.430000,0.000000,97.540000,0.000000 -15,2023-08-12 14:00:00,0.000000,18.600000,83.000000,3.000000,232.000000,22.360000,58.040000,765.740000,0.000000,97.590000,0.000000 -15,2023-08-12 15:00:00,0.000000,18.600000,83.000000,3.000000,232.000000,24.210000,58.080000,766.050000,0.000000,97.650000,0.000000 -15,2023-08-12 16:00:00,0.000000,18.600000,83.000000,3.000000,232.000000,26.050000,58.110000,766.360000,0.000000,97.700000,0.000000 -15,2023-08-12 17:00:00,0.480000,20.500000,72.000000,3.000000,263.000000,26.320000,56.770000,761.600000,0.000000,95.700000,0.000000 -15,2023-08-12 18:00:00,0.000000,20.500000,72.000000,3.000000,263.000000,29.130000,56.830000,762.180000,0.000000,95.800000,0.010000 -15,2023-08-12 19:00:00,0.000000,20.500000,72.000000,3.000000,263.000000,31.880000,56.890000,762.760000,0.010000,95.900000,0.020000 -15,2023-08-12 20:00:00,0.000000,20.500000,72.000000,3.000000,263.000000,34.570000,56.960000,763.330000,0.010000,96.000000,0.030000 -15,2023-08-12 21:00:00,0.000000,20.500000,72.000000,3.000000,263.000000,37.190000,56.960000,763.330000,0.020000,96.000000,0.060000 -15,2023-08-12 22:00:00,0.000000,20.500000,72.000000,3.000000,263.000000,39.740000,56.960000,763.330000,0.040000,96.000000,0.100000 -15,2023-08-12 23:00:00,0.020000,15.700000,96.000000,9.000000,196.000000,40.090000,56.840000,763.110000,0.060000,95.830000,0.150000 -15,2023-08-13 00:00:00,0.000000,15.700000,96.000000,9.000000,196.000000,40.600000,56.840000,763.110000,0.060000,95.830000,0.160000 -15,2023-08-13 01:00:00,0.000000,15.700000,96.000000,9.000000,196.000000,41.120000,56.840000,763.110000,0.070000,95.830000,0.180000 -15,2023-08-13 02:00:00,0.000000,15.700000,96.000000,9.000000,196.000000,41.630000,56.840000,763.110000,0.070000,95.830000,0.200000 -15,2023-08-13 03:00:00,0.000000,15.700000,96.000000,9.000000,196.000000,42.130000,56.840000,763.110000,0.080000,95.830000,0.220000 -15,2023-08-13 04:00:00,0.000000,15.700000,96.000000,9.000000,196.000000,42.630000,56.840000,763.110000,0.090000,95.830000,0.240000 -15,2023-08-13 05:00:00,0.000000,12.900000,87.000000,10.000000,231.000000,43.950000,56.860000,763.180000,0.110000,95.870000,0.310000 -15,2023-08-13 06:00:00,0.000000,12.900000,87.000000,10.000000,231.000000,45.250000,56.890000,763.260000,0.140000,95.910000,0.380000 -15,2023-08-13 07:00:00,0.000000,12.900000,87.000000,10.000000,231.000000,46.510000,56.920000,763.330000,0.170000,95.950000,0.460000 -15,2023-08-13 08:00:00,0.000000,12.900000,87.000000,10.000000,231.000000,47.730000,56.940000,763.400000,0.200000,95.980000,0.550000 -15,2023-08-13 09:00:00,0.000000,12.900000,87.000000,10.000000,231.000000,48.920000,56.970000,763.480000,0.240000,96.020000,0.640000 -15,2023-08-13 10:00:00,0.000000,12.900000,87.000000,10.000000,231.000000,50.080000,56.990000,763.550000,0.270000,96.060000,0.740000 -15,2023-08-13 11:00:00,0.000000,20.300000,47.000000,16.000000,229.000000,54.490000,57.160000,764.030000,0.600000,96.310000,2.680000 -15,2023-08-13 12:00:00,0.000000,20.300000,47.000000,16.000000,229.000000,58.520000,57.330000,764.510000,0.830000,96.560000,4.000000 -15,2023-08-13 13:00:00,0.000000,20.300000,47.000000,16.000000,229.000000,62.170000,57.500000,764.990000,1.040000,96.810000,5.070000 -15,2023-08-13 14:00:00,0.000000,20.300000,47.000000,16.000000,229.000000,65.460000,57.670000,765.470000,1.200000,97.060000,5.880000 -15,2023-08-13 15:00:00,0.000000,20.300000,47.000000,16.000000,229.000000,68.390000,57.840000,765.950000,1.330000,97.300000,6.490000 -15,2023-08-13 16:00:00,0.000000,20.300000,47.000000,16.000000,229.000000,71.000000,58.000000,766.430000,1.450000,97.550000,7.020000 -15,2023-08-13 17:00:00,0.020000,25.600000,33.000000,16.000000,232.000000,74.520000,58.300000,767.260000,1.670000,97.980000,8.020000 -15,2023-08-13 18:00:00,0.000000,25.600000,33.000000,16.000000,232.000000,77.510000,58.590000,768.100000,2.030000,98.420000,9.490000 -15,2023-08-13 19:00:00,0.000000,25.600000,33.000000,16.000000,232.000000,80.010000,58.890000,768.930000,2.550000,98.850000,11.500000 -15,2023-08-13 20:00:00,0.000000,25.600000,33.000000,16.000000,232.000000,82.090000,59.180000,769.770000,3.230000,99.280000,13.910000 -15,2023-08-13 21:00:00,0.000000,25.600000,33.000000,16.000000,232.000000,83.820000,59.180000,769.770000,4.020000,99.280000,16.450000 -15,2023-08-13 22:00:00,0.000000,25.600000,33.000000,16.000000,232.000000,85.240000,59.180000,769.770000,4.870000,99.280000,18.980000 -15,2023-08-13 23:00:00,0.000000,22.000000,47.000000,18.000000,205.000000,85.710000,59.180000,769.770000,5.760000,99.280000,21.420000 -15,2023-08-14 00:00:00,0.000000,22.000000,47.000000,18.000000,205.000000,86.120000,59.180000,769.770000,6.090000,99.280000,22.290000 -15,2023-08-14 01:00:00,0.000000,22.000000,47.000000,18.000000,205.000000,86.450000,59.180000,769.770000,6.390000,99.280000,23.060000 -15,2023-08-14 02:00:00,0.000000,22.000000,47.000000,18.000000,205.000000,86.740000,59.180000,769.770000,6.650000,99.280000,23.720000 -15,2023-08-14 03:00:00,0.000000,22.000000,47.000000,18.000000,205.000000,86.970000,59.180000,769.770000,6.880000,99.280000,24.290000 -15,2023-08-14 04:00:00,0.000000,22.000000,47.000000,18.000000,205.000000,87.170000,59.180000,769.770000,7.080000,99.280000,24.780000 -15,2023-08-14 05:00:00,0.000000,23.900000,42.000000,17.000000,243.000000,87.570000,59.380000,770.110000,7.120000,99.570000,24.910000 -15,2023-08-14 06:00:00,0.000000,23.900000,42.000000,17.000000,243.000000,87.890000,59.580000,770.450000,7.460000,99.850000,25.770000 -15,2023-08-14 07:00:00,0.000000,23.900000,42.000000,17.000000,243.000000,88.160000,59.780000,770.780000,7.750000,100.140000,26.500000 -15,2023-08-14 08:00:00,0.000000,23.900000,42.000000,17.000000,243.000000,88.380000,59.980000,771.120000,8.000000,100.430000,27.130000 -15,2023-08-14 09:00:00,0.000000,23.900000,42.000000,17.000000,243.000000,88.570000,60.180000,771.460000,8.210000,100.720000,27.660000 -15,2023-08-14 10:00:00,0.000000,23.900000,42.000000,17.000000,243.000000,88.720000,60.380000,771.800000,8.390000,101.000000,28.110000 -15,2023-08-14 11:00:00,0.000000,27.100000,20.000000,25.000000,283.000000,90.030000,60.710000,772.360000,15.160000,101.480000,41.670000 -15,2023-08-14 12:00:00,0.000000,27.100000,20.000000,25.000000,283.000000,91.050000,61.050000,772.930000,17.540000,101.960000,45.830000 -15,2023-08-14 13:00:00,0.000000,27.100000,20.000000,25.000000,283.000000,91.840000,61.380000,773.490000,19.620000,102.440000,49.290000 -15,2023-08-14 14:00:00,0.000000,27.100000,20.000000,25.000000,283.000000,92.450000,61.710000,774.050000,21.390000,102.910000,52.120000 -15,2023-08-14 15:00:00,0.000000,27.100000,20.000000,25.000000,283.000000,92.920000,62.040000,774.620000,22.850000,103.390000,54.420000 -15,2023-08-14 16:00:00,0.000000,27.100000,20.000000,25.000000,283.000000,93.280000,62.380000,775.180000,24.040000,103.860000,56.260000 -15,2023-08-14 17:00:00,0.000000,27.600000,15.000000,31.000000,291.000000,93.900000,62.740000,775.800000,35.450000,104.380000,71.360000 -15,2023-08-14 18:00:00,0.000000,27.600000,15.000000,31.000000,291.000000,94.360000,63.110000,776.420000,37.810000,104.900000,74.300000 -15,2023-08-14 19:00:00,0.000000,27.600000,15.000000,31.000000,291.000000,94.710000,63.470000,777.030000,39.680000,105.420000,76.600000 -15,2023-08-14 20:00:00,0.000000,27.600000,15.000000,31.000000,291.000000,94.980000,63.840000,777.650000,41.140000,105.930000,78.410000 -15,2023-08-14 21:00:00,0.000000,27.600000,15.000000,31.000000,291.000000,95.180000,63.840000,777.650000,42.270000,105.930000,79.670000 -15,2023-08-14 22:00:00,0.000000,27.600000,15.000000,31.000000,291.000000,95.320000,63.840000,777.650000,43.130000,105.930000,80.630000 -15,2023-08-14 23:00:00,0.000000,22.300000,25.000000,18.000000,308.000000,95.150000,63.840000,777.650000,21.890000,105.930000,53.530000 -15,2023-08-15 00:00:00,0.000000,22.300000,25.000000,18.000000,308.000000,95.010000,63.840000,777.650000,21.450000,105.930000,52.860000 -15,2023-08-15 01:00:00,0.000000,22.300000,25.000000,18.000000,308.000000,94.880000,63.840000,777.650000,21.070000,105.930000,52.280000 -15,2023-08-15 02:00:00,0.000000,22.300000,25.000000,18.000000,308.000000,94.760000,63.840000,777.650000,20.740000,105.930000,51.770000 -15,2023-08-15 03:00:00,0.000000,22.300000,25.000000,18.000000,308.000000,94.660000,63.840000,777.650000,20.460000,105.930000,51.330000 -15,2023-08-15 04:00:00,0.000000,22.300000,25.000000,18.000000,308.000000,94.570000,63.840000,777.650000,20.210000,105.930000,50.940000 -15,2023-08-15 05:00:00,0.000000,18.900000,31.000000,16.000000,310.000000,94.290000,64.010000,778.020000,17.570000,106.180000,46.700000 -15,2023-08-15 06:00:00,0.000000,18.900000,31.000000,16.000000,310.000000,94.040000,64.190000,778.390000,16.980000,106.430000,45.730000 -15,2023-08-15 07:00:00,0.000000,18.900000,31.000000,16.000000,310.000000,93.820000,64.360000,778.750000,16.460000,106.680000,44.890000 -15,2023-08-15 08:00:00,0.000000,18.900000,31.000000,16.000000,310.000000,93.620000,64.540000,779.120000,16.020000,106.930000,44.170000 -15,2023-08-15 09:00:00,0.000000,18.900000,31.000000,16.000000,310.000000,93.450000,64.710000,779.490000,15.640000,107.180000,43.540000 -15,2023-08-15 10:00:00,0.000000,18.900000,31.000000,16.000000,310.000000,93.300000,64.880000,779.850000,15.320000,107.420000,43.000000 -15,2023-08-15 11:00:00,0.000000,22.400000,31.000000,19.000000,312.000000,93.220000,65.100000,780.310000,17.630000,107.730000,47.070000 -15,2023-08-15 12:00:00,0.000000,22.400000,31.000000,19.000000,312.000000,93.160000,65.320000,780.760000,17.470000,108.040000,46.860000 -15,2023-08-15 13:00:00,0.000000,22.400000,31.000000,19.000000,312.000000,93.100000,65.530000,781.220000,17.330000,108.350000,46.680000 -15,2023-08-15 14:00:00,0.000000,22.400000,31.000000,19.000000,312.000000,93.050000,65.750000,781.680000,17.210000,108.650000,46.530000 -15,2023-08-15 15:00:00,0.000000,22.400000,31.000000,19.000000,312.000000,93.010000,65.970000,782.130000,17.110000,108.960000,46.410000 -15,2023-08-15 16:00:00,0.000000,22.400000,31.000000,19.000000,312.000000,92.970000,66.180000,782.590000,17.020000,109.270000,46.320000 -15,2023-08-15 17:00:00,0.000000,23.600000,26.000000,17.000000,318.000000,92.970000,66.430000,783.110000,15.390000,109.620000,43.500000 -15,2023-08-15 18:00:00,0.000000,23.600000,26.000000,17.000000,318.000000,92.970000,66.680000,783.640000,15.390000,109.970000,43.560000 -15,2023-08-15 19:00:00,0.000000,23.600000,26.000000,17.000000,318.000000,92.970000,66.930000,784.160000,15.390000,110.330000,43.620000 -15,2023-08-15 20:00:00,0.000000,23.600000,26.000000,17.000000,318.000000,92.970000,67.180000,784.690000,15.390000,110.680000,43.670000 -15,2023-08-15 21:00:00,0.000000,23.600000,26.000000,17.000000,318.000000,92.970000,67.180000,784.690000,15.390000,110.680000,43.670000 -15,2023-08-15 22:00:00,0.000000,23.600000,26.000000,17.000000,318.000000,92.970000,67.180000,784.690000,15.390000,110.680000,43.670000 -15,2023-08-15 23:00:00,0.000000,16.800000,41.000000,4.000000,311.000000,92.690000,67.180000,784.690000,7.680000,110.680000,27.590000 -15,2023-08-16 00:00:00,0.000000,16.800000,41.000000,4.000000,311.000000,92.430000,67.180000,784.690000,7.410000,110.680000,26.920000 -15,2023-08-16 01:00:00,0.000000,16.800000,41.000000,4.000000,311.000000,92.200000,67.180000,784.690000,7.170000,110.680000,26.320000 -15,2023-08-16 02:00:00,0.000000,16.800000,41.000000,4.000000,311.000000,91.990000,67.180000,784.690000,6.960000,110.680000,25.780000 -15,2023-08-16 03:00:00,0.000000,16.800000,41.000000,4.000000,311.000000,91.800000,67.180000,784.690000,6.780000,110.680000,25.300000 -15,2023-08-16 04:00:00,0.000000,16.800000,41.000000,4.000000,311.000000,91.630000,67.180000,784.690000,6.610000,110.680000,24.870000 -15,2023-08-16 05:00:00,0.000000,11.500000,58.000000,5.000000,224.000000,91.100000,67.260000,784.830000,6.450000,110.780000,24.460000 -15,2023-08-16 06:00:00,0.000000,11.500000,58.000000,5.000000,224.000000,90.620000,67.330000,784.980000,6.030000,110.880000,23.330000 -15,2023-08-16 07:00:00,0.000000,11.500000,58.000000,5.000000,224.000000,90.190000,67.400000,785.130000,5.670000,110.980000,22.340000 -15,2023-08-16 08:00:00,0.000000,11.500000,58.000000,5.000000,224.000000,89.810000,67.470000,785.270000,5.360000,111.090000,21.490000 -15,2023-08-16 09:00:00,0.000000,11.500000,58.000000,5.000000,224.000000,89.460000,67.550000,785.420000,5.100000,111.190000,20.740000 -15,2023-08-16 10:00:00,0.000000,11.500000,58.000000,5.000000,224.000000,89.140000,67.620000,785.570000,4.870000,111.290000,20.080000 -15,2023-08-16 11:00:00,0.000000,22.800000,29.000000,10.000000,161.000000,89.570000,67.870000,786.080000,6.670000,111.640000,25.120000 -15,2023-08-16 12:00:00,0.000000,22.800000,29.000000,10.000000,161.000000,89.930000,68.120000,786.580000,7.020000,111.990000,26.080000 -15,2023-08-16 13:00:00,0.000000,22.800000,29.000000,10.000000,161.000000,90.240000,68.370000,787.090000,7.330000,112.340000,26.900000 -15,2023-08-16 14:00:00,0.000000,22.800000,29.000000,10.000000,161.000000,90.490000,68.620000,787.600000,7.600000,112.690000,27.620000 -15,2023-08-16 15:00:00,0.000000,22.800000,29.000000,10.000000,161.000000,90.700000,68.870000,788.110000,7.840000,113.040000,28.230000 -15,2023-08-16 16:00:00,0.000000,22.800000,29.000000,10.000000,161.000000,90.880000,69.120000,788.620000,8.040000,113.400000,28.760000 -15,2023-08-16 17:00:00,0.000000,27.900000,18.000000,8.000000,200.000000,91.690000,69.510000,789.410000,8.160000,113.940000,29.120000 -15,2023-08-16 18:00:00,0.000000,27.900000,18.000000,8.000000,200.000000,92.350000,69.900000,790.210000,8.960000,114.490000,31.070000 -15,2023-08-16 19:00:00,0.000000,27.900000,18.000000,8.000000,200.000000,92.880000,70.300000,791.000000,9.650000,115.030000,32.740000 -15,2023-08-16 20:00:00,0.000000,27.900000,18.000000,8.000000,200.000000,93.310000,70.690000,791.790000,10.250000,115.580000,34.140000 -15,2023-08-16 21:00:00,0.000000,27.900000,18.000000,8.000000,200.000000,93.660000,70.690000,791.790000,10.760000,115.580000,35.250000 -15,2023-08-16 22:00:00,0.000000,27.900000,18.000000,8.000000,200.000000,93.940000,70.690000,791.790000,11.190000,115.580000,36.160000 -15,2023-08-16 23:00:00,0.000000,21.600000,30.000000,14.000000,195.000000,93.800000,70.690000,791.790000,14.850000,115.580000,43.440000 -15,2023-08-17 00:00:00,0.000000,21.600000,30.000000,14.000000,195.000000,93.680000,70.690000,791.790000,14.600000,115.580000,42.980000 -15,2023-08-17 01:00:00,0.000000,21.600000,30.000000,14.000000,195.000000,93.570000,70.690000,791.790000,14.390000,115.580000,42.580000 -15,2023-08-17 02:00:00,0.000000,21.600000,30.000000,14.000000,195.000000,93.480000,70.690000,791.790000,14.200000,115.580000,42.220000 -15,2023-08-17 03:00:00,0.000000,21.600000,30.000000,14.000000,195.000000,93.400000,70.690000,791.790000,14.040000,115.580000,41.910000 -15,2023-08-17 04:00:00,0.000000,21.600000,30.000000,14.000000,195.000000,93.330000,70.690000,791.790000,13.900000,115.580000,41.640000 -15,2023-08-17 05:00:00,0.000000,20.200000,36.000000,11.000000,194.000000,93.100000,70.690000,791.790000,11.580000,115.580000,36.980000 -15,2023-08-17 06:00:00,0.000000,20.200000,36.000000,11.000000,194.000000,92.900000,70.860000,792.110000,11.260000,115.820000,36.340000 -15,2023-08-17 07:00:00,0.000000,20.200000,36.000000,11.000000,194.000000,92.720000,71.030000,792.430000,10.980000,116.060000,35.780000 -15,2023-08-17 08:00:00,0.000000,20.200000,36.000000,11.000000,194.000000,92.570000,71.210000,792.750000,10.740000,116.300000,35.300000 -15,2023-08-17 09:00:00,0.000000,20.200000,36.000000,11.000000,194.000000,92.430000,71.380000,793.070000,10.540000,116.540000,34.880000 -15,2023-08-17 10:00:00,0.000000,20.200000,36.000000,11.000000,194.000000,92.310000,71.560000,793.380000,10.360000,116.780000,34.520000 -15,2023-08-17 11:00:00,0.000000,28.200000,27.000000,14.000000,192.000000,92.480000,71.880000,793.970000,12.340000,117.220000,38.770000 -15,2023-08-17 12:00:00,0.000000,28.200000,27.000000,14.000000,192.000000,92.610000,72.200000,794.550000,12.570000,117.660000,39.310000 -15,2023-08-17 13:00:00,0.000000,28.200000,27.000000,14.000000,192.000000,92.720000,72.520000,795.140000,12.760000,118.100000,39.740000 -15,2023-08-17 14:00:00,0.000000,28.200000,27.000000,14.000000,192.000000,92.800000,72.840000,795.720000,12.910000,118.540000,40.100000 -15,2023-08-17 15:00:00,0.000000,28.200000,27.000000,14.000000,192.000000,92.860000,73.150000,796.310000,13.030000,118.980000,40.400000 -15,2023-08-17 16:00:00,0.000000,28.200000,27.000000,14.000000,192.000000,92.920000,73.470000,796.900000,13.120000,119.420000,40.650000 -15,2023-08-17 17:00:00,0.000000,31.700000,24.000000,9.000000,191.000000,93.230000,73.880000,797.640000,10.660000,119.980000,35.570000 -15,2023-08-17 18:00:00,0.000000,31.700000,24.000000,9.000000,191.000000,93.480000,74.290000,798.390000,11.040000,120.540000,36.450000 -15,2023-08-17 19:00:00,0.000000,31.700000,24.000000,9.000000,191.000000,93.670000,74.700000,799.130000,11.340000,121.090000,37.160000 -15,2023-08-17 20:00:00,0.000000,31.700000,24.000000,9.000000,191.000000,93.820000,75.100000,799.870000,11.580000,121.650000,37.730000 -15,2023-08-17 21:00:00,0.000000,31.700000,24.000000,9.000000,191.000000,93.940000,75.100000,799.870000,11.760000,121.650000,38.130000 -15,2023-08-17 22:00:00,0.000000,31.700000,24.000000,9.000000,191.000000,94.030000,75.100000,799.870000,11.910000,121.650000,38.450000 -15,2023-08-17 23:00:00,0.650000,22.700000,50.000000,15.000000,253.000000,89.830000,75.100000,799.870000,8.900000,121.650000,31.720000 -15,2023-08-18 00:00:00,0.000000,22.700000,50.000000,15.000000,253.000000,89.750000,75.100000,799.870000,8.800000,121.650000,31.480000 -15,2023-08-18 01:00:00,0.000000,22.700000,50.000000,15.000000,253.000000,89.690000,75.100000,799.870000,8.720000,121.650000,31.290000 -15,2023-08-18 02:00:00,0.000000,22.700000,50.000000,15.000000,253.000000,89.630000,75.100000,799.870000,8.650000,121.650000,31.120000 -15,2023-08-18 03:00:00,0.000000,22.700000,50.000000,15.000000,253.000000,89.590000,75.100000,799.870000,8.600000,121.650000,30.980000 -15,2023-08-18 04:00:00,0.000000,22.700000,50.000000,15.000000,253.000000,89.550000,75.100000,799.870000,8.550000,121.650000,30.870000 -15,2023-08-18 05:00:00,0.000000,19.600000,40.000000,21.000000,275.000000,89.550000,75.100000,799.870000,11.570000,121.650000,37.710000 -15,2023-08-18 06:00:00,0.000000,19.600000,40.000000,21.000000,275.000000,89.550000,75.330000,800.350000,11.570000,121.960000,37.750000 -15,2023-08-18 07:00:00,0.000000,19.600000,40.000000,21.000000,275.000000,89.550000,75.560000,800.830000,11.570000,122.270000,37.790000 -15,2023-08-18 08:00:00,0.000000,19.600000,40.000000,21.000000,275.000000,89.550000,75.780000,801.310000,11.570000,122.580000,37.820000 -15,2023-08-18 09:00:00,0.000000,19.600000,40.000000,21.000000,275.000000,89.550000,76.010000,801.780000,11.570000,122.900000,37.860000 -15,2023-08-18 10:00:00,0.000000,19.600000,40.000000,21.000000,275.000000,89.550000,76.240000,802.260000,11.570000,123.210000,37.900000 -15,2023-08-18 11:00:00,0.000000,22.400000,31.000000,15.000000,271.000000,89.850000,76.550000,802.910000,8.930000,123.630000,31.980000 -15,2023-08-18 12:00:00,0.000000,22.400000,31.000000,15.000000,271.000000,90.100000,76.860000,803.570000,9.250000,124.050000,32.790000 -15,2023-08-18 13:00:00,0.000000,22.400000,31.000000,15.000000,271.000000,90.310000,77.170000,804.220000,9.530000,124.480000,33.490000 -15,2023-08-18 14:00:00,0.000000,22.400000,31.000000,15.000000,271.000000,90.480000,77.480000,804.870000,9.770000,124.900000,34.080000 -15,2023-08-18 15:00:00,0.000000,22.400000,31.000000,15.000000,271.000000,90.620000,77.790000,805.520000,9.970000,125.320000,34.590000 -15,2023-08-18 16:00:00,0.000000,22.400000,31.000000,15.000000,271.000000,90.740000,78.100000,806.170000,10.130000,125.740000,35.010000 -15,2023-08-18 17:00:00,0.000000,23.300000,26.000000,22.000000,289.000000,91.080000,78.450000,806.910000,15.150000,126.220000,45.480000 -16,2023-08-03 00:00:00,0.000000,15.600000,63.000000,4.000000,79.000000,86.000000,118.400000,826.100000,2.960000,174.330000,16.260000 -16,2023-08-03 01:00:00,0.000000,15.600000,63.000000,4.000000,79.000000,85.990000,118.400000,826.100000,2.960000,174.330000,16.250000 -16,2023-08-03 02:00:00,0.000000,13.600000,69.000000,4.000000,115.000000,85.840000,118.400000,826.100000,2.890000,174.330000,16.000000 -16,2023-08-03 03:00:00,0.000000,13.600000,69.000000,4.000000,115.000000,85.710000,118.400000,826.100000,2.840000,174.330000,15.780000 -16,2023-08-03 04:00:00,0.000000,13.600000,69.000000,4.000000,115.000000,85.590000,118.400000,826.100000,2.790000,174.330000,15.580000 -16,2023-08-03 05:00:00,0.000000,11.300000,79.000000,3.000000,115.000000,85.250000,118.460000,826.260000,2.530000,174.410000,14.450000 -16,2023-08-03 06:00:00,0.000000,11.300000,79.000000,3.000000,115.000000,84.940000,118.530000,826.410000,2.430000,174.490000,13.980000 -16,2023-08-03 07:00:00,0.000000,11.300000,79.000000,3.000000,115.000000,84.660000,118.590000,826.570000,2.340000,174.570000,13.580000 -16,2023-08-03 08:00:00,0.000000,16.200000,60.000000,5.000000,118.000000,84.690000,118.760000,826.980000,2.600000,174.770000,14.740000 -16,2023-08-03 09:00:00,0.000000,16.200000,60.000000,5.000000,118.000000,84.720000,118.930000,827.390000,2.610000,174.980000,14.790000 -16,2023-08-03 10:00:00,0.000000,16.200000,60.000000,5.000000,118.000000,84.750000,119.090000,827.800000,2.620000,175.180000,14.840000 -16,2023-08-03 11:00:00,0.000000,22.500000,41.000000,4.000000,135.000000,85.350000,119.460000,828.700000,2.700000,175.620000,15.210000 -16,2023-08-03 12:00:00,0.000000,22.500000,41.000000,4.000000,135.000000,85.870000,119.820000,829.590000,2.910000,176.070000,16.080000 -16,2023-08-03 13:00:00,0.000000,22.500000,41.000000,4.000000,135.000000,86.320000,120.190000,830.490000,3.100000,176.510000,16.880000 -16,2023-08-03 14:00:00,1.050000,22.900000,56.000000,4.000000,228.000000,67.400000,107.030000,821.190000,0.700000,161.460000,4.560000 -16,2023-08-03 15:00:00,0.000000,22.900000,56.000000,4.000000,228.000000,69.400000,107.310000,821.880000,0.750000,161.810000,4.870000 -16,2023-08-03 16:00:00,0.000000,22.900000,56.000000,4.000000,228.000000,71.210000,107.590000,822.560000,0.800000,162.160000,5.180000 -16,2023-08-03 17:00:00,5.560000,19.700000,87.000000,3.000000,339.000000,25.330000,69.150000,769.890000,0.000000,112.950000,0.000000 -16,2023-08-03 18:00:00,0.000000,19.700000,87.000000,3.000000,339.000000,26.870000,69.220000,770.060000,0.000000,113.040000,0.000000 -16,2023-08-03 19:00:00,0.000000,19.700000,87.000000,3.000000,339.000000,28.380000,69.290000,770.220000,0.000000,113.140000,0.010000 -16,2023-08-03 20:00:00,1.650000,18.400000,95.000000,1.000000,205.000000,20.050000,62.250000,754.600000,0.000000,103.210000,0.000000 -16,2023-08-03 21:00:00,0.000000,18.400000,95.000000,1.000000,205.000000,20.550000,62.270000,754.660000,0.000000,103.240000,0.000000 -16,2023-08-03 22:00:00,0.000000,18.400000,95.000000,1.000000,205.000000,21.050000,62.270000,754.660000,0.000000,103.240000,0.000000 -16,2023-08-03 23:00:00,0.000000,15.600000,100.000000,3.000000,236.000000,21.050000,62.270000,754.660000,0.000000,103.240000,0.000000 -16,2023-08-04 00:00:00,0.000000,15.600000,100.000000,3.000000,236.000000,21.050000,62.270000,754.660000,0.000000,103.240000,0.000000 -16,2023-08-04 01:00:00,0.000000,15.600000,100.000000,3.000000,236.000000,21.050000,62.270000,754.660000,0.000000,103.240000,0.000000 -16,2023-08-04 02:00:00,0.010000,14.000000,100.000000,5.000000,237.000000,21.050000,62.270000,754.660000,0.000000,103.240000,0.000000 -16,2023-08-04 03:00:00,0.000000,14.000000,100.000000,5.000000,237.000000,21.050000,62.270000,754.660000,0.000000,103.240000,0.000000 -16,2023-08-04 04:00:00,0.000000,14.000000,100.000000,5.000000,237.000000,21.050000,62.270000,754.660000,0.000000,103.240000,0.000000 -16,2023-08-04 05:00:00,0.040000,13.700000,99.000000,5.000000,240.000000,21.180000,62.270000,754.670000,0.000000,103.250000,0.000000 -16,2023-08-04 06:00:00,0.000000,13.700000,99.000000,5.000000,240.000000,21.310000,62.270000,754.670000,0.000000,103.250000,0.000000 -16,2023-08-04 07:00:00,0.000000,13.700000,99.000000,5.000000,240.000000,21.440000,62.270000,754.680000,0.000000,103.250000,0.000000 -16,2023-08-04 08:00:00,0.070000,15.900000,93.000000,4.000000,252.000000,22.300000,62.290000,754.740000,0.000000,103.270000,0.000000 -16,2023-08-04 09:00:00,0.000000,15.900000,93.000000,4.000000,252.000000,23.150000,62.300000,754.790000,0.000000,103.290000,0.000000 -16,2023-08-04 10:00:00,0.000000,15.900000,93.000000,4.000000,252.000000,24.000000,62.310000,754.850000,0.000000,103.310000,0.000000 -16,2023-08-04 11:00:00,0.030000,20.600000,67.000000,4.000000,324.000000,27.370000,62.390000,755.210000,0.000000,103.420000,0.010000 -16,2023-08-04 12:00:00,0.000000,20.600000,67.000000,4.000000,324.000000,30.670000,62.470000,755.570000,0.010000,103.540000,0.010000 -16,2023-08-04 13:00:00,0.000000,20.600000,67.000000,4.000000,324.000000,33.890000,62.550000,755.930000,0.010000,103.660000,0.030000 -16,2023-08-04 14:00:00,0.000000,22.800000,50.000000,8.000000,355.000000,38.910000,62.690000,756.550000,0.040000,103.860000,0.120000 -16,2023-08-04 15:00:00,0.000000,22.800000,50.000000,8.000000,355.000000,43.670000,62.820000,757.170000,0.100000,104.060000,0.280000 -16,2023-08-04 16:00:00,0.000000,22.800000,50.000000,8.000000,355.000000,48.160000,62.960000,757.800000,0.190000,104.270000,0.560000 -16,2023-08-04 17:00:00,0.000000,23.800000,42.000000,8.000000,6.000000,52.930000,63.130000,758.560000,0.340000,104.520000,0.980000 -16,2023-08-04 18:00:00,0.000000,23.800000,42.000000,8.000000,6.000000,57.310000,63.300000,759.330000,0.510000,104.770000,2.320000 -16,2023-08-04 19:00:00,0.000000,23.800000,42.000000,8.000000,6.000000,61.300000,63.470000,760.100000,0.660000,105.010000,3.300000 -16,2023-08-04 20:00:00,0.000000,21.900000,46.000000,5.000000,342.000000,64.220000,63.610000,760.730000,0.660000,105.220000,3.270000 -16,2023-08-04 21:00:00,0.000000,21.900000,46.000000,5.000000,342.000000,66.880000,63.750000,761.370000,0.730000,105.430000,3.690000 -16,2023-08-04 22:00:00,0.000000,21.900000,46.000000,5.000000,342.000000,69.290000,63.750000,761.370000,0.790000,105.430000,4.040000 -16,2023-08-04 23:00:00,0.000000,17.100000,63.000000,5.000000,311.000000,70.550000,63.750000,761.370000,0.820000,105.430000,4.220000 -16,2023-08-05 00:00:00,0.000000,17.100000,63.000000,5.000000,311.000000,71.720000,63.750000,761.370000,0.850000,105.430000,4.400000 -16,2023-08-05 01:00:00,0.000000,17.100000,63.000000,5.000000,311.000000,72.790000,63.750000,761.370000,0.890000,105.430000,4.590000 -16,2023-08-05 02:00:00,0.000000,15.600000,72.000000,6.000000,332.000000,73.510000,63.750000,761.370000,0.960000,105.430000,4.990000 -16,2023-08-05 03:00:00,0.000000,15.600000,72.000000,6.000000,332.000000,74.180000,63.750000,761.370000,0.990000,105.430000,5.150000 -16,2023-08-05 04:00:00,0.000000,15.600000,72.000000,6.000000,332.000000,74.810000,63.750000,761.370000,1.020000,105.430000,5.320000 -16,2023-08-05 05:00:00,0.000000,13.500000,82.000000,5.000000,329.000000,75.080000,63.780000,761.460000,0.990000,105.480000,5.130000 -16,2023-08-05 06:00:00,0.000000,13.500000,82.000000,5.000000,329.000000,75.330000,63.820000,761.550000,1.000000,105.530000,5.210000 -16,2023-08-05 07:00:00,0.000000,13.500000,82.000000,5.000000,329.000000,75.580000,63.850000,761.640000,1.020000,105.580000,5.290000 -16,2023-08-05 08:00:00,0.000000,17.300000,58.000000,4.000000,350.000000,76.450000,63.960000,761.910000,1.020000,105.730000,5.320000 -16,2023-08-05 09:00:00,0.000000,17.300000,58.000000,4.000000,350.000000,77.260000,64.070000,762.180000,1.090000,105.880000,5.640000 -16,2023-08-05 10:00:00,0.000000,17.300000,58.000000,4.000000,350.000000,77.990000,64.170000,762.440000,1.150000,106.030000,5.980000 -16,2023-08-05 11:00:00,0.000000,19.700000,40.000000,6.000000,13.000000,79.330000,64.350000,762.890000,1.440000,106.280000,7.360000 -16,2023-08-05 12:00:00,0.000000,19.700000,40.000000,6.000000,13.000000,80.520000,64.520000,763.330000,1.620000,106.530000,8.220000 -16,2023-08-05 13:00:00,0.000000,19.700000,40.000000,6.000000,13.000000,81.570000,64.690000,763.780000,1.830000,106.780000,9.130000 -16,2023-08-05 14:00:00,0.000000,21.400000,34.000000,9.000000,31.000000,82.850000,64.910000,764.320000,2.490000,107.080000,11.810000 -16,2023-08-05 15:00:00,0.000000,21.400000,34.000000,9.000000,31.000000,83.970000,65.120000,764.860000,2.880000,107.390000,13.270000 -16,2023-08-05 16:00:00,0.000000,21.400000,34.000000,9.000000,31.000000,84.920000,65.340000,765.400000,3.280000,107.690000,14.700000 -16,2023-08-05 17:00:00,0.000000,21.200000,33.000000,10.000000,29.000000,85.780000,65.550000,765.950000,3.880000,107.990000,16.740000 -16,2023-08-05 18:00:00,0.000000,21.200000,33.000000,10.000000,29.000000,86.520000,65.760000,766.490000,4.310000,108.300000,18.100000 -16,2023-08-05 19:00:00,0.000000,21.200000,33.000000,10.000000,29.000000,87.140000,65.980000,767.040000,4.710000,108.600000,19.350000 -16,2023-08-05 20:00:00,0.000000,19.100000,38.000000,4.000000,19.000000,87.410000,66.150000,767.480000,3.610000,108.850000,15.920000 -16,2023-08-05 21:00:00,0.000000,19.100000,38.000000,4.000000,19.000000,87.640000,66.330000,767.920000,3.740000,109.090000,16.340000 -16,2023-08-05 22:00:00,0.000000,19.100000,38.000000,4.000000,19.000000,87.850000,66.330000,767.920000,3.850000,109.090000,16.710000 -16,2023-08-05 23:00:00,0.000000,15.100000,50.000000,3.000000,315.000000,87.850000,66.330000,767.920000,3.660000,109.090000,16.090000 -16,2023-08-06 00:00:00,0.000000,15.100000,50.000000,3.000000,315.000000,87.850000,66.330000,767.920000,3.660000,109.090000,16.090000 -16,2023-08-06 01:00:00,0.000000,15.100000,50.000000,3.000000,315.000000,87.850000,66.330000,767.920000,3.660000,109.090000,16.090000 -16,2023-08-06 02:00:00,0.000000,12.800000,57.000000,4.000000,288.000000,87.720000,66.330000,767.920000,3.780000,109.090000,16.490000 -16,2023-08-06 03:00:00,0.000000,12.800000,57.000000,4.000000,288.000000,87.610000,66.330000,767.920000,3.720000,109.090000,16.290000 -16,2023-08-06 04:00:00,0.000000,12.800000,57.000000,4.000000,288.000000,87.510000,66.330000,767.920000,3.660000,109.090000,16.110000 -16,2023-08-06 05:00:00,0.000000,11.700000,63.000000,4.000000,301.000000,87.300000,66.390000,768.100000,3.560000,109.190000,15.760000 -16,2023-08-06 06:00:00,0.000000,11.700000,63.000000,4.000000,301.000000,87.110000,66.460000,768.280000,3.460000,109.280000,15.450000 -16,2023-08-06 07:00:00,0.000000,11.700000,63.000000,4.000000,301.000000,86.940000,66.520000,768.470000,3.380000,109.370000,15.170000 -16,2023-08-06 08:00:00,0.000000,16.000000,56.000000,1.000000,5.000000,86.940000,66.620000,768.750000,2.910000,109.520000,13.510000 -16,2023-08-06 09:00:00,0.000000,16.000000,56.000000,1.000000,5.000000,86.940000,66.730000,769.040000,2.910000,109.660000,13.520000 -16,2023-08-06 10:00:00,0.000000,16.000000,56.000000,1.000000,5.000000,86.940000,66.830000,769.320000,2.910000,109.810000,13.530000 -16,2023-08-06 11:00:00,0.000000,20.300000,46.000000,4.000000,80.000000,87.080000,66.990000,769.780000,3.450000,110.040000,15.440000 -16,2023-08-06 12:00:00,0.000000,20.300000,46.000000,4.000000,80.000000,87.200000,67.160000,770.240000,3.510000,110.280000,15.660000 -16,2023-08-06 13:00:00,0.000000,20.300000,46.000000,4.000000,80.000000,87.300000,67.320000,770.700000,3.560000,110.510000,15.860000 -16,2023-08-06 14:00:00,0.000000,21.800000,43.000000,10.000000,54.000000,87.540000,67.510000,771.230000,4.980000,110.780000,20.350000 -16,2023-08-06 15:00:00,0.000000,21.800000,43.000000,10.000000,54.000000,87.730000,67.700000,771.760000,5.120000,111.050000,20.790000 -16,2023-08-06 16:00:00,0.000000,21.800000,43.000000,10.000000,54.000000,87.900000,67.890000,772.300000,5.250000,111.320000,21.180000 -16,2023-08-06 17:00:00,0.000000,21.600000,45.000000,14.000000,61.000000,87.990000,68.070000,772.800000,6.500000,111.580000,24.680000 -16,2023-08-06 18:00:00,0.000000,21.600000,45.000000,14.000000,61.000000,88.070000,68.260000,773.310000,6.580000,111.830000,24.900000 -16,2023-08-06 19:00:00,0.000000,21.600000,45.000000,14.000000,61.000000,88.140000,68.440000,773.820000,6.640000,112.090000,25.090000 -16,2023-08-06 20:00:00,0.000000,18.900000,51.000000,13.000000,66.000000,88.140000,68.570000,774.200000,6.310000,112.280000,24.240000 -16,2023-08-06 21:00:00,0.000000,18.900000,51.000000,13.000000,66.000000,88.140000,68.710000,774.580000,6.310000,112.480000,24.260000 -16,2023-08-06 22:00:00,0.000000,18.900000,51.000000,13.000000,66.000000,88.140000,68.710000,774.580000,6.310000,112.480000,24.260000 -16,2023-08-06 23:00:00,0.000000,13.900000,68.000000,6.000000,63.000000,87.760000,68.710000,774.580000,4.200000,112.480000,18.110000 -16,2023-08-07 00:00:00,0.000000,13.900000,68.000000,6.000000,63.000000,87.420000,68.710000,774.580000,4.010000,112.480000,17.480000 -16,2023-08-07 01:00:00,0.000000,13.900000,68.000000,6.000000,63.000000,87.130000,68.710000,774.580000,3.840000,112.480000,16.940000 -16,2023-08-07 02:00:00,0.000000,10.900000,80.000000,3.000000,58.000000,86.600000,68.710000,774.580000,3.060000,112.480000,14.260000 -16,2023-08-07 03:00:00,0.000000,10.900000,80.000000,3.000000,58.000000,86.120000,68.710000,774.580000,2.860000,112.480000,13.530000 -16,2023-08-07 04:00:00,0.000000,10.900000,80.000000,3.000000,58.000000,85.700000,68.710000,774.580000,2.700000,112.480000,12.910000 -16,2023-08-07 05:00:00,0.000000,9.000000,91.000000,3.000000,21.000000,84.930000,68.730000,774.620000,2.420000,112.500000,11.860000 -16,2023-08-07 06:00:00,0.000000,9.000000,91.000000,3.000000,21.000000,84.230000,68.740000,774.660000,2.210000,112.520000,10.990000 -16,2023-08-07 07:00:00,0.000000,9.000000,91.000000,3.000000,21.000000,83.620000,68.760000,774.710000,2.030000,112.540000,10.270000 -16,2023-08-07 08:00:00,0.000000,14.300000,68.000000,7.000000,54.000000,83.620000,68.830000,774.920000,2.490000,112.650000,12.110000 -16,2023-08-07 09:00:00,0.000000,14.300000,68.000000,7.000000,54.000000,83.620000,68.900000,775.140000,2.490000,112.750000,12.110000 -16,2023-08-07 10:00:00,0.000000,14.300000,68.000000,7.000000,54.000000,83.620000,68.980000,775.350000,2.490000,112.860000,12.120000 -16,2023-08-07 11:00:00,0.000000,19.800000,47.000000,17.000000,72.000000,84.230000,69.150000,775.850000,4.470000,113.100000,18.990000 -16,2023-08-07 12:00:00,0.000000,19.800000,47.000000,17.000000,72.000000,84.760000,69.330000,776.350000,4.800000,113.350000,20.030000 -16,2023-08-07 13:00:00,0.000000,19.800000,47.000000,17.000000,72.000000,85.220000,69.500000,776.860000,5.110000,113.600000,20.970000 -16,2023-08-07 14:00:00,0.000000,21.200000,38.000000,23.000000,60.000000,85.990000,69.730000,777.500000,7.700000,113.910000,27.990000 -16,2023-08-07 15:00:00,0.000000,21.200000,38.000000,23.000000,60.000000,86.640000,69.950000,778.140000,8.440000,114.230000,29.820000 -16,2023-08-07 16:00:00,0.000000,21.200000,38.000000,23.000000,60.000000,87.180000,70.170000,778.780000,9.100000,114.540000,31.420000 -16,2023-08-07 17:00:00,0.000000,19.700000,41.000000,26.000000,49.000000,87.470000,70.370000,779.340000,11.040000,114.820000,35.760000 -16,2023-08-07 18:00:00,0.000000,19.700000,41.000000,26.000000,49.000000,87.710000,70.560000,779.890000,11.430000,115.090000,36.620000 -16,2023-08-07 19:00:00,0.000000,19.700000,41.000000,26.000000,49.000000,87.910000,70.750000,780.450000,11.770000,115.360000,37.350000 -16,2023-08-07 20:00:00,0.000000,17.000000,56.000000,18.000000,44.000000,87.840000,70.880000,780.800000,7.780000,115.530000,28.350000 -16,2023-08-07 21:00:00,0.000000,17.000000,56.000000,18.000000,44.000000,87.770000,71.000000,781.150000,7.710000,115.700000,28.190000 -16,2023-08-07 22:00:00,0.000000,17.000000,56.000000,18.000000,44.000000,87.710000,71.000000,781.150000,7.640000,115.700000,28.030000 -16,2023-08-07 23:00:00,0.000000,13.300000,79.000000,8.000000,42.000000,87.060000,71.000000,781.150000,4.210000,115.700000,18.370000 -16,2023-08-08 00:00:00,0.000000,13.300000,79.000000,8.000000,42.000000,86.500000,71.000000,781.150000,3.880000,115.700000,17.300000 -16,2023-08-08 01:00:00,0.000000,13.300000,79.000000,8.000000,42.000000,86.000000,71.000000,781.150000,3.620000,115.700000,16.420000 -16,2023-08-08 02:00:00,0.000000,11.600000,73.000000,7.000000,96.000000,85.730000,71.000000,781.150000,3.310000,115.700000,15.360000 -16,2023-08-08 03:00:00,0.000000,11.600000,73.000000,7.000000,96.000000,85.480000,71.000000,781.150000,3.200000,115.700000,14.960000 -16,2023-08-08 04:00:00,0.000000,11.600000,73.000000,7.000000,96.000000,85.270000,71.000000,781.150000,3.110000,115.700000,14.620000 -16,2023-08-08 05:00:00,0.000000,10.000000,75.000000,5.000000,93.000000,85.030000,71.040000,781.240000,2.720000,115.760000,13.180000 -16,2023-08-08 06:00:00,0.000000,10.000000,75.000000,5.000000,93.000000,84.810000,71.070000,781.330000,2.640000,115.810000,12.870000 -16,2023-08-08 07:00:00,0.000000,10.000000,75.000000,5.000000,93.000000,84.620000,71.110000,781.420000,2.570000,115.860000,12.610000 -16,2023-08-08 08:00:00,0.000000,15.200000,55.000000,5.000000,106.000000,84.720000,71.200000,781.650000,2.610000,115.990000,12.760000 -16,2023-08-08 09:00:00,0.000000,15.200000,55.000000,5.000000,106.000000,84.810000,71.300000,781.880000,2.640000,116.130000,12.890000 -16,2023-08-08 10:00:00,0.000000,15.200000,55.000000,5.000000,106.000000,84.900000,71.390000,782.110000,2.670000,116.260000,13.020000 -16,2023-08-08 11:00:00,0.000000,21.200000,39.000000,11.000000,109.000000,85.580000,71.580000,782.570000,3.970000,116.520000,17.650000 -16,2023-08-08 12:00:00,0.000000,21.200000,39.000000,11.000000,109.000000,86.160000,71.770000,783.020000,4.310000,116.780000,18.770000 -16,2023-08-08 13:00:00,0.000000,21.200000,39.000000,11.000000,109.000000,86.660000,71.960000,783.470000,4.620000,117.040000,19.780000 -16,2023-08-08 14:00:00,0.000000,23.400000,34.000000,15.000000,100.000000,87.390000,72.190000,784.040000,6.280000,117.360000,24.610000 -16,2023-08-08 15:00:00,0.000000,23.400000,34.000000,15.000000,100.000000,88.000000,72.420000,784.600000,6.840000,117.680000,26.160000 -16,2023-08-08 16:00:00,0.000000,23.400000,34.000000,15.000000,100.000000,88.500000,72.650000,785.160000,7.350000,118.000000,27.520000 -16,2023-08-08 17:00:00,0.000000,23.600000,30.000000,18.000000,101.000000,89.090000,72.900000,785.760000,9.310000,118.350000,32.340000 -16,2023-08-08 18:00:00,0.000000,23.600000,30.000000,18.000000,101.000000,89.580000,73.150000,786.370000,9.990000,118.690000,33.910000 -16,2023-08-08 19:00:00,0.000000,23.600000,30.000000,18.000000,101.000000,89.970000,73.400000,786.970000,10.570000,119.040000,35.250000 -16,2023-08-08 20:00:00,0.000000,21.400000,34.000000,14.000000,102.000000,90.060000,73.600000,787.470000,8.750000,119.320000,31.120000 -16,2023-08-08 21:00:00,0.000000,21.400000,34.000000,14.000000,102.000000,90.140000,73.810000,787.970000,8.850000,119.600000,31.380000 -16,2023-08-08 22:00:00,0.000000,21.400000,34.000000,14.000000,102.000000,90.200000,73.810000,787.970000,8.930000,119.600000,31.570000 -16,2023-08-08 23:00:00,0.000000,16.800000,46.000000,9.000000,107.000000,90.070000,73.810000,787.970000,6.810000,119.600000,26.260000 -16,2023-08-09 00:00:00,0.000000,16.800000,46.000000,9.000000,107.000000,89.950000,73.810000,787.970000,6.700000,119.600000,25.960000 -16,2023-08-09 01:00:00,0.000000,16.800000,46.000000,9.000000,107.000000,89.850000,73.810000,787.970000,6.600000,119.600000,25.690000 -16,2023-08-09 02:00:00,0.000000,13.600000,57.000000,6.000000,110.000000,89.520000,73.810000,787.970000,5.410000,119.600000,22.340000 -16,2023-08-09 03:00:00,0.000000,13.600000,57.000000,6.000000,110.000000,89.220000,73.810000,787.970000,5.180000,119.600000,21.670000 -16,2023-08-09 04:00:00,0.000000,13.600000,57.000000,6.000000,110.000000,88.950000,73.810000,787.970000,4.990000,119.600000,21.080000 -16,2023-08-09 05:00:00,0.000000,11.200000,69.000000,4.000000,115.000000,88.480000,73.860000,788.070000,4.210000,119.670000,18.660000 -16,2023-08-09 06:00:00,0.000000,11.200000,69.000000,4.000000,115.000000,88.060000,73.910000,788.180000,3.970000,119.740000,17.850000 -16,2023-08-09 07:00:00,0.000000,11.200000,69.000000,4.000000,115.000000,87.680000,73.960000,788.290000,3.760000,119.810000,17.150000 -16,2023-08-09 08:00:00,0.000000,16.000000,52.000000,5.000000,109.000000,87.680000,74.060000,788.520000,3.950000,119.960000,17.810000 -16,2023-08-09 09:00:00,0.000000,16.000000,52.000000,5.000000,109.000000,87.680000,74.170000,788.740000,3.950000,120.110000,17.820000 -16,2023-08-09 10:00:00,0.000000,16.000000,52.000000,5.000000,109.000000,87.680000,74.280000,788.970000,3.950000,120.250000,17.830000 -16,2023-08-09 11:00:00,0.000000,22.700000,32.000000,11.000000,110.000000,88.240000,74.510000,789.460000,5.790000,120.570000,23.530000 -16,2023-08-09 12:00:00,0.000000,22.700000,32.000000,11.000000,110.000000,88.710000,74.740000,789.950000,6.200000,120.880000,24.700000 -16,2023-08-09 13:00:00,0.000000,22.700000,32.000000,11.000000,110.000000,89.110000,74.970000,790.440000,6.560000,121.200000,25.730000 -16,2023-08-09 14:00:00,0.000000,24.700000,26.000000,13.000000,103.000000,89.770000,75.250000,791.030000,7.980000,121.590000,29.470000 -16,2023-08-09 15:00:00,0.000000,24.700000,26.000000,13.000000,103.000000,90.320000,75.530000,791.630000,8.630000,121.970000,31.110000 -16,2023-08-09 16:00:00,0.000000,24.700000,26.000000,13.000000,103.000000,90.770000,75.820000,792.230000,9.200000,122.360000,32.500000 -16,2023-08-09 17:00:00,0.000000,24.900000,26.000000,15.000000,100.000000,91.150000,76.100000,792.840000,10.750000,122.750000,36.070000 -16,2023-08-09 18:00:00,0.000000,24.900000,26.000000,15.000000,100.000000,91.460000,76.390000,793.450000,11.230000,123.140000,37.180000 -16,2023-08-09 19:00:00,0.000000,24.900000,26.000000,15.000000,100.000000,91.710000,76.670000,794.050000,11.640000,123.530000,38.100000 -16,2023-08-09 20:00:00,0.000000,22.700000,30.000000,11.000000,95.000000,91.710000,76.910000,794.560000,9.520000,123.850000,33.400000 -16,2023-08-09 21:00:00,0.000000,22.700000,30.000000,11.000000,95.000000,91.710000,77.150000,795.060000,9.520000,124.170000,33.430000 -16,2023-08-09 22:00:00,0.000000,22.700000,30.000000,11.000000,95.000000,91.710000,77.150000,795.060000,9.520000,124.170000,33.430000 -16,2023-08-09 23:00:00,0.000000,17.300000,43.000000,8.000000,118.000000,91.490000,77.150000,795.060000,7.930000,124.170000,29.570000 -16,2023-08-10 00:00:00,0.000000,17.300000,43.000000,8.000000,118.000000,91.290000,77.150000,795.060000,7.700000,124.170000,29.000000 -16,2023-08-10 01:00:00,0.000000,17.300000,43.000000,8.000000,118.000000,91.110000,77.150000,795.060000,7.510000,124.170000,28.500000 -16,2023-08-10 02:00:00,0.000000,14.300000,53.000000,7.000000,143.000000,90.720000,77.150000,795.060000,6.750000,124.170000,26.500000 -16,2023-08-10 03:00:00,0.000000,14.300000,53.000000,7.000000,143.000000,90.370000,77.150000,795.060000,6.420000,124.170000,25.600000 -16,2023-08-10 04:00:00,0.000000,14.300000,53.000000,7.000000,143.000000,90.060000,77.150000,795.060000,6.150000,124.170000,24.820000 -16,2023-08-10 05:00:00,0.000000,12.300000,63.000000,6.000000,141.000000,89.570000,77.210000,795.200000,5.450000,124.260000,22.820000 -16,2023-08-10 06:00:00,0.000000,12.300000,63.000000,6.000000,141.000000,89.140000,77.280000,795.350000,5.120000,124.350000,21.840000 -16,2023-08-10 07:00:00,0.000000,12.300000,63.000000,6.000000,141.000000,88.750000,77.340000,795.490000,4.840000,124.440000,20.990000 -16,2023-08-10 08:00:00,0.000000,17.300000,48.000000,8.000000,140.000000,88.750000,77.470000,795.770000,5.360000,124.610000,22.570000 -16,2023-08-10 09:00:00,0.000000,17.300000,48.000000,8.000000,140.000000,88.750000,77.600000,796.050000,5.360000,124.790000,22.580000 -16,2023-08-10 10:00:00,0.000000,17.300000,48.000000,8.000000,140.000000,88.750000,77.730000,796.330000,5.360000,124.960000,22.600000 -16,2023-08-10 11:00:00,0.000000,23.300000,35.000000,11.000000,158.000000,89.060000,77.960000,796.840000,6.520000,125.270000,25.950000 -16,2023-08-10 12:00:00,0.000000,23.300000,35.000000,11.000000,158.000000,89.320000,78.190000,797.350000,6.770000,125.590000,26.650000 -16,2023-08-10 13:00:00,0.000000,23.300000,35.000000,11.000000,158.000000,89.540000,78.420000,797.850000,6.980000,125.900000,27.260000 -16,2023-08-10 14:00:00,0.000000,25.300000,31.000000,12.000000,173.000000,89.950000,78.690000,798.460000,7.780000,126.280000,29.400000 -16,2023-08-10 15:00:00,0.000000,25.300000,31.000000,12.000000,173.000000,90.280000,78.970000,799.070000,8.170000,126.650000,30.400000 -16,2023-08-10 16:00:00,0.000000,25.300000,31.000000,12.000000,173.000000,90.560000,79.250000,799.670000,8.490000,127.020000,31.250000 -16,2023-08-10 17:00:00,0.000000,26.100000,30.000000,12.000000,167.000000,90.850000,79.540000,800.320000,8.860000,127.420000,32.180000 -16,2023-08-10 18:00:00,0.000000,26.100000,30.000000,12.000000,167.000000,91.090000,79.830000,800.960000,9.170000,127.820000,32.960000 -16,2023-08-10 19:00:00,0.000000,26.100000,30.000000,12.000000,167.000000,91.290000,80.130000,801.610000,9.420000,128.210000,33.610000 -16,2023-08-10 20:00:00,0.000000,26.100000,30.000000,12.000000,167.000000,91.440000,80.420000,802.260000,9.640000,128.610000,34.150000 -16,2023-08-10 21:00:00,0.000000,26.100000,30.000000,12.000000,167.000000,91.570000,80.420000,802.260000,9.820000,128.610000,34.570000 -16,2023-08-10 22:00:00,0.000000,26.100000,30.000000,12.000000,167.000000,91.680000,80.420000,802.260000,9.960000,128.610000,34.910000 -16,2023-08-10 23:00:00,0.000000,19.500000,46.000000,10.000000,173.000000,91.400000,80.420000,802.260000,8.660000,128.610000,31.800000 -16,2023-08-11 00:00:00,0.000000,19.500000,46.000000,10.000000,173.000000,91.160000,80.420000,802.260000,8.370000,128.610000,31.080000 -16,2023-08-11 01:00:00,0.000000,19.500000,46.000000,10.000000,173.000000,90.950000,80.420000,802.260000,8.120000,128.610000,30.450000 -16,2023-08-11 02:00:00,0.000000,19.500000,46.000000,10.000000,173.000000,90.760000,80.420000,802.260000,7.910000,128.610000,29.920000 -16,2023-08-11 03:00:00,0.000000,19.500000,46.000000,10.000000,173.000000,90.600000,80.420000,802.260000,7.730000,128.610000,29.460000 -16,2023-08-11 04:00:00,0.000000,19.500000,46.000000,10.000000,173.000000,90.460000,80.420000,802.260000,7.580000,128.610000,29.060000 -16,2023-08-11 05:00:00,0.000000,15.300000,61.000000,7.000000,168.000000,89.970000,80.510000,802.490000,6.070000,128.730000,24.950000 -16,2023-08-11 06:00:00,0.000000,15.300000,61.000000,7.000000,168.000000,89.530000,80.600000,802.720000,5.700000,128.860000,23.900000 -16,2023-08-11 07:00:00,0.000000,15.300000,61.000000,7.000000,168.000000,89.150000,80.690000,802.950000,5.400000,128.980000,23.000000 -16,2023-08-11 08:00:00,0.000000,15.300000,61.000000,7.000000,168.000000,88.810000,80.780000,803.180000,5.140000,129.100000,22.230000 -16,2023-08-11 09:00:00,0.000000,15.300000,61.000000,7.000000,168.000000,88.510000,80.870000,803.410000,4.930000,129.220000,21.570000 -16,2023-08-11 10:00:00,0.000000,15.300000,61.000000,7.000000,168.000000,88.250000,80.960000,803.640000,4.740000,129.340000,21.000000 -16,2023-08-11 11:00:00,0.000000,22.800000,44.000000,8.000000,183.000000,88.340000,81.160000,804.170000,5.050000,129.620000,21.990000 -16,2023-08-11 12:00:00,0.000000,22.800000,44.000000,8.000000,183.000000,88.420000,81.370000,804.700000,5.110000,129.900000,22.180000 -16,2023-08-11 13:00:00,0.000000,22.800000,44.000000,8.000000,183.000000,88.490000,81.580000,805.220000,5.160000,130.180000,22.350000 -16,2023-08-11 14:00:00,0.000000,22.800000,44.000000,8.000000,183.000000,88.540000,81.780000,805.750000,5.200000,130.460000,22.500000 -16,2023-08-11 15:00:00,0.000000,22.800000,44.000000,8.000000,183.000000,88.590000,81.990000,806.280000,5.240000,130.740000,22.630000 -16,2023-08-11 16:00:00,0.000000,22.800000,44.000000,8.000000,183.000000,88.630000,82.190000,806.810000,5.270000,131.020000,22.740000 -16,2023-08-11 17:00:00,0.000000,24.800000,40.000000,12.000000,143.000000,88.860000,82.440000,807.450000,6.650000,131.350000,26.800000 -16,2023-08-11 18:00:00,0.000000,24.800000,40.000000,12.000000,143.000000,89.040000,82.690000,808.090000,6.840000,131.690000,27.320000 -16,2023-08-11 19:00:00,0.000000,24.800000,40.000000,12.000000,143.000000,89.200000,82.940000,808.730000,6.990000,132.020000,27.770000 -16,2023-08-11 20:00:00,0.000000,24.800000,40.000000,12.000000,143.000000,89.320000,83.180000,809.360000,7.120000,132.360000,28.140000 -16,2023-08-11 21:00:00,0.000000,24.800000,40.000000,12.000000,143.000000,89.430000,83.180000,809.360000,7.230000,132.360000,28.440000 -16,2023-08-11 22:00:00,0.000000,24.800000,40.000000,12.000000,143.000000,89.520000,83.180000,809.360000,7.320000,132.360000,28.680000 -16,2023-08-11 23:00:00,0.000000,17.100000,76.000000,2.000000,200.000000,88.840000,83.180000,809.360000,4.010000,132.360000,18.760000 -16,2023-08-12 00:00:00,0.000000,17.100000,76.000000,2.000000,200.000000,88.240000,83.180000,809.360000,3.680000,132.360000,17.610000 -16,2023-08-12 01:00:00,0.000000,17.100000,76.000000,2.000000,200.000000,87.720000,83.180000,809.360000,3.410000,132.360000,16.650000 -16,2023-08-12 02:00:00,0.000000,17.100000,76.000000,2.000000,200.000000,87.250000,83.180000,809.360000,3.200000,132.360000,15.840000 -16,2023-08-12 03:00:00,0.000000,17.100000,76.000000,2.000000,200.000000,86.850000,83.180000,809.360000,3.020000,132.360000,15.160000 -16,2023-08-12 04:00:00,0.000000,17.100000,76.000000,2.000000,200.000000,86.490000,83.180000,809.360000,2.870000,132.360000,14.570000 -16,2023-08-12 05:00:00,0.000000,14.800000,92.000000,6.000000,252.000000,85.410000,83.200000,809.430000,3.010000,132.380000,15.140000 -16,2023-08-12 06:00:00,0.000000,14.800000,92.000000,6.000000,252.000000,84.470000,83.210000,809.500000,2.650000,132.400000,13.720000 -16,2023-08-12 07:00:00,0.000000,14.800000,92.000000,6.000000,252.000000,83.670000,83.220000,809.570000,2.380000,132.420000,12.610000 -16,2023-08-12 08:00:00,0.000000,14.800000,92.000000,6.000000,252.000000,82.970000,83.240000,809.640000,2.170000,132.430000,11.730000 -16,2023-08-12 09:00:00,0.000000,14.800000,92.000000,6.000000,252.000000,82.370000,83.250000,809.710000,2.020000,132.450000,11.030000 -16,2023-08-12 10:00:00,0.000000,14.800000,92.000000,6.000000,252.000000,81.850000,83.260000,809.780000,1.890000,132.470000,10.470000 -16,2023-08-12 11:00:00,5.130000,20.300000,72.000000,2.000000,244.000000,31.800000,53.230000,767.940000,0.010000,90.730000,0.020000 -16,2023-08-12 12:00:00,0.000000,20.300000,72.000000,2.000000,244.000000,34.290000,53.290000,768.290000,0.010000,90.830000,0.030000 -16,2023-08-12 13:00:00,0.000000,20.300000,72.000000,2.000000,244.000000,36.720000,53.360000,768.640000,0.020000,90.930000,0.050000 -16,2023-08-12 14:00:00,0.000000,20.300000,72.000000,2.000000,244.000000,39.090000,53.420000,768.980000,0.030000,91.030000,0.080000 -16,2023-08-12 15:00:00,0.000000,20.300000,72.000000,2.000000,244.000000,41.390000,53.490000,769.330000,0.050000,91.130000,0.130000 -16,2023-08-12 16:00:00,0.000000,20.300000,72.000000,2.000000,244.000000,43.620000,53.550000,769.680000,0.070000,91.230000,0.190000 -16,2023-08-12 17:00:00,0.000000,24.800000,36.000000,10.000000,282.000000,49.460000,53.740000,770.720000,0.250000,91.530000,0.660000 -16,2023-08-12 18:00:00,0.000000,24.800000,36.000000,10.000000,282.000000,54.830000,53.940000,771.760000,0.450000,91.830000,1.670000 -16,2023-08-12 19:00:00,0.000000,24.800000,36.000000,10.000000,282.000000,59.690000,54.130000,772.800000,0.660000,92.130000,2.960000 -16,2023-08-12 20:00:00,0.000000,24.800000,36.000000,10.000000,282.000000,64.050000,54.320000,773.840000,0.840000,92.430000,3.910000 -16,2023-08-12 21:00:00,0.000000,24.800000,36.000000,10.000000,282.000000,67.920000,54.320000,773.840000,0.970000,92.430000,4.570000 -16,2023-08-12 22:00:00,0.000000,24.800000,36.000000,10.000000,282.000000,71.310000,54.320000,773.840000,1.080000,92.430000,5.110000 -16,2023-08-12 23:00:00,0.000000,16.400000,62.000000,4.000000,257.000000,72.370000,54.320000,773.840000,0.830000,92.430000,3.870000 -16,2023-08-13 00:00:00,0.000000,16.400000,62.000000,4.000000,257.000000,73.350000,54.320000,773.840000,0.860000,92.430000,4.040000 -16,2023-08-13 01:00:00,0.000000,16.400000,62.000000,4.000000,257.000000,74.260000,54.320000,773.840000,0.900000,92.430000,4.230000 -16,2023-08-13 02:00:00,0.000000,16.400000,62.000000,4.000000,257.000000,75.100000,54.320000,773.840000,0.940000,92.430000,4.430000 -16,2023-08-13 03:00:00,0.000000,16.400000,62.000000,4.000000,257.000000,75.880000,54.320000,773.840000,0.990000,92.430000,4.660000 -16,2023-08-13 04:00:00,0.000000,16.400000,62.000000,4.000000,257.000000,76.600000,54.320000,773.840000,1.030000,92.430000,4.890000 -16,2023-08-13 05:00:00,0.000000,12.600000,75.000000,8.000000,211.000000,76.940000,54.370000,773.950000,1.300000,92.500000,6.120000 -16,2023-08-13 06:00:00,0.000000,12.600000,75.000000,8.000000,211.000000,77.260000,54.420000,774.060000,1.330000,92.580000,6.260000 -16,2023-08-13 07:00:00,0.000000,12.600000,75.000000,8.000000,211.000000,77.560000,54.470000,774.180000,1.360000,92.650000,6.400000 -16,2023-08-13 08:00:00,0.000000,12.600000,75.000000,8.000000,211.000000,77.850000,54.520000,774.290000,1.390000,92.720000,6.550000 -16,2023-08-13 09:00:00,0.000000,12.600000,75.000000,8.000000,211.000000,78.110000,54.570000,774.400000,1.420000,92.800000,6.680000 -16,2023-08-13 10:00:00,0.000000,12.600000,75.000000,8.000000,211.000000,78.350000,54.620000,774.520000,1.450000,92.870000,6.820000 -16,2023-08-13 11:00:00,0.000000,25.000000,38.000000,11.000000,217.000000,80.290000,54.900000,775.120000,2.040000,93.280000,9.240000 -16,2023-08-13 12:00:00,0.000000,25.000000,38.000000,11.000000,217.000000,81.930000,55.170000,775.730000,2.460000,93.680000,10.840000 -16,2023-08-13 13:00:00,0.000000,25.000000,38.000000,11.000000,217.000000,83.320000,55.440000,776.340000,2.930000,94.080000,12.500000 -16,2023-08-13 14:00:00,0.000000,25.000000,38.000000,11.000000,217.000000,84.490000,55.710000,776.950000,3.420000,94.480000,14.160000 -16,2023-08-13 15:00:00,0.000000,25.000000,38.000000,11.000000,217.000000,85.470000,55.980000,777.560000,3.910000,94.880000,15.740000 -16,2023-08-13 16:00:00,0.000000,25.000000,38.000000,11.000000,217.000000,86.290000,56.250000,778.170000,4.390000,95.280000,17.200000 -16,2023-08-13 17:00:00,0.000000,27.200000,29.000000,15.000000,238.000000,87.530000,56.600000,778.960000,6.400000,95.800000,22.690000 -16,2023-08-13 18:00:00,0.000000,27.200000,29.000000,15.000000,238.000000,88.530000,56.960000,779.750000,7.390000,96.320000,25.160000 -16,2023-08-13 19:00:00,0.000000,27.200000,29.000000,15.000000,238.000000,89.340000,57.310000,780.550000,8.290000,96.840000,27.320000 -16,2023-08-13 20:00:00,0.000000,27.200000,29.000000,15.000000,238.000000,89.980000,57.660000,781.340000,9.100000,97.360000,29.180000 -16,2023-08-13 21:00:00,0.000000,27.200000,29.000000,15.000000,238.000000,90.500000,57.660000,781.340000,9.790000,97.360000,30.670000 -16,2023-08-13 22:00:00,0.000000,27.200000,29.000000,15.000000,238.000000,90.910000,57.660000,781.340000,10.390000,97.360000,31.910000 -16,2023-08-13 23:00:00,0.000000,22.100000,39.000000,12.000000,244.000000,90.910000,57.660000,781.340000,8.930000,97.360000,28.810000 -16,2023-08-14 00:00:00,0.000000,22.100000,39.000000,12.000000,244.000000,90.910000,57.660000,781.340000,8.930000,97.360000,28.810000 -16,2023-08-14 01:00:00,0.000000,22.100000,39.000000,12.000000,244.000000,90.910000,57.660000,781.340000,8.930000,97.360000,28.810000 -16,2023-08-14 02:00:00,0.000000,22.100000,39.000000,12.000000,244.000000,90.910000,57.660000,781.340000,8.930000,97.360000,28.810000 -16,2023-08-14 03:00:00,0.000000,22.100000,39.000000,12.000000,244.000000,90.910000,57.660000,781.340000,8.930000,97.360000,28.810000 -16,2023-08-14 04:00:00,0.000000,22.100000,39.000000,12.000000,244.000000,90.910000,57.660000,781.340000,8.930000,97.360000,28.810000 -16,2023-08-14 05:00:00,0.000000,19.500000,45.000000,12.000000,215.000000,90.750000,57.810000,781.680000,8.730000,97.580000,28.390000 -16,2023-08-14 06:00:00,0.000000,19.500000,45.000000,12.000000,215.000000,90.610000,57.960000,782.010000,8.550000,97.800000,28.040000 -16,2023-08-14 07:00:00,0.000000,19.500000,45.000000,12.000000,215.000000,90.480000,58.110000,782.350000,8.410000,98.020000,27.740000 -16,2023-08-14 08:00:00,0.000000,19.500000,45.000000,12.000000,215.000000,90.380000,58.260000,782.680000,8.280000,98.240000,27.480000 -16,2023-08-14 09:00:00,0.000000,19.500000,45.000000,12.000000,215.000000,90.290000,58.410000,783.020000,8.170000,98.460000,27.260000 -16,2023-08-14 10:00:00,0.000000,19.500000,45.000000,12.000000,215.000000,90.210000,58.560000,783.350000,8.080000,98.680000,27.080000 -16,2023-08-14 11:00:00,0.300000,24.000000,37.000000,27.000000,257.000000,84.860000,57.200000,781.780000,8.050000,96.710000,26.750000 -16,2023-08-14 12:00:00,0.000000,24.000000,37.000000,27.000000,257.000000,85.940000,57.430000,782.280000,9.350000,97.050000,29.690000 -16,2023-08-14 13:00:00,0.000000,24.000000,37.000000,27.000000,257.000000,86.820000,57.650000,782.790000,10.590000,97.380000,32.320000 -16,2023-08-14 14:00:00,0.000000,24.000000,37.000000,27.000000,257.000000,87.520000,57.880000,783.300000,11.710000,97.710000,34.610000 -16,2023-08-14 15:00:00,0.000000,24.000000,37.000000,27.000000,257.000000,88.090000,58.110000,783.800000,12.700000,98.040000,36.570000 -16,2023-08-14 16:00:00,0.000000,24.000000,37.000000,27.000000,257.000000,88.550000,58.330000,784.310000,13.560000,98.370000,38.230000 -16,2023-08-14 17:00:00,3.770000,22.400000,22.000000,23.000000,270.000000,46.110000,42.530000,758.710000,0.310000,74.610000,0.700000 -16,2023-08-14 18:00:00,0.000000,22.400000,22.000000,23.000000,270.000000,52.930000,42.790000,759.280000,0.730000,75.010000,2.730000 -16,2023-08-14 19:00:00,0.000000,22.400000,22.000000,23.000000,270.000000,59.080000,43.040000,759.850000,1.230000,75.400000,5.000000 -16,2023-08-14 20:00:00,0.000000,22.400000,22.000000,23.000000,270.000000,64.530000,43.290000,760.420000,1.650000,75.800000,6.680000 -16,2023-08-14 21:00:00,0.000000,22.400000,22.000000,23.000000,270.000000,69.290000,43.290000,760.420000,1.950000,75.800000,7.770000 -16,2023-08-14 22:00:00,0.000000,22.400000,22.000000,23.000000,270.000000,73.380000,43.290000,760.420000,2.250000,75.800000,8.830000 -16,2023-08-14 23:00:00,0.000000,17.200000,33.000000,14.000000,266.000000,75.540000,43.290000,760.420000,1.600000,75.800000,6.490000 -16,2023-08-15 00:00:00,0.000000,17.200000,33.000000,14.000000,266.000000,77.440000,43.290000,760.420000,1.820000,75.800000,7.320000 -16,2023-08-15 01:00:00,0.000000,17.200000,33.000000,14.000000,266.000000,79.110000,43.290000,760.420000,2.100000,75.800000,8.320000 -16,2023-08-15 02:00:00,0.000000,17.200000,33.000000,14.000000,266.000000,80.570000,43.290000,760.420000,2.450000,75.800000,9.470000 -16,2023-08-15 03:00:00,0.000000,17.200000,33.000000,14.000000,266.000000,81.850000,43.290000,760.420000,2.830000,75.800000,10.710000 -16,2023-08-15 04:00:00,0.000000,17.200000,33.000000,14.000000,266.000000,82.970000,43.290000,760.420000,3.250000,75.800000,11.980000 -16,2023-08-15 05:00:00,0.000000,17.400000,35.000000,16.000000,268.000000,83.910000,43.370000,760.950000,4.070000,75.930000,14.300000 -16,2023-08-15 06:00:00,0.000000,17.400000,35.000000,16.000000,268.000000,84.730000,43.460000,761.480000,4.540000,76.060000,15.580000 -16,2023-08-15 07:00:00,0.000000,17.400000,35.000000,16.000000,268.000000,85.430000,43.540000,762.010000,5.000000,76.190000,16.770000 -16,2023-08-15 08:00:00,0.000000,17.400000,35.000000,16.000000,268.000000,86.030000,43.620000,762.540000,5.440000,76.320000,17.880000 -16,2023-08-15 09:00:00,0.000000,17.400000,35.000000,16.000000,268.000000,86.550000,43.700000,763.070000,5.860000,76.450000,18.890000 -16,2023-08-15 10:00:00,0.000000,17.400000,35.000000,16.000000,268.000000,87.000000,43.780000,763.600000,6.240000,76.580000,19.800000 -16,2023-08-15 11:00:00,0.980000,13.900000,73.000000,25.000000,274.000000,70.320000,40.640000,758.900000,2.230000,71.680000,8.440000 -16,2023-08-15 12:00:00,0.000000,13.900000,73.000000,25.000000,274.000000,71.470000,40.670000,759.080000,2.310000,71.720000,8.730000 -16,2023-08-15 13:00:00,0.000000,13.900000,73.000000,25.000000,274.000000,72.520000,40.690000,759.250000,2.410000,71.770000,9.030000 -16,2023-08-15 14:00:00,0.000000,13.900000,73.000000,25.000000,274.000000,73.480000,40.720000,759.430000,2.500000,71.810000,9.340000 -16,2023-08-15 15:00:00,0.000000,13.900000,73.000000,25.000000,274.000000,74.340000,40.750000,759.600000,2.610000,71.860000,9.670000 -16,2023-08-15 16:00:00,0.000000,13.900000,73.000000,25.000000,274.000000,75.130000,40.770000,759.780000,2.720000,71.900000,10.020000 -16,2023-08-15 17:00:00,1.750000,17.000000,60.000000,25.000000,287.000000,54.430000,35.700000,751.390000,0.930000,63.820000,3.220000 -16,2023-08-15 18:00:00,0.000000,17.000000,60.000000,25.000000,287.000000,57.800000,35.750000,751.710000,1.240000,63.900000,4.450000 -16,2023-08-15 19:00:00,0.000000,17.000000,60.000000,25.000000,287.000000,60.890000,35.800000,752.030000,1.520000,63.980000,5.490000 -16,2023-08-15 20:00:00,0.000000,17.000000,60.000000,25.000000,287.000000,63.690000,35.840000,752.340000,1.760000,64.060000,6.320000 -16,2023-08-15 21:00:00,0.000000,17.000000,60.000000,25.000000,287.000000,66.220000,35.840000,752.340000,1.950000,64.060000,6.950000 -16,2023-08-15 22:00:00,0.000000,17.000000,60.000000,25.000000,287.000000,68.490000,35.840000,752.340000,2.100000,64.060000,7.450000 -16,2023-08-15 23:00:00,0.120000,15.300000,63.000000,17.000000,273.000000,68.450000,35.480000,751.750000,1.400000,63.460000,5.030000 -16,2023-08-16 00:00:00,0.000000,15.300000,63.000000,17.000000,273.000000,70.060000,35.480000,751.750000,1.480000,63.460000,5.300000 -16,2023-08-16 01:00:00,0.000000,15.300000,63.000000,17.000000,273.000000,71.520000,35.480000,751.750000,1.550000,63.460000,5.560000 -16,2023-08-16 02:00:00,0.000000,15.300000,63.000000,17.000000,273.000000,72.840000,35.480000,751.750000,1.630000,63.460000,5.840000 -16,2023-08-16 03:00:00,0.000000,15.300000,63.000000,17.000000,273.000000,74.040000,35.480000,751.750000,1.720000,63.460000,6.140000 -16,2023-08-16 04:00:00,0.000000,15.300000,63.000000,17.000000,273.000000,75.130000,35.480000,751.750000,1.820000,63.460000,6.470000 -16,2023-08-16 05:00:00,0.000000,14.000000,68.000000,15.000000,282.000000,75.880000,35.540000,751.930000,1.720000,63.570000,6.150000 -16,2023-08-16 06:00:00,0.000000,14.000000,68.000000,15.000000,282.000000,76.570000,35.610000,752.110000,1.800000,63.680000,6.420000 -16,2023-08-16 07:00:00,0.000000,14.000000,68.000000,15.000000,282.000000,77.190000,35.670000,752.290000,1.880000,63.780000,6.710000 -16,2023-08-16 08:00:00,0.000000,14.000000,68.000000,15.000000,282.000000,77.760000,35.740000,752.470000,1.970000,63.890000,7.000000 -16,2023-08-16 09:00:00,0.000000,14.000000,68.000000,15.000000,282.000000,78.280000,35.800000,752.650000,2.050000,64.000000,7.290000 -16,2023-08-16 10:00:00,0.000000,14.000000,68.000000,15.000000,282.000000,78.760000,35.870000,752.830000,2.140000,64.100000,7.580000 -16,2023-08-16 11:00:00,0.030000,19.200000,44.000000,13.000000,278.000000,80.030000,36.030000,753.270000,2.190000,64.360000,7.770000 -16,2023-08-16 12:00:00,0.000000,19.200000,44.000000,13.000000,278.000000,81.140000,36.190000,753.710000,2.480000,64.620000,8.670000 -16,2023-08-16 13:00:00,0.000000,19.200000,44.000000,13.000000,278.000000,82.110000,36.350000,754.150000,2.780000,64.880000,9.580000 -16,2023-08-16 14:00:00,0.000000,19.200000,44.000000,13.000000,278.000000,82.950000,36.510000,754.590000,3.090000,65.140000,10.490000 -16,2023-08-16 15:00:00,0.000000,19.200000,44.000000,13.000000,278.000000,83.680000,36.670000,755.030000,3.390000,65.400000,11.360000 -16,2023-08-16 16:00:00,0.000000,19.200000,44.000000,13.000000,278.000000,84.320000,36.830000,755.470000,3.690000,65.660000,12.190000 -16,2023-08-16 17:00:00,0.000000,23.000000,31.000000,4.000000,251.000000,85.300000,37.080000,756.150000,2.680000,66.060000,9.410000 -16,2023-08-16 18:00:00,0.000000,23.000000,31.000000,4.000000,251.000000,86.150000,37.330000,756.840000,3.020000,66.460000,10.430000 -16,2023-08-16 19:00:00,0.000000,23.000000,31.000000,4.000000,251.000000,86.880000,37.570000,757.520000,3.350000,66.860000,11.400000 -16,2023-08-16 20:00:00,0.000000,23.000000,31.000000,4.000000,251.000000,87.520000,37.820000,758.210000,3.670000,67.260000,12.300000 -16,2023-08-16 21:00:00,0.000000,23.000000,31.000000,4.000000,251.000000,88.060000,37.820000,758.210000,3.970000,67.260000,13.090000 -16,2023-08-16 22:00:00,0.000000,23.000000,31.000000,4.000000,251.000000,88.530000,37.820000,758.210000,4.250000,67.260000,13.800000 -16,2023-08-16 23:00:00,0.000000,17.500000,45.000000,7.000000,168.000000,88.530000,37.820000,758.210000,4.940000,67.260000,15.500000 -16,2023-08-17 00:00:00,0.000000,17.500000,45.000000,7.000000,168.000000,88.530000,37.820000,758.210000,4.940000,67.260000,15.500000 -16,2023-08-17 01:00:00,0.000000,17.500000,45.000000,7.000000,168.000000,88.530000,37.820000,758.210000,4.940000,67.260000,15.500000 -16,2023-08-17 02:00:00,0.000000,17.500000,45.000000,7.000000,168.000000,88.530000,37.820000,758.210000,4.940000,67.260000,15.500000 -16,2023-08-17 03:00:00,0.000000,17.500000,45.000000,7.000000,168.000000,88.530000,37.820000,758.210000,4.940000,67.260000,15.500000 -16,2023-08-17 04:00:00,0.000000,17.500000,45.000000,7.000000,168.000000,88.530000,37.820000,758.210000,4.940000,67.260000,15.500000 -16,2023-08-17 05:00:00,0.000000,12.700000,63.000000,4.000000,255.000000,88.230000,37.820000,758.210000,4.070000,67.260000,13.340000 -16,2023-08-17 06:00:00,0.000000,12.700000,63.000000,4.000000,255.000000,87.960000,37.910000,758.490000,3.910000,67.400000,12.950000 -16,2023-08-17 07:00:00,0.000000,12.700000,63.000000,4.000000,255.000000,87.720000,38.000000,758.780000,3.780000,67.540000,12.610000 -16,2023-08-17 08:00:00,0.000000,12.700000,63.000000,4.000000,255.000000,87.500000,38.080000,759.060000,3.660000,67.680000,12.320000 -16,2023-08-17 09:00:00,0.000000,12.700000,63.000000,4.000000,255.000000,87.300000,38.170000,759.340000,3.560000,67.820000,12.060000 -16,2023-08-17 10:00:00,0.000000,12.700000,63.000000,4.000000,255.000000,87.120000,38.260000,759.630000,3.470000,67.960000,11.830000 -16,2023-08-17 11:00:00,0.000000,18.400000,52.000000,8.000000,343.000000,87.120000,38.420000,760.160000,4.240000,68.220000,13.900000 -16,2023-08-17 12:00:00,0.000000,18.400000,52.000000,8.000000,343.000000,87.120000,38.580000,760.690000,4.240000,68.480000,13.930000 -16,2023-08-17 13:00:00,0.000000,18.400000,52.000000,8.000000,343.000000,87.120000,38.740000,761.220000,4.240000,68.740000,13.960000 -16,2023-08-17 14:00:00,0.000000,18.400000,52.000000,8.000000,343.000000,87.120000,38.910000,761.750000,4.240000,69.000000,13.990000 -16,2023-08-17 15:00:00,0.000000,18.400000,52.000000,8.000000,343.000000,87.120000,39.070000,762.280000,4.240000,69.260000,14.020000 -16,2023-08-17 16:00:00,0.000000,18.400000,52.000000,8.000000,343.000000,87.120000,39.230000,762.810000,4.240000,69.520000,14.050000 -16,2023-08-17 17:00:00,0.120000,17.500000,59.000000,13.000000,3.000000,86.060000,39.360000,763.240000,4.700000,69.730000,15.230000 -16,2023-08-17 18:00:00,0.000000,17.500000,59.000000,13.000000,3.000000,86.060000,39.490000,763.670000,4.700000,69.940000,15.250000 -16,2023-08-17 19:00:00,0.000000,17.500000,59.000000,13.000000,3.000000,86.060000,39.620000,764.100000,4.700000,70.150000,15.280000 -16,2023-08-17 20:00:00,0.000000,17.500000,59.000000,13.000000,3.000000,86.060000,39.760000,764.520000,4.700000,70.360000,15.300000 -16,2023-08-17 21:00:00,0.000000,17.500000,59.000000,13.000000,3.000000,86.060000,39.760000,764.520000,4.700000,70.360000,15.300000 -16,2023-08-17 22:00:00,0.000000,17.500000,59.000000,13.000000,3.000000,86.060000,39.760000,764.520000,4.700000,70.360000,15.300000 -16,2023-08-17 23:00:00,0.650000,13.800000,81.000000,6.000000,341.000000,80.590000,39.760000,764.520000,1.640000,70.360000,6.300000 -16,2023-08-18 00:00:00,0.000000,13.800000,81.000000,6.000000,341.000000,80.590000,39.760000,764.520000,1.640000,70.360000,6.300000 -16,2023-08-18 01:00:00,0.000000,13.800000,81.000000,6.000000,341.000000,80.590000,39.760000,764.520000,1.640000,70.360000,6.300000 -16,2023-08-18 02:00:00,0.000000,13.800000,81.000000,6.000000,341.000000,80.590000,39.760000,764.520000,1.640000,70.360000,6.300000 -16,2023-08-18 03:00:00,0.000000,13.800000,81.000000,6.000000,341.000000,80.590000,39.760000,764.520000,1.640000,70.360000,6.300000 -16,2023-08-18 04:00:00,0.000000,13.800000,81.000000,6.000000,341.000000,80.590000,39.760000,764.520000,1.640000,70.360000,6.300000 -16,2023-08-18 05:00:00,0.000000,13.700000,87.000000,8.000000,359.000000,80.550000,39.760000,764.520000,1.800000,70.360000,6.890000 -16,2023-08-18 06:00:00,0.000000,13.700000,87.000000,8.000000,359.000000,80.510000,39.800000,764.720000,1.790000,70.440000,6.870000 -16,2023-08-18 07:00:00,0.000000,13.700000,87.000000,8.000000,359.000000,80.470000,39.850000,764.910000,1.790000,70.510000,6.850000 -16,2023-08-18 08:00:00,0.000000,13.700000,87.000000,8.000000,359.000000,80.440000,39.900000,765.100000,1.780000,70.590000,6.840000 -16,2023-08-18 09:00:00,0.000000,13.700000,87.000000,8.000000,359.000000,80.410000,39.940000,765.290000,1.780000,70.660000,6.820000 -16,2023-08-18 10:00:00,0.000000,13.700000,87.000000,8.000000,359.000000,80.390000,39.990000,765.490000,1.770000,70.740000,6.810000 -16,2023-08-18 11:00:00,0.000000,17.400000,61.000000,16.000000,21.000000,80.940000,40.170000,766.220000,2.820000,71.020000,10.240000 -16,2023-08-18 12:00:00,0.000000,17.400000,61.000000,16.000000,21.000000,81.420000,40.340000,766.950000,2.980000,71.310000,10.750000 -16,2023-08-18 13:00:00,0.000000,17.400000,61.000000,16.000000,21.000000,81.850000,40.520000,767.680000,3.130000,71.600000,11.240000 -16,2023-08-18 14:00:00,0.000000,17.400000,61.000000,16.000000,21.000000,82.230000,40.700000,768.410000,3.280000,71.880000,11.690000 -16,2023-08-18 15:00:00,0.000000,17.400000,61.000000,16.000000,21.000000,82.570000,40.880000,769.140000,3.420000,72.160000,12.120000 -16,2023-08-18 16:00:00,0.000000,17.400000,61.000000,16.000000,21.000000,82.870000,41.050000,769.870000,3.550000,72.450000,12.520000 -16,2023-08-18 17:00:00,0.030000,17.000000,57.000000,15.000000,20.000000,83.200000,41.240000,770.660000,3.530000,72.760000,12.480000 -17,2023-08-03 00:00:00,0.000000,16.400000,63.000000,6.000000,54.000000,86.000000,118.400000,826.100000,3.270000,174.330000,17.540000 -17,2023-08-03 01:00:00,0.000000,16.400000,63.000000,6.000000,54.000000,86.000000,118.400000,826.100000,3.270000,174.330000,17.540000 -17,2023-08-03 02:00:00,0.000000,13.900000,72.000000,3.000000,48.000000,85.800000,118.400000,826.100000,2.730000,174.330000,15.320000 -17,2023-08-03 03:00:00,0.000000,13.900000,72.000000,3.000000,48.000000,85.610000,118.400000,826.100000,2.670000,174.330000,15.030000 -17,2023-08-03 04:00:00,0.000000,13.900000,72.000000,3.000000,48.000000,85.450000,118.400000,826.100000,2.610000,174.330000,14.770000 -17,2023-08-03 05:00:00,0.000000,12.500000,79.000000,2.000000,38.000000,85.140000,118.440000,826.210000,2.370000,174.380000,13.740000 -17,2023-08-03 06:00:00,0.000000,12.500000,79.000000,2.000000,38.000000,84.860000,118.470000,826.310000,2.280000,174.430000,13.330000 -17,2023-08-03 07:00:00,0.000000,12.500000,79.000000,2.000000,38.000000,84.610000,118.510000,826.420000,2.210000,174.470000,12.980000 -17,2023-08-03 08:00:00,0.000000,16.400000,64.000000,3.000000,49.000000,84.610000,118.590000,826.660000,2.320000,174.580000,13.510000 -17,2023-08-03 09:00:00,0.000000,16.400000,64.000000,3.000000,49.000000,84.610000,118.680000,826.890000,2.320000,174.680000,13.510000 -17,2023-08-03 10:00:00,0.000000,16.400000,64.000000,3.000000,49.000000,84.610000,118.760000,827.130000,2.320000,174.780000,13.510000 -17,2023-08-03 11:00:00,0.000000,20.900000,48.000000,8.000000,54.000000,85.030000,118.920000,827.580000,3.160000,174.970000,17.120000 -17,2023-08-03 12:00:00,0.000000,20.900000,48.000000,8.000000,54.000000,85.400000,119.070000,828.030000,3.330000,175.170000,17.780000 -17,2023-08-03 13:00:00,0.000000,20.900000,48.000000,8.000000,54.000000,85.720000,119.230000,828.480000,3.480000,175.370000,18.380000 -17,2023-08-03 14:00:00,0.000000,23.000000,41.000000,9.000000,43.000000,86.280000,119.430000,829.060000,3.960000,175.620000,20.200000 -17,2023-08-03 15:00:00,0.000000,23.000000,41.000000,9.000000,43.000000,86.760000,119.640000,829.640000,4.240000,175.870000,21.210000 -17,2023-08-03 16:00:00,0.000000,23.000000,41.000000,9.000000,43.000000,87.160000,119.840000,830.220000,4.490000,176.120000,22.120000 -17,2023-08-03 17:00:00,0.000000,22.800000,40.000000,11.000000,45.000000,87.550000,120.040000,830.800000,5.240000,176.370000,24.680000 -17,2023-08-03 18:00:00,0.000000,22.800000,40.000000,11.000000,45.000000,87.870000,120.250000,831.390000,5.490000,176.630000,25.500000 -17,2023-08-03 19:00:00,0.000000,22.800000,40.000000,11.000000,45.000000,88.140000,120.450000,831.970000,5.710000,176.880000,26.210000 -17,2023-08-03 20:00:00,0.000000,20.800000,48.000000,1.000000,32.000000,88.140000,120.610000,832.420000,3.450000,177.070000,18.300000 -17,2023-08-03 21:00:00,0.000000,20.800000,48.000000,1.000000,32.000000,88.140000,120.760000,832.870000,3.450000,177.270000,18.310000 -17,2023-08-03 22:00:00,0.000000,20.800000,48.000000,1.000000,32.000000,88.140000,120.760000,832.870000,3.450000,177.270000,18.310000 -17,2023-08-03 23:00:00,0.000000,16.400000,66.000000,3.000000,277.000000,87.860000,120.760000,832.870000,3.660000,177.270000,19.130000 -17,2023-08-04 00:00:00,0.000000,16.400000,66.000000,3.000000,277.000000,87.600000,120.760000,832.870000,3.530000,177.270000,18.630000 -17,2023-08-04 01:00:00,0.000000,16.400000,66.000000,3.000000,277.000000,87.380000,120.760000,832.870000,3.420000,177.270000,18.190000 -17,2023-08-04 02:00:00,0.000000,13.600000,82.000000,4.000000,239.000000,86.730000,120.760000,832.870000,3.280000,177.270000,17.630000 -17,2023-08-04 03:00:00,0.000000,13.600000,82.000000,4.000000,239.000000,86.160000,120.760000,832.870000,3.030000,177.270000,16.600000 -17,2023-08-04 04:00:00,0.000000,13.600000,82.000000,4.000000,239.000000,85.650000,120.760000,832.870000,2.820000,177.270000,15.740000 -17,2023-08-04 05:00:00,0.000000,12.000000,94.000000,5.000000,251.000000,84.610000,120.770000,832.890000,2.570000,177.280000,14.660000 -17,2023-08-04 06:00:00,0.000000,12.000000,94.000000,5.000000,251.000000,83.700000,120.780000,832.920000,2.270000,177.290000,13.340000 -17,2023-08-04 07:00:00,0.000000,12.000000,94.000000,5.000000,251.000000,82.910000,120.790000,832.950000,2.050000,177.300000,12.290000 -17,2023-08-04 08:00:00,0.000000,17.800000,70.000000,6.000000,264.000000,82.960000,120.860000,833.160000,2.170000,177.390000,12.860000 -17,2023-08-04 09:00:00,0.000000,17.800000,70.000000,6.000000,264.000000,83.010000,120.920000,833.370000,2.180000,177.470000,12.920000 -17,2023-08-04 10:00:00,0.000000,17.800000,70.000000,6.000000,264.000000,83.050000,120.990000,833.580000,2.200000,177.550000,12.980000 -17,2023-08-04 11:00:00,0.000000,22.000000,53.000000,8.000000,273.000000,83.580000,121.130000,834.010000,2.600000,177.730000,14.810000 -17,2023-08-04 12:00:00,0.000000,22.000000,53.000000,8.000000,273.000000,84.040000,121.270000,834.430000,2.770000,177.900000,15.530000 -17,2023-08-04 13:00:00,0.000000,22.000000,53.000000,8.000000,273.000000,84.440000,121.400000,834.860000,2.920000,178.070000,16.180000 -17,2023-08-04 14:00:00,0.000000,24.300000,41.000000,7.000000,301.000000,85.220000,121.600000,835.470000,3.090000,178.320000,16.880000 -17,2023-08-04 15:00:00,0.000000,24.300000,41.000000,7.000000,301.000000,85.890000,121.800000,836.090000,3.390000,178.570000,18.090000 -17,2023-08-04 16:00:00,0.000000,24.300000,41.000000,7.000000,301.000000,86.460000,122.000000,836.700000,3.670000,178.810000,19.190000 -17,2023-08-04 17:00:00,0.080000,24.600000,37.000000,8.000000,333.000000,87.090000,122.210000,837.370000,4.230000,179.080000,21.250000 -17,2023-08-04 18:00:00,0.000000,24.600000,37.000000,8.000000,333.000000,87.630000,122.430000,838.040000,4.560000,179.350000,22.460000 -17,2023-08-04 19:00:00,0.000000,24.600000,37.000000,8.000000,333.000000,88.090000,122.640000,838.710000,4.870000,179.620000,23.520000 -17,2023-08-04 20:00:00,0.000000,22.800000,41.000000,4.000000,340.000000,88.260000,122.820000,839.270000,4.090000,179.850000,20.760000 -17,2023-08-04 21:00:00,0.000000,22.800000,41.000000,4.000000,340.000000,88.420000,123.000000,839.830000,4.180000,180.070000,21.090000 -17,2023-08-04 22:00:00,0.000000,22.800000,41.000000,4.000000,340.000000,88.550000,123.000000,839.830000,4.260000,180.070000,21.390000 -17,2023-08-04 23:00:00,0.000000,17.700000,57.000000,5.000000,275.000000,88.410000,123.000000,839.830000,4.390000,180.070000,21.850000 -17,2023-08-05 00:00:00,0.000000,17.700000,57.000000,5.000000,275.000000,88.280000,123.000000,839.830000,4.310000,180.070000,21.570000 -17,2023-08-05 01:00:00,0.000000,17.700000,57.000000,5.000000,275.000000,88.170000,123.000000,839.830000,4.240000,180.070000,21.330000 -17,2023-08-05 02:00:00,0.000000,15.900000,69.000000,8.000000,273.000000,87.760000,123.000000,839.830000,4.650000,180.070000,22.770000 -17,2023-08-05 03:00:00,0.000000,15.900000,69.000000,8.000000,273.000000,87.400000,123.000000,839.830000,4.420000,180.070000,21.950000 -17,2023-08-05 04:00:00,0.000000,15.900000,69.000000,8.000000,273.000000,87.090000,123.000000,839.830000,4.220000,180.070000,21.270000 -17,2023-08-05 05:00:00,0.000000,16.000000,87.000000,8.000000,290.000000,86.170000,123.030000,839.920000,3.710000,180.110000,19.360000 -17,2023-08-05 06:00:00,0.000000,16.000000,87.000000,8.000000,290.000000,85.390000,123.060000,840.020000,3.320000,180.150000,17.860000 -17,2023-08-05 07:00:00,0.000000,16.000000,87.000000,8.000000,290.000000,84.720000,123.090000,840.110000,3.030000,180.180000,16.680000 -17,2023-08-05 08:00:00,0.000000,18.500000,72.000000,9.000000,300.000000,84.720000,123.160000,840.350000,3.190000,180.270000,17.320000 -17,2023-08-05 09:00:00,0.000000,18.500000,72.000000,9.000000,300.000000,84.720000,123.240000,840.590000,3.190000,180.370000,17.320000 -17,2023-08-05 10:00:00,0.000000,18.500000,72.000000,9.000000,300.000000,84.720000,123.310000,840.830000,3.190000,180.460000,17.320000 -17,2023-08-05 11:00:00,0.000000,21.800000,55.000000,8.000000,316.000000,84.980000,123.460000,841.300000,3.140000,180.640000,17.140000 -17,2023-08-05 12:00:00,0.000000,21.800000,55.000000,8.000000,316.000000,85.210000,123.600000,841.770000,3.240000,180.820000,17.550000 -17,2023-08-05 13:00:00,0.000000,21.800000,55.000000,8.000000,316.000000,85.410000,123.740000,842.240000,3.330000,181.000000,17.920000 -17,2023-08-05 14:00:00,0.000000,23.300000,47.000000,11.000000,357.000000,85.870000,123.930000,842.850000,4.130000,181.240000,20.960000 -17,2023-08-05 15:00:00,0.000000,23.300000,47.000000,11.000000,357.000000,86.250000,124.120000,843.460000,4.360000,181.470000,21.800000 -17,2023-08-05 16:00:00,0.000000,23.300000,47.000000,11.000000,357.000000,86.580000,124.300000,844.070000,4.570000,181.710000,22.540000 -17,2023-08-05 17:00:00,0.000000,22.200000,46.000000,12.000000,28.000000,86.860000,124.480000,844.640000,5.000000,181.930000,24.020000 -17,2023-08-05 18:00:00,0.000000,22.200000,46.000000,12.000000,28.000000,87.090000,124.660000,845.220000,5.170000,182.160000,24.590000 -17,2023-08-05 19:00:00,0.000000,22.200000,46.000000,12.000000,28.000000,87.290000,124.840000,845.800000,5.320000,182.380000,25.090000 -17,2023-08-05 20:00:00,0.000000,20.000000,49.000000,7.000000,45.000000,87.320000,124.980000,846.280000,4.150000,182.560000,21.060000 -17,2023-08-05 21:00:00,0.000000,20.000000,49.000000,7.000000,45.000000,87.350000,125.130000,846.760000,4.170000,182.750000,21.120000 -17,2023-08-05 22:00:00,0.000000,20.000000,49.000000,7.000000,45.000000,87.370000,125.130000,846.760000,4.180000,182.750000,21.170000 -17,2023-08-05 23:00:00,0.000000,15.200000,67.000000,1.000000,194.000000,87.160000,125.130000,846.760000,3.000000,182.750000,16.590000 -17,2023-08-06 00:00:00,0.000000,15.200000,67.000000,1.000000,194.000000,86.970000,125.130000,846.760000,2.920000,182.750000,16.260000 -17,2023-08-06 01:00:00,0.000000,15.200000,67.000000,1.000000,194.000000,86.800000,125.130000,846.760000,2.850000,182.750000,15.960000 -17,2023-08-06 02:00:00,0.000000,12.900000,77.000000,2.000000,252.000000,86.400000,125.130000,846.760000,2.830000,182.750000,15.890000 -17,2023-08-06 03:00:00,0.000000,12.900000,77.000000,2.000000,252.000000,86.050000,125.130000,846.760000,2.690000,182.750000,15.300000 -17,2023-08-06 04:00:00,0.000000,12.900000,77.000000,2.000000,252.000000,85.730000,125.130000,846.760000,2.580000,182.750000,14.780000 -17,2023-08-06 05:00:00,0.000000,11.600000,85.000000,3.000000,265.000000,85.190000,125.160000,846.820000,2.510000,182.780000,14.500000 -17,2023-08-06 06:00:00,0.000000,11.600000,85.000000,3.000000,265.000000,84.700000,125.190000,846.890000,2.350000,182.810000,13.770000 -17,2023-08-06 07:00:00,0.000000,11.600000,85.000000,3.000000,265.000000,84.270000,125.210000,846.950000,2.220000,182.850000,13.160000 -17,2023-08-06 08:00:00,0.000000,16.400000,63.000000,1.000000,276.000000,84.290000,125.300000,847.170000,2.010000,182.960000,12.180000 -17,2023-08-06 09:00:00,0.000000,16.400000,63.000000,1.000000,276.000000,84.310000,125.400000,847.380000,2.020000,183.070000,12.200000 -17,2023-08-06 10:00:00,0.000000,16.400000,63.000000,1.000000,276.000000,84.330000,125.490000,847.600000,2.020000,183.180000,12.230000 -17,2023-08-06 11:00:00,0.000000,22.000000,38.000000,5.000000,25.000000,85.060000,125.710000,848.110000,2.730000,183.440000,15.470000 -17,2023-08-06 12:00:00,0.000000,22.000000,38.000000,5.000000,25.000000,85.700000,125.920000,848.630000,2.980000,183.700000,16.550000 -17,2023-08-06 13:00:00,0.000000,22.000000,38.000000,5.000000,25.000000,86.260000,126.140000,849.140000,3.230000,183.960000,17.550000 -17,2023-08-06 14:00:00,0.000000,23.500000,30.000000,10.000000,38.000000,87.150000,126.410000,849.780000,4.710000,184.290000,23.080000 -17,2023-08-06 15:00:00,0.000000,23.500000,30.000000,10.000000,38.000000,87.890000,126.680000,850.410000,5.240000,184.610000,24.880000 -17,2023-08-06 16:00:00,0.000000,23.500000,30.000000,10.000000,38.000000,88.520000,126.950000,851.050000,5.730000,184.940000,26.490000 -17,2023-08-06 17:00:00,0.000000,22.400000,31.000000,12.000000,43.000000,88.980000,127.200000,851.640000,6.770000,185.240000,29.690000 -17,2023-08-06 18:00:00,0.000000,22.400000,31.000000,12.000000,43.000000,89.360000,127.450000,852.220000,7.150000,185.530000,30.820000 -17,2023-08-06 19:00:00,0.000000,22.400000,31.000000,12.000000,43.000000,89.680000,127.700000,852.810000,7.490000,185.830000,31.790000 -17,2023-08-06 20:00:00,0.000000,19.800000,37.000000,6.000000,43.000000,89.680000,127.890000,853.270000,5.540000,186.070000,25.880000 -17,2023-08-06 21:00:00,0.000000,19.800000,37.000000,6.000000,43.000000,89.680000,128.090000,853.720000,5.540000,186.300000,25.890000 -17,2023-08-06 22:00:00,0.000000,19.800000,37.000000,6.000000,43.000000,89.680000,128.090000,853.720000,5.540000,186.300000,25.890000 -17,2023-08-06 23:00:00,0.000000,13.900000,56.000000,3.000000,8.000000,89.410000,128.090000,853.720000,4.580000,186.300000,22.670000 -17,2023-08-07 00:00:00,0.000000,13.900000,56.000000,3.000000,8.000000,89.170000,128.090000,853.720000,4.430000,186.300000,22.130000 -17,2023-08-07 01:00:00,0.000000,13.900000,56.000000,3.000000,8.000000,88.960000,128.090000,853.720000,4.290000,186.300000,21.640000 -17,2023-08-07 02:00:00,0.000000,10.800000,69.000000,4.000000,324.000000,88.490000,128.090000,853.720000,4.220000,186.300000,21.370000 -17,2023-08-07 03:00:00,0.000000,10.800000,69.000000,4.000000,324.000000,88.060000,128.090000,853.720000,3.970000,186.300000,20.460000 -17,2023-08-07 04:00:00,0.000000,10.800000,69.000000,4.000000,324.000000,87.680000,128.090000,853.720000,3.760000,186.300000,19.660000 -17,2023-08-07 05:00:00,0.000000,8.900000,81.000000,5.000000,294.000000,87.040000,128.110000,853.790000,3.600000,186.330000,19.080000 -17,2023-08-07 06:00:00,0.000000,8.900000,81.000000,5.000000,294.000000,86.460000,128.140000,853.860000,3.320000,186.360000,17.960000 -17,2023-08-07 07:00:00,0.000000,8.900000,81.000000,5.000000,294.000000,85.940000,128.170000,853.930000,3.090000,186.400000,17.020000 -17,2023-08-07 08:00:00,0.000000,14.800000,64.000000,3.000000,357.000000,85.910000,128.240000,854.120000,2.780000,186.490000,15.730000 -17,2023-08-07 09:00:00,0.000000,14.800000,64.000000,3.000000,357.000000,85.890000,128.320000,854.310000,2.770000,186.580000,15.690000 -17,2023-08-07 10:00:00,0.000000,14.800000,64.000000,3.000000,357.000000,85.860000,128.400000,854.500000,2.760000,186.670000,15.650000 -17,2023-08-07 11:00:00,0.000000,21.600000,42.000000,11.000000,74.000000,86.330000,128.580000,854.980000,4.410000,186.900000,22.090000 -17,2023-08-07 12:00:00,0.000000,21.600000,42.000000,11.000000,74.000000,86.730000,128.770000,855.450000,4.670000,187.120000,23.000000 -17,2023-08-07 13:00:00,0.000000,21.600000,42.000000,11.000000,74.000000,87.080000,128.960000,855.920000,4.900000,187.350000,23.810000 -17,2023-08-07 14:00:00,0.000000,24.100000,32.000000,14.000000,66.000000,87.840000,129.210000,856.570000,6.360000,187.650000,28.510000 -17,2023-08-07 15:00:00,0.000000,24.100000,32.000000,14.000000,66.000000,88.470000,129.470000,857.220000,6.960000,187.960000,30.320000 -17,2023-08-07 16:00:00,0.000000,24.100000,32.000000,14.000000,66.000000,88.990000,129.720000,857.860000,7.500000,188.270000,31.880000 -17,2023-08-07 17:00:00,0.000000,23.400000,34.000000,21.000000,54.000000,89.340000,129.960000,858.460000,11.220000,188.550000,41.550000 -17,2023-08-07 18:00:00,0.000000,23.400000,34.000000,21.000000,54.000000,89.620000,130.190000,859.060000,11.700000,188.840000,42.680000 -17,2023-08-07 19:00:00,0.000000,23.400000,34.000000,21.000000,54.000000,89.860000,130.430000,859.670000,12.090000,189.130000,43.610000 -17,2023-08-07 20:00:00,0.000000,20.800000,39.000000,13.000000,53.000000,89.860000,130.620000,860.140000,8.080000,189.350000,33.550000 -17,2023-08-07 21:00:00,0.000000,20.800000,39.000000,13.000000,53.000000,89.860000,130.810000,860.610000,8.080000,189.580000,33.550000 -17,2023-08-07 22:00:00,0.000000,20.800000,39.000000,13.000000,53.000000,89.860000,130.810000,860.610000,8.080000,189.580000,33.550000 -17,2023-08-07 23:00:00,0.000000,16.400000,49.000000,8.000000,78.000000,89.700000,130.810000,860.610000,6.140000,189.580000,27.890000 -17,2023-08-08 00:00:00,0.000000,16.400000,49.000000,8.000000,78.000000,89.560000,130.810000,860.610000,6.020000,189.580000,27.510000 -17,2023-08-08 01:00:00,0.000000,16.400000,49.000000,8.000000,78.000000,89.440000,130.810000,860.610000,5.920000,189.580000,27.180000 -17,2023-08-08 02:00:00,0.000000,15.000000,47.000000,10.000000,100.000000,89.340000,130.810000,860.610000,6.450000,189.580000,28.850000 -17,2023-08-08 03:00:00,0.000000,15.000000,47.000000,10.000000,100.000000,89.260000,130.810000,860.610000,6.380000,189.580000,28.610000 -17,2023-08-08 04:00:00,0.000000,15.000000,47.000000,10.000000,100.000000,89.180000,130.810000,860.610000,6.310000,189.580000,28.400000 -17,2023-08-08 05:00:00,0.000000,13.000000,52.000000,9.000000,98.000000,89.000000,130.890000,860.820000,5.840000,189.680000,26.930000 -17,2023-08-08 06:00:00,0.000000,13.000000,52.000000,9.000000,98.000000,88.830000,130.980000,861.040000,5.700000,189.780000,26.490000 -17,2023-08-08 07:00:00,0.000000,13.000000,52.000000,9.000000,98.000000,88.680000,131.070000,861.250000,5.580000,189.890000,26.100000 -17,2023-08-08 08:00:00,0.000000,16.000000,45.000000,10.000000,103.000000,88.680000,131.190000,861.540000,5.870000,190.030000,27.030000 -17,2023-08-08 09:00:00,0.000000,16.000000,45.000000,10.000000,103.000000,88.680000,131.310000,861.830000,5.870000,190.180000,27.030000 -17,2023-08-08 10:00:00,0.000000,16.000000,45.000000,10.000000,103.000000,88.680000,131.430000,862.130000,5.870000,190.320000,27.040000 -17,2023-08-08 11:00:00,0.000000,19.700000,37.000000,12.000000,86.000000,88.820000,131.600000,862.550000,6.620000,190.530000,29.380000 -17,2023-08-08 12:00:00,0.000000,19.700000,37.000000,12.000000,86.000000,88.940000,131.780000,862.970000,6.740000,190.740000,29.730000 -17,2023-08-08 13:00:00,0.000000,19.700000,37.000000,12.000000,86.000000,89.050000,131.950000,863.400000,6.840000,190.950000,30.040000 -17,2023-08-08 14:00:00,0.000000,21.400000,33.000000,12.000000,73.000000,89.310000,132.160000,863.900000,7.110000,191.200000,30.830000 -17,2023-08-08 15:00:00,0.000000,21.400000,33.000000,12.000000,73.000000,89.540000,132.370000,864.400000,7.340000,191.440000,31.510000 -17,2023-08-08 16:00:00,0.000000,21.400000,33.000000,12.000000,73.000000,89.730000,132.570000,864.900000,7.540000,191.690000,32.090000 -17,2023-08-08 17:00:00,0.000000,21.400000,34.000000,13.000000,63.000000,89.850000,132.780000,865.390000,8.080000,191.930000,33.600000 -17,2023-08-08 18:00:00,0.000000,21.400000,34.000000,13.000000,63.000000,89.960000,132.980000,865.880000,8.200000,192.180000,33.950000 -17,2023-08-08 19:00:00,0.000000,21.400000,34.000000,13.000000,63.000000,90.050000,133.190000,866.380000,8.310000,192.420000,34.250000 -17,2023-08-08 20:00:00,0.000000,19.300000,40.000000,10.000000,56.000000,90.050000,133.350000,866.770000,7.140000,192.610000,30.970000 -17,2023-08-08 21:00:00,0.000000,19.300000,40.000000,10.000000,56.000000,90.050000,133.510000,867.160000,7.140000,192.810000,30.970000 -17,2023-08-08 22:00:00,0.000000,19.300000,40.000000,10.000000,56.000000,90.050000,133.510000,867.160000,7.140000,192.810000,30.970000 -17,2023-08-08 23:00:00,0.000000,13.800000,62.000000,6.000000,55.000000,89.590000,133.510000,867.160000,5.470000,192.810000,25.800000 -17,2023-08-09 00:00:00,0.000000,13.800000,62.000000,6.000000,55.000000,89.180000,133.510000,867.160000,5.150000,192.810000,24.770000 -17,2023-08-09 01:00:00,0.000000,13.800000,62.000000,6.000000,55.000000,88.820000,133.510000,867.160000,4.890000,192.810000,23.880000 -17,2023-08-09 02:00:00,0.000000,11.300000,69.000000,4.000000,118.000000,88.360000,133.510000,867.160000,4.140000,192.810000,21.220000 -17,2023-08-09 03:00:00,0.000000,11.300000,69.000000,4.000000,118.000000,87.950000,133.510000,867.160000,3.900000,192.810000,20.340000 -17,2023-08-09 04:00:00,0.000000,11.300000,69.000000,4.000000,118.000000,87.580000,133.510000,867.160000,3.700000,192.810000,19.570000 -17,2023-08-09 05:00:00,0.000000,9.400000,71.000000,5.000000,180.000000,87.190000,133.550000,867.250000,3.680000,192.860000,19.500000 -17,2023-08-09 06:00:00,0.000000,9.400000,71.000000,5.000000,180.000000,86.840000,133.600000,867.350000,3.500000,192.910000,18.800000 -17,2023-08-09 07:00:00,0.000000,9.400000,71.000000,5.000000,180.000000,86.520000,133.640000,867.440000,3.350000,192.960000,18.190000 -17,2023-08-09 08:00:00,0.000000,15.300000,47.000000,5.000000,169.000000,86.580000,133.750000,867.680000,3.380000,193.090000,18.300000 -17,2023-08-09 09:00:00,0.000000,15.300000,47.000000,5.000000,169.000000,86.630000,133.870000,867.930000,3.400000,193.230000,18.410000 -17,2023-08-09 10:00:00,0.000000,15.300000,47.000000,5.000000,169.000000,86.680000,133.990000,868.170000,3.430000,193.370000,18.500000 -17,2023-08-09 11:00:00,0.000000,21.900000,31.000000,5.000000,154.000000,87.310000,134.210000,868.650000,3.750000,193.630000,19.760000 -17,2023-08-09 12:00:00,0.000000,21.900000,31.000000,5.000000,154.000000,87.860000,134.440000,869.130000,4.050000,193.900000,20.910000 -17,2023-08-09 13:00:00,0.000000,21.900000,31.000000,5.000000,154.000000,88.330000,134.670000,869.620000,4.340000,194.160000,21.950000 -17,2023-08-09 14:00:00,0.000000,23.900000,26.000000,6.000000,145.000000,89.000000,134.940000,870.200000,5.020000,194.490000,24.360000 -17,2023-08-09 15:00:00,0.000000,23.900000,26.000000,6.000000,145.000000,89.570000,135.220000,870.780000,5.450000,194.810000,25.790000 -17,2023-08-09 16:00:00,0.000000,23.900000,26.000000,6.000000,145.000000,90.050000,135.490000,871.370000,5.840000,195.130000,27.050000 -17,2023-08-09 17:00:00,0.000000,24.300000,26.000000,6.000000,122.000000,90.470000,135.770000,871.960000,6.200000,195.460000,28.200000 -17,2023-08-09 18:00:00,0.000000,24.300000,26.000000,6.000000,122.000000,90.830000,136.060000,872.560000,6.520000,195.790000,29.190000 -17,2023-08-09 19:00:00,0.000000,24.300000,26.000000,6.000000,122.000000,91.120000,136.340000,873.160000,6.810000,196.120000,30.050000 -17,2023-08-09 20:00:00,0.000000,21.700000,31.000000,6.000000,80.000000,91.130000,136.560000,873.630000,6.810000,196.380000,30.080000 -17,2023-08-09 21:00:00,0.000000,21.700000,31.000000,6.000000,80.000000,91.140000,136.790000,874.110000,6.820000,196.640000,30.100000 -17,2023-08-09 22:00:00,0.000000,21.700000,31.000000,6.000000,80.000000,91.140000,136.790000,874.110000,6.820000,196.640000,30.120000 -17,2023-08-09 23:00:00,0.000000,15.600000,49.000000,4.000000,78.000000,90.870000,136.790000,874.110000,5.930000,196.640000,27.380000 -17,2023-08-10 00:00:00,0.000000,15.600000,49.000000,4.000000,78.000000,90.620000,136.790000,874.110000,5.730000,196.640000,26.720000 -17,2023-08-10 01:00:00,0.000000,15.600000,49.000000,4.000000,78.000000,90.400000,136.790000,874.110000,5.550000,196.640000,26.140000 -17,2023-08-10 02:00:00,0.000000,13.200000,58.000000,3.000000,224.000000,90.020000,136.790000,874.110000,5.000000,196.640000,24.320000 -17,2023-08-10 03:00:00,0.000000,13.200000,58.000000,3.000000,224.000000,89.680000,136.790000,874.110000,4.760000,196.640000,23.500000 -17,2023-08-10 04:00:00,0.000000,13.200000,58.000000,3.000000,224.000000,89.380000,136.790000,874.110000,4.560000,196.640000,22.780000 -17,2023-08-10 05:00:00,0.000000,11.400000,63.000000,5.000000,218.000000,88.970000,136.850000,874.250000,4.760000,196.720000,23.480000 -17,2023-08-10 06:00:00,0.000000,11.400000,63.000000,5.000000,218.000000,88.610000,136.910000,874.390000,4.510000,196.790000,22.630000 -17,2023-08-10 07:00:00,0.000000,11.400000,63.000000,5.000000,218.000000,88.280000,136.970000,874.530000,4.310000,196.860000,21.890000 -17,2023-08-10 08:00:00,0.000000,16.400000,45.000000,5.000000,186.000000,88.280000,137.100000,874.820000,4.310000,197.010000,21.900000 -17,2023-08-10 09:00:00,0.000000,16.400000,45.000000,5.000000,186.000000,88.280000,137.230000,875.110000,4.310000,197.160000,21.900000 -17,2023-08-10 10:00:00,0.000000,16.400000,45.000000,5.000000,186.000000,88.280000,137.360000,875.400000,4.310000,197.310000,21.900000 -17,2023-08-10 11:00:00,0.000000,22.400000,36.000000,7.000000,151.000000,88.580000,137.570000,875.890000,4.970000,197.570000,24.240000 -17,2023-08-10 12:00:00,0.000000,22.400000,36.000000,7.000000,151.000000,88.830000,137.790000,876.370000,5.160000,197.820000,24.860000 -17,2023-08-10 13:00:00,0.000000,22.400000,36.000000,7.000000,151.000000,89.050000,138.000000,876.860000,5.320000,198.070000,25.410000 -17,2023-08-10 14:00:00,0.000000,24.100000,30.000000,7.000000,147.000000,89.490000,138.260000,877.450000,5.660000,198.380000,26.550000 -17,2023-08-10 15:00:00,0.000000,24.100000,30.000000,7.000000,147.000000,89.860000,138.520000,878.050000,5.970000,198.680000,27.540000 -17,2023-08-10 16:00:00,0.000000,24.100000,30.000000,7.000000,147.000000,90.170000,138.780000,878.640000,6.240000,198.990000,28.400000 -17,2023-08-10 17:00:00,0.000000,24.600000,28.000000,6.000000,138.000000,90.510000,139.060000,879.260000,6.230000,199.320000,28.380000 -17,2023-08-10 18:00:00,0.000000,24.600000,28.000000,6.000000,138.000000,90.800000,139.340000,879.890000,6.500000,199.640000,29.190000 -17,2023-08-10 19:00:00,0.000000,24.600000,28.000000,6.000000,138.000000,91.040000,139.620000,880.520000,6.720000,199.960000,29.880000 -17,2023-08-10 20:00:00,0.000000,24.600000,28.000000,6.000000,138.000000,91.240000,139.890000,881.150000,6.920000,200.290000,30.480000 -17,2023-08-10 21:00:00,0.000000,24.600000,28.000000,6.000000,138.000000,91.410000,139.890000,881.150000,7.090000,200.290000,30.980000 -17,2023-08-10 22:00:00,0.000000,24.600000,28.000000,6.000000,138.000000,91.550000,139.890000,881.150000,7.240000,200.290000,31.400000 -17,2023-08-10 23:00:00,0.000000,18.000000,45.000000,3.000000,123.000000,91.350000,139.890000,881.150000,6.040000,200.290000,27.790000 -17,2023-08-11 00:00:00,0.000000,18.000000,45.000000,3.000000,123.000000,91.160000,139.890000,881.150000,5.880000,200.290000,27.290000 -17,2023-08-11 01:00:00,0.000000,18.000000,45.000000,3.000000,123.000000,90.990000,139.890000,881.150000,5.740000,200.290000,26.840000 -17,2023-08-11 02:00:00,0.000000,18.000000,45.000000,3.000000,123.000000,90.840000,139.890000,881.150000,5.620000,200.290000,26.440000 -17,2023-08-11 03:00:00,0.000000,18.000000,45.000000,3.000000,123.000000,90.700000,139.890000,881.150000,5.510000,200.290000,26.090000 -17,2023-08-11 04:00:00,0.000000,18.000000,45.000000,3.000000,123.000000,90.580000,139.890000,881.150000,5.410000,200.290000,25.770000 -17,2023-08-11 05:00:00,0.000000,13.600000,67.000000,5.000000,165.000000,89.960000,139.950000,881.360000,5.480000,200.370000,25.980000 -17,2023-08-11 06:00:00,0.000000,13.600000,67.000000,5.000000,165.000000,89.410000,140.010000,881.580000,5.060000,200.440000,24.590000 -17,2023-08-11 07:00:00,0.000000,13.600000,67.000000,5.000000,165.000000,88.920000,140.080000,881.790000,4.720000,200.520000,23.410000 -17,2023-08-11 08:00:00,0.000000,13.600000,67.000000,5.000000,165.000000,88.480000,140.140000,882.010000,4.430000,200.600000,22.400000 -17,2023-08-11 09:00:00,0.000000,13.600000,67.000000,5.000000,165.000000,88.100000,140.200000,882.230000,4.190000,200.670000,21.540000 -17,2023-08-11 10:00:00,0.000000,13.600000,67.000000,5.000000,165.000000,87.750000,140.260000,882.440000,3.990000,200.750000,20.790000 -17,2023-08-11 11:00:00,0.200000,19.900000,57.000000,10.000000,128.000000,87.740000,140.380000,882.860000,5.130000,200.900000,24.830000 -17,2023-08-11 12:00:00,0.000000,19.900000,57.000000,10.000000,128.000000,87.730000,140.500000,883.280000,5.120000,201.050000,24.810000 -17,2023-08-11 13:00:00,0.000000,19.900000,57.000000,10.000000,128.000000,87.730000,140.620000,883.700000,5.120000,201.200000,24.790000 -17,2023-08-11 14:00:00,0.000000,19.900000,57.000000,10.000000,128.000000,87.720000,140.730000,884.120000,5.110000,201.340000,24.780000 -17,2023-08-11 15:00:00,0.000000,19.900000,57.000000,10.000000,128.000000,87.720000,140.850000,884.540000,5.110000,201.490000,24.770000 -17,2023-08-11 16:00:00,0.000000,19.900000,57.000000,10.000000,128.000000,87.710000,140.970000,884.960000,5.110000,201.640000,24.760000 -17,2023-08-11 17:00:00,0.000000,22.900000,41.000000,6.000000,121.000000,87.950000,141.170000,885.650000,4.320000,201.890000,22.020000 -17,2023-08-11 18:00:00,0.000000,22.900000,41.000000,6.000000,121.000000,88.160000,141.360000,886.350000,4.450000,202.130000,22.500000 -17,2023-08-11 19:00:00,0.000000,22.900000,41.000000,6.000000,121.000000,88.340000,141.560000,887.040000,4.570000,202.380000,22.920000 -17,2023-08-11 20:00:00,0.000000,22.900000,41.000000,6.000000,121.000000,88.500000,141.760000,887.730000,4.670000,202.620000,23.290000 -17,2023-08-11 21:00:00,0.000000,22.900000,41.000000,6.000000,121.000000,88.630000,141.760000,887.730000,4.760000,202.620000,23.600000 -17,2023-08-11 22:00:00,0.000000,22.900000,41.000000,6.000000,121.000000,88.750000,141.760000,887.730000,4.840000,202.620000,23.870000 -17,2023-08-11 23:00:00,0.000000,18.900000,49.000000,6.000000,34.000000,88.750000,141.760000,887.730000,4.840000,202.620000,23.870000 -17,2023-08-12 00:00:00,0.000000,18.900000,49.000000,6.000000,34.000000,88.750000,141.760000,887.730000,4.840000,202.620000,23.870000 -17,2023-08-12 01:00:00,0.000000,18.900000,49.000000,6.000000,34.000000,88.750000,141.760000,887.730000,4.840000,202.620000,23.870000 -17,2023-08-12 02:00:00,0.000000,18.900000,49.000000,6.000000,34.000000,88.750000,141.760000,887.730000,4.840000,202.620000,23.870000 -17,2023-08-12 03:00:00,0.000000,18.900000,49.000000,6.000000,34.000000,88.750000,141.760000,887.730000,4.840000,202.620000,23.870000 -17,2023-08-12 04:00:00,0.000000,18.900000,49.000000,6.000000,34.000000,88.750000,141.760000,887.730000,4.840000,202.620000,23.870000 -17,2023-08-12 05:00:00,0.000000,16.100000,61.000000,4.000000,282.000000,88.490000,141.850000,887.940000,4.220000,202.730000,21.650000 -17,2023-08-12 06:00:00,0.000000,16.100000,61.000000,4.000000,282.000000,88.260000,141.940000,888.150000,4.080000,202.840000,21.150000 -17,2023-08-12 07:00:00,0.000000,16.100000,61.000000,4.000000,282.000000,88.050000,142.040000,888.370000,3.960000,202.950000,20.710000 -17,2023-08-12 08:00:00,0.000000,16.100000,61.000000,4.000000,282.000000,87.870000,142.130000,888.580000,3.860000,203.060000,20.320000 -17,2023-08-12 09:00:00,0.000000,16.100000,61.000000,4.000000,282.000000,87.710000,142.220000,888.790000,3.770000,203.170000,19.980000 -17,2023-08-12 10:00:00,0.000000,16.100000,61.000000,4.000000,282.000000,87.560000,142.310000,889.000000,3.690000,203.280000,19.690000 -17,2023-08-12 11:00:00,0.000000,23.200000,37.000000,6.000000,336.000000,87.950000,142.550000,889.530000,4.320000,203.550000,22.040000 -17,2023-08-12 12:00:00,0.000000,23.200000,37.000000,6.000000,336.000000,88.290000,142.780000,890.060000,4.530000,203.820000,22.810000 -17,2023-08-12 13:00:00,0.000000,23.200000,37.000000,6.000000,336.000000,88.570000,143.010000,890.590000,4.720000,204.090000,23.480000 -17,2023-08-12 14:00:00,0.000000,23.200000,37.000000,6.000000,336.000000,88.820000,143.250000,891.120000,4.890000,204.370000,24.070000 -17,2023-08-12 15:00:00,0.000000,23.200000,37.000000,6.000000,336.000000,89.030000,143.480000,891.650000,5.040000,204.640000,24.590000 -17,2023-08-12 16:00:00,0.000000,23.200000,37.000000,6.000000,336.000000,89.200000,143.720000,892.180000,5.170000,204.910000,25.030000 -17,2023-08-12 17:00:00,0.000000,25.400000,29.000000,11.000000,1.000000,89.750000,144.020000,892.870000,7.190000,205.260000,31.380000 -17,2023-08-12 18:00:00,0.000000,25.400000,29.000000,11.000000,1.000000,90.190000,144.320000,893.550000,7.670000,205.610000,32.760000 -17,2023-08-12 19:00:00,0.000000,25.400000,29.000000,11.000000,1.000000,90.560000,144.620000,894.230000,8.080000,205.960000,33.920000 -17,2023-08-12 20:00:00,0.000000,25.400000,29.000000,11.000000,1.000000,90.860000,144.920000,894.910000,8.440000,206.310000,34.910000 -17,2023-08-12 21:00:00,0.000000,25.400000,29.000000,11.000000,1.000000,91.110000,144.920000,894.910000,8.740000,206.310000,35.720000 -17,2023-08-12 22:00:00,0.000000,25.400000,29.000000,11.000000,1.000000,91.310000,144.920000,894.910000,8.990000,206.310000,36.400000 -17,2023-08-12 23:00:00,0.000000,17.000000,48.000000,3.000000,275.000000,91.060000,144.920000,894.910000,5.800000,206.310000,27.120000 -17,2023-08-13 00:00:00,0.000000,17.000000,48.000000,3.000000,275.000000,90.830000,144.920000,894.910000,5.610000,206.310000,26.530000 -17,2023-08-13 01:00:00,0.000000,17.000000,48.000000,3.000000,275.000000,90.630000,144.920000,894.910000,5.450000,206.310000,26.000000 -17,2023-08-13 02:00:00,0.000000,17.000000,48.000000,3.000000,275.000000,90.450000,144.920000,894.910000,5.310000,206.310000,25.530000 -17,2023-08-13 03:00:00,0.000000,17.000000,48.000000,3.000000,275.000000,90.280000,144.920000,894.910000,5.190000,206.310000,25.110000 -17,2023-08-13 04:00:00,0.000000,17.000000,48.000000,3.000000,275.000000,90.130000,144.920000,894.910000,5.080000,206.310000,24.740000 -17,2023-08-13 05:00:00,0.000000,14.400000,57.000000,7.000000,271.000000,89.760000,145.010000,895.120000,5.890000,206.420000,27.420000 -17,2023-08-13 06:00:00,0.000000,14.400000,57.000000,7.000000,271.000000,89.440000,145.100000,895.340000,5.620000,206.520000,26.550000 -17,2023-08-13 07:00:00,0.000000,14.400000,57.000000,7.000000,271.000000,89.140000,145.190000,895.550000,5.390000,206.630000,25.800000 -17,2023-08-13 08:00:00,0.000000,14.400000,57.000000,7.000000,271.000000,88.890000,145.280000,895.760000,5.190000,206.740000,25.140000 -17,2023-08-13 09:00:00,0.000000,14.400000,57.000000,7.000000,271.000000,88.660000,145.370000,895.970000,5.030000,206.840000,24.570000 -17,2023-08-13 10:00:00,0.000000,14.400000,57.000000,7.000000,271.000000,88.450000,145.460000,896.180000,4.880000,206.950000,24.070000 -17,2023-08-13 11:00:00,0.000000,23.500000,39.000000,4.000000,301.000000,88.650000,145.690000,896.720000,4.320000,207.210000,22.080000 -17,2023-08-13 12:00:00,0.000000,23.500000,39.000000,4.000000,301.000000,88.830000,145.920000,897.250000,4.430000,207.480000,22.480000 -17,2023-08-13 13:00:00,0.000000,23.500000,39.000000,4.000000,301.000000,88.980000,146.140000,897.780000,4.520000,207.740000,22.830000 -17,2023-08-13 14:00:00,0.000000,23.500000,39.000000,4.000000,301.000000,89.110000,146.370000,898.310000,4.610000,208.010000,23.140000 -17,2023-08-13 15:00:00,0.000000,23.500000,39.000000,4.000000,301.000000,89.220000,146.600000,898.840000,4.680000,208.280000,23.400000 -17,2023-08-13 16:00:00,0.000000,23.500000,39.000000,4.000000,301.000000,89.310000,146.830000,899.370000,4.750000,208.540000,23.640000 -17,2023-08-13 17:00:00,0.000000,26.400000,33.000000,1.000000,104.000000,89.620000,147.120000,900.070000,4.270000,208.890000,21.920000 -17,2023-08-13 18:00:00,0.000000,26.400000,33.000000,1.000000,104.000000,89.890000,147.420000,900.760000,4.430000,209.230000,22.530000 -17,2023-08-13 19:00:00,0.000000,26.400000,33.000000,1.000000,104.000000,90.120000,147.720000,901.450000,4.580000,209.580000,23.070000 -17,2023-08-13 20:00:00,0.000000,26.400000,33.000000,1.000000,104.000000,90.320000,148.010000,902.150000,4.720000,209.920000,23.540000 -17,2023-08-13 21:00:00,0.000000,26.400000,33.000000,1.000000,104.000000,90.490000,148.010000,902.150000,4.830000,209.920000,23.950000 -17,2023-08-13 22:00:00,0.000000,26.400000,33.000000,1.000000,104.000000,90.640000,148.010000,902.150000,4.940000,209.920000,24.310000 -17,2023-08-13 23:00:00,0.000000,18.600000,51.000000,8.000000,197.000000,90.370000,148.010000,902.150000,6.760000,209.920000,30.180000 -17,2023-08-14 00:00:00,0.000000,18.600000,51.000000,8.000000,197.000000,90.140000,148.010000,902.150000,6.540000,209.920000,29.510000 -17,2023-08-14 01:00:00,0.000000,18.600000,51.000000,8.000000,197.000000,89.940000,148.010000,902.150000,6.350000,209.920000,28.930000 -17,2023-08-14 02:00:00,0.000000,18.600000,51.000000,8.000000,197.000000,89.760000,148.010000,902.150000,6.190000,209.920000,28.430000 -17,2023-08-14 03:00:00,0.000000,18.600000,51.000000,8.000000,197.000000,89.600000,148.010000,902.150000,6.060000,209.920000,28.000000 -17,2023-08-14 04:00:00,0.000000,18.600000,51.000000,8.000000,197.000000,89.470000,148.010000,902.150000,5.940000,209.920000,27.620000 -17,2023-08-14 05:00:00,0.000000,16.800000,55.000000,12.000000,223.000000,89.210000,148.120000,902.390000,7.010000,210.050000,30.900000 -17,2023-08-14 06:00:00,0.000000,16.800000,55.000000,12.000000,223.000000,88.990000,148.230000,902.640000,6.790000,210.180000,30.260000 -17,2023-08-14 07:00:00,0.000000,16.800000,55.000000,12.000000,223.000000,88.800000,148.340000,902.890000,6.600000,210.310000,29.700000 -17,2023-08-14 08:00:00,0.000000,16.800000,55.000000,12.000000,223.000000,88.640000,148.450000,903.130000,6.450000,210.430000,29.220000 -17,2023-08-14 09:00:00,0.000000,16.800000,55.000000,12.000000,223.000000,88.490000,148.560000,903.380000,6.310000,210.560000,28.820000 -17,2023-08-14 10:00:00,0.000000,16.800000,55.000000,12.000000,223.000000,88.360000,148.670000,903.630000,6.200000,210.690000,28.470000 -17,2023-08-14 11:00:00,0.000000,23.800000,37.000000,25.000000,278.000000,88.750000,148.910000,904.160000,12.620000,210.960000,45.420000 -17,2023-08-14 12:00:00,0.000000,23.800000,37.000000,25.000000,278.000000,89.060000,149.150000,904.690000,13.200000,211.230000,46.730000 -17,2023-08-14 13:00:00,0.000000,23.800000,37.000000,25.000000,278.000000,89.310000,149.380000,905.230000,13.680000,211.510000,47.810000 -17,2023-08-14 14:00:00,0.000000,23.800000,37.000000,25.000000,278.000000,89.520000,149.620000,905.760000,14.080000,211.780000,48.700000 -17,2023-08-14 15:00:00,0.000000,23.800000,37.000000,25.000000,278.000000,89.680000,149.860000,906.290000,14.420000,212.060000,49.420000 -17,2023-08-14 16:00:00,0.000000,23.800000,37.000000,25.000000,278.000000,89.810000,150.090000,906.830000,14.690000,212.330000,50.010000 -17,2023-08-14 17:00:00,0.000000,25.400000,30.000000,24.000000,299.000000,90.270000,150.380000,907.480000,14.920000,212.660000,50.510000 -17,2023-08-14 18:00:00,0.000000,25.400000,30.000000,24.000000,299.000000,90.630000,150.670000,908.130000,15.720000,213.000000,52.190000 -17,2023-08-14 19:00:00,0.000000,25.400000,30.000000,24.000000,299.000000,90.920000,150.960000,908.780000,16.380000,213.330000,53.560000 -17,2023-08-14 20:00:00,0.000000,25.400000,30.000000,24.000000,299.000000,91.150000,151.250000,909.430000,16.930000,213.670000,54.660000 -17,2023-08-14 21:00:00,0.000000,25.400000,30.000000,24.000000,299.000000,91.330000,151.250000,909.430000,17.370000,213.670000,55.530000 -17,2023-08-14 22:00:00,0.000000,25.400000,30.000000,24.000000,299.000000,91.470000,151.250000,909.430000,17.720000,213.670000,56.230000 -17,2023-08-14 23:00:00,0.000000,17.400000,50.000000,6.000000,265.000000,91.140000,151.250000,909.430000,6.820000,213.670000,30.400000 -17,2023-08-15 00:00:00,0.000000,17.400000,50.000000,6.000000,265.000000,90.840000,151.250000,909.430000,6.530000,213.670000,29.540000 -17,2023-08-15 01:00:00,0.000000,17.400000,50.000000,6.000000,265.000000,90.570000,151.250000,909.430000,6.290000,213.670000,28.780000 -17,2023-08-15 02:00:00,0.000000,17.400000,50.000000,6.000000,265.000000,90.340000,151.250000,909.430000,6.080000,213.670000,28.130000 -17,2023-08-15 03:00:00,0.000000,17.400000,50.000000,6.000000,265.000000,90.130000,151.250000,909.430000,5.900000,213.670000,27.560000 -17,2023-08-15 04:00:00,0.000000,17.400000,50.000000,6.000000,265.000000,89.940000,151.250000,909.430000,5.750000,213.670000,27.060000 -17,2023-08-15 05:00:00,0.000000,14.700000,70.000000,9.000000,301.000000,89.260000,151.320000,909.590000,6.060000,213.740000,28.060000 -17,2023-08-15 06:00:00,0.000000,14.700000,70.000000,9.000000,301.000000,88.660000,151.380000,909.740000,5.560000,213.810000,26.470000 -17,2023-08-15 07:00:00,0.000000,14.700000,70.000000,9.000000,301.000000,88.140000,151.440000,909.890000,5.170000,213.890000,25.140000 -17,2023-08-15 08:00:00,0.000000,14.700000,70.000000,9.000000,301.000000,87.690000,151.500000,910.050000,4.840000,213.960000,24.030000 -17,2023-08-15 09:00:00,0.000000,14.700000,70.000000,9.000000,301.000000,87.300000,151.570000,910.200000,4.580000,214.030000,23.100000 -17,2023-08-15 10:00:00,0.000000,14.700000,70.000000,9.000000,301.000000,86.960000,151.630000,910.350000,4.360000,214.100000,22.320000 -17,2023-08-15 11:00:00,0.000000,21.700000,40.000000,5.000000,260.000000,87.280000,151.820000,910.830000,3.730000,214.330000,19.970000 -17,2023-08-15 12:00:00,0.000000,21.700000,40.000000,5.000000,260.000000,87.570000,152.020000,911.310000,3.890000,214.560000,20.560000 -17,2023-08-15 13:00:00,0.000000,21.700000,40.000000,5.000000,260.000000,87.810000,152.210000,911.780000,4.030000,214.780000,21.090000 -17,2023-08-15 14:00:00,0.000000,21.700000,40.000000,5.000000,260.000000,88.030000,152.410000,912.260000,4.150000,215.010000,21.560000 -17,2023-08-15 15:00:00,0.000000,21.700000,40.000000,5.000000,260.000000,88.210000,152.600000,912.730000,4.260000,215.240000,21.980000 -17,2023-08-15 16:00:00,0.000000,21.700000,40.000000,5.000000,260.000000,88.370000,152.800000,913.210000,4.360000,215.460000,22.350000 -17,2023-08-15 17:00:00,0.000000,27.000000,28.000000,18.000000,267.000000,89.270000,153.120000,913.990000,9.560000,215.840000,38.070000 -17,2023-08-15 18:00:00,0.000000,27.000000,28.000000,18.000000,267.000000,89.990000,153.440000,914.780000,10.590000,216.210000,40.690000 -17,2023-08-15 19:00:00,0.000000,27.000000,28.000000,18.000000,267.000000,90.550000,153.760000,915.560000,11.490000,216.580000,42.880000 -17,2023-08-15 20:00:00,0.000000,27.000000,28.000000,18.000000,267.000000,91.000000,154.080000,916.340000,12.250000,216.960000,44.680000 -17,2023-08-15 21:00:00,0.000000,27.000000,28.000000,18.000000,267.000000,91.360000,154.080000,916.340000,12.890000,216.960000,46.150000 -17,2023-08-15 22:00:00,0.000000,27.000000,28.000000,18.000000,267.000000,91.640000,154.080000,916.340000,13.410000,216.960000,47.330000 -17,2023-08-15 23:00:00,0.000000,22.200000,33.000000,20.000000,294.000000,91.640000,154.080000,916.340000,14.830000,216.960000,50.420000 -17,2023-08-16 00:00:00,0.000000,22.200000,33.000000,20.000000,294.000000,91.640000,154.080000,916.340000,14.830000,216.960000,50.420000 -17,2023-08-16 01:00:00,0.000000,22.200000,33.000000,20.000000,294.000000,91.640000,154.080000,916.340000,14.830000,216.960000,50.420000 -17,2023-08-16 02:00:00,0.000000,22.200000,33.000000,20.000000,294.000000,91.640000,154.080000,916.340000,14.830000,216.960000,50.420000 -17,2023-08-16 03:00:00,0.000000,22.200000,33.000000,20.000000,294.000000,91.640000,154.080000,916.340000,14.830000,216.960000,50.420000 -17,2023-08-16 04:00:00,0.000000,22.200000,33.000000,20.000000,294.000000,91.640000,154.080000,916.340000,14.830000,216.960000,50.420000 -17,2023-08-16 05:00:00,0.000000,18.700000,53.000000,27.000000,303.000000,91.070000,154.160000,916.760000,19.460000,217.070000,59.640000 -17,2023-08-16 06:00:00,0.000000,18.700000,53.000000,27.000000,303.000000,90.590000,154.240000,917.170000,18.180000,217.180000,57.200000 -17,2023-08-16 07:00:00,0.000000,18.700000,53.000000,27.000000,303.000000,90.200000,154.330000,917.580000,17.170000,217.290000,55.230000 -17,2023-08-16 08:00:00,0.000000,18.700000,53.000000,27.000000,303.000000,89.860000,154.410000,918.000000,16.380000,217.400000,53.630000 -17,2023-08-16 09:00:00,0.000000,18.700000,53.000000,27.000000,303.000000,89.590000,154.490000,918.410000,15.740000,217.510000,52.330000 -17,2023-08-16 10:00:00,0.000000,18.700000,53.000000,27.000000,303.000000,89.350000,154.580000,918.820000,15.220000,217.630000,51.260000 -17,2023-08-16 11:00:00,0.270000,16.800000,67.000000,24.000000,312.000000,88.720000,154.630000,919.080000,11.950000,217.700000,44.000000 -17,2023-08-16 12:00:00,0.000000,16.800000,67.000000,24.000000,312.000000,88.200000,154.680000,919.340000,11.080000,217.770000,41.920000 -17,2023-08-16 13:00:00,0.000000,16.800000,67.000000,24.000000,312.000000,87.750000,154.730000,919.590000,10.400000,217.830000,40.250000 -17,2023-08-16 14:00:00,0.000000,16.800000,67.000000,24.000000,312.000000,87.390000,154.790000,919.850000,9.870000,217.900000,38.900000 -17,2023-08-16 15:00:00,0.000000,16.800000,67.000000,24.000000,312.000000,87.080000,154.840000,920.110000,9.440000,217.970000,37.800000 -17,2023-08-16 16:00:00,0.000000,16.800000,67.000000,24.000000,312.000000,86.820000,154.890000,920.370000,9.100000,218.040000,36.900000 -17,2023-08-16 17:00:00,0.050000,19.300000,45.000000,21.000000,319.000000,87.020000,154.990000,920.870000,8.050000,218.180000,34.040000 -17,2023-08-16 18:00:00,0.000000,19.300000,45.000000,21.000000,319.000000,87.190000,155.090000,921.370000,8.250000,218.320000,34.590000 -17,2023-08-16 19:00:00,0.000000,19.300000,45.000000,21.000000,319.000000,87.330000,155.200000,921.870000,8.420000,218.450000,35.070000 -17,2023-08-16 20:00:00,0.000000,19.300000,45.000000,21.000000,319.000000,87.450000,155.300000,922.370000,8.570000,218.590000,35.480000 -17,2023-08-16 21:00:00,0.000000,19.300000,45.000000,21.000000,319.000000,87.560000,155.300000,922.370000,8.690000,218.590000,35.820000 -17,2023-08-16 22:00:00,0.000000,19.300000,45.000000,21.000000,319.000000,87.640000,155.300000,922.370000,8.800000,218.590000,36.110000 -17,2023-08-16 23:00:00,0.000000,16.500000,55.000000,11.000000,309.000000,87.620000,155.300000,922.370000,5.300000,218.590000,25.650000 -17,2023-08-17 00:00:00,0.000000,16.500000,55.000000,11.000000,309.000000,87.600000,155.300000,922.370000,5.290000,218.590000,25.600000 -17,2023-08-17 01:00:00,0.000000,16.500000,55.000000,11.000000,309.000000,87.580000,155.300000,922.370000,5.270000,218.590000,25.550000 -17,2023-08-17 02:00:00,0.000000,16.500000,55.000000,11.000000,309.000000,87.570000,155.300000,922.370000,5.260000,218.590000,25.510000 -17,2023-08-17 03:00:00,0.000000,16.500000,55.000000,11.000000,309.000000,87.550000,155.300000,922.370000,5.250000,218.590000,25.480000 -17,2023-08-17 04:00:00,0.000000,16.500000,55.000000,11.000000,309.000000,87.540000,155.300000,922.370000,5.240000,218.590000,25.450000 -17,2023-08-17 05:00:00,0.000000,11.700000,75.000000,6.000000,271.000000,87.060000,155.300000,922.370000,3.800000,218.590000,20.270000 -17,2023-08-17 06:00:00,0.000000,11.700000,75.000000,6.000000,271.000000,86.620000,155.340000,922.500000,3.570000,218.640000,19.390000 -17,2023-08-17 07:00:00,0.000000,11.700000,75.000000,6.000000,271.000000,86.240000,155.390000,922.640000,3.390000,218.700000,18.630000 -17,2023-08-17 08:00:00,0.000000,11.700000,75.000000,6.000000,271.000000,85.900000,155.440000,922.770000,3.230000,218.750000,17.990000 -17,2023-08-17 09:00:00,0.000000,11.700000,75.000000,6.000000,271.000000,85.600000,155.480000,922.900000,3.090000,218.810000,17.430000 -17,2023-08-17 10:00:00,0.000000,11.700000,75.000000,6.000000,271.000000,85.330000,155.530000,923.030000,2.980000,218.870000,16.950000 -17,2023-08-17 11:00:00,0.000000,19.200000,45.000000,4.000000,242.000000,85.640000,155.700000,923.500000,2.810000,219.060000,16.240000 -17,2023-08-17 12:00:00,0.000000,19.200000,45.000000,4.000000,242.000000,85.920000,155.870000,923.970000,2.930000,219.260000,16.720000 -17,2023-08-17 13:00:00,0.000000,19.200000,45.000000,4.000000,242.000000,86.160000,156.030000,924.440000,3.030000,219.460000,17.160000 -17,2023-08-17 14:00:00,0.000000,19.200000,45.000000,4.000000,242.000000,86.380000,156.200000,924.910000,3.120000,219.660000,17.560000 -17,2023-08-17 15:00:00,0.000000,19.200000,45.000000,4.000000,242.000000,86.580000,156.370000,925.370000,3.210000,219.860000,17.930000 -17,2023-08-17 16:00:00,0.000000,19.200000,45.000000,4.000000,242.000000,86.750000,156.540000,925.840000,3.290000,220.060000,18.260000 -17,2023-08-17 17:00:00,0.000000,23.100000,31.000000,9.000000,139.000000,87.490000,156.800000,926.590000,4.700000,220.370000,23.610000 -17,2023-08-17 18:00:00,0.000000,23.100000,31.000000,9.000000,139.000000,88.110000,157.070000,927.340000,5.140000,220.690000,25.140000 -17,2023-08-17 19:00:00,0.000000,23.100000,31.000000,9.000000,139.000000,88.640000,157.340000,928.080000,5.550000,221.000000,26.500000 -17,2023-08-17 20:00:00,0.000000,23.100000,31.000000,9.000000,139.000000,89.090000,157.600000,928.830000,5.910000,221.320000,27.690000 -17,2023-08-17 21:00:00,0.000000,23.100000,31.000000,9.000000,139.000000,89.460000,157.600000,928.830000,6.240000,221.320000,28.720000 -17,2023-08-17 22:00:00,0.000000,23.100000,31.000000,9.000000,139.000000,89.770000,157.600000,928.830000,6.530000,221.320000,29.620000 -17,2023-08-17 23:00:00,0.000000,18.000000,42.000000,10.000000,133.000000,89.770000,157.600000,928.830000,6.860000,221.320000,30.640000 -17,2023-08-18 00:00:00,0.000000,18.000000,42.000000,10.000000,133.000000,89.770000,157.600000,928.830000,6.860000,221.320000,30.640000 -17,2023-08-18 01:00:00,0.000000,18.000000,42.000000,10.000000,133.000000,89.770000,157.600000,928.830000,6.860000,221.320000,30.640000 -17,2023-08-18 02:00:00,0.000000,18.000000,42.000000,10.000000,133.000000,89.770000,157.600000,928.830000,6.860000,221.320000,30.640000 -17,2023-08-18 03:00:00,0.000000,18.000000,42.000000,10.000000,133.000000,89.770000,157.600000,928.830000,6.860000,221.320000,30.640000 -17,2023-08-18 04:00:00,0.000000,18.000000,42.000000,10.000000,133.000000,89.770000,157.600000,928.830000,6.860000,221.320000,30.640000 -17,2023-08-18 05:00:00,0.000000,16.800000,47.000000,11.000000,146.000000,89.670000,157.600000,928.830000,7.110000,221.320000,31.370000 -17,2023-08-18 06:00:00,0.000000,16.800000,47.000000,11.000000,146.000000,89.570000,157.780000,929.200000,7.010000,221.530000,31.090000 -17,2023-08-18 07:00:00,0.000000,16.800000,47.000000,11.000000,146.000000,89.490000,157.970000,929.580000,6.930000,221.730000,30.850000 -17,2023-08-18 08:00:00,0.000000,16.800000,47.000000,11.000000,146.000000,89.420000,158.150000,929.950000,6.860000,221.940000,30.630000 -17,2023-08-18 09:00:00,0.000000,16.800000,47.000000,11.000000,146.000000,89.350000,158.330000,930.320000,6.790000,222.140000,30.440000 -17,2023-08-18 10:00:00,0.000000,16.800000,47.000000,11.000000,146.000000,89.290000,158.510000,930.690000,6.740000,222.350000,30.280000 -17,2023-08-18 11:00:00,0.000000,25.100000,32.000000,17.000000,189.000000,89.730000,158.900000,931.490000,9.700000,222.790000,38.550000 -17,2023-08-18 12:00:00,0.000000,25.100000,32.000000,17.000000,189.000000,90.080000,159.290000,932.280000,10.200000,223.230000,39.830000 -17,2023-08-18 13:00:00,0.000000,25.100000,32.000000,17.000000,189.000000,90.360000,159.680000,933.080000,10.620000,223.660000,40.890000 -17,2023-08-18 14:00:00,0.000000,25.100000,32.000000,17.000000,189.000000,90.590000,160.070000,933.870000,10.980000,224.100000,41.770000 -17,2023-08-18 15:00:00,0.000000,25.100000,32.000000,17.000000,189.000000,90.770000,160.450000,934.670000,11.270000,224.540000,42.490000 -17,2023-08-18 16:00:00,0.000000,25.100000,32.000000,17.000000,189.000000,90.920000,160.840000,935.460000,11.510000,224.980000,43.080000 -17,2023-08-18 17:00:00,0.000000,26.600000,30.000000,8.000000,242.000000,91.150000,161.280000,936.350000,7.560000,225.470000,32.740000 -18,2023-08-03 00:00:00,0.000000,16.000000,86.000000,5.000000,326.000000,85.340000,118.400000,826.100000,2.840000,174.330000,15.760000 -18,2023-08-03 01:00:00,0.000000,16.000000,86.000000,5.000000,326.000000,84.760000,118.400000,826.100000,2.620000,174.330000,14.840000 -18,2023-08-03 02:00:00,0.000000,13.700000,99.000000,5.000000,299.000000,83.360000,118.400000,826.100000,2.170000,174.330000,12.820000 -18,2023-08-03 03:00:00,0.000000,13.700000,99.000000,5.000000,299.000000,82.150000,118.400000,826.100000,1.860000,174.330000,11.340000 -18,2023-08-03 04:00:00,0.000000,13.700000,99.000000,5.000000,299.000000,81.100000,118.400000,826.100000,1.650000,174.330000,10.240000 -18,2023-08-03 05:00:00,0.040000,13.600000,98.000000,5.000000,288.000000,80.280000,118.400000,826.110000,1.510000,174.340000,9.500000 -18,2023-08-03 06:00:00,0.000000,13.600000,98.000000,5.000000,288.000000,79.580000,118.410000,826.120000,1.400000,174.340000,8.920000 -18,2023-08-03 07:00:00,0.000000,13.600000,98.000000,5.000000,288.000000,78.960000,118.410000,826.130000,1.320000,174.350000,8.470000 -18,2023-08-03 08:00:00,0.050000,16.300000,86.000000,4.000000,320.000000,78.980000,118.440000,826.220000,1.260000,174.380000,8.120000 -18,2023-08-03 09:00:00,0.000000,16.300000,86.000000,4.000000,320.000000,78.990000,118.470000,826.310000,1.260000,174.420000,8.130000 -18,2023-08-03 10:00:00,0.000000,16.300000,86.000000,4.000000,320.000000,79.010000,118.500000,826.390000,1.260000,174.450000,8.140000 -18,2023-08-03 11:00:00,0.000000,22.500000,53.000000,8.000000,357.000000,80.060000,118.640000,826.820000,1.710000,174.630000,10.570000 -18,2023-08-03 12:00:00,0.000000,22.500000,53.000000,8.000000,357.000000,80.980000,118.770000,827.250000,1.890000,174.800000,11.480000 -18,2023-08-03 13:00:00,0.000000,22.500000,53.000000,8.000000,357.000000,81.790000,118.910000,827.690000,2.080000,174.980000,12.380000 -18,2023-08-03 14:00:00,0.000000,24.600000,37.000000,14.000000,360.000000,83.280000,119.130000,828.340000,3.380000,175.250000,18.000000 -18,2023-08-03 15:00:00,0.000000,24.600000,37.000000,14.000000,360.000000,84.520000,119.340000,829.000000,3.990000,175.510000,20.310000 -18,2023-08-03 16:00:00,0.000000,24.600000,37.000000,14.000000,360.000000,85.550000,119.550000,829.650000,4.600000,175.780000,22.500000 -18,2023-08-03 17:00:00,0.000000,25.200000,29.000000,6.000000,1.000000,86.610000,119.800000,830.420000,3.570000,176.090000,18.740000 -18,2023-08-03 18:00:00,0.000000,25.200000,29.000000,6.000000,1.000000,87.510000,120.050000,831.180000,4.050000,176.400000,20.560000 -18,2023-08-03 19:00:00,0.000000,25.200000,29.000000,6.000000,1.000000,88.260000,120.300000,831.950000,4.520000,176.710000,22.230000 -18,2023-08-03 20:00:00,0.000000,22.700000,35.000000,5.000000,346.000000,88.590000,120.490000,832.550000,4.500000,176.960000,22.170000 -18,2023-08-03 21:00:00,0.000000,22.700000,35.000000,5.000000,346.000000,88.860000,120.690000,833.150000,4.680000,177.210000,22.810000 -18,2023-08-03 22:00:00,0.000000,22.700000,35.000000,5.000000,346.000000,89.100000,120.690000,833.150000,4.850000,177.210000,23.370000 -18,2023-08-03 23:00:00,0.000000,15.900000,55.000000,5.000000,282.000000,88.920000,120.690000,833.150000,4.720000,177.210000,22.940000 -18,2023-08-04 00:00:00,0.000000,15.900000,55.000000,5.000000,282.000000,88.750000,120.690000,833.150000,4.610000,177.210000,22.550000 -18,2023-08-04 01:00:00,0.000000,15.900000,55.000000,5.000000,282.000000,88.600000,120.690000,833.150000,4.510000,177.210000,22.210000 -18,2023-08-04 02:00:00,0.000000,13.000000,68.000000,8.000000,263.000000,88.150000,120.690000,833.150000,4.910000,177.210000,23.600000 -18,2023-08-04 03:00:00,0.000000,13.000000,68.000000,8.000000,263.000000,87.750000,120.690000,833.150000,4.640000,177.210000,22.660000 -18,2023-08-04 04:00:00,0.000000,13.000000,68.000000,8.000000,263.000000,87.390000,120.690000,833.150000,4.410000,177.210000,21.860000 -18,2023-08-04 05:00:00,0.000000,12.700000,82.000000,8.000000,260.000000,86.680000,120.720000,833.240000,3.980000,177.240000,20.330000 -18,2023-08-04 06:00:00,0.000000,12.700000,82.000000,8.000000,260.000000,86.060000,120.750000,833.320000,3.650000,177.280000,19.080000 -18,2023-08-04 07:00:00,0.000000,12.700000,82.000000,8.000000,260.000000,85.520000,120.790000,833.400000,3.380000,177.320000,18.040000 -18,2023-08-04 08:00:00,0.000000,19.400000,64.000000,9.000000,274.000000,85.520000,120.880000,833.660000,3.560000,177.440000,18.730000 -18,2023-08-04 09:00:00,0.000000,19.400000,64.000000,9.000000,274.000000,85.520000,120.980000,833.910000,3.560000,177.560000,18.730000 -18,2023-08-04 10:00:00,0.000000,19.400000,64.000000,9.000000,274.000000,85.520000,121.080000,834.160000,3.560000,177.680000,18.730000 -18,2023-08-04 11:00:00,0.000000,25.000000,46.000000,12.000000,311.000000,86.070000,121.290000,834.700000,4.470000,177.940000,22.100000 -18,2023-08-04 12:00:00,0.000000,25.000000,46.000000,12.000000,311.000000,86.530000,121.500000,835.230000,4.770000,178.190000,23.150000 -18,2023-08-04 13:00:00,0.000000,25.000000,46.000000,12.000000,311.000000,86.920000,121.700000,835.770000,5.040000,178.450000,24.070000 -18,2023-08-04 14:00:00,0.000000,26.400000,41.000000,14.000000,327.000000,87.490000,121.950000,836.410000,6.050000,178.750000,27.320000 -18,2023-08-04 15:00:00,0.000000,26.400000,41.000000,14.000000,327.000000,87.950000,122.200000,837.040000,6.470000,179.050000,28.600000 -18,2023-08-04 16:00:00,0.000000,26.400000,41.000000,14.000000,327.000000,88.340000,122.440000,837.680000,6.830000,179.350000,29.700000 -18,2023-08-04 17:00:00,0.090000,26.600000,41.000000,12.000000,352.000000,88.650000,122.690000,838.320000,6.460000,179.650000,28.590000 -18,2023-08-04 18:00:00,0.000000,26.600000,41.000000,12.000000,352.000000,88.900000,122.940000,838.960000,6.700000,179.960000,29.320000 -18,2023-08-04 19:00:00,0.000000,26.600000,41.000000,12.000000,352.000000,89.110000,123.190000,839.610000,6.900000,180.260000,29.940000 -18,2023-08-04 20:00:00,0.000000,24.400000,45.000000,9.000000,34.000000,89.110000,123.400000,840.130000,5.930000,180.510000,27.010000 -18,2023-08-04 21:00:00,0.000000,24.400000,45.000000,9.000000,34.000000,89.110000,123.600000,840.660000,5.930000,180.760000,27.020000 -18,2023-08-04 22:00:00,0.000000,24.400000,45.000000,9.000000,34.000000,89.110000,123.600000,840.660000,5.930000,180.760000,27.020000 -18,2023-08-04 23:00:00,0.000000,18.900000,62.000000,4.000000,91.000000,88.810000,123.600000,840.660000,4.420000,180.760000,21.980000 -18,2023-08-05 00:00:00,0.000000,18.900000,62.000000,4.000000,91.000000,88.550000,123.600000,840.660000,4.260000,180.760000,21.400000 -18,2023-08-05 01:00:00,0.000000,18.900000,62.000000,4.000000,91.000000,88.320000,123.600000,840.660000,4.120000,180.760000,20.900000 -18,2023-08-05 02:00:00,0.000000,16.700000,69.000000,7.000000,40.000000,87.900000,123.600000,840.660000,4.510000,180.760000,22.310000 -18,2023-08-05 03:00:00,0.000000,16.700000,69.000000,7.000000,40.000000,87.540000,123.600000,840.660000,4.280000,180.760000,21.500000 -18,2023-08-05 04:00:00,0.000000,16.700000,69.000000,7.000000,40.000000,87.230000,123.600000,840.660000,4.090000,180.760000,20.810000 -18,2023-08-05 05:00:00,0.300000,16.300000,70.000000,10.000000,65.000000,86.900000,123.650000,840.910000,4.550000,180.820000,22.440000 -18,2023-08-05 06:00:00,0.000000,16.300000,70.000000,10.000000,65.000000,86.620000,123.700000,841.150000,4.370000,180.890000,21.820000 -18,2023-08-05 07:00:00,0.000000,16.300000,70.000000,10.000000,65.000000,86.380000,123.740000,841.400000,4.230000,180.960000,21.290000 -18,2023-08-05 08:00:00,0.020000,16.300000,71.000000,10.000000,52.000000,86.150000,123.790000,841.640000,4.090000,181.020000,20.790000 -18,2023-08-05 09:00:00,0.000000,16.300000,71.000000,10.000000,52.000000,85.940000,123.840000,841.880000,3.970000,181.080000,20.370000 -18,2023-08-05 10:00:00,0.000000,16.300000,71.000000,10.000000,52.000000,85.770000,123.880000,842.120000,3.880000,181.150000,20.010000 -18,2023-08-05 11:00:00,0.000000,17.700000,69.000000,11.000000,37.000000,85.690000,123.940000,842.400000,4.030000,181.220000,20.600000 -18,2023-08-05 12:00:00,0.000000,17.700000,69.000000,11.000000,37.000000,85.630000,123.990000,842.680000,4.000000,181.300000,20.460000 -18,2023-08-05 13:00:00,0.000000,17.700000,69.000000,11.000000,37.000000,85.570000,124.050000,842.960000,3.970000,181.370000,20.350000 -18,2023-08-05 14:00:00,0.010000,18.900000,64.000000,12.000000,40.000000,85.570000,124.120000,843.310000,4.170000,181.460000,21.100000 -18,2023-08-05 15:00:00,0.000000,18.900000,64.000000,12.000000,40.000000,85.570000,124.180000,843.660000,4.170000,181.560000,21.110000 -18,2023-08-05 16:00:00,0.000000,18.900000,64.000000,12.000000,40.000000,85.570000,124.250000,844.020000,4.170000,181.650000,21.110000 -18,2023-08-05 17:00:00,0.000000,20.900000,46.000000,13.000000,45.000000,85.950000,124.370000,844.610000,4.630000,181.810000,22.740000 -18,2023-08-05 18:00:00,0.000000,20.900000,46.000000,13.000000,45.000000,86.280000,124.480000,845.210000,4.850000,181.970000,23.490000 -18,2023-08-05 19:00:00,0.000000,20.900000,46.000000,13.000000,45.000000,86.560000,124.600000,845.800000,5.040000,182.120000,24.160000 -18,2023-08-05 20:00:00,0.000000,19.100000,47.000000,9.000000,39.000000,86.710000,124.700000,846.330000,4.210000,182.260000,21.260000 -18,2023-08-05 21:00:00,0.000000,19.100000,47.000000,9.000000,39.000000,86.840000,124.800000,846.850000,4.290000,182.400000,21.550000 -18,2023-08-05 22:00:00,0.000000,19.100000,47.000000,9.000000,39.000000,86.950000,124.800000,846.850000,4.360000,182.400000,21.800000 -18,2023-08-05 23:00:00,0.000000,13.800000,69.000000,3.000000,325.000000,86.710000,124.800000,846.850000,3.110000,182.400000,17.050000 -18,2023-08-06 00:00:00,0.000000,13.800000,69.000000,3.000000,325.000000,86.500000,124.800000,846.850000,3.020000,182.400000,16.660000 -18,2023-08-06 01:00:00,0.000000,13.800000,69.000000,3.000000,325.000000,86.300000,124.800000,846.850000,2.940000,182.400000,16.320000 -18,2023-08-06 02:00:00,0.000000,10.900000,83.000000,5.000000,281.000000,85.730000,124.800000,846.850000,3.000000,182.400000,16.590000 -18,2023-08-06 03:00:00,0.000000,10.900000,83.000000,5.000000,281.000000,85.230000,124.800000,846.850000,2.800000,182.400000,15.730000 -18,2023-08-06 04:00:00,0.000000,10.900000,83.000000,5.000000,281.000000,84.780000,124.800000,846.850000,2.630000,182.400000,15.010000 -18,2023-08-06 05:00:00,0.000000,9.700000,92.000000,6.000000,286.000000,83.990000,124.820000,846.880000,2.480000,182.420000,14.360000 -18,2023-08-06 06:00:00,0.000000,9.700000,92.000000,6.000000,286.000000,83.280000,124.830000,846.910000,2.260000,182.430000,13.370000 -18,2023-08-06 07:00:00,0.000000,9.700000,92.000000,6.000000,286.000000,82.660000,124.840000,846.940000,2.090000,182.450000,12.550000 -18,2023-08-06 08:00:00,0.000000,16.300000,69.000000,4.000000,317.000000,82.720000,124.920000,847.120000,1.900000,182.540000,11.650000 -18,2023-08-06 09:00:00,0.000000,16.300000,69.000000,4.000000,317.000000,82.780000,125.000000,847.300000,1.920000,182.640000,11.720000 -18,2023-08-06 10:00:00,0.000000,16.300000,69.000000,4.000000,317.000000,82.830000,125.080000,847.490000,1.930000,182.730000,11.790000 -18,2023-08-06 11:00:00,0.000000,22.600000,38.000000,7.000000,51.000000,83.840000,125.310000,848.030000,2.560000,183.010000,14.720000 -18,2023-08-06 12:00:00,0.000000,22.600000,38.000000,7.000000,51.000000,84.710000,125.540000,848.570000,2.880000,183.290000,16.100000 -18,2023-08-06 13:00:00,0.000000,22.600000,38.000000,7.000000,51.000000,85.460000,125.770000,849.110000,3.190000,183.570000,17.400000 -18,2023-08-06 14:00:00,0.000000,24.000000,32.000000,10.000000,59.000000,86.430000,126.050000,849.750000,4.250000,183.900000,21.460000 -18,2023-08-06 15:00:00,0.000000,24.000000,32.000000,10.000000,59.000000,87.250000,126.320000,850.390000,4.780000,184.230000,23.310000 -18,2023-08-06 16:00:00,0.000000,24.000000,32.000000,10.000000,59.000000,87.930000,126.600000,851.040000,5.270000,184.560000,24.970000 -18,2023-08-06 17:00:00,0.000000,23.600000,32.000000,12.000000,67.000000,88.500000,126.870000,851.670000,6.320000,184.880000,28.330000 -18,2023-08-06 18:00:00,0.000000,23.600000,32.000000,12.000000,67.000000,88.980000,127.140000,852.290000,6.770000,185.210000,29.690000 -18,2023-08-06 19:00:00,0.000000,23.600000,32.000000,12.000000,67.000000,89.370000,127.410000,852.920000,7.170000,185.530000,30.860000 -18,2023-08-06 20:00:00,0.000000,20.800000,36.000000,11.000000,79.000000,89.470000,127.620000,853.420000,6.910000,185.790000,30.130000 -18,2023-08-06 21:00:00,0.000000,20.800000,36.000000,11.000000,79.000000,89.560000,127.840000,853.920000,7.000000,186.040000,30.380000 -18,2023-08-06 22:00:00,0.000000,20.800000,36.000000,11.000000,79.000000,89.630000,127.840000,853.920000,7.070000,186.040000,30.590000 -18,2023-08-06 23:00:00,0.000000,16.000000,48.000000,7.000000,94.000000,89.520000,127.840000,853.920000,5.690000,186.040000,26.370000 -18,2023-08-07 00:00:00,0.000000,16.000000,48.000000,7.000000,94.000000,89.410000,127.840000,853.920000,5.600000,186.040000,26.100000 -18,2023-08-07 01:00:00,0.000000,16.000000,48.000000,7.000000,94.000000,89.320000,127.840000,853.920000,5.530000,186.040000,25.870000 -18,2023-08-07 02:00:00,0.000000,13.200000,56.000000,4.000000,129.000000,89.080000,127.840000,853.920000,4.590000,186.040000,22.700000 -18,2023-08-07 03:00:00,0.000000,13.200000,56.000000,4.000000,129.000000,88.860000,127.840000,853.920000,4.450000,186.040000,22.200000 -18,2023-08-07 04:00:00,0.000000,13.200000,56.000000,4.000000,129.000000,88.660000,127.840000,853.920000,4.320000,186.040000,21.740000 -18,2023-08-07 05:00:00,0.000000,11.700000,61.000000,2.000000,174.000000,88.400000,127.900000,854.050000,3.760000,186.120000,19.690000 -18,2023-08-07 06:00:00,0.000000,11.700000,61.000000,2.000000,174.000000,88.160000,127.960000,854.180000,3.640000,186.190000,19.210000 -18,2023-08-07 07:00:00,0.000000,11.700000,61.000000,2.000000,174.000000,87.940000,128.030000,854.310000,3.530000,186.270000,18.780000 -18,2023-08-07 08:00:00,0.000000,16.400000,46.000000,4.000000,156.000000,87.940000,128.150000,854.560000,3.900000,186.410000,20.210000 -18,2023-08-07 09:00:00,0.000000,16.400000,46.000000,4.000000,156.000000,87.940000,128.270000,854.810000,3.900000,186.550000,20.220000 -18,2023-08-07 10:00:00,0.000000,16.400000,46.000000,4.000000,156.000000,87.940000,128.390000,855.050000,3.900000,186.690000,20.220000 -18,2023-08-07 11:00:00,0.000000,23.500000,31.000000,7.000000,144.000000,88.490000,128.620000,855.540000,4.910000,186.970000,23.830000 -18,2023-08-07 12:00:00,0.000000,23.500000,31.000000,7.000000,144.000000,88.960000,128.860000,856.030000,5.250000,187.250000,24.970000 -18,2023-08-07 13:00:00,0.000000,23.500000,31.000000,7.000000,144.000000,89.350000,129.100000,856.520000,5.560000,187.530000,25.980000 -18,2023-08-07 14:00:00,0.000000,26.100000,27.000000,9.000000,146.000000,89.970000,129.390000,857.130000,6.710000,187.880000,29.570000 -18,2023-08-07 15:00:00,0.000000,26.100000,27.000000,9.000000,146.000000,90.470000,129.680000,857.730000,7.210000,188.220000,31.060000 -18,2023-08-07 16:00:00,0.000000,26.100000,27.000000,9.000000,146.000000,90.880000,129.970000,858.340000,7.650000,188.570000,32.320000 -18,2023-08-07 17:00:00,0.000000,26.400000,27.000000,9.000000,141.000000,91.240000,130.270000,858.950000,8.040000,188.920000,33.430000 -18,2023-08-07 18:00:00,0.000000,26.400000,27.000000,9.000000,141.000000,91.520000,130.570000,859.570000,8.380000,189.270000,34.360000 -18,2023-08-07 19:00:00,0.000000,26.400000,27.000000,9.000000,141.000000,91.760000,130.870000,860.180000,8.660000,189.620000,35.140000 -18,2023-08-07 20:00:00,0.000000,23.900000,33.000000,5.000000,117.000000,91.760000,131.100000,860.670000,7.080000,189.890000,30.730000 -18,2023-08-07 21:00:00,0.000000,23.900000,33.000000,5.000000,117.000000,91.760000,131.340000,861.150000,7.080000,190.170000,30.730000 -18,2023-08-07 22:00:00,0.000000,23.900000,33.000000,5.000000,117.000000,91.760000,131.340000,861.150000,7.080000,190.170000,30.730000 -18,2023-08-07 23:00:00,0.000000,17.200000,51.000000,4.000000,166.000000,91.390000,131.340000,861.150000,6.390000,190.170000,28.670000 -18,2023-08-08 00:00:00,0.000000,17.200000,51.000000,4.000000,166.000000,91.060000,131.340000,861.150000,6.100000,190.170000,27.760000 -18,2023-08-08 01:00:00,0.000000,17.200000,51.000000,4.000000,166.000000,90.760000,131.340000,861.150000,5.850000,190.170000,26.970000 -18,2023-08-08 02:00:00,0.000000,14.100000,63.000000,8.000000,204.000000,90.170000,131.340000,861.150000,6.570000,190.170000,29.210000 -18,2023-08-08 03:00:00,0.000000,14.100000,63.000000,8.000000,204.000000,89.650000,131.340000,861.150000,6.100000,190.170000,27.760000 -18,2023-08-08 04:00:00,0.000000,14.100000,63.000000,8.000000,204.000000,89.190000,131.340000,861.150000,5.710000,190.170000,26.530000 -18,2023-08-08 05:00:00,0.000000,12.700000,70.000000,7.000000,191.000000,88.630000,131.390000,861.270000,5.010000,190.230000,24.220000 -18,2023-08-08 06:00:00,0.000000,12.700000,70.000000,7.000000,191.000000,88.130000,131.450000,861.390000,4.660000,190.300000,23.040000 -18,2023-08-08 07:00:00,0.000000,12.700000,70.000000,7.000000,191.000000,87.690000,131.500000,861.510000,4.380000,190.360000,22.030000 -18,2023-08-08 08:00:00,0.000000,18.200000,48.000000,6.000000,170.000000,87.690000,131.640000,861.800000,4.160000,190.520000,21.260000 -18,2023-08-08 09:00:00,0.000000,18.200000,48.000000,6.000000,170.000000,87.690000,131.770000,862.090000,4.160000,190.680000,21.260000 -18,2023-08-08 10:00:00,0.000000,18.200000,48.000000,6.000000,170.000000,87.690000,131.900000,862.390000,4.160000,190.840000,21.260000 -18,2023-08-08 11:00:00,0.000000,24.800000,36.000000,7.000000,150.000000,88.170000,132.150000,862.920000,4.690000,191.130000,23.140000 -18,2023-08-08 12:00:00,0.000000,24.800000,36.000000,7.000000,150.000000,88.570000,132.400000,863.460000,4.970000,191.420000,24.110000 -18,2023-08-08 13:00:00,0.000000,24.800000,36.000000,7.000000,150.000000,88.910000,132.640000,864.000000,5.210000,191.710000,24.950000 -18,2023-08-08 14:00:00,0.000000,27.000000,35.000000,7.000000,166.000000,89.320000,132.930000,864.620000,5.530000,192.050000,25.990000 -18,2023-08-08 15:00:00,0.000000,27.000000,35.000000,7.000000,166.000000,89.650000,133.220000,865.250000,5.800000,192.380000,26.870000 -18,2023-08-08 16:00:00,0.000000,27.000000,35.000000,7.000000,166.000000,89.930000,133.500000,865.870000,6.040000,192.720000,27.630000 -18,2023-08-08 17:00:00,0.400000,27.500000,36.000000,10.000000,178.000000,87.190000,133.790000,866.500000,4.740000,193.060000,23.360000 -18,2023-08-08 18:00:00,0.000000,27.500000,36.000000,10.000000,178.000000,87.920000,134.080000,867.130000,5.260000,193.400000,25.130000 -18,2023-08-08 19:00:00,0.000000,27.500000,36.000000,10.000000,178.000000,88.510000,134.370000,867.760000,5.730000,193.740000,26.670000 -18,2023-08-08 20:00:00,0.370000,24.500000,48.000000,7.000000,157.000000,85.690000,134.570000,868.190000,3.300000,193.970000,17.990000 -18,2023-08-08 21:00:00,0.000000,24.500000,48.000000,7.000000,157.000000,86.090000,134.760000,868.620000,3.480000,194.200000,18.740000 -18,2023-08-08 22:00:00,0.000000,24.500000,48.000000,7.000000,157.000000,86.430000,134.760000,868.620000,3.660000,194.200000,19.410000 -18,2023-08-08 23:00:00,0.000000,20.400000,58.000000,9.000000,156.000000,86.430000,134.760000,868.620000,4.040000,194.200000,20.880000 -18,2023-08-09 00:00:00,0.000000,20.400000,58.000000,9.000000,156.000000,86.430000,134.760000,868.620000,4.040000,194.200000,20.880000 -18,2023-08-09 01:00:00,0.000000,20.400000,58.000000,9.000000,156.000000,86.430000,134.760000,868.620000,4.040000,194.200000,20.880000 -18,2023-08-09 02:00:00,0.000000,19.300000,59.000000,8.000000,151.000000,86.430000,134.760000,868.620000,3.840000,194.200000,20.130000 -18,2023-08-09 03:00:00,0.000000,19.300000,59.000000,8.000000,151.000000,86.430000,134.760000,868.620000,3.840000,194.200000,20.130000 -18,2023-08-09 04:00:00,0.000000,19.300000,59.000000,8.000000,151.000000,86.430000,134.760000,868.620000,3.840000,194.200000,20.130000 -18,2023-08-09 05:00:00,0.000000,19.100000,56.000000,9.000000,119.000000,86.430000,134.870000,868.840000,4.040000,194.320000,20.880000 -18,2023-08-09 06:00:00,0.000000,19.100000,56.000000,9.000000,119.000000,86.430000,134.970000,869.060000,4.040000,194.450000,20.880000 -18,2023-08-09 07:00:00,0.000000,19.100000,56.000000,9.000000,119.000000,86.430000,135.080000,869.280000,4.040000,194.570000,20.880000 -18,2023-08-09 08:00:00,0.000000,20.500000,44.000000,14.000000,111.000000,86.730000,135.220000,869.590000,5.430000,194.740000,25.730000 -18,2023-08-09 09:00:00,0.000000,20.500000,44.000000,14.000000,111.000000,86.990000,135.360000,869.890000,5.640000,194.910000,26.400000 -18,2023-08-09 10:00:00,0.000000,20.500000,44.000000,14.000000,111.000000,87.220000,135.510000,870.200000,5.820000,195.070000,26.990000 -18,2023-08-09 11:00:00,0.000000,23.900000,33.000000,18.000000,114.000000,87.940000,135.720000,870.650000,7.900000,195.320000,33.180000 -18,2023-08-09 12:00:00,0.000000,23.900000,33.000000,18.000000,114.000000,88.530000,135.930000,871.100000,8.600000,195.570000,35.110000 -18,2023-08-09 13:00:00,0.000000,23.900000,33.000000,18.000000,114.000000,89.020000,136.150000,871.550000,9.210000,195.820000,36.760000 -18,2023-08-09 14:00:00,0.000000,26.400000,27.000000,20.000000,106.000000,89.810000,136.420000,872.120000,11.420000,196.130000,42.250000 -18,2023-08-09 15:00:00,0.000000,26.400000,27.000000,20.000000,106.000000,90.440000,136.690000,872.680000,12.500000,196.450000,44.770000 -18,2023-08-09 16:00:00,0.000000,26.400000,27.000000,20.000000,106.000000,90.940000,136.950000,873.250000,13.420000,196.760000,46.850000 -18,2023-08-09 17:00:00,0.000000,26.200000,26.000000,21.000000,103.000000,91.380000,137.220000,873.820000,15.020000,197.080000,50.300000 -18,2023-08-09 18:00:00,0.000000,26.200000,26.000000,21.000000,103.000000,91.720000,137.490000,874.390000,15.770000,197.390000,51.860000 -18,2023-08-09 19:00:00,0.000000,26.200000,26.000000,21.000000,103.000000,91.990000,137.760000,874.960000,16.390000,197.700000,53.130000 -18,2023-08-09 20:00:00,0.000000,23.900000,28.000000,19.000000,98.000000,92.020000,137.990000,875.440000,14.890000,197.970000,50.050000 -18,2023-08-09 21:00:00,0.000000,23.900000,28.000000,19.000000,98.000000,92.050000,138.220000,875.930000,14.950000,198.240000,50.190000 -18,2023-08-09 22:00:00,0.000000,23.900000,28.000000,19.000000,98.000000,92.080000,138.220000,875.930000,15.000000,198.240000,50.290000 -18,2023-08-09 23:00:00,0.000000,20.400000,31.000000,17.000000,99.000000,92.080000,138.220000,875.930000,13.560000,198.240000,47.200000 -18,2023-08-10 00:00:00,0.000000,20.400000,31.000000,17.000000,99.000000,92.080000,138.220000,875.930000,13.560000,198.240000,47.200000 -18,2023-08-10 01:00:00,0.000000,20.400000,31.000000,17.000000,99.000000,92.080000,138.220000,875.930000,13.560000,198.240000,47.200000 -18,2023-08-10 02:00:00,0.000000,18.000000,32.000000,13.000000,106.000000,92.050000,138.220000,875.930000,11.040000,198.240000,41.400000 -18,2023-08-10 03:00:00,0.000000,18.000000,32.000000,13.000000,106.000000,92.020000,138.220000,875.930000,11.000000,198.240000,41.300000 -18,2023-08-10 04:00:00,0.000000,18.000000,32.000000,13.000000,106.000000,92.000000,138.220000,875.930000,10.960000,198.240000,41.210000 -18,2023-08-10 05:00:00,0.000000,16.200000,35.000000,8.000000,102.000000,91.890000,138.360000,876.230000,8.400000,198.400000,34.640000 -18,2023-08-10 06:00:00,0.000000,16.200000,35.000000,8.000000,102.000000,91.800000,138.490000,876.530000,8.290000,198.550000,34.340000 -18,2023-08-10 07:00:00,0.000000,16.200000,35.000000,8.000000,102.000000,91.720000,138.630000,876.820000,8.190000,198.710000,34.080000 -18,2023-08-10 08:00:00,0.000000,18.200000,33.000000,9.000000,116.000000,91.710000,138.790000,877.170000,8.610000,198.900000,35.210000 -18,2023-08-10 09:00:00,0.000000,18.200000,33.000000,9.000000,116.000000,91.700000,138.950000,877.520000,8.600000,199.090000,35.190000 -18,2023-08-10 10:00:00,0.000000,18.200000,33.000000,9.000000,116.000000,91.700000,139.110000,877.870000,8.590000,199.270000,35.180000 -18,2023-08-10 11:00:00,0.000000,22.400000,34.000000,9.000000,127.000000,91.700000,139.310000,878.320000,8.590000,199.510000,35.180000 -18,2023-08-10 12:00:00,0.000000,22.400000,34.000000,9.000000,127.000000,91.700000,139.510000,878.770000,8.590000,199.750000,35.190000 -18,2023-08-10 13:00:00,0.000000,22.400000,34.000000,9.000000,127.000000,91.700000,139.720000,879.210000,8.590000,199.980000,35.190000 -18,2023-08-10 14:00:00,0.000000,24.500000,28.000000,12.000000,135.000000,91.800000,139.970000,879.760000,10.140000,200.280000,39.230000 -18,2023-08-10 15:00:00,0.000000,24.500000,28.000000,12.000000,135.000000,91.890000,140.220000,880.320000,10.260000,200.570000,39.550000 -18,2023-08-10 16:00:00,0.000000,24.500000,28.000000,12.000000,135.000000,91.960000,140.470000,880.870000,10.360000,200.860000,39.810000 -18,2023-08-10 17:00:00,0.000000,23.600000,28.000000,11.000000,152.000000,91.980000,140.710000,881.390000,9.890000,201.140000,38.640000 -18,2023-08-10 18:00:00,0.000000,23.600000,28.000000,11.000000,152.000000,92.010000,140.950000,881.920000,9.930000,201.420000,38.730000 -18,2023-08-10 19:00:00,0.000000,23.600000,28.000000,11.000000,152.000000,92.030000,141.180000,882.440000,9.950000,201.690000,38.800000 -18,2023-08-10 20:00:00,0.000000,23.600000,28.000000,11.000000,152.000000,92.040000,141.420000,882.960000,9.980000,201.970000,38.870000 -18,2023-08-10 21:00:00,0.000000,23.600000,28.000000,11.000000,152.000000,92.060000,141.420000,882.960000,10.000000,201.970000,38.910000 -18,2023-08-10 22:00:00,0.000000,23.600000,28.000000,11.000000,152.000000,92.070000,141.420000,882.960000,10.010000,201.970000,38.950000 -18,2023-08-10 23:00:00,0.000000,18.300000,44.000000,6.000000,152.000000,91.800000,141.420000,882.960000,7.500000,201.970000,32.200000 -18,2023-08-11 00:00:00,0.000000,18.300000,44.000000,6.000000,152.000000,91.570000,141.420000,882.960000,7.250000,201.970000,31.490000 -18,2023-08-11 01:00:00,0.000000,18.300000,44.000000,6.000000,152.000000,91.360000,141.420000,882.960000,7.040000,201.970000,30.870000 -18,2023-08-11 02:00:00,0.000000,18.300000,44.000000,6.000000,152.000000,91.180000,141.420000,882.960000,6.860000,201.970000,30.320000 -18,2023-08-11 03:00:00,0.000000,18.300000,44.000000,6.000000,152.000000,91.010000,141.420000,882.960000,6.700000,201.970000,29.850000 -18,2023-08-11 04:00:00,0.000000,18.300000,44.000000,6.000000,152.000000,90.860000,141.420000,882.960000,6.560000,201.970000,29.420000 -18,2023-08-11 05:00:00,0.000000,15.800000,57.000000,6.000000,163.000000,90.430000,141.510000,883.190000,6.160000,202.080000,28.210000 -18,2023-08-11 06:00:00,0.000000,15.800000,57.000000,6.000000,163.000000,90.040000,141.600000,883.420000,5.830000,202.180000,27.160000 -18,2023-08-11 07:00:00,0.000000,15.800000,57.000000,6.000000,163.000000,89.700000,141.690000,883.650000,5.550000,202.290000,26.260000 -18,2023-08-11 08:00:00,0.000000,15.800000,57.000000,6.000000,163.000000,89.400000,141.780000,883.880000,5.320000,202.400000,25.490000 -18,2023-08-11 09:00:00,0.000000,15.800000,57.000000,6.000000,163.000000,89.130000,141.870000,884.110000,5.120000,202.500000,24.820000 -18,2023-08-11 10:00:00,0.000000,15.800000,57.000000,6.000000,163.000000,88.890000,141.960000,884.330000,4.950000,202.610000,24.230000 -18,2023-08-11 11:00:00,0.000000,23.100000,44.000000,6.000000,189.000000,88.900000,142.140000,884.800000,4.950000,202.820000,24.250000 -18,2023-08-11 12:00:00,0.000000,23.100000,44.000000,6.000000,189.000000,88.900000,142.320000,885.270000,4.950000,203.040000,24.260000 -18,2023-08-11 13:00:00,0.000000,23.100000,44.000000,6.000000,189.000000,88.900000,142.510000,885.740000,4.950000,203.260000,24.270000 -18,2023-08-11 14:00:00,0.000000,23.100000,44.000000,6.000000,189.000000,88.910000,142.690000,886.210000,4.950000,203.480000,24.280000 -18,2023-08-11 15:00:00,0.000000,23.100000,44.000000,6.000000,189.000000,88.910000,142.870000,886.680000,4.960000,203.690000,24.290000 -18,2023-08-11 16:00:00,0.000000,23.100000,44.000000,6.000000,189.000000,88.910000,143.060000,887.150000,4.960000,203.910000,24.290000 -18,2023-08-11 17:00:00,0.000000,26.200000,26.000000,6.000000,222.000000,89.600000,143.350000,887.890000,5.480000,204.250000,26.040000 -18,2023-08-11 18:00:00,0.000000,26.200000,26.000000,6.000000,222.000000,90.180000,143.640000,888.640000,5.950000,204.600000,27.570000 -18,2023-08-11 19:00:00,0.000000,26.200000,26.000000,6.000000,222.000000,90.660000,143.930000,889.380000,6.370000,204.940000,28.910000 -18,2023-08-11 20:00:00,0.000000,26.200000,26.000000,6.000000,222.000000,91.060000,144.220000,890.130000,6.750000,205.290000,30.050000 -18,2023-08-11 21:00:00,0.000000,26.200000,26.000000,6.000000,222.000000,91.390000,144.220000,890.130000,7.070000,205.290000,31.020000 -18,2023-08-11 22:00:00,0.000000,26.200000,26.000000,6.000000,222.000000,91.670000,144.220000,890.130000,7.350000,205.290000,31.840000 -18,2023-08-11 23:00:00,0.000000,19.500000,42.000000,4.000000,204.000000,91.520000,144.220000,890.130000,6.510000,205.290000,29.330000 -18,2023-08-12 00:00:00,0.000000,19.500000,42.000000,4.000000,204.000000,91.380000,144.220000,890.130000,6.380000,205.290000,28.950000 -18,2023-08-12 01:00:00,0.000000,19.500000,42.000000,4.000000,204.000000,91.260000,144.220000,890.130000,6.280000,205.290000,28.610000 -18,2023-08-12 02:00:00,0.000000,19.500000,42.000000,4.000000,204.000000,91.150000,144.220000,890.130000,6.180000,205.290000,28.310000 -18,2023-08-12 03:00:00,0.000000,19.500000,42.000000,4.000000,204.000000,91.060000,144.220000,890.130000,6.090000,205.290000,28.050000 -18,2023-08-12 04:00:00,0.000000,19.500000,42.000000,4.000000,204.000000,90.970000,144.220000,890.130000,6.020000,205.290000,27.810000 -18,2023-08-12 05:00:00,0.000000,15.700000,61.000000,6.000000,223.000000,90.430000,144.310000,890.410000,6.160000,205.400000,28.260000 -18,2023-08-12 06:00:00,0.000000,15.700000,61.000000,6.000000,223.000000,89.950000,144.400000,890.700000,5.750000,205.510000,26.970000 -18,2023-08-12 07:00:00,0.000000,15.700000,61.000000,6.000000,223.000000,89.530000,144.490000,890.990000,5.420000,205.610000,25.870000 -18,2023-08-12 08:00:00,0.000000,15.700000,61.000000,6.000000,223.000000,89.160000,144.580000,891.280000,5.140000,205.720000,24.930000 -18,2023-08-12 09:00:00,0.000000,15.700000,61.000000,6.000000,223.000000,88.830000,144.660000,891.570000,4.900000,205.830000,24.130000 -18,2023-08-12 10:00:00,0.000000,15.700000,61.000000,6.000000,223.000000,88.540000,144.750000,891.860000,4.700000,205.940000,23.430000 -18,2023-08-12 11:00:00,0.000000,20.700000,54.000000,8.000000,281.000000,88.510000,144.900000,892.320000,5.180000,206.120000,25.080000 -18,2023-08-12 12:00:00,0.000000,20.700000,54.000000,8.000000,281.000000,88.490000,145.040000,892.790000,5.160000,206.290000,25.010000 -18,2023-08-12 13:00:00,0.000000,20.700000,54.000000,8.000000,281.000000,88.460000,145.180000,893.260000,5.140000,206.470000,24.960000 -18,2023-08-12 14:00:00,0.000000,20.700000,54.000000,8.000000,281.000000,88.450000,145.330000,893.720000,5.130000,206.650000,24.920000 -18,2023-08-12 15:00:00,0.000000,20.700000,54.000000,8.000000,281.000000,88.430000,145.470000,894.190000,5.120000,206.820000,24.880000 -18,2023-08-12 16:00:00,0.000000,20.700000,54.000000,8.000000,281.000000,88.410000,145.610000,894.650000,5.110000,207.000000,24.840000 -18,2023-08-12 17:00:00,0.000000,22.400000,51.000000,12.000000,293.000000,88.410000,145.780000,895.200000,6.250000,207.210000,28.550000 -18,2023-08-12 18:00:00,0.000000,22.400000,51.000000,12.000000,293.000000,88.410000,145.950000,895.750000,6.250000,207.410000,28.550000 -18,2023-08-12 19:00:00,0.000000,22.400000,51.000000,12.000000,293.000000,88.410000,146.120000,896.310000,6.250000,207.620000,28.560000 -18,2023-08-12 20:00:00,0.000000,22.400000,51.000000,12.000000,293.000000,88.410000,146.290000,896.860000,6.250000,207.830000,28.560000 -18,2023-08-12 21:00:00,0.000000,22.400000,51.000000,12.000000,293.000000,88.410000,146.290000,896.860000,6.250000,207.830000,28.560000 -18,2023-08-12 22:00:00,0.000000,22.400000,51.000000,12.000000,293.000000,88.410000,146.290000,896.860000,6.250000,207.830000,28.560000 -18,2023-08-12 23:00:00,0.000000,18.000000,69.000000,15.000000,285.000000,87.930000,146.290000,896.860000,6.780000,207.830000,30.200000 -18,2023-08-13 00:00:00,0.000000,18.000000,69.000000,15.000000,285.000000,87.530000,146.290000,896.860000,6.400000,207.830000,29.030000 -18,2023-08-13 01:00:00,0.000000,18.000000,69.000000,15.000000,285.000000,87.180000,146.290000,896.860000,6.090000,207.830000,28.080000 -18,2023-08-13 02:00:00,0.000000,18.000000,69.000000,15.000000,285.000000,86.890000,146.290000,896.860000,5.850000,207.830000,27.290000 -18,2023-08-13 03:00:00,0.000000,18.000000,69.000000,15.000000,285.000000,86.650000,146.290000,896.860000,5.650000,207.830000,26.650000 -18,2023-08-13 04:00:00,0.000000,18.000000,69.000000,15.000000,285.000000,86.440000,146.290000,896.860000,5.480000,207.830000,26.110000 -18,2023-08-13 05:00:00,0.000000,16.400000,73.000000,10.000000,268.000000,86.140000,146.360000,897.020000,4.080000,207.910000,21.230000 -18,2023-08-13 06:00:00,0.000000,16.400000,73.000000,10.000000,268.000000,85.880000,146.430000,897.180000,3.940000,207.990000,20.690000 -18,2023-08-13 07:00:00,0.000000,16.400000,73.000000,10.000000,268.000000,85.660000,146.490000,897.350000,3.820000,208.070000,20.230000 -18,2023-08-13 08:00:00,0.000000,16.400000,73.000000,10.000000,268.000000,85.470000,146.560000,897.510000,3.720000,208.150000,19.840000 -18,2023-08-13 09:00:00,0.000000,16.400000,73.000000,10.000000,268.000000,85.310000,146.630000,897.670000,3.630000,208.230000,19.520000 -18,2023-08-13 10:00:00,0.000000,16.400000,73.000000,10.000000,268.000000,85.160000,146.700000,897.840000,3.560000,208.310000,19.240000 -18,2023-08-13 11:00:00,0.000000,22.300000,40.000000,12.000000,248.000000,85.840000,146.910000,898.360000,4.330000,208.560000,22.140000 -18,2023-08-13 12:00:00,0.000000,22.300000,40.000000,12.000000,248.000000,86.410000,147.130000,898.890000,4.690000,208.810000,23.440000 -18,2023-08-13 13:00:00,0.000000,22.300000,40.000000,12.000000,248.000000,86.900000,147.350000,899.410000,5.030000,209.070000,24.610000 -18,2023-08-13 14:00:00,0.000000,22.300000,40.000000,12.000000,248.000000,87.310000,147.560000,899.940000,5.330000,209.320000,25.630000 -18,2023-08-13 15:00:00,0.000000,22.300000,40.000000,12.000000,248.000000,87.660000,147.780000,900.460000,5.600000,209.580000,26.530000 -18,2023-08-13 16:00:00,0.000000,22.300000,40.000000,12.000000,248.000000,87.950000,148.000000,900.990000,5.840000,209.830000,27.310000 -18,2023-08-13 17:00:00,0.000000,24.300000,27.000000,13.000000,255.000000,88.760000,148.300000,901.710000,6.900000,210.180000,30.590000 -18,2023-08-13 18:00:00,0.000000,24.300000,27.000000,13.000000,255.000000,89.420000,148.590000,902.430000,7.590000,210.520000,32.630000 -18,2023-08-13 19:00:00,0.000000,24.300000,27.000000,13.000000,255.000000,89.970000,148.890000,903.150000,8.210000,210.870000,34.380000 -18,2023-08-13 20:00:00,0.000000,24.300000,27.000000,13.000000,255.000000,90.420000,149.190000,903.870000,8.760000,211.220000,35.880000 -18,2023-08-13 21:00:00,0.000000,24.300000,27.000000,13.000000,255.000000,90.790000,149.190000,903.870000,9.240000,211.220000,37.140000 -18,2023-08-13 22:00:00,0.000000,24.300000,27.000000,13.000000,255.000000,91.090000,149.190000,903.870000,9.640000,211.220000,38.210000 -18,2023-08-13 23:00:00,0.000000,17.900000,32.000000,10.000000,239.000000,91.090000,149.190000,903.870000,8.290000,211.220000,34.600000 -18,2023-08-14 00:00:00,0.000000,17.900000,32.000000,10.000000,239.000000,91.090000,149.190000,903.870000,8.290000,211.220000,34.600000 -18,2023-08-14 01:00:00,0.000000,17.900000,32.000000,10.000000,239.000000,91.090000,149.190000,903.870000,8.290000,211.220000,34.600000 -18,2023-08-14 02:00:00,0.000000,17.900000,32.000000,10.000000,239.000000,91.090000,149.190000,903.870000,8.290000,211.220000,34.600000 -18,2023-08-14 03:00:00,0.000000,17.900000,32.000000,10.000000,239.000000,91.090000,149.190000,903.870000,8.290000,211.220000,34.600000 -18,2023-08-14 04:00:00,0.000000,17.900000,32.000000,10.000000,239.000000,91.090000,149.190000,903.870000,8.290000,211.220000,34.600000 -18,2023-08-14 05:00:00,0.000000,15.800000,43.000000,11.000000,232.000000,90.910000,149.320000,904.150000,8.490000,211.370000,35.150000 -18,2023-08-14 06:00:00,0.000000,15.800000,43.000000,11.000000,232.000000,90.740000,149.460000,904.420000,8.290000,211.530000,34.600000 -18,2023-08-14 07:00:00,0.000000,15.800000,43.000000,11.000000,232.000000,90.590000,149.590000,904.700000,8.120000,211.680000,34.120000 -18,2023-08-14 08:00:00,0.000000,15.800000,43.000000,11.000000,232.000000,90.460000,149.730000,904.970000,7.960000,211.840000,33.700000 -18,2023-08-14 09:00:00,0.000000,15.800000,43.000000,11.000000,232.000000,90.340000,149.860000,905.240000,7.830000,211.990000,33.330000 -18,2023-08-14 10:00:00,0.000000,15.800000,43.000000,11.000000,232.000000,90.240000,150.000000,905.520000,7.720000,212.150000,33.010000 -18,2023-08-14 11:00:00,0.000000,22.000000,28.000000,18.000000,282.000000,90.530000,150.250000,906.030000,11.440000,212.430000,42.700000 -18,2023-08-14 12:00:00,0.000000,22.000000,28.000000,18.000000,282.000000,90.760000,150.500000,906.540000,11.840000,212.720000,43.640000 -18,2023-08-14 13:00:00,0.000000,22.000000,28.000000,18.000000,282.000000,90.960000,150.750000,907.050000,12.170000,213.000000,44.430000 -18,2023-08-14 14:00:00,0.000000,22.000000,28.000000,18.000000,282.000000,91.120000,151.010000,907.560000,12.450000,213.290000,45.080000 -18,2023-08-14 15:00:00,0.000000,22.000000,28.000000,18.000000,282.000000,91.250000,151.260000,908.070000,12.690000,213.580000,45.630000 -18,2023-08-14 16:00:00,0.000000,22.000000,28.000000,18.000000,282.000000,91.360000,151.510000,908.580000,12.880000,213.860000,46.080000 -18,2023-08-14 17:00:00,0.000000,23.000000,25.000000,16.000000,301.000000,91.600000,151.790000,909.140000,12.050000,214.180000,44.170000 -18,2023-08-14 18:00:00,0.000000,23.000000,25.000000,16.000000,301.000000,91.800000,152.070000,909.710000,12.390000,214.490000,44.970000 -18,2023-08-14 19:00:00,0.000000,23.000000,25.000000,16.000000,301.000000,91.960000,152.340000,910.270000,12.680000,214.810000,45.630000 -18,2023-08-14 20:00:00,0.000000,23.000000,25.000000,16.000000,301.000000,92.090000,152.620000,910.840000,12.920000,215.130000,46.180000 -18,2023-08-14 21:00:00,0.000000,23.000000,25.000000,16.000000,301.000000,92.190000,152.620000,910.840000,13.110000,215.130000,46.620000 -18,2023-08-14 22:00:00,0.000000,23.000000,25.000000,16.000000,301.000000,92.280000,152.620000,910.840000,13.280000,215.130000,46.990000 -18,2023-08-14 23:00:00,0.000000,18.000000,35.000000,10.000000,299.000000,92.170000,152.620000,910.840000,9.660000,215.130000,38.310000 -18,2023-08-15 00:00:00,0.000000,18.000000,35.000000,10.000000,299.000000,92.070000,152.620000,910.840000,9.520000,215.130000,37.960000 -18,2023-08-15 01:00:00,0.000000,18.000000,35.000000,10.000000,299.000000,91.980000,152.620000,910.840000,9.400000,215.130000,37.650000 -18,2023-08-15 02:00:00,0.000000,18.000000,35.000000,10.000000,299.000000,91.900000,152.620000,910.840000,9.300000,215.130000,37.370000 -18,2023-08-15 03:00:00,0.000000,18.000000,35.000000,10.000000,299.000000,91.830000,152.620000,910.840000,9.200000,215.130000,37.130000 -18,2023-08-15 04:00:00,0.000000,18.000000,35.000000,10.000000,299.000000,91.770000,152.620000,910.840000,9.120000,215.130000,36.910000 -18,2023-08-15 05:00:00,0.020000,14.200000,48.000000,8.000000,279.000000,91.400000,152.730000,911.100000,7.830000,215.260000,33.380000 -18,2023-08-15 06:00:00,0.000000,14.200000,48.000000,8.000000,279.000000,91.080000,152.850000,911.360000,7.480000,215.390000,32.370000 -18,2023-08-15 07:00:00,0.000000,14.200000,48.000000,8.000000,279.000000,90.780000,152.960000,911.620000,7.170000,215.510000,31.480000 -18,2023-08-15 08:00:00,0.000000,14.200000,48.000000,8.000000,279.000000,90.520000,153.070000,911.880000,6.910000,215.640000,30.710000 -18,2023-08-15 09:00:00,0.000000,14.200000,48.000000,8.000000,279.000000,90.290000,153.180000,912.150000,6.680000,215.770000,30.020000 -18,2023-08-15 10:00:00,0.000000,14.200000,48.000000,8.000000,279.000000,90.080000,153.290000,912.410000,6.490000,215.900000,29.420000 -18,2023-08-15 11:00:00,0.000000,20.500000,36.000000,12.000000,309.000000,90.080000,153.500000,912.890000,7.930000,216.140000,33.690000 -18,2023-08-15 12:00:00,0.000000,20.500000,36.000000,12.000000,309.000000,90.080000,153.700000,913.370000,7.930000,216.370000,33.690000 -18,2023-08-15 13:00:00,0.000000,20.500000,36.000000,12.000000,309.000000,90.080000,153.910000,913.850000,7.930000,216.610000,33.690000 -18,2023-08-15 14:00:00,0.000000,20.500000,36.000000,12.000000,309.000000,90.080000,154.110000,914.330000,7.930000,216.850000,33.700000 -18,2023-08-15 15:00:00,0.000000,20.500000,36.000000,12.000000,309.000000,90.080000,154.310000,914.810000,7.930000,217.080000,33.700000 -18,2023-08-15 16:00:00,0.000000,20.500000,36.000000,12.000000,309.000000,90.080000,154.520000,915.290000,7.930000,217.320000,33.700000 -18,2023-08-15 17:00:00,0.000000,21.600000,30.000000,16.000000,317.000000,90.300000,154.760000,915.850000,10.020000,217.590000,39.280000 -18,2023-08-15 18:00:00,0.000000,21.600000,30.000000,16.000000,317.000000,90.480000,155.000000,916.410000,10.280000,217.870000,39.950000 -18,2023-08-15 19:00:00,0.000000,21.600000,30.000000,16.000000,317.000000,90.640000,155.240000,916.970000,10.510000,218.150000,40.520000 -18,2023-08-15 20:00:00,0.000000,21.600000,30.000000,16.000000,317.000000,90.760000,155.480000,917.530000,10.700000,218.420000,40.990000 -18,2023-08-15 21:00:00,0.000000,21.600000,30.000000,16.000000,317.000000,90.860000,155.480000,917.530000,10.860000,218.420000,41.390000 -18,2023-08-15 22:00:00,0.000000,21.600000,30.000000,16.000000,317.000000,90.950000,155.480000,917.530000,10.990000,218.420000,41.710000 -18,2023-08-15 23:00:00,0.000000,14.900000,54.000000,4.000000,313.000000,90.590000,155.480000,917.530000,5.700000,218.420000,26.980000 -18,2023-08-16 00:00:00,0.000000,14.900000,54.000000,4.000000,313.000000,90.270000,155.480000,917.530000,5.450000,218.420000,26.130000 -18,2023-08-16 01:00:00,0.000000,14.900000,54.000000,4.000000,313.000000,89.980000,155.480000,917.530000,5.220000,218.420000,25.390000 -18,2023-08-16 02:00:00,0.000000,14.900000,54.000000,4.000000,313.000000,89.720000,155.480000,917.530000,5.030000,218.420000,24.740000 -18,2023-08-16 03:00:00,0.000000,14.900000,54.000000,4.000000,313.000000,89.480000,155.480000,917.530000,4.870000,218.420000,24.170000 -18,2023-08-16 04:00:00,0.000000,14.900000,54.000000,4.000000,313.000000,89.270000,155.480000,917.530000,4.720000,218.420000,23.660000 -18,2023-08-16 05:00:00,0.000000,10.100000,76.000000,5.000000,245.000000,88.590000,155.520000,917.620000,4.500000,218.470000,22.880000 -18,2023-08-16 06:00:00,0.000000,10.100000,76.000000,5.000000,245.000000,87.980000,155.560000,917.710000,4.120000,218.520000,21.490000 -18,2023-08-16 07:00:00,0.000000,10.100000,76.000000,5.000000,245.000000,87.440000,155.600000,917.800000,3.810000,218.560000,20.320000 -18,2023-08-16 08:00:00,0.000000,10.100000,76.000000,5.000000,245.000000,86.950000,155.640000,917.900000,3.560000,218.610000,19.320000 -18,2023-08-16 09:00:00,0.000000,10.100000,76.000000,5.000000,245.000000,86.510000,155.680000,917.990000,3.340000,218.660000,18.470000 -18,2023-08-16 10:00:00,0.000000,10.100000,76.000000,5.000000,245.000000,86.120000,155.720000,918.080000,3.160000,218.700000,17.730000 -18,2023-08-16 11:00:00,0.000000,21.500000,34.000000,5.000000,172.000000,86.720000,155.950000,918.600000,3.440000,218.970000,18.870000 -18,2023-08-16 12:00:00,0.000000,21.500000,34.000000,5.000000,172.000000,87.240000,156.190000,919.110000,3.710000,219.230000,19.910000 -18,2023-08-16 13:00:00,0.000000,21.500000,34.000000,5.000000,172.000000,87.690000,156.420000,919.630000,3.950000,219.500000,20.860000 -18,2023-08-16 14:00:00,0.000000,21.500000,34.000000,5.000000,172.000000,88.070000,156.650000,920.150000,4.180000,219.770000,21.720000 -18,2023-08-16 15:00:00,0.000000,21.500000,34.000000,5.000000,172.000000,88.410000,156.880000,920.670000,4.390000,220.030000,22.480000 -18,2023-08-16 16:00:00,0.000000,21.500000,34.000000,5.000000,172.000000,88.700000,157.110000,921.190000,4.580000,220.300000,23.160000 -18,2023-08-16 17:00:00,0.000000,25.600000,20.000000,3.000000,113.000000,89.570000,157.470000,921.990000,4.680000,220.710000,23.540000 -18,2023-08-16 18:00:00,0.000000,25.600000,20.000000,3.000000,113.000000,90.300000,157.840000,922.800000,5.200000,221.120000,25.340000 -18,2023-08-16 19:00:00,0.000000,25.600000,20.000000,3.000000,113.000000,90.920000,158.200000,923.600000,5.680000,221.530000,26.950000 -18,2023-08-16 20:00:00,0.000000,25.600000,20.000000,3.000000,113.000000,91.440000,158.560000,924.410000,6.120000,221.940000,28.370000 -18,2023-08-16 21:00:00,0.000000,25.600000,20.000000,3.000000,113.000000,91.890000,158.560000,924.410000,6.520000,221.940000,29.600000 -18,2023-08-16 22:00:00,0.000000,25.600000,20.000000,3.000000,113.000000,92.260000,158.560000,924.410000,6.870000,221.940000,30.680000 -18,2023-08-16 23:00:00,0.000000,16.000000,45.000000,5.000000,91.000000,91.950000,158.560000,924.410000,7.270000,221.940000,31.870000 -18,2023-08-17 00:00:00,0.000000,16.000000,45.000000,5.000000,91.000000,91.670000,158.560000,924.410000,6.990000,221.940000,31.030000 -18,2023-08-17 01:00:00,0.000000,16.000000,45.000000,5.000000,91.000000,91.410000,158.560000,924.410000,6.740000,221.940000,30.280000 -18,2023-08-17 02:00:00,0.000000,16.000000,45.000000,5.000000,91.000000,91.180000,158.560000,924.410000,6.530000,221.940000,29.630000 -18,2023-08-17 03:00:00,0.000000,16.000000,45.000000,5.000000,91.000000,90.980000,158.560000,924.410000,6.340000,221.940000,29.040000 -18,2023-08-17 04:00:00,0.000000,16.000000,45.000000,5.000000,91.000000,90.790000,158.560000,924.410000,6.170000,221.940000,28.530000 -18,2023-08-17 05:00:00,0.000000,10.800000,60.000000,5.000000,175.000000,90.310000,158.560000,924.410000,5.760000,221.940000,27.200000 -18,2023-08-17 06:00:00,0.000000,10.800000,60.000000,5.000000,175.000000,89.870000,158.630000,924.540000,5.410000,222.020000,26.050000 -18,2023-08-17 07:00:00,0.000000,10.800000,60.000000,5.000000,175.000000,89.470000,158.700000,924.670000,5.110000,222.100000,25.050000 -18,2023-08-17 08:00:00,0.000000,10.800000,60.000000,5.000000,175.000000,89.120000,158.770000,924.790000,4.860000,222.180000,24.170000 -18,2023-08-17 09:00:00,0.000000,10.800000,60.000000,5.000000,175.000000,88.800000,158.840000,924.920000,4.640000,222.260000,23.390000 -18,2023-08-17 10:00:00,0.000000,10.800000,60.000000,5.000000,175.000000,88.500000,158.910000,925.050000,4.450000,222.330000,22.710000 -18,2023-08-17 11:00:00,0.000000,24.900000,24.000000,9.000000,136.000000,89.320000,159.240000,925.650000,6.120000,222.700000,28.360000 -18,2023-08-17 12:00:00,0.000000,24.900000,24.000000,9.000000,136.000000,90.000000,159.560000,926.250000,6.740000,223.060000,30.300000 -18,2023-08-17 13:00:00,0.000000,24.900000,24.000000,9.000000,136.000000,90.560000,159.890000,926.850000,7.310000,223.420000,31.990000 -18,2023-08-17 14:00:00,0.000000,24.900000,24.000000,9.000000,136.000000,91.030000,160.210000,927.450000,7.810000,223.780000,33.440000 -18,2023-08-17 15:00:00,0.000000,24.900000,24.000000,9.000000,136.000000,91.410000,160.540000,928.050000,8.250000,224.140000,34.680000 -18,2023-08-17 16:00:00,0.000000,24.900000,24.000000,9.000000,136.000000,91.730000,160.870000,928.650000,8.630000,224.510000,35.730000 -18,2023-08-17 17:00:00,0.000000,29.000000,19.000000,11.000000,107.000000,92.430000,161.310000,929.460000,10.530000,225.000000,40.680000 -18,2023-08-17 18:00:00,0.000000,29.000000,19.000000,11.000000,107.000000,92.980000,161.750000,930.270000,11.380000,225.490000,42.770000 -18,2023-08-17 19:00:00,0.000000,29.000000,19.000000,11.000000,107.000000,93.410000,162.190000,931.080000,12.090000,225.970000,44.470000 -18,2023-08-17 20:00:00,0.000000,29.000000,19.000000,11.000000,107.000000,93.750000,162.640000,931.890000,12.680000,226.460000,45.850000 -18,2023-08-17 21:00:00,0.000000,29.000000,19.000000,11.000000,107.000000,94.020000,162.640000,931.890000,13.170000,226.460000,46.950000 -18,2023-08-17 22:00:00,0.000000,29.000000,19.000000,11.000000,107.000000,94.240000,162.640000,931.890000,13.560000,226.460000,47.830000 -18,2023-08-17 23:00:00,0.000000,18.500000,44.000000,5.000000,95.000000,93.750000,162.640000,931.890000,9.370000,226.460000,37.730000 -18,2023-08-18 00:00:00,0.000000,18.500000,44.000000,5.000000,95.000000,93.320000,162.640000,931.890000,8.820000,226.460000,36.270000 -18,2023-08-18 01:00:00,0.000000,18.500000,44.000000,5.000000,95.000000,92.930000,162.640000,931.890000,8.350000,226.460000,35.000000 -18,2023-08-18 02:00:00,0.000000,18.500000,44.000000,5.000000,95.000000,92.580000,162.640000,931.890000,7.960000,226.460000,33.890000 -18,2023-08-18 03:00:00,0.000000,18.500000,44.000000,5.000000,95.000000,92.280000,162.640000,931.890000,7.620000,226.460000,32.930000 -18,2023-08-18 04:00:00,0.000000,18.500000,44.000000,5.000000,95.000000,92.000000,162.640000,931.890000,7.330000,226.460000,32.090000 -18,2023-08-18 05:00:00,0.000000,13.100000,63.000000,6.000000,187.000000,91.300000,162.640000,931.890000,6.980000,226.460000,31.040000 -18,2023-08-18 06:00:00,0.000000,13.100000,63.000000,6.000000,187.000000,90.670000,162.740000,932.100000,6.380000,226.580000,29.230000 -18,2023-08-18 07:00:00,0.000000,13.100000,63.000000,6.000000,187.000000,90.120000,162.850000,932.310000,5.900000,226.700000,27.700000 -18,2023-08-18 08:00:00,0.000000,13.100000,63.000000,6.000000,187.000000,89.630000,162.960000,932.520000,5.490000,226.830000,26.380000 -18,2023-08-18 09:00:00,0.000000,13.100000,63.000000,6.000000,187.000000,89.190000,163.070000,932.730000,5.160000,226.950000,25.260000 -18,2023-08-18 10:00:00,0.000000,13.100000,63.000000,6.000000,187.000000,88.800000,163.180000,932.940000,4.880000,227.070000,24.290000 -18,2023-08-18 11:00:00,0.000000,27.100000,30.000000,9.000000,155.000000,89.440000,163.660000,933.880000,6.220000,227.610000,28.740000 -18,2023-08-18 12:00:00,0.000000,27.100000,30.000000,9.000000,155.000000,89.970000,164.150000,934.830000,6.710000,228.150000,30.250000 -18,2023-08-18 13:00:00,0.000000,27.100000,30.000000,9.000000,155.000000,90.400000,164.640000,935.770000,7.130000,228.690000,31.540000 -18,2023-08-18 14:00:00,0.000000,27.100000,30.000000,9.000000,155.000000,90.750000,165.130000,936.710000,7.500000,229.230000,32.620000 -18,2023-08-18 15:00:00,0.000000,27.100000,30.000000,9.000000,155.000000,91.030000,165.620000,937.660000,7.820000,229.770000,33.520000 -18,2023-08-18 16:00:00,0.000000,27.100000,30.000000,9.000000,155.000000,91.270000,166.100000,938.600000,8.080000,230.310000,34.280000 -18,2023-08-18 17:00:00,0.150000,30.400000,28.000000,9.000000,161.000000,91.680000,166.710000,939.770000,8.570000,230.980000,35.650000 -19,2023-08-03 00:00:00,0.000000,15.700000,55.000000,6.000000,62.000000,86.000000,118.400000,826.100000,3.270000,174.330000,17.540000 -19,2023-08-03 01:00:00,0.000000,15.700000,55.000000,6.000000,62.000000,86.000000,118.400000,826.100000,3.270000,174.330000,17.540000 -19,2023-08-03 02:00:00,0.000000,13.400000,62.000000,3.000000,70.000000,85.980000,118.400000,826.100000,2.810000,174.330000,15.620000 -19,2023-08-03 03:00:00,0.000000,13.400000,62.000000,3.000000,70.000000,85.960000,118.400000,826.100000,2.800000,174.330000,15.590000 -19,2023-08-03 04:00:00,0.000000,13.400000,62.000000,3.000000,70.000000,85.940000,118.400000,826.100000,2.790000,174.330000,15.560000 -19,2023-08-03 05:00:00,0.000000,11.700000,68.000000,2.000000,9.000000,85.810000,118.460000,826.220000,2.600000,174.400000,14.760000 -19,2023-08-03 06:00:00,0.000000,11.700000,68.000000,2.000000,9.000000,85.690000,118.510000,826.350000,2.560000,174.470000,14.570000 -19,2023-08-03 07:00:00,0.000000,11.700000,68.000000,2.000000,9.000000,85.570000,118.570000,826.470000,2.520000,174.540000,14.400000 -19,2023-08-03 08:00:00,0.000000,17.400000,49.000000,4.000000,40.000000,85.730000,118.700000,826.760000,2.850000,174.700000,15.820000 -19,2023-08-03 09:00:00,0.000000,17.400000,49.000000,4.000000,40.000000,85.870000,118.830000,827.050000,2.910000,174.860000,16.060000 -19,2023-08-03 10:00:00,0.000000,17.400000,49.000000,4.000000,40.000000,86.000000,118.960000,827.340000,2.960000,175.020000,16.280000 -19,2023-08-03 11:00:00,0.000000,22.600000,34.000000,11.000000,54.000000,86.750000,119.200000,827.850000,4.680000,175.300000,22.760000 -19,2023-08-03 12:00:00,0.000000,22.600000,34.000000,11.000000,54.000000,87.380000,119.430000,828.360000,5.120000,175.580000,24.270000 -19,2023-08-03 13:00:00,0.000000,22.600000,34.000000,11.000000,54.000000,87.920000,119.670000,828.880000,5.530000,175.860000,25.610000 -19,2023-08-03 14:00:00,0.000000,24.000000,33.000000,14.000000,42.000000,88.490000,119.930000,829.440000,6.990000,176.170000,30.050000 -19,2023-08-03 15:00:00,0.000000,24.000000,33.000000,14.000000,42.000000,88.960000,120.190000,830.010000,7.480000,176.480000,31.460000 -19,2023-08-03 16:00:00,0.000000,24.000000,33.000000,14.000000,42.000000,89.350000,120.440000,830.580000,7.910000,176.800000,32.680000 -19,2023-08-03 17:00:00,0.000000,23.800000,33.000000,14.000000,42.000000,89.670000,120.700000,831.140000,8.270000,177.100000,33.680000 -19,2023-08-03 18:00:00,0.000000,23.800000,33.000000,14.000000,42.000000,89.930000,120.960000,831.700000,8.580000,177.410000,34.530000 -19,2023-08-03 19:00:00,0.000000,23.800000,33.000000,14.000000,42.000000,90.140000,121.210000,832.260000,8.850000,177.720000,35.240000 -19,2023-08-03 20:00:00,0.000000,21.700000,38.000000,9.000000,52.000000,90.140000,121.420000,832.720000,6.880000,177.970000,29.790000 -19,2023-08-03 21:00:00,0.000000,21.700000,38.000000,9.000000,52.000000,90.140000,121.630000,833.170000,6.880000,178.220000,29.800000 -19,2023-08-03 22:00:00,0.000000,21.700000,38.000000,9.000000,52.000000,90.140000,121.630000,833.170000,6.880000,178.220000,29.800000 -19,2023-08-03 23:00:00,0.000000,15.700000,57.000000,3.000000,103.000000,89.820000,121.630000,833.170000,4.860000,178.220000,23.430000 -19,2023-08-04 00:00:00,0.000000,15.700000,57.000000,3.000000,103.000000,89.530000,121.630000,833.170000,4.660000,178.220000,22.760000 -19,2023-08-04 01:00:00,0.000000,15.700000,57.000000,3.000000,103.000000,89.280000,121.630000,833.170000,4.490000,178.220000,22.180000 -19,2023-08-04 02:00:00,0.000000,13.300000,64.000000,4.000000,219.000000,88.880000,121.630000,833.170000,4.460000,178.220000,22.070000 -19,2023-08-04 03:00:00,0.000000,13.300000,64.000000,4.000000,219.000000,88.520000,121.630000,833.170000,4.240000,178.220000,21.280000 -19,2023-08-04 04:00:00,0.000000,13.300000,64.000000,4.000000,219.000000,88.210000,121.630000,833.170000,4.050000,178.220000,20.600000 -19,2023-08-04 05:00:00,0.000000,13.300000,64.000000,6.000000,254.000000,87.910000,121.700000,833.340000,4.290000,178.300000,21.470000 -19,2023-08-04 06:00:00,0.000000,13.300000,64.000000,6.000000,254.000000,87.640000,121.770000,833.520000,4.130000,178.390000,20.890000 -19,2023-08-04 07:00:00,0.000000,13.300000,64.000000,6.000000,254.000000,87.400000,121.840000,833.690000,3.990000,178.480000,20.380000 -19,2023-08-04 08:00:00,0.000000,19.100000,52.000000,4.000000,268.000000,87.400000,121.980000,834.020000,3.610000,178.640000,18.940000 -19,2023-08-04 09:00:00,0.000000,19.100000,52.000000,4.000000,268.000000,87.400000,122.120000,834.350000,3.610000,178.810000,18.950000 -19,2023-08-04 10:00:00,0.000000,19.100000,52.000000,4.000000,268.000000,87.400000,122.260000,834.690000,3.610000,178.980000,18.950000 -19,2023-08-04 11:00:00,0.000000,23.400000,41.000000,4.000000,274.000000,87.680000,122.480000,835.220000,3.760000,179.240000,19.530000 -19,2023-08-04 12:00:00,0.000000,23.400000,41.000000,4.000000,274.000000,87.930000,122.700000,835.750000,3.900000,179.510000,20.050000 -19,2023-08-04 13:00:00,0.000000,23.400000,41.000000,4.000000,274.000000,88.150000,122.920000,836.280000,4.020000,179.770000,20.510000 -19,2023-08-04 14:00:00,0.000000,25.700000,38.000000,6.000000,328.000000,88.510000,123.180000,836.920000,4.680000,180.090000,22.890000 -19,2023-08-04 15:00:00,0.000000,25.700000,38.000000,6.000000,328.000000,88.820000,123.450000,837.570000,4.900000,180.420000,23.630000 -19,2023-08-04 16:00:00,0.000000,25.700000,38.000000,6.000000,328.000000,89.090000,123.710000,838.210000,5.080000,180.740000,24.260000 -19,2023-08-04 17:00:00,0.000000,25.400000,42.000000,12.000000,329.000000,89.190000,123.960000,838.800000,6.980000,181.030000,30.180000 -19,2023-08-04 18:00:00,0.000000,25.400000,42.000000,12.000000,329.000000,89.270000,124.200000,839.390000,7.060000,181.320000,30.440000 -19,2023-08-04 19:00:00,0.000000,25.400000,42.000000,12.000000,329.000000,89.340000,124.440000,839.980000,7.130000,181.620000,30.650000 -19,2023-08-04 20:00:00,1.720000,21.300000,74.000000,7.000000,3.000000,61.500000,99.270000,829.680000,0.640000,152.820000,4.000000 -19,2023-08-04 21:00:00,0.000000,21.300000,74.000000,7.000000,3.000000,63.250000,99.350000,829.890000,0.700000,152.930000,4.400000 -19,2023-08-04 22:00:00,0.000000,21.300000,74.000000,7.000000,3.000000,64.870000,99.350000,829.890000,0.750000,152.930000,4.740000 -19,2023-08-04 23:00:00,1.200000,17.900000,82.000000,4.000000,312.000000,51.250000,87.620000,822.560000,0.230000,138.390000,0.790000 -19,2023-08-05 00:00:00,0.000000,17.900000,82.000000,4.000000,312.000000,52.620000,87.620000,822.560000,0.270000,138.390000,0.910000 -19,2023-08-05 01:00:00,0.000000,17.900000,82.000000,4.000000,312.000000,53.930000,87.620000,822.560000,0.310000,138.390000,1.230000 -19,2023-08-05 02:00:00,0.000000,15.600000,88.000000,5.000000,346.000000,54.790000,87.620000,822.560000,0.350000,138.390000,1.670000 -19,2023-08-05 03:00:00,0.000000,15.600000,88.000000,5.000000,346.000000,55.620000,87.620000,822.560000,0.380000,138.390000,1.910000 -19,2023-08-05 04:00:00,0.000000,15.600000,88.000000,5.000000,346.000000,56.430000,87.620000,822.560000,0.410000,138.390000,2.130000 -19,2023-08-05 05:00:00,0.000000,13.700000,88.000000,4.000000,59.000000,57.110000,87.660000,822.830000,0.410000,138.450000,2.150000 -19,2023-08-05 06:00:00,0.000000,13.700000,88.000000,4.000000,59.000000,57.780000,87.700000,823.100000,0.430000,138.510000,2.320000 -19,2023-08-05 07:00:00,0.000000,13.700000,88.000000,4.000000,59.000000,58.430000,87.740000,823.370000,0.450000,138.560000,2.480000 -19,2023-08-05 08:00:00,0.000000,16.600000,67.000000,8.000000,42.000000,60.400000,87.870000,824.260000,0.630000,138.760000,3.750000 -19,2023-08-05 09:00:00,0.000000,16.600000,67.000000,8.000000,42.000000,62.240000,88.010000,825.160000,0.700000,138.960000,4.210000 -19,2023-08-05 10:00:00,0.000000,16.600000,67.000000,8.000000,42.000000,63.970000,88.140000,826.050000,0.760000,139.160000,4.600000 -19,2023-08-05 11:00:00,0.270000,15.700000,75.000000,15.000000,33.000000,61.750000,85.660000,824.460000,0.960000,136.000000,5.810000 -19,2023-08-05 12:00:00,0.000000,15.700000,75.000000,15.000000,33.000000,63.380000,85.750000,825.100000,1.050000,136.140000,6.290000 -19,2023-08-05 13:00:00,0.000000,15.700000,75.000000,15.000000,33.000000,64.890000,85.850000,825.740000,1.120000,136.280000,6.690000 -19,2023-08-05 14:00:00,1.730000,13.600000,97.000000,12.000000,45.000000,43.520000,72.520000,811.540000,0.120000,118.550000,0.370000 -19,2023-08-05 15:00:00,0.000000,13.600000,97.000000,12.000000,45.000000,43.890000,72.530000,811.600000,0.130000,118.570000,0.390000 -19,2023-08-05 16:00:00,0.000000,13.600000,97.000000,12.000000,45.000000,44.260000,72.540000,811.670000,0.130000,118.580000,0.420000 -19,2023-08-05 17:00:00,0.870000,13.600000,98.000000,8.000000,23.000000,36.760000,67.080000,804.540000,0.030000,111.020000,0.080000 -19,2023-08-05 18:00:00,0.000000,13.600000,98.000000,8.000000,23.000000,37.010000,67.090000,804.580000,0.030000,111.030000,0.080000 -19,2023-08-05 19:00:00,0.000000,13.600000,98.000000,8.000000,23.000000,37.250000,67.090000,804.630000,0.030000,111.040000,0.090000 -19,2023-08-05 20:00:00,1.740000,13.400000,98.000000,5.000000,338.000000,25.630000,57.930000,790.320000,0.000000,97.910000,0.000000 -19,2023-08-05 21:00:00,0.000000,13.400000,98.000000,5.000000,338.000000,25.880000,57.940000,790.360000,0.000000,97.920000,0.000000 -19,2023-08-05 22:00:00,0.000000,13.400000,98.000000,5.000000,338.000000,26.120000,57.940000,790.360000,0.000000,97.920000,0.000000 -19,2023-08-05 23:00:00,0.150000,13.300000,98.000000,7.000000,301.000000,25.620000,57.170000,789.130000,0.000000,96.810000,0.000000 -19,2023-08-06 00:00:00,0.000000,13.300000,98.000000,7.000000,301.000000,25.900000,57.170000,789.130000,0.000000,96.810000,0.000000 -19,2023-08-06 01:00:00,0.000000,13.300000,98.000000,7.000000,301.000000,26.170000,57.170000,789.130000,0.000000,96.810000,0.000000 -19,2023-08-06 02:00:00,0.000000,12.800000,98.000000,7.000000,296.000000,26.440000,57.170000,789.130000,0.000000,96.810000,0.000000 -19,2023-08-06 03:00:00,0.000000,12.800000,98.000000,7.000000,296.000000,26.700000,57.170000,789.130000,0.000000,96.810000,0.010000 -19,2023-08-06 04:00:00,0.000000,12.800000,98.000000,7.000000,296.000000,26.970000,57.170000,789.130000,0.000000,96.810000,0.010000 -19,2023-08-06 05:00:00,0.000000,10.800000,99.000000,7.000000,303.000000,27.090000,57.170000,789.130000,0.000000,96.810000,0.010000 -19,2023-08-06 06:00:00,0.000000,10.800000,99.000000,7.000000,303.000000,27.220000,57.170000,789.140000,0.000000,96.810000,0.010000 -19,2023-08-06 07:00:00,0.000000,10.800000,99.000000,7.000000,303.000000,27.340000,57.180000,789.150000,0.000000,96.810000,0.010000 -19,2023-08-06 08:00:00,0.010000,13.500000,92.000000,6.000000,320.000000,28.290000,57.190000,789.210000,0.000000,96.840000,0.010000 -19,2023-08-06 09:00:00,0.000000,13.500000,92.000000,6.000000,320.000000,29.220000,57.210000,789.280000,0.000000,96.870000,0.010000 -19,2023-08-06 10:00:00,0.000000,13.500000,92.000000,6.000000,320.000000,30.150000,57.230000,789.340000,0.000000,96.890000,0.010000 -19,2023-08-06 11:00:00,0.000000,18.700000,60.000000,7.000000,29.000000,33.950000,57.340000,789.800000,0.010000,97.070000,0.040000 -19,2023-08-06 12:00:00,0.000000,18.700000,60.000000,7.000000,29.000000,37.620000,57.460000,790.260000,0.030000,97.240000,0.080000 -19,2023-08-06 13:00:00,0.000000,18.700000,60.000000,7.000000,29.000000,41.150000,57.580000,790.710000,0.060000,97.420000,0.170000 -19,2023-08-06 14:00:00,0.000000,20.100000,49.000000,14.000000,38.000000,45.920000,57.740000,791.350000,0.190000,97.670000,0.520000 -19,2023-08-06 15:00:00,0.000000,20.100000,49.000000,14.000000,38.000000,50.370000,57.900000,791.990000,0.350000,97.910000,0.950000 -19,2023-08-06 16:00:00,0.000000,20.100000,49.000000,14.000000,38.000000,54.500000,58.070000,792.620000,0.540000,98.160000,2.380000 -19,2023-08-06 17:00:00,0.000000,19.500000,47.000000,15.000000,58.000000,58.350000,58.230000,793.260000,0.780000,98.400000,3.790000 -19,2023-08-06 18:00:00,0.000000,19.500000,47.000000,15.000000,58.000000,61.860000,58.390000,793.890000,0.970000,98.650000,4.800000 -19,2023-08-06 19:00:00,0.000000,19.500000,47.000000,15.000000,58.000000,65.020000,58.560000,794.530000,1.120000,98.890000,5.580000 -19,2023-08-06 20:00:00,0.000000,16.700000,52.000000,9.000000,72.000000,67.140000,58.680000,795.010000,0.900000,99.080000,4.440000 -19,2023-08-06 21:00:00,0.000000,16.700000,52.000000,9.000000,72.000000,69.070000,58.810000,795.500000,0.960000,99.270000,4.750000 -19,2023-08-06 22:00:00,0.000000,16.700000,52.000000,9.000000,72.000000,70.840000,58.810000,795.500000,1.010000,99.270000,5.030000 -19,2023-08-06 23:00:00,0.000000,11.600000,70.000000,1.000000,302.000000,71.390000,58.810000,795.500000,0.690000,99.270000,3.300000 -19,2023-08-07 00:00:00,0.000000,11.600000,70.000000,1.000000,302.000000,71.920000,58.810000,795.500000,0.700000,99.270000,3.380000 -19,2023-08-07 01:00:00,0.000000,11.600000,70.000000,1.000000,302.000000,72.420000,58.810000,795.500000,0.720000,99.270000,3.460000 -19,2023-08-07 02:00:00,0.000000,9.300000,79.000000,4.000000,279.000000,72.780000,58.810000,795.500000,0.840000,99.270000,4.160000 -19,2023-08-07 03:00:00,0.000000,9.300000,79.000000,4.000000,279.000000,73.110000,58.810000,795.500000,0.860000,99.270000,4.220000 -19,2023-08-07 04:00:00,0.000000,9.300000,79.000000,4.000000,279.000000,73.440000,58.810000,795.500000,0.870000,99.270000,4.290000 -19,2023-08-07 05:00:00,0.000000,7.900000,84.000000,2.000000,288.000000,73.600000,58.830000,795.560000,0.790000,99.300000,3.870000 -19,2023-08-07 06:00:00,0.000000,7.900000,84.000000,2.000000,288.000000,73.760000,58.850000,795.630000,0.800000,99.330000,3.900000 -19,2023-08-07 07:00:00,0.000000,7.900000,84.000000,2.000000,288.000000,73.910000,58.870000,795.700000,0.800000,99.370000,3.940000 -19,2023-08-07 08:00:00,0.000000,13.000000,63.000000,0.000000,149.000000,74.370000,58.950000,795.920000,0.740000,99.480000,3.600000 -19,2023-08-07 09:00:00,0.000000,13.000000,63.000000,0.000000,149.000000,74.800000,59.020000,796.140000,0.760000,99.590000,3.700000 -19,2023-08-07 10:00:00,0.000000,13.000000,63.000000,0.000000,149.000000,75.220000,59.100000,796.350000,0.780000,99.700000,3.800000 -19,2023-08-07 11:00:00,0.000000,17.800000,46.000000,5.000000,86.000000,76.510000,59.240000,796.790000,1.080000,99.910000,5.410000 -19,2023-08-07 12:00:00,0.000000,17.800000,46.000000,5.000000,86.000000,77.680000,59.390000,797.220000,1.180000,100.130000,5.900000 -19,2023-08-07 13:00:00,0.000000,17.800000,46.000000,5.000000,86.000000,78.730000,59.540000,797.660000,1.290000,100.350000,6.440000 -19,2023-08-07 14:00:00,0.000000,19.400000,39.000000,7.000000,62.000000,80.030000,59.720000,798.200000,1.620000,100.620000,7.940000 -19,2023-08-07 15:00:00,0.000000,19.400000,39.000000,7.000000,62.000000,81.180000,59.910000,798.740000,1.840000,100.890000,8.870000 -19,2023-08-07 16:00:00,0.000000,19.400000,39.000000,7.000000,62.000000,82.190000,60.090000,799.280000,2.070000,101.170000,9.840000 -19,2023-08-07 17:00:00,0.000000,19.400000,39.000000,10.000000,54.000000,83.130000,60.270000,799.830000,2.720000,101.440000,12.290000 -19,2023-08-07 18:00:00,0.000000,19.400000,39.000000,10.000000,54.000000,83.960000,60.460000,800.370000,3.020000,101.710000,13.400000 -19,2023-08-07 19:00:00,0.000000,19.400000,39.000000,10.000000,54.000000,84.670000,60.640000,800.910000,3.330000,101.980000,14.470000 -19,2023-08-07 20:00:00,0.000000,17.000000,48.000000,10.000000,55.000000,84.970000,60.780000,801.310000,3.470000,102.180000,14.950000 -19,2023-08-07 21:00:00,0.000000,17.000000,48.000000,10.000000,55.000000,85.240000,60.910000,801.700000,3.600000,102.380000,15.390000 -19,2023-08-07 22:00:00,0.000000,17.000000,48.000000,10.000000,55.000000,85.480000,60.910000,801.700000,3.720000,102.380000,15.780000 -19,2023-08-07 23:00:00,0.000000,11.600000,68.000000,6.000000,59.000000,85.370000,60.910000,801.700000,3.000000,102.380000,13.360000 -19,2023-08-08 00:00:00,0.000000,11.600000,68.000000,6.000000,59.000000,85.270000,60.910000,801.700000,2.960000,102.380000,13.220000 -19,2023-08-08 01:00:00,0.000000,11.600000,68.000000,6.000000,59.000000,85.190000,60.910000,801.700000,2.920000,102.380000,13.100000 -19,2023-08-08 02:00:00,0.000000,9.100000,78.000000,5.000000,71.000000,84.880000,60.910000,801.700000,2.660000,102.380000,12.170000 -19,2023-08-08 03:00:00,0.000000,9.100000,78.000000,5.000000,71.000000,84.600000,60.910000,801.700000,2.570000,102.380000,11.800000 -19,2023-08-08 04:00:00,0.000000,9.100000,78.000000,5.000000,71.000000,84.350000,60.910000,801.700000,2.480000,102.380000,11.480000 -19,2023-08-08 05:00:00,0.000000,7.500000,80.000000,4.000000,104.000000,84.080000,60.940000,801.770000,2.270000,102.420000,10.700000 -19,2023-08-08 06:00:00,0.000000,7.500000,80.000000,4.000000,104.000000,83.830000,60.970000,801.840000,2.200000,102.460000,10.410000 -19,2023-08-08 07:00:00,0.000000,7.500000,80.000000,4.000000,104.000000,83.600000,60.990000,801.900000,2.130000,102.490000,10.160000 -19,2023-08-08 08:00:00,0.000000,12.500000,57.000000,7.000000,131.000000,83.720000,61.070000,802.100000,2.520000,102.610000,11.650000 -19,2023-08-08 09:00:00,0.000000,12.500000,57.000000,7.000000,131.000000,83.830000,61.150000,802.300000,2.560000,102.730000,11.800000 -19,2023-08-08 10:00:00,0.000000,12.500000,57.000000,7.000000,131.000000,83.930000,61.230000,802.500000,2.590000,102.840000,11.930000 -19,2023-08-08 11:00:00,0.000000,19.900000,39.000000,8.000000,127.000000,84.640000,61.410000,802.950000,3.000000,103.110000,13.420000 -19,2023-08-08 12:00:00,0.000000,19.900000,39.000000,8.000000,127.000000,85.270000,61.590000,803.400000,3.270000,103.370000,14.360000 -19,2023-08-08 13:00:00,0.000000,19.900000,39.000000,8.000000,127.000000,85.810000,61.770000,803.850000,3.520000,103.640000,15.230000 -19,2023-08-08 14:00:00,0.000000,22.300000,31.000000,14.000000,97.000000,86.720000,62.010000,804.440000,5.420000,103.980000,20.990000 -19,2023-08-08 15:00:00,0.000000,22.300000,31.000000,14.000000,97.000000,87.480000,62.250000,805.040000,6.040000,104.330000,22.710000 -19,2023-08-08 16:00:00,0.000000,22.300000,31.000000,14.000000,97.000000,88.120000,62.490000,805.630000,6.620000,104.680000,24.260000 -19,2023-08-08 17:00:00,0.000000,22.500000,32.000000,18.000000,87.000000,88.650000,62.720000,806.220000,8.740000,105.020000,29.420000 -19,2023-08-08 18:00:00,0.000000,22.500000,32.000000,18.000000,87.000000,89.090000,62.960000,806.810000,9.310000,105.370000,30.750000 -19,2023-08-08 19:00:00,0.000000,22.500000,32.000000,18.000000,87.000000,89.450000,63.200000,807.400000,9.800000,105.710000,31.880000 -19,2023-08-08 20:00:00,0.000000,20.000000,40.000000,12.000000,84.000000,89.450000,63.380000,807.840000,7.240000,105.970000,25.980000 -19,2023-08-08 21:00:00,0.000000,20.000000,40.000000,12.000000,84.000000,89.450000,63.560000,808.290000,7.240000,106.230000,26.010000 -19,2023-08-08 22:00:00,0.000000,20.000000,40.000000,12.000000,84.000000,89.450000,63.560000,808.290000,7.240000,106.230000,26.010000 -19,2023-08-08 23:00:00,0.000000,14.600000,54.000000,8.000000,110.000000,89.210000,63.560000,808.290000,5.730000,106.230000,22.050000 -19,2023-08-09 00:00:00,0.000000,14.600000,54.000000,8.000000,110.000000,89.000000,63.560000,808.290000,5.560000,106.230000,21.590000 -19,2023-08-09 01:00:00,0.000000,14.600000,54.000000,8.000000,110.000000,88.820000,63.560000,808.290000,5.410000,106.230000,21.180000 -19,2023-08-09 02:00:00,0.000000,12.500000,55.000000,8.000000,157.000000,88.610000,63.560000,808.290000,5.250000,106.230000,20.730000 -19,2023-08-09 03:00:00,0.000000,12.500000,55.000000,8.000000,157.000000,88.420000,63.560000,808.290000,5.110000,106.230000,20.330000 -19,2023-08-09 04:00:00,0.000000,12.500000,55.000000,8.000000,157.000000,88.260000,63.560000,808.290000,4.990000,106.230000,19.980000 -19,2023-08-09 05:00:00,0.000000,10.200000,64.000000,7.000000,198.000000,87.920000,63.610000,808.410000,4.530000,106.310000,18.610000 -19,2023-08-09 06:00:00,0.000000,10.200000,64.000000,7.000000,198.000000,87.630000,63.670000,808.530000,4.340000,106.390000,18.040000 -19,2023-08-09 07:00:00,0.000000,10.200000,64.000000,7.000000,198.000000,87.360000,63.720000,808.650000,4.170000,106.470000,17.540000 -19,2023-08-09 08:00:00,0.000000,15.700000,49.000000,5.000000,184.000000,87.360000,63.830000,808.890000,3.770000,106.630000,16.280000 -19,2023-08-09 09:00:00,0.000000,15.700000,49.000000,5.000000,184.000000,87.360000,63.940000,809.130000,3.770000,106.790000,16.290000 -19,2023-08-09 10:00:00,0.000000,15.700000,49.000000,5.000000,184.000000,87.360000,64.050000,809.380000,3.770000,106.940000,16.300000 -19,2023-08-09 11:00:00,0.000000,22.400000,34.000000,5.000000,148.000000,87.820000,64.270000,809.850000,4.030000,107.260000,17.160000 -19,2023-08-09 12:00:00,0.000000,22.400000,34.000000,5.000000,148.000000,88.230000,64.480000,810.330000,4.270000,107.570000,17.940000 -19,2023-08-09 13:00:00,0.000000,22.400000,34.000000,5.000000,148.000000,88.570000,64.700000,810.810000,4.490000,107.880000,18.640000 -19,2023-08-09 14:00:00,0.000000,24.100000,27.000000,7.000000,136.000000,89.200000,64.970000,811.390000,5.430000,108.260000,21.430000 -19,2023-08-09 15:00:00,0.000000,24.100000,27.000000,7.000000,136.000000,89.720000,65.230000,811.980000,5.850000,108.650000,22.640000 -19,2023-08-09 16:00:00,0.000000,24.100000,27.000000,7.000000,136.000000,90.160000,65.500000,812.560000,6.230000,109.030000,23.710000 -19,2023-08-09 17:00:00,0.000000,24.500000,26.000000,7.000000,118.000000,90.580000,65.780000,813.170000,6.620000,109.420000,24.770000 -19,2023-08-09 18:00:00,0.000000,24.500000,26.000000,7.000000,118.000000,90.930000,66.050000,813.770000,6.960000,109.820000,25.700000 -19,2023-08-09 19:00:00,0.000000,24.500000,26.000000,7.000000,118.000000,91.230000,66.330000,814.380000,7.260000,110.210000,26.500000 -19,2023-08-09 20:00:00,0.000000,21.800000,32.000000,7.000000,96.000000,91.230000,66.540000,814.850000,7.260000,110.520000,26.530000 -19,2023-08-09 21:00:00,0.000000,21.800000,32.000000,7.000000,96.000000,91.230000,66.760000,815.330000,7.260000,110.830000,26.560000 -19,2023-08-09 22:00:00,0.000000,21.800000,32.000000,7.000000,96.000000,91.230000,66.760000,815.330000,7.260000,110.830000,26.560000 -19,2023-08-09 23:00:00,0.000000,15.900000,47.000000,5.000000,151.000000,90.980000,66.760000,815.330000,6.340000,110.830000,24.160000 -19,2023-08-10 00:00:00,0.000000,15.900000,47.000000,5.000000,151.000000,90.750000,66.760000,815.330000,6.140000,110.830000,23.620000 -19,2023-08-10 01:00:00,0.000000,15.900000,47.000000,5.000000,151.000000,90.550000,66.760000,815.330000,5.960000,110.830000,23.150000 -19,2023-08-10 02:00:00,0.010000,15.700000,51.000000,9.000000,229.000000,90.260000,66.760000,815.330000,7.000000,110.830000,25.880000 -19,2023-08-10 03:00:00,0.000000,15.700000,51.000000,9.000000,229.000000,90.000000,66.760000,815.330000,6.740000,110.830000,25.230000 -19,2023-08-10 04:00:00,0.000000,15.700000,51.000000,9.000000,229.000000,89.770000,66.760000,815.330000,6.530000,110.830000,24.660000 -19,2023-08-10 05:00:00,0.000000,16.900000,50.000000,8.000000,233.000000,89.610000,66.880000,815.560000,6.060000,111.000000,23.440000 -19,2023-08-10 06:00:00,0.000000,16.900000,50.000000,8.000000,233.000000,89.470000,66.990000,815.800000,5.940000,111.170000,23.120000 -19,2023-08-10 07:00:00,0.000000,16.900000,50.000000,8.000000,233.000000,89.340000,67.110000,816.030000,5.830000,111.330000,22.840000 -19,2023-08-10 08:00:00,0.000000,19.200000,43.000000,8.000000,221.000000,89.340000,67.270000,816.340000,5.830000,111.560000,22.860000 -19,2023-08-10 09:00:00,0.000000,19.200000,43.000000,8.000000,221.000000,89.340000,67.420000,816.650000,5.830000,111.780000,22.880000 -19,2023-08-10 10:00:00,0.000000,19.200000,43.000000,8.000000,221.000000,89.340000,67.580000,816.960000,5.830000,112.000000,22.900000 -19,2023-08-10 11:00:00,0.000000,23.800000,29.000000,8.000000,223.000000,89.770000,67.840000,817.480000,6.200000,112.360000,23.940000 -19,2023-08-10 12:00:00,0.000000,23.800000,29.000000,8.000000,223.000000,90.120000,68.090000,817.990000,6.520000,112.720000,24.850000 -19,2023-08-10 13:00:00,0.000000,23.800000,29.000000,8.000000,223.000000,90.420000,68.350000,818.500000,6.810000,113.090000,25.630000 -19,2023-08-10 14:00:00,0.000000,25.400000,27.000000,10.000000,191.000000,90.820000,68.640000,819.080000,7.970000,113.500000,28.610000 -19,2023-08-10 15:00:00,0.000000,25.400000,27.000000,10.000000,191.000000,91.150000,68.930000,819.660000,8.350000,113.910000,29.580000 -19,2023-08-10 16:00:00,0.000000,25.400000,27.000000,10.000000,191.000000,91.420000,69.220000,820.240000,8.680000,114.320000,30.400000 -19,2023-08-10 17:00:00,0.000000,25.600000,26.000000,10.000000,194.000000,91.680000,69.520000,820.830000,9.020000,114.740000,31.240000 -19,2023-08-10 18:00:00,0.000000,25.600000,26.000000,10.000000,194.000000,91.900000,69.810000,821.430000,9.300000,115.160000,31.950000 -19,2023-08-10 19:00:00,0.000000,25.600000,26.000000,10.000000,194.000000,92.080000,70.110000,822.020000,9.540000,115.580000,32.550000 -19,2023-08-10 20:00:00,0.000000,25.600000,26.000000,10.000000,194.000000,92.230000,70.410000,822.610000,9.740000,116.000000,33.050000 -19,2023-08-10 21:00:00,0.000000,25.600000,26.000000,10.000000,194.000000,92.350000,70.410000,822.610000,9.910000,116.000000,33.420000 -19,2023-08-10 22:00:00,0.000000,25.600000,26.000000,10.000000,194.000000,92.450000,70.410000,822.610000,10.050000,116.000000,33.730000 -19,2023-08-10 23:00:00,0.000000,18.400000,45.000000,11.000000,203.000000,92.080000,70.410000,822.610000,10.030000,116.000000,33.700000 -19,2023-08-11 00:00:00,0.000000,18.400000,45.000000,11.000000,203.000000,91.760000,70.410000,822.610000,9.580000,116.000000,32.690000 -19,2023-08-11 01:00:00,0.000000,18.400000,45.000000,11.000000,203.000000,91.480000,70.410000,822.610000,9.210000,116.000000,31.830000 -19,2023-08-11 02:00:00,0.000000,18.400000,45.000000,11.000000,203.000000,91.230000,70.410000,822.610000,8.890000,116.000000,31.090000 -19,2023-08-11 03:00:00,0.000000,18.400000,45.000000,11.000000,203.000000,91.020000,70.410000,822.610000,8.620000,116.000000,30.450000 -19,2023-08-11 04:00:00,0.000000,18.400000,45.000000,11.000000,203.000000,90.830000,70.410000,822.610000,8.390000,116.000000,29.910000 -19,2023-08-11 05:00:00,0.000000,14.700000,70.000000,9.000000,158.000000,90.030000,70.510000,822.960000,6.770000,116.140000,25.820000 -19,2023-08-11 06:00:00,0.000000,14.700000,70.000000,9.000000,158.000000,89.330000,70.610000,823.300000,6.120000,116.280000,24.100000 -19,2023-08-11 07:00:00,0.000000,14.700000,70.000000,9.000000,158.000000,88.730000,70.710000,823.650000,5.620000,116.430000,22.680000 -19,2023-08-11 08:00:00,0.000000,14.700000,70.000000,9.000000,158.000000,88.200000,70.810000,823.990000,5.210000,116.570000,21.510000 -19,2023-08-11 09:00:00,0.000000,14.700000,70.000000,9.000000,158.000000,87.740000,70.910000,824.330000,4.880000,116.720000,20.530000 -19,2023-08-11 10:00:00,0.000000,14.700000,70.000000,9.000000,158.000000,87.340000,71.010000,824.680000,4.610000,116.860000,19.710000 -19,2023-08-11 11:00:00,0.000000,20.000000,56.000000,13.000000,167.000000,87.340000,71.210000,825.380000,5.630000,117.150000,22.800000 -19,2023-08-11 12:00:00,0.000000,20.000000,56.000000,13.000000,167.000000,87.340000,71.420000,826.090000,5.630000,117.450000,22.820000 -19,2023-08-11 13:00:00,0.000000,20.000000,56.000000,13.000000,167.000000,87.340000,71.620000,826.790000,5.630000,117.740000,22.850000 -19,2023-08-11 14:00:00,0.000000,20.000000,56.000000,13.000000,167.000000,87.340000,71.830000,827.500000,5.630000,118.040000,22.870000 -19,2023-08-11 15:00:00,0.000000,20.000000,56.000000,13.000000,167.000000,87.340000,72.030000,828.200000,5.630000,118.330000,22.900000 -19,2023-08-11 16:00:00,0.000000,20.000000,56.000000,13.000000,167.000000,87.340000,72.240000,828.910000,5.630000,118.630000,22.920000 -19,2023-08-11 17:00:00,7.700000,16.500000,94.000000,9.000000,150.000000,23.840000,49.910000,756.360000,0.000000,85.680000,0.000000 -19,2023-08-11 18:00:00,0.000000,16.500000,94.000000,9.000000,150.000000,24.800000,49.930000,756.440000,0.000000,85.720000,0.000000 -19,2023-08-11 19:00:00,0.000000,16.500000,94.000000,9.000000,150.000000,25.760000,49.950000,756.510000,0.000000,85.750000,0.000000 -19,2023-08-11 20:00:00,0.000000,16.500000,94.000000,9.000000,150.000000,26.700000,49.970000,756.590000,0.000000,85.780000,0.010000 -19,2023-08-11 21:00:00,0.000000,16.500000,94.000000,9.000000,150.000000,27.640000,49.970000,756.590000,0.000000,85.780000,0.010000 -19,2023-08-11 22:00:00,0.000000,16.500000,94.000000,9.000000,150.000000,28.570000,49.970000,756.590000,0.000000,85.780000,0.010000 -19,2023-08-11 23:00:00,9.580000,15.200000,98.000000,7.000000,94.000000,5.660000,32.320000,666.230000,0.000000,57.650000,0.000000 -19,2023-08-12 00:00:00,0.000000,15.200000,98.000000,7.000000,94.000000,5.980000,32.320000,666.230000,0.000000,57.650000,0.000000 -19,2023-08-12 01:00:00,0.000000,15.200000,98.000000,7.000000,94.000000,6.300000,32.320000,666.230000,0.000000,57.650000,0.000000 -19,2023-08-12 02:00:00,0.000000,15.200000,98.000000,7.000000,94.000000,6.620000,32.320000,666.230000,0.000000,57.650000,0.000000 -19,2023-08-12 03:00:00,0.000000,15.200000,98.000000,7.000000,94.000000,6.940000,32.320000,666.230000,0.000000,57.650000,0.000000 -19,2023-08-12 04:00:00,0.000000,15.200000,98.000000,7.000000,94.000000,7.260000,32.320000,666.230000,0.000000,57.650000,0.000000 -19,2023-08-12 05:00:00,2.350000,14.700000,97.000000,6.000000,98.000000,4.880000,26.360000,654.550000,0.000000,47.900000,0.000000 -19,2023-08-12 06:00:00,0.000000,14.700000,97.000000,6.000000,98.000000,5.320000,26.370000,654.610000,0.000000,47.910000,0.000000 -19,2023-08-12 07:00:00,0.000000,14.700000,97.000000,6.000000,98.000000,5.760000,26.370000,654.670000,0.000000,47.920000,0.000000 -19,2023-08-12 08:00:00,0.000000,14.700000,97.000000,6.000000,98.000000,6.210000,26.380000,654.720000,0.000000,47.920000,0.000000 -19,2023-08-12 09:00:00,0.000000,14.700000,97.000000,6.000000,98.000000,6.650000,26.380000,654.780000,0.000000,47.930000,0.000000 -19,2023-08-12 10:00:00,0.000000,14.700000,97.000000,6.000000,98.000000,7.090000,26.380000,654.840000,0.000000,47.940000,0.000000 -19,2023-08-12 11:00:00,0.900000,17.400000,89.000000,8.000000,129.000000,7.360000,24.300000,650.600000,0.000000,44.450000,0.000000 -19,2023-08-12 12:00:00,0.000000,17.400000,89.000000,8.000000,129.000000,9.060000,24.320000,650.850000,0.000000,44.480000,0.000000 -19,2023-08-12 13:00:00,0.000000,17.400000,89.000000,8.000000,129.000000,10.750000,24.330000,651.110000,0.000000,44.510000,0.000000 -19,2023-08-12 14:00:00,0.000000,17.400000,89.000000,8.000000,129.000000,12.440000,24.350000,651.360000,0.000000,44.540000,0.000000 -19,2023-08-12 15:00:00,0.000000,17.400000,89.000000,8.000000,129.000000,14.130000,24.370000,651.620000,0.000000,44.570000,0.000000 -19,2023-08-12 16:00:00,0.000000,17.400000,89.000000,8.000000,129.000000,15.810000,24.390000,651.870000,0.000000,44.600000,0.000000 -19,2023-08-12 17:00:00,0.120000,21.800000,65.000000,9.000000,131.000000,19.940000,24.160000,652.340000,0.000000,44.230000,0.000000 -19,2023-08-12 18:00:00,0.000000,21.800000,65.000000,9.000000,131.000000,24.360000,24.240000,653.400000,0.000000,44.360000,0.000000 -19,2023-08-12 19:00:00,0.000000,21.800000,65.000000,9.000000,131.000000,28.700000,24.310000,654.470000,0.000000,44.490000,0.010000 -19,2023-08-12 20:00:00,0.000000,21.800000,65.000000,9.000000,131.000000,32.920000,24.380000,655.530000,0.010000,44.620000,0.020000 -19,2023-08-12 21:00:00,0.000000,21.800000,65.000000,9.000000,131.000000,37.000000,24.380000,655.530000,0.030000,44.620000,0.050000 -19,2023-08-12 22:00:00,0.000000,21.800000,65.000000,9.000000,131.000000,40.910000,24.380000,655.530000,0.060000,44.620000,0.100000 -19,2023-08-12 23:00:00,0.380000,16.900000,89.000000,11.000000,136.000000,39.290000,23.510000,653.630000,0.050000,43.140000,0.080000 -19,2023-08-13 00:00:00,0.000000,16.900000,89.000000,11.000000,136.000000,40.760000,23.510000,653.630000,0.070000,43.140000,0.110000 -19,2023-08-13 01:00:00,0.000000,16.900000,89.000000,11.000000,136.000000,42.200000,23.510000,653.630000,0.090000,43.140000,0.140000 -19,2023-08-13 02:00:00,0.000000,16.900000,89.000000,11.000000,136.000000,43.600000,23.510000,653.630000,0.110000,43.140000,0.170000 -19,2023-08-13 03:00:00,0.000000,16.900000,89.000000,11.000000,136.000000,44.960000,23.510000,653.630000,0.140000,43.140000,0.220000 -19,2023-08-13 04:00:00,0.000000,16.900000,89.000000,11.000000,136.000000,46.290000,23.510000,653.630000,0.170000,43.140000,0.260000 -19,2023-08-13 05:00:00,1.870000,13.200000,95.000000,10.000000,152.000000,30.920000,20.130000,642.990000,0.010000,37.340000,0.010000 -19,2023-08-13 06:00:00,0.000000,13.200000,95.000000,10.000000,152.000000,31.610000,20.140000,643.150000,0.010000,37.350000,0.010000 -19,2023-08-13 07:00:00,0.000000,13.200000,95.000000,10.000000,152.000000,32.300000,20.140000,643.320000,0.010000,37.350000,0.010000 -19,2023-08-13 08:00:00,0.000000,13.200000,95.000000,10.000000,152.000000,32.980000,20.140000,643.480000,0.010000,37.360000,0.020000 -19,2023-08-13 09:00:00,0.000000,13.200000,95.000000,10.000000,152.000000,33.650000,20.140000,643.640000,0.010000,37.360000,0.020000 -19,2023-08-13 10:00:00,0.000000,13.200000,95.000000,10.000000,152.000000,34.320000,20.150000,643.810000,0.020000,37.370000,0.020000 -19,2023-08-13 11:00:00,3.230000,14.900000,97.000000,10.000000,149.000000,17.530000,14.880000,625.260000,0.000000,28.100000,0.000000 -19,2023-08-13 12:00:00,0.000000,14.900000,97.000000,10.000000,149.000000,18.040000,14.890000,625.360000,0.000000,28.100000,0.000000 -19,2023-08-13 13:00:00,0.000000,14.900000,97.000000,10.000000,149.000000,18.550000,14.890000,625.470000,0.000000,28.100000,0.000000 -19,2023-08-13 14:00:00,0.000000,14.900000,97.000000,10.000000,149.000000,19.060000,14.890000,625.580000,0.000000,28.110000,0.000000 -19,2023-08-13 15:00:00,0.000000,14.900000,97.000000,10.000000,149.000000,19.570000,14.890000,625.690000,0.000000,28.110000,0.000000 -19,2023-08-13 16:00:00,0.000000,14.900000,97.000000,10.000000,149.000000,20.080000,14.890000,625.800000,0.000000,28.110000,0.000000 -19,2023-08-13 17:00:00,0.300000,18.600000,78.000000,9.000000,263.000000,21.910000,14.440000,625.080000,0.000000,27.300000,0.000000 -19,2023-08-13 18:00:00,0.000000,18.600000,78.000000,9.000000,263.000000,24.850000,14.460000,626.090000,0.000000,27.330000,0.000000 -19,2023-08-13 19:00:00,0.000000,18.600000,78.000000,9.000000,263.000000,27.740000,14.470000,627.110000,0.000000,27.370000,0.000000 -19,2023-08-13 20:00:00,0.000000,18.600000,78.000000,9.000000,263.000000,30.580000,14.490000,628.120000,0.010000,27.400000,0.010000 -19,2023-08-13 21:00:00,0.000000,18.600000,78.000000,9.000000,263.000000,33.340000,14.490000,628.120000,0.010000,27.400000,0.010000 -19,2023-08-13 22:00:00,0.000000,18.600000,78.000000,9.000000,263.000000,36.040000,14.490000,628.120000,0.020000,27.400000,0.030000 -19,2023-08-13 23:00:00,0.020000,13.700000,99.000000,3.000000,252.000000,35.980000,14.450000,628.010000,0.020000,27.320000,0.020000 -19,2023-08-14 00:00:00,0.000000,13.700000,99.000000,3.000000,252.000000,36.080000,14.450000,628.010000,0.020000,27.320000,0.020000 -19,2023-08-14 01:00:00,0.000000,13.700000,99.000000,3.000000,252.000000,36.170000,14.450000,628.010000,0.020000,27.320000,0.020000 -19,2023-08-14 02:00:00,0.000000,13.700000,99.000000,3.000000,252.000000,36.260000,14.450000,628.010000,0.020000,27.320000,0.020000 -19,2023-08-14 03:00:00,0.000000,13.700000,99.000000,3.000000,252.000000,36.360000,14.450000,628.010000,0.020000,27.320000,0.020000 -19,2023-08-14 04:00:00,0.000000,13.700000,99.000000,3.000000,252.000000,36.450000,14.450000,628.010000,0.020000,27.320000,0.020000 -19,2023-08-14 05:00:00,0.000000,11.200000,98.000000,5.000000,259.000000,36.650000,14.450000,628.030000,0.020000,27.320000,0.020000 -19,2023-08-14 06:00:00,0.000000,11.200000,98.000000,5.000000,259.000000,36.840000,14.450000,628.060000,0.020000,27.330000,0.030000 -19,2023-08-14 07:00:00,0.000000,11.200000,98.000000,5.000000,259.000000,37.040000,14.450000,628.090000,0.020000,27.330000,0.030000 -19,2023-08-14 08:00:00,0.000000,11.200000,98.000000,5.000000,259.000000,37.230000,14.450000,628.120000,0.030000,27.330000,0.030000 -19,2023-08-14 09:00:00,0.000000,11.200000,98.000000,5.000000,259.000000,37.430000,14.450000,628.150000,0.030000,27.340000,0.030000 -19,2023-08-14 10:00:00,0.000000,11.200000,98.000000,5.000000,259.000000,37.620000,14.460000,628.180000,0.030000,27.340000,0.030000 -19,2023-08-14 11:00:00,0.930000,15.500000,89.000000,10.000000,341.000000,32.640000,13.210000,624.690000,0.010000,25.100000,0.010000 -19,2023-08-14 12:00:00,0.000000,15.500000,89.000000,10.000000,341.000000,34.120000,13.230000,624.900000,0.020000,25.120000,0.020000 -19,2023-08-14 13:00:00,0.000000,15.500000,89.000000,10.000000,341.000000,35.570000,13.240000,625.100000,0.020000,25.150000,0.020000 -19,2023-08-14 14:00:00,0.000000,15.500000,89.000000,10.000000,341.000000,37.000000,13.250000,625.310000,0.030000,25.170000,0.030000 -19,2023-08-14 15:00:00,0.000000,15.500000,89.000000,10.000000,341.000000,38.410000,13.270000,625.520000,0.040000,25.200000,0.040000 -19,2023-08-14 16:00:00,0.000000,15.500000,89.000000,10.000000,341.000000,39.780000,13.280000,625.730000,0.050000,25.220000,0.060000 -19,2023-08-14 17:00:00,2.220000,18.100000,51.000000,16.000000,351.000000,30.190000,10.500000,618.000000,0.010000,20.150000,0.010000 -19,2023-08-14 18:00:00,0.000000,18.100000,51.000000,16.000000,351.000000,35.170000,10.570000,619.090000,0.030000,20.280000,0.030000 -19,2023-08-14 19:00:00,0.000000,18.100000,51.000000,16.000000,351.000000,39.940000,10.640000,620.180000,0.080000,20.410000,0.070000 -19,2023-08-14 20:00:00,0.000000,18.100000,51.000000,16.000000,351.000000,44.470000,10.710000,621.280000,0.170000,20.540000,0.160000 -19,2023-08-14 21:00:00,0.000000,18.100000,51.000000,16.000000,351.000000,48.720000,10.710000,621.280000,0.310000,20.540000,0.290000 -19,2023-08-14 22:00:00,0.000000,18.100000,51.000000,16.000000,351.000000,52.690000,10.710000,621.280000,0.500000,20.540000,0.460000 -19,2023-08-14 23:00:00,0.000000,12.600000,69.000000,12.000000,295.000000,54.780000,10.710000,621.280000,0.500000,20.540000,0.460000 -19,2023-08-15 00:00:00,0.000000,12.600000,69.000000,12.000000,295.000000,56.760000,10.710000,621.280000,0.590000,20.540000,0.550000 -19,2023-08-15 01:00:00,0.000000,12.600000,69.000000,12.000000,295.000000,58.620000,10.710000,621.280000,0.680000,20.540000,0.630000 -19,2023-08-15 02:00:00,0.000000,12.600000,69.000000,12.000000,295.000000,60.380000,10.710000,621.280000,0.770000,20.540000,0.710000 -19,2023-08-15 03:00:00,0.000000,12.600000,69.000000,12.000000,295.000000,62.040000,10.710000,621.280000,0.840000,20.540000,0.780000 -19,2023-08-15 04:00:00,0.000000,12.600000,69.000000,12.000000,295.000000,63.590000,10.710000,621.280000,0.910000,20.540000,0.840000 -19,2023-08-15 05:00:00,0.000000,9.800000,81.000000,10.000000,289.000000,64.410000,10.750000,621.370000,0.850000,20.610000,0.790000 -19,2023-08-15 06:00:00,0.000000,9.800000,81.000000,10.000000,289.000000,65.200000,10.780000,621.460000,0.880000,20.670000,0.810000 -19,2023-08-15 07:00:00,0.000000,9.800000,81.000000,10.000000,289.000000,65.950000,10.820000,621.550000,0.900000,20.730000,0.840000 -19,2023-08-15 08:00:00,0.000000,9.800000,81.000000,10.000000,289.000000,66.670000,10.850000,621.640000,0.930000,20.790000,0.860000 -19,2023-08-15 09:00:00,0.000000,9.800000,81.000000,10.000000,289.000000,67.350000,10.880000,621.730000,0.950000,20.860000,0.880000 -19,2023-08-15 10:00:00,0.000000,9.800000,81.000000,10.000000,289.000000,68.000000,10.920000,621.820000,0.970000,20.920000,0.910000 -19,2023-08-15 11:00:00,0.000000,18.900000,42.000000,6.000000,323.000000,70.230000,11.100000,622.320000,0.850000,21.260000,0.800000 -19,2023-08-15 12:00:00,0.000000,18.900000,42.000000,6.000000,323.000000,72.250000,11.290000,622.820000,0.910000,21.600000,0.870000 -19,2023-08-15 13:00:00,0.000000,18.900000,42.000000,6.000000,323.000000,74.070000,11.480000,623.320000,0.990000,21.950000,0.950000 -19,2023-08-15 14:00:00,0.000000,18.900000,42.000000,6.000000,323.000000,75.710000,11.660000,623.820000,1.080000,22.290000,1.250000 -19,2023-08-15 15:00:00,0.000000,18.900000,42.000000,6.000000,323.000000,77.180000,11.850000,624.320000,1.190000,22.630000,1.610000 -19,2023-08-15 16:00:00,0.000000,18.900000,42.000000,6.000000,323.000000,78.500000,12.040000,624.810000,1.330000,22.970000,1.990000 -19,2023-08-15 17:00:00,0.000000,22.200000,32.000000,6.000000,91.000000,80.220000,12.310000,625.530000,1.570000,23.460000,2.600000 -19,2023-08-15 18:00:00,0.000000,22.200000,32.000000,6.000000,91.000000,81.720000,12.570000,626.250000,1.860000,23.950000,3.280000 -19,2023-08-15 19:00:00,0.000000,22.200000,32.000000,6.000000,91.000000,83.020000,12.840000,626.960000,2.190000,24.430000,4.000000 -19,2023-08-15 20:00:00,0.000000,22.200000,32.000000,6.000000,91.000000,84.150000,13.110000,627.680000,2.540000,24.920000,4.760000 -19,2023-08-15 21:00:00,0.000000,22.200000,32.000000,6.000000,91.000000,85.130000,13.110000,627.680000,2.900000,24.920000,5.440000 -19,2023-08-15 22:00:00,0.000000,22.200000,32.000000,6.000000,91.000000,85.980000,13.110000,627.680000,3.260000,24.920000,6.100000 -19,2023-08-15 23:00:00,0.000000,16.200000,55.000000,8.000000,126.000000,85.980000,13.110000,627.680000,3.610000,24.920000,6.710000 -19,2023-08-16 00:00:00,0.000000,16.200000,55.000000,8.000000,126.000000,85.980000,13.110000,627.680000,3.610000,24.920000,6.710000 -19,2023-08-16 01:00:00,0.000000,16.200000,55.000000,8.000000,126.000000,85.980000,13.110000,627.680000,3.610000,24.920000,6.710000 -19,2023-08-16 02:00:00,0.000000,16.200000,55.000000,8.000000,126.000000,85.980000,13.110000,627.680000,3.610000,24.920000,6.710000 -19,2023-08-16 03:00:00,0.000000,16.200000,55.000000,8.000000,126.000000,85.980000,13.110000,627.680000,3.610000,24.920000,6.710000 -19,2023-08-16 04:00:00,0.000000,16.200000,55.000000,8.000000,126.000000,85.980000,13.110000,627.680000,3.610000,24.920000,6.710000 -19,2023-08-16 05:00:00,0.000000,12.400000,73.000000,9.000000,203.000000,85.700000,13.170000,627.810000,3.650000,25.030000,6.800000 -19,2023-08-16 06:00:00,0.000000,12.400000,73.000000,9.000000,203.000000,85.460000,13.230000,627.950000,3.530000,25.130000,6.600000 -19,2023-08-16 07:00:00,0.000000,12.400000,73.000000,9.000000,203.000000,85.250000,13.290000,628.080000,3.430000,25.240000,6.440000 -19,2023-08-16 08:00:00,0.000000,12.400000,73.000000,9.000000,203.000000,85.060000,13.350000,628.210000,3.340000,25.350000,6.300000 -19,2023-08-16 09:00:00,0.000000,12.400000,73.000000,9.000000,203.000000,84.890000,13.410000,628.350000,3.260000,25.460000,6.180000 -19,2023-08-16 10:00:00,0.000000,12.400000,73.000000,9.000000,203.000000,84.740000,13.470000,628.480000,3.200000,25.560000,6.080000 -19,2023-08-16 11:00:00,0.000000,22.400000,35.000000,14.000000,243.000000,85.680000,13.740000,629.080000,4.690000,26.050000,8.700000 -19,2023-08-16 12:00:00,0.000000,22.400000,35.000000,14.000000,243.000000,86.470000,14.010000,629.680000,5.240000,26.540000,9.660000 -19,2023-08-16 13:00:00,0.000000,22.400000,35.000000,14.000000,243.000000,87.140000,14.270000,630.280000,5.750000,27.020000,10.560000 -19,2023-08-16 14:00:00,0.000000,22.400000,35.000000,14.000000,243.000000,87.690000,14.540000,630.880000,6.230000,27.500000,11.380000 -19,2023-08-16 15:00:00,0.000000,22.400000,35.000000,14.000000,243.000000,88.160000,14.810000,631.480000,6.660000,27.990000,12.120000 -19,2023-08-16 16:00:00,0.000000,22.400000,35.000000,14.000000,243.000000,88.550000,15.080000,632.090000,7.040000,28.470000,12.780000 -19,2023-08-16 17:00:00,0.000000,23.900000,35.000000,16.000000,301.000000,88.940000,15.380000,632.740000,8.240000,28.990000,14.590000 -19,2023-08-16 18:00:00,0.000000,23.900000,35.000000,16.000000,301.000000,89.270000,15.670000,633.400000,8.640000,29.520000,15.260000 -19,2023-08-16 19:00:00,0.000000,23.900000,35.000000,16.000000,301.000000,89.530000,15.970000,634.060000,8.970000,30.040000,15.860000 -19,2023-08-16 20:00:00,0.000000,23.900000,35.000000,16.000000,301.000000,89.750000,16.260000,634.720000,9.260000,30.570000,16.380000 -19,2023-08-16 21:00:00,0.000000,23.900000,35.000000,16.000000,301.000000,89.930000,16.260000,634.720000,9.500000,30.570000,16.700000 -19,2023-08-16 22:00:00,0.000000,23.900000,35.000000,16.000000,301.000000,90.080000,16.260000,634.720000,9.700000,30.570000,16.970000 -19,2023-08-16 23:00:00,0.000000,15.000000,62.000000,4.000000,259.000000,89.650000,16.260000,634.720000,4.980000,30.570000,10.030000 -19,2023-08-17 00:00:00,0.000000,15.000000,62.000000,4.000000,259.000000,89.260000,16.260000,634.720000,4.710000,30.570000,9.570000 -19,2023-08-17 01:00:00,0.000000,15.000000,62.000000,4.000000,259.000000,88.910000,16.260000,634.720000,4.480000,30.570000,9.180000 -19,2023-08-17 02:00:00,0.000000,15.000000,62.000000,4.000000,259.000000,88.610000,16.260000,634.720000,4.290000,30.570000,8.830000 -19,2023-08-17 03:00:00,0.000000,15.000000,62.000000,4.000000,259.000000,88.330000,16.260000,634.720000,4.120000,30.570000,8.540000 -19,2023-08-17 04:00:00,0.000000,15.000000,62.000000,4.000000,259.000000,88.090000,16.260000,634.720000,3.980000,30.570000,8.280000 -19,2023-08-17 05:00:00,0.000000,10.500000,71.000000,7.000000,235.000000,87.620000,16.260000,634.720000,4.340000,30.570000,8.910000 -19,2023-08-17 06:00:00,0.000000,10.500000,71.000000,7.000000,235.000000,87.210000,16.340000,634.880000,4.090000,30.700000,8.490000 -19,2023-08-17 07:00:00,0.000000,10.500000,71.000000,7.000000,235.000000,86.850000,16.410000,635.040000,3.880000,30.830000,8.130000 -19,2023-08-17 08:00:00,0.000000,10.500000,71.000000,7.000000,235.000000,86.520000,16.480000,635.200000,3.700000,30.950000,7.820000 -19,2023-08-17 09:00:00,0.000000,10.500000,71.000000,7.000000,235.000000,86.220000,16.550000,635.360000,3.550000,31.080000,7.560000 -19,2023-08-17 10:00:00,0.000000,10.500000,71.000000,7.000000,235.000000,85.960000,16.630000,635.520000,3.420000,31.210000,7.330000 -19,2023-08-17 11:00:00,0.000000,22.500000,34.000000,8.000000,317.000000,86.670000,16.980000,636.300000,3.980000,31.840000,8.480000 -19,2023-08-17 12:00:00,0.000000,22.500000,34.000000,8.000000,317.000000,87.280000,17.340000,637.070000,4.340000,32.470000,9.240000 -19,2023-08-17 13:00:00,0.000000,22.500000,34.000000,8.000000,317.000000,87.800000,17.690000,637.850000,4.670000,33.090000,9.950000 -19,2023-08-17 14:00:00,0.000000,22.500000,34.000000,8.000000,317.000000,88.240000,18.050000,638.630000,4.980000,33.710000,10.590000 -19,2023-08-17 15:00:00,0.000000,22.500000,34.000000,8.000000,317.000000,88.610000,18.400000,639.410000,5.250000,34.340000,11.190000 -19,2023-08-17 16:00:00,0.000000,22.500000,34.000000,8.000000,317.000000,88.930000,18.760000,640.190000,5.500000,34.960000,11.720000 -19,2023-08-17 17:00:00,1.200000,18.800000,58.000000,15.000000,305.000000,69.150000,17.120000,636.240000,1.300000,32.080000,2.650000 -19,2023-08-17 18:00:00,0.000000,18.800000,58.000000,15.000000,305.000000,71.080000,17.300000,636.640000,1.380000,32.400000,2.900000 -19,2023-08-17 19:00:00,0.000000,18.800000,58.000000,15.000000,305.000000,72.800000,17.480000,637.030000,1.470000,32.720000,3.160000 -19,2023-08-17 20:00:00,0.000000,18.800000,58.000000,15.000000,305.000000,74.350000,17.660000,637.430000,1.580000,33.030000,3.460000 -19,2023-08-17 21:00:00,0.000000,18.800000,58.000000,15.000000,305.000000,75.720000,17.660000,637.430000,1.700000,33.030000,3.780000 -19,2023-08-17 22:00:00,0.000000,18.800000,58.000000,15.000000,305.000000,76.940000,17.660000,637.430000,1.840000,33.030000,4.140000 -19,2023-08-17 23:00:00,1.630000,13.100000,90.000000,11.000000,290.000000,54.110000,15.280000,631.520000,0.450000,28.810000,0.510000 -19,2023-08-18 00:00:00,0.000000,13.100000,90.000000,11.000000,290.000000,54.930000,15.280000,631.520000,0.480000,28.810000,0.550000 -19,2023-08-18 01:00:00,0.000000,13.100000,90.000000,11.000000,290.000000,55.730000,15.280000,631.520000,0.520000,28.810000,0.590000 -19,2023-08-18 02:00:00,0.000000,13.100000,90.000000,11.000000,290.000000,56.500000,15.280000,631.520000,0.550000,28.810000,0.630000 -19,2023-08-18 03:00:00,0.000000,13.100000,90.000000,11.000000,290.000000,57.250000,15.280000,631.520000,0.590000,28.810000,0.670000 -19,2023-08-18 04:00:00,0.000000,13.100000,90.000000,11.000000,290.000000,57.980000,15.280000,631.520000,0.620000,28.810000,0.710000 -19,2023-08-18 05:00:00,1.650000,12.000000,95.000000,11.000000,304.000000,41.160000,13.000000,625.170000,0.070000,24.720000,0.080000 -19,2023-08-18 06:00:00,0.000000,12.000000,95.000000,11.000000,304.000000,41.740000,13.020000,625.290000,0.080000,24.750000,0.090000 -19,2023-08-18 07:00:00,0.000000,12.000000,95.000000,11.000000,304.000000,42.320000,13.040000,625.410000,0.090000,24.780000,0.100000 -19,2023-08-18 08:00:00,0.000000,12.000000,95.000000,11.000000,304.000000,42.880000,13.050000,625.530000,0.100000,24.810000,0.110000 -19,2023-08-18 09:00:00,0.000000,12.000000,95.000000,11.000000,304.000000,43.450000,13.070000,625.650000,0.110000,24.840000,0.120000 -19,2023-08-18 10:00:00,0.000000,12.000000,95.000000,11.000000,304.000000,44.000000,13.080000,625.770000,0.120000,24.870000,0.130000 -19,2023-08-18 11:00:00,0.570000,14.600000,77.000000,21.000000,307.000000,42.000000,12.400000,624.240000,0.140000,23.630000,0.150000 -19,2023-08-18 12:00:00,0.000000,14.600000,77.000000,21.000000,307.000000,44.730000,12.490000,624.900000,0.230000,23.790000,0.230000 -19,2023-08-18 13:00:00,0.000000,14.600000,77.000000,21.000000,307.000000,47.330000,12.580000,625.560000,0.330000,23.950000,0.340000 -19,2023-08-18 14:00:00,0.000000,14.600000,77.000000,21.000000,307.000000,49.800000,12.660000,626.220000,0.460000,24.110000,0.470000 -19,2023-08-18 15:00:00,0.000000,14.600000,77.000000,21.000000,307.000000,52.150000,12.750000,626.880000,0.600000,24.270000,0.620000 -19,2023-08-18 16:00:00,0.000000,14.600000,77.000000,21.000000,307.000000,54.360000,12.840000,627.540000,0.760000,24.430000,0.780000 -19,2023-08-18 17:00:00,0.800000,14.700000,63.000000,27.000000,300.000000,49.460000,11.920000,625.520000,0.600000,22.750000,0.590000 -20,2023-08-03 00:00:00,0.000000,14.700000,94.000000,2.000000,321.000000,84.970000,118.400000,826.100000,2.320000,174.330000,13.490000 -20,2023-08-03 01:00:00,0.000000,14.700000,94.000000,2.000000,321.000000,84.070000,118.400000,826.100000,2.050000,174.330000,12.250000 -20,2023-08-03 02:00:00,0.000000,12.700000,96.000000,2.000000,40.000000,83.160000,118.400000,826.100000,1.820000,174.330000,11.120000 -20,2023-08-03 03:00:00,0.000000,12.700000,96.000000,2.000000,40.000000,82.350000,118.400000,826.100000,1.640000,174.330000,10.230000 -20,2023-08-03 04:00:00,0.000000,12.700000,96.000000,2.000000,40.000000,81.640000,118.400000,826.100000,1.510000,174.330000,9.510000 -20,2023-08-03 05:00:00,0.000000,12.300000,95.000000,0.000000,360.000000,81.180000,118.410000,826.130000,1.290000,174.350000,8.330000 -20,2023-08-03 06:00:00,0.000000,12.300000,95.000000,0.000000,360.000000,80.760000,118.420000,826.160000,1.230000,174.360000,7.990000 -20,2023-08-03 07:00:00,0.000000,12.300000,95.000000,0.000000,360.000000,80.380000,118.430000,826.180000,1.180000,174.370000,7.700000 -20,2023-08-03 08:00:00,0.000000,16.200000,77.000000,2.000000,14.000000,80.460000,118.490000,826.350000,1.320000,174.440000,8.480000 -20,2023-08-03 09:00:00,0.000000,16.200000,77.000000,2.000000,14.000000,80.530000,118.550000,826.520000,1.330000,174.520000,8.540000 -20,2023-08-03 10:00:00,0.000000,16.200000,77.000000,2.000000,14.000000,80.610000,118.610000,826.690000,1.340000,174.590000,8.600000 -20,2023-08-03 11:00:00,0.000000,21.400000,48.000000,5.000000,37.000000,81.480000,118.790000,827.210000,1.720000,174.820000,10.630000 -20,2023-08-03 12:00:00,0.000000,21.400000,48.000000,5.000000,37.000000,82.250000,118.980000,827.730000,1.890000,175.050000,11.470000 -20,2023-08-03 13:00:00,0.000000,21.400000,48.000000,5.000000,37.000000,82.930000,119.160000,828.260000,2.060000,175.280000,12.290000 -20,2023-08-03 14:00:00,0.000000,23.200000,43.000000,9.000000,37.000000,83.840000,119.390000,828.900000,2.830000,175.560000,15.770000 -20,2023-08-03 15:00:00,0.000000,23.200000,43.000000,9.000000,37.000000,84.620000,119.610000,829.540000,3.150000,175.840000,17.060000 -20,2023-08-03 16:00:00,0.000000,23.200000,43.000000,9.000000,37.000000,85.290000,119.840000,830.180000,3.450000,176.120000,18.270000 -20,2023-08-03 17:00:00,0.000000,22.900000,45.000000,10.000000,45.000000,85.800000,120.050000,830.790000,3.890000,176.380000,19.960000 -20,2023-08-03 18:00:00,0.000000,22.900000,45.000000,10.000000,45.000000,86.230000,120.260000,831.390000,4.140000,176.650000,20.870000 -20,2023-08-03 19:00:00,0.000000,22.900000,45.000000,10.000000,45.000000,86.600000,120.480000,832.000000,4.360000,176.910000,21.670000 -20,2023-08-03 20:00:00,0.000000,20.900000,51.000000,7.000000,67.000000,86.690000,120.650000,832.480000,3.800000,177.120000,19.620000 -20,2023-08-03 21:00:00,0.000000,20.900000,51.000000,7.000000,67.000000,86.770000,120.820000,832.960000,3.840000,177.330000,19.790000 -20,2023-08-03 22:00:00,0.000000,20.900000,51.000000,7.000000,67.000000,86.840000,120.820000,832.960000,3.880000,177.330000,19.930000 -20,2023-08-03 23:00:00,0.000000,15.700000,72.000000,1.000000,189.000000,86.590000,120.820000,832.960000,2.760000,177.330000,15.510000 -20,2023-08-04 00:00:00,0.000000,15.700000,72.000000,1.000000,189.000000,86.360000,120.820000,832.960000,2.680000,177.330000,15.130000 -20,2023-08-04 01:00:00,0.000000,15.700000,72.000000,1.000000,189.000000,86.160000,120.820000,832.960000,2.600000,177.330000,14.800000 -20,2023-08-04 02:00:00,0.000000,13.500000,83.000000,5.000000,255.000000,85.600000,120.820000,832.960000,2.940000,177.330000,16.260000 -20,2023-08-04 03:00:00,0.000000,13.500000,83.000000,5.000000,255.000000,85.120000,120.820000,832.960000,2.750000,177.330000,15.450000 -20,2023-08-04 04:00:00,0.000000,13.500000,83.000000,5.000000,255.000000,84.690000,120.820000,832.960000,2.590000,177.330000,14.770000 -20,2023-08-04 05:00:00,0.000000,12.900000,92.000000,6.000000,267.000000,83.870000,120.830000,832.990000,2.440000,177.350000,14.110000 -20,2023-08-04 06:00:00,0.000000,12.900000,92.000000,6.000000,267.000000,83.160000,120.840000,833.030000,2.230000,177.370000,13.120000 -20,2023-08-04 07:00:00,0.000000,12.900000,92.000000,6.000000,267.000000,82.530000,120.860000,833.070000,2.060000,177.380000,12.320000 -20,2023-08-04 08:00:00,0.000000,18.100000,70.000000,7.000000,288.000000,82.630000,120.940000,833.260000,2.190000,177.480000,12.950000 -20,2023-08-04 09:00:00,0.000000,18.100000,70.000000,7.000000,288.000000,82.710000,121.010000,833.450000,2.210000,177.570000,13.060000 -20,2023-08-04 10:00:00,0.000000,18.100000,70.000000,7.000000,288.000000,82.790000,121.090000,833.640000,2.230000,177.660000,13.160000 -20,2023-08-04 11:00:00,0.000000,23.600000,43.000000,9.000000,329.000000,83.740000,121.290000,834.150000,2.790000,177.910000,15.650000 -20,2023-08-04 12:00:00,0.000000,23.600000,43.000000,9.000000,329.000000,84.550000,121.500000,834.660000,3.120000,178.160000,16.990000 -20,2023-08-04 13:00:00,0.000000,23.600000,43.000000,9.000000,329.000000,85.250000,121.700000,835.170000,3.430000,178.410000,18.240000 -20,2023-08-04 14:00:00,0.000000,25.300000,32.000000,13.000000,355.000000,86.390000,121.970000,835.850000,4.920000,178.740000,23.660000 -20,2023-08-04 15:00:00,0.000000,25.300000,32.000000,13.000000,355.000000,87.320000,122.250000,836.520000,5.620000,179.070000,25.970000 -20,2023-08-04 16:00:00,0.000000,25.300000,32.000000,13.000000,355.000000,88.100000,122.520000,837.200000,6.280000,179.400000,28.040000 -20,2023-08-04 17:00:00,0.000000,25.300000,34.000000,14.000000,18.000000,88.660000,122.780000,837.850000,7.160000,179.720000,30.670000 -20,2023-08-04 18:00:00,0.000000,25.300000,34.000000,14.000000,18.000000,89.130000,123.040000,838.510000,7.650000,180.040000,32.080000 -20,2023-08-04 19:00:00,0.000000,25.300000,34.000000,14.000000,18.000000,89.510000,123.300000,839.160000,8.080000,180.360000,33.270000 -20,2023-08-04 20:00:00,0.000000,23.100000,40.000000,8.000000,33.000000,89.530000,123.510000,839.690000,5.990000,180.610000,27.190000 -20,2023-08-04 21:00:00,0.000000,23.100000,40.000000,8.000000,33.000000,89.550000,123.720000,840.210000,6.010000,180.860000,27.250000 -20,2023-08-04 22:00:00,0.000000,23.100000,40.000000,8.000000,33.000000,89.560000,123.720000,840.210000,6.020000,180.860000,27.290000 -20,2023-08-04 23:00:00,0.000000,17.300000,59.000000,1.000000,272.000000,89.310000,123.720000,840.210000,4.080000,180.860000,20.760000 -20,2023-08-05 00:00:00,0.000000,17.300000,59.000000,1.000000,272.000000,89.080000,123.720000,840.210000,3.950000,180.860000,20.270000 -20,2023-08-05 01:00:00,0.000000,17.300000,59.000000,1.000000,272.000000,88.870000,123.720000,840.210000,3.830000,180.860000,19.830000 -20,2023-08-05 02:00:00,0.000000,15.200000,71.000000,6.000000,287.000000,88.330000,123.720000,840.210000,4.560000,180.860000,22.480000 -20,2023-08-05 03:00:00,0.000000,15.200000,71.000000,6.000000,287.000000,87.860000,123.720000,840.210000,4.260000,180.860000,21.430000 -20,2023-08-05 04:00:00,0.000000,15.200000,71.000000,6.000000,287.000000,87.450000,123.720000,840.210000,4.020000,180.860000,20.550000 -20,2023-08-05 05:00:00,0.000000,14.900000,83.000000,8.000000,302.000000,86.680000,123.750000,840.300000,3.990000,180.900000,20.420000 -20,2023-08-05 06:00:00,0.000000,14.900000,83.000000,8.000000,302.000000,86.020000,123.790000,840.390000,3.630000,180.940000,19.070000 -20,2023-08-05 07:00:00,0.000000,14.900000,83.000000,8.000000,302.000000,85.440000,123.820000,840.480000,3.350000,180.980000,17.980000 -20,2023-08-05 08:00:00,0.000000,18.800000,66.000000,13.000000,341.000000,85.440000,123.900000,840.720000,4.310000,181.080000,21.600000 -20,2023-08-05 09:00:00,0.000000,18.800000,66.000000,13.000000,341.000000,85.440000,123.980000,840.950000,4.310000,181.180000,21.600000 -20,2023-08-05 10:00:00,0.000000,18.800000,66.000000,13.000000,341.000000,85.440000,124.060000,841.190000,4.310000,181.280000,21.600000 -20,2023-08-05 11:00:00,0.000000,22.000000,49.000000,13.000000,353.000000,85.800000,124.210000,841.610000,4.530000,181.470000,22.390000 -20,2023-08-05 12:00:00,0.000000,22.000000,49.000000,13.000000,353.000000,86.110000,124.360000,842.040000,4.730000,181.650000,23.080000 -20,2023-08-05 13:00:00,0.000000,22.000000,49.000000,13.000000,353.000000,86.370000,124.510000,842.470000,4.900000,181.840000,23.690000 -20,2023-08-05 14:00:00,0.000000,23.600000,39.000000,14.000000,2.000000,86.970000,124.710000,843.040000,5.620000,182.080000,26.040000 -20,2023-08-05 15:00:00,0.000000,23.600000,39.000000,14.000000,2.000000,87.470000,124.910000,843.600000,6.030000,182.320000,27.360000 -20,2023-08-05 16:00:00,0.000000,23.600000,39.000000,14.000000,2.000000,87.880000,125.100000,844.170000,6.400000,182.570000,28.510000 -20,2023-08-05 17:00:00,0.000000,24.200000,32.000000,16.000000,6.000000,88.530000,125.330000,844.820000,7.760000,182.850000,32.480000 -20,2023-08-05 18:00:00,0.000000,24.200000,32.000000,16.000000,6.000000,89.050000,125.560000,845.470000,8.370000,183.130000,34.160000 -20,2023-08-05 19:00:00,0.000000,24.200000,32.000000,16.000000,6.000000,89.480000,125.790000,846.120000,8.910000,183.410000,35.600000 -20,2023-08-05 20:00:00,0.000000,21.600000,36.000000,14.000000,15.000000,89.590000,125.970000,846.650000,8.180000,183.640000,33.660000 -20,2023-08-05 21:00:00,0.000000,21.600000,36.000000,14.000000,15.000000,89.690000,126.150000,847.170000,8.290000,183.860000,33.970000 -20,2023-08-05 22:00:00,0.000000,21.600000,36.000000,14.000000,15.000000,89.760000,126.150000,847.170000,8.390000,183.860000,34.220000 -20,2023-08-05 23:00:00,0.000000,16.200000,49.000000,7.000000,356.000000,89.620000,126.150000,847.170000,5.770000,183.860000,26.590000 -20,2023-08-06 00:00:00,0.000000,16.200000,49.000000,7.000000,356.000000,89.490000,126.150000,847.170000,5.670000,183.860000,26.250000 -20,2023-08-06 01:00:00,0.000000,16.200000,49.000000,7.000000,356.000000,89.380000,126.150000,847.170000,5.570000,183.860000,25.950000 -20,2023-08-06 02:00:00,0.000000,13.100000,61.000000,8.000000,331.000000,88.990000,126.150000,847.170000,5.550000,183.860000,25.860000 -20,2023-08-06 03:00:00,0.000000,13.100000,61.000000,8.000000,331.000000,88.650000,126.150000,847.170000,5.280000,183.860000,24.990000 -20,2023-08-06 04:00:00,0.000000,13.100000,61.000000,8.000000,331.000000,88.340000,126.150000,847.170000,5.050000,183.860000,24.240000 -20,2023-08-06 05:00:00,0.000000,11.500000,70.000000,8.000000,307.000000,87.870000,126.210000,847.320000,4.720000,183.930000,23.110000 -20,2023-08-06 06:00:00,0.000000,11.500000,70.000000,8.000000,307.000000,87.450000,126.270000,847.460000,4.440000,184.000000,22.140000 -20,2023-08-06 07:00:00,0.000000,11.500000,70.000000,8.000000,307.000000,87.070000,126.320000,847.600000,4.210000,184.070000,21.320000 -20,2023-08-06 08:00:00,0.000000,16.400000,52.000000,9.000000,325.000000,87.070000,126.450000,847.920000,4.430000,184.210000,22.100000 -20,2023-08-06 09:00:00,0.000000,16.400000,52.000000,9.000000,325.000000,87.070000,126.570000,848.230000,4.430000,184.360000,22.100000 -20,2023-08-06 10:00:00,0.000000,16.400000,52.000000,9.000000,325.000000,87.070000,126.690000,848.550000,4.430000,184.510000,22.110000 -20,2023-08-06 11:00:00,0.000000,20.500000,41.000000,10.000000,11.000000,87.350000,126.890000,849.050000,4.850000,184.750000,23.570000 -20,2023-08-06 12:00:00,0.000000,20.500000,41.000000,10.000000,11.000000,87.590000,127.090000,849.550000,5.020000,184.990000,24.150000 -20,2023-08-06 13:00:00,0.000000,20.500000,41.000000,10.000000,11.000000,87.800000,127.280000,850.050000,5.170000,185.230000,24.660000 -20,2023-08-06 14:00:00,0.000000,21.700000,42.000000,11.000000,36.000000,87.980000,127.490000,850.580000,5.580000,185.480000,26.020000 -20,2023-08-06 15:00:00,0.000000,21.700000,42.000000,11.000000,36.000000,88.150000,127.700000,851.110000,5.710000,185.730000,26.450000 -20,2023-08-06 16:00:00,0.000000,21.700000,42.000000,11.000000,36.000000,88.280000,127.910000,851.630000,5.830000,185.980000,26.810000 -20,2023-08-06 17:00:00,0.000000,21.400000,44.000000,13.000000,45.000000,88.340000,128.110000,852.140000,6.500000,186.220000,28.890000 -20,2023-08-06 18:00:00,0.000000,21.400000,44.000000,13.000000,45.000000,88.380000,128.300000,852.640000,6.540000,186.460000,29.020000 -20,2023-08-06 19:00:00,0.000000,21.400000,44.000000,13.000000,45.000000,88.420000,128.500000,853.140000,6.580000,186.700000,29.140000 -20,2023-08-06 20:00:00,0.000000,19.000000,53.000000,12.000000,52.000000,88.390000,128.640000,853.500000,6.230000,186.870000,28.080000 -20,2023-08-06 21:00:00,0.000000,19.000000,53.000000,12.000000,52.000000,88.370000,128.790000,853.870000,6.200000,187.040000,28.020000 -20,2023-08-06 22:00:00,0.000000,19.000000,53.000000,12.000000,52.000000,88.350000,128.790000,853.870000,6.190000,187.040000,27.960000 -20,2023-08-06 23:00:00,0.000000,14.300000,72.000000,6.000000,45.000000,87.850000,128.790000,853.870000,4.260000,187.040000,21.530000 -20,2023-08-07 00:00:00,0.000000,14.300000,72.000000,6.000000,45.000000,87.410000,128.790000,853.870000,4.000000,187.040000,20.580000 -20,2023-08-07 01:00:00,0.000000,14.300000,72.000000,6.000000,45.000000,87.020000,128.790000,853.870000,3.780000,187.040000,19.780000 -20,2023-08-07 02:00:00,0.000000,12.100000,76.000000,5.000000,104.000000,86.580000,128.790000,853.870000,3.380000,187.040000,18.200000 -20,2023-08-07 03:00:00,0.000000,12.100000,76.000000,5.000000,104.000000,86.190000,128.790000,853.870000,3.200000,187.040000,17.470000 -20,2023-08-07 04:00:00,0.000000,12.100000,76.000000,5.000000,104.000000,85.840000,128.790000,853.870000,3.040000,187.040000,16.850000 -20,2023-08-07 05:00:00,0.000000,11.700000,70.000000,7.000000,115.000000,85.650000,128.830000,854.000000,3.280000,187.100000,17.810000 -20,2023-08-07 06:00:00,0.000000,11.700000,70.000000,7.000000,115.000000,85.480000,128.880000,854.130000,3.200000,187.160000,17.500000 -20,2023-08-07 07:00:00,0.000000,11.700000,70.000000,7.000000,115.000000,85.330000,128.930000,854.260000,3.140000,187.220000,17.230000 -20,2023-08-07 08:00:00,0.000000,15.500000,53.000000,10.000000,120.000000,85.420000,129.030000,854.530000,3.690000,187.340000,19.430000 -20,2023-08-07 09:00:00,0.000000,15.500000,53.000000,10.000000,120.000000,85.490000,129.130000,854.790000,3.730000,187.460000,19.590000 -20,2023-08-07 10:00:00,0.000000,15.500000,53.000000,10.000000,120.000000,85.560000,129.230000,855.060000,3.770000,187.580000,19.720000 -20,2023-08-07 11:00:00,0.000000,19.200000,43.000000,15.000000,117.000000,85.980000,129.380000,855.460000,5.140000,187.760000,24.610000 -20,2023-08-07 12:00:00,0.000000,19.200000,43.000000,15.000000,117.000000,86.340000,129.530000,855.870000,5.400000,187.940000,25.490000 -20,2023-08-07 13:00:00,0.000000,19.200000,43.000000,15.000000,117.000000,86.650000,129.680000,856.280000,5.640000,188.130000,26.270000 -20,2023-08-07 14:00:00,0.000000,21.300000,38.000000,15.000000,106.000000,87.140000,129.860000,856.780000,6.050000,188.350000,27.580000 -20,2023-08-07 15:00:00,0.000000,21.300000,38.000000,15.000000,106.000000,87.550000,130.050000,857.280000,6.420000,188.580000,28.720000 -20,2023-08-07 16:00:00,0.000000,21.300000,38.000000,15.000000,106.000000,87.900000,130.230000,857.790000,6.750000,188.810000,29.720000 -20,2023-08-07 17:00:00,0.000000,21.300000,34.000000,16.000000,97.000000,88.330000,130.430000,858.320000,7.550000,189.050000,32.050000 -20,2023-08-07 18:00:00,0.000000,21.300000,34.000000,16.000000,97.000000,88.690000,130.630000,858.860000,7.950000,189.290000,33.190000 -20,2023-08-07 19:00:00,0.000000,21.300000,34.000000,16.000000,97.000000,88.990000,130.830000,859.390000,8.300000,189.530000,34.160000 -20,2023-08-07 20:00:00,0.000000,19.300000,35.000000,12.000000,100.000000,89.140000,131.000000,859.860000,6.930000,189.740000,30.270000 -20,2023-08-07 21:00:00,0.000000,19.300000,35.000000,12.000000,100.000000,89.260000,131.170000,860.330000,7.050000,189.950000,30.640000 -20,2023-08-07 22:00:00,0.000000,19.300000,35.000000,12.000000,100.000000,89.370000,131.170000,860.330000,7.160000,189.950000,30.950000 -20,2023-08-07 23:00:00,0.000000,14.800000,42.000000,9.000000,114.000000,89.370000,131.170000,860.330000,6.160000,189.950000,27.940000 -20,2023-08-08 00:00:00,0.000000,14.800000,42.000000,9.000000,114.000000,89.370000,131.170000,860.330000,6.160000,189.950000,27.940000 -20,2023-08-08 01:00:00,0.000000,14.800000,42.000000,9.000000,114.000000,89.370000,131.170000,860.330000,6.160000,189.950000,27.940000 -20,2023-08-08 02:00:00,0.000000,12.400000,49.000000,7.000000,148.000000,89.220000,131.170000,860.330000,5.450000,189.950000,25.680000 -20,2023-08-08 03:00:00,0.000000,12.400000,49.000000,7.000000,148.000000,89.080000,131.170000,860.330000,5.340000,189.950000,25.340000 -20,2023-08-08 04:00:00,0.000000,12.400000,49.000000,7.000000,148.000000,88.960000,131.170000,860.330000,5.250000,189.950000,25.030000 -20,2023-08-08 05:00:00,0.000000,11.000000,64.000000,8.000000,174.000000,88.550000,131.230000,860.450000,5.200000,190.010000,24.880000 -20,2023-08-08 06:00:00,0.000000,11.000000,64.000000,8.000000,174.000000,88.180000,131.290000,860.570000,4.940000,190.080000,23.980000 -20,2023-08-08 07:00:00,0.000000,11.000000,64.000000,8.000000,174.000000,87.850000,131.340000,860.690000,4.710000,190.150000,23.200000 -20,2023-08-08 08:00:00,0.000000,15.900000,48.000000,10.000000,163.000000,87.850000,131.460000,860.930000,5.210000,190.280000,24.900000 -20,2023-08-08 09:00:00,0.000000,15.900000,48.000000,10.000000,163.000000,87.850000,131.570000,861.170000,5.210000,190.410000,24.900000 -20,2023-08-08 10:00:00,0.000000,15.900000,48.000000,10.000000,163.000000,87.850000,131.680000,861.410000,5.210000,190.540000,24.910000 -20,2023-08-08 11:00:00,0.000000,20.700000,30.000000,11.000000,149.000000,88.370000,131.890000,861.850000,5.900000,190.780000,27.150000 -20,2023-08-08 12:00:00,0.000000,20.700000,30.000000,11.000000,149.000000,88.800000,132.090000,862.280000,6.280000,191.020000,28.350000 -20,2023-08-08 13:00:00,0.000000,20.700000,30.000000,11.000000,149.000000,89.180000,132.300000,862.720000,6.630000,191.270000,29.410000 -20,2023-08-08 14:00:00,0.000000,23.000000,25.000000,11.000000,141.000000,89.770000,132.550000,863.260000,7.210000,191.560000,31.150000 -20,2023-08-08 15:00:00,0.000000,23.000000,25.000000,11.000000,141.000000,90.260000,132.800000,863.800000,7.740000,191.860000,32.660000 -20,2023-08-08 16:00:00,0.000000,23.000000,25.000000,11.000000,141.000000,90.670000,133.050000,864.340000,8.210000,192.160000,33.970000 -20,2023-08-08 17:00:00,0.000000,23.800000,22.000000,9.000000,148.000000,91.150000,133.330000,864.930000,7.950000,192.480000,33.260000 -20,2023-08-08 18:00:00,0.000000,23.800000,22.000000,9.000000,148.000000,91.550000,133.600000,865.520000,8.410000,192.800000,34.540000 -20,2023-08-08 19:00:00,0.000000,23.800000,22.000000,9.000000,148.000000,91.880000,133.880000,866.100000,8.820000,193.130000,35.640000 -20,2023-08-08 20:00:00,0.000000,21.400000,27.000000,5.000000,154.000000,91.890000,134.100000,866.580000,7.220000,193.390000,31.210000 -20,2023-08-08 21:00:00,0.000000,21.400000,27.000000,5.000000,154.000000,91.900000,134.320000,867.060000,7.230000,193.650000,31.240000 -20,2023-08-08 22:00:00,0.000000,21.400000,27.000000,5.000000,154.000000,91.910000,134.320000,867.060000,7.240000,193.650000,31.270000 -20,2023-08-08 23:00:00,0.000000,14.900000,40.000000,6.000000,190.000000,91.720000,134.320000,867.060000,7.400000,193.650000,31.750000 -20,2023-08-09 00:00:00,0.000000,14.900000,40.000000,6.000000,190.000000,91.540000,134.320000,867.060000,7.220000,193.650000,31.220000 -20,2023-08-09 01:00:00,0.000000,14.900000,40.000000,6.000000,190.000000,91.380000,134.320000,867.060000,7.060000,193.650000,30.740000 -20,2023-08-09 02:00:00,0.000000,11.800000,51.000000,4.000000,169.000000,91.030000,134.320000,867.060000,6.070000,193.650000,27.750000 -20,2023-08-09 03:00:00,0.000000,11.800000,51.000000,4.000000,169.000000,90.710000,134.320000,867.060000,5.800000,193.650000,26.890000 -20,2023-08-09 04:00:00,0.000000,11.800000,51.000000,4.000000,169.000000,90.410000,134.320000,867.060000,5.560000,193.650000,26.130000 -20,2023-08-09 05:00:00,0.000000,9.600000,61.000000,5.000000,146.000000,89.950000,134.380000,867.170000,5.470000,193.710000,25.830000 -20,2023-08-09 06:00:00,0.000000,9.600000,61.000000,5.000000,146.000000,89.520000,134.430000,867.280000,5.150000,193.770000,24.760000 -20,2023-08-09 07:00:00,0.000000,9.600000,61.000000,5.000000,146.000000,89.140000,134.480000,867.390000,4.870000,193.830000,23.830000 -20,2023-08-09 08:00:00,0.000000,15.300000,46.000000,5.000000,145.000000,89.110000,134.580000,867.620000,4.850000,193.950000,23.750000 -20,2023-08-09 09:00:00,0.000000,15.300000,46.000000,5.000000,145.000000,89.080000,134.690000,867.840000,4.830000,194.080000,23.680000 -20,2023-08-09 10:00:00,0.000000,15.300000,46.000000,5.000000,145.000000,89.050000,134.790000,868.070000,4.810000,194.200000,23.620000 -20,2023-08-09 11:00:00,0.000000,22.300000,33.000000,11.000000,155.000000,89.340000,134.990000,868.500000,6.790000,194.430000,29.960000 -20,2023-08-09 12:00:00,0.000000,22.300000,33.000000,11.000000,155.000000,89.590000,135.190000,868.940000,7.030000,194.670000,30.680000 -20,2023-08-09 13:00:00,0.000000,22.300000,33.000000,11.000000,155.000000,89.800000,135.390000,869.370000,7.240000,194.900000,31.310000 -20,2023-08-09 14:00:00,0.000000,25.400000,26.000000,12.000000,152.000000,90.360000,135.660000,869.950000,8.260000,195.210000,34.190000 -20,2023-08-09 15:00:00,0.000000,25.400000,26.000000,12.000000,152.000000,90.830000,135.920000,870.530000,8.830000,195.530000,35.730000 -20,2023-08-09 16:00:00,0.000000,25.400000,26.000000,12.000000,152.000000,91.210000,136.190000,871.100000,9.320000,195.840000,37.020000 -20,2023-08-09 17:00:00,0.000000,26.400000,22.000000,13.000000,163.000000,91.740000,136.490000,871.750000,10.570000,196.190000,40.200000 -20,2023-08-09 18:00:00,0.000000,26.400000,22.000000,13.000000,163.000000,92.170000,136.790000,872.390000,11.240000,196.530000,41.820000 -20,2023-08-09 19:00:00,0.000000,26.400000,22.000000,13.000000,163.000000,92.520000,137.080000,873.040000,11.800000,196.880000,43.160000 -20,2023-08-09 20:00:00,0.000000,23.800000,27.000000,11.000000,176.000000,92.520000,137.320000,873.560000,10.670000,197.160000,40.460000 -20,2023-08-09 21:00:00,0.000000,23.800000,27.000000,11.000000,176.000000,92.520000,137.560000,874.070000,10.670000,197.440000,40.470000 -20,2023-08-09 22:00:00,0.000000,23.800000,27.000000,11.000000,176.000000,92.520000,137.560000,874.070000,10.670000,197.440000,40.470000 -20,2023-08-09 23:00:00,0.000000,17.900000,41.000000,8.000000,161.000000,92.250000,137.560000,874.070000,8.840000,197.440000,35.800000 -20,2023-08-10 00:00:00,0.000000,17.900000,41.000000,8.000000,161.000000,92.020000,137.560000,874.070000,8.550000,197.440000,35.020000 -20,2023-08-10 01:00:00,0.000000,17.900000,41.000000,8.000000,161.000000,91.810000,137.560000,874.070000,8.300000,197.440000,34.350000 -20,2023-08-10 02:00:00,0.000000,14.800000,52.000000,7.000000,124.000000,91.370000,137.560000,874.070000,7.410000,197.440000,31.850000 -20,2023-08-10 03:00:00,0.000000,14.800000,52.000000,7.000000,124.000000,90.970000,137.560000,874.070000,7.000000,197.440000,30.670000 -20,2023-08-10 04:00:00,0.000000,14.800000,52.000000,7.000000,124.000000,90.620000,137.560000,874.070000,6.660000,197.440000,29.640000 -20,2023-08-10 05:00:00,0.000000,14.600000,56.000000,7.000000,117.000000,90.220000,137.680000,874.340000,6.290000,197.580000,28.510000 -20,2023-08-10 06:00:00,0.000000,14.600000,56.000000,7.000000,117.000000,89.860000,137.790000,874.600000,5.980000,197.710000,27.540000 -20,2023-08-10 07:00:00,0.000000,14.600000,56.000000,7.000000,117.000000,89.550000,137.910000,874.870000,5.710000,197.850000,26.690000 -20,2023-08-10 08:00:00,0.000000,18.600000,47.000000,11.000000,132.000000,89.500000,138.090000,875.280000,6.940000,198.060000,30.490000 -20,2023-08-10 09:00:00,0.000000,18.600000,47.000000,11.000000,132.000000,89.460000,138.270000,875.690000,6.900000,198.270000,30.370000 -20,2023-08-10 10:00:00,0.000000,18.600000,47.000000,11.000000,132.000000,89.420000,138.440000,876.100000,6.860000,198.480000,30.270000 -20,2023-08-10 11:00:00,0.000000,23.700000,38.000000,15.000000,159.000000,89.550000,138.730000,876.750000,8.550000,198.810000,35.050000 -20,2023-08-10 12:00:00,0.000000,23.700000,38.000000,15.000000,159.000000,89.650000,139.020000,877.410000,8.670000,199.150000,35.400000 -20,2023-08-10 13:00:00,0.000000,23.700000,38.000000,15.000000,159.000000,89.730000,139.300000,878.070000,8.780000,199.490000,35.700000 -20,2023-08-10 14:00:00,0.030000,22.400000,52.000000,19.000000,171.000000,89.600000,139.510000,878.540000,10.540000,199.730000,40.220000 -20,2023-08-10 15:00:00,0.000000,22.400000,52.000000,19.000000,171.000000,89.490000,139.710000,879.010000,10.380000,199.970000,39.820000 -20,2023-08-10 16:00:00,0.000000,22.400000,52.000000,19.000000,171.000000,89.400000,139.920000,879.480000,10.240000,200.210000,39.490000 -20,2023-08-10 17:00:00,0.010000,22.300000,52.000000,19.000000,173.000000,89.320000,140.120000,879.940000,10.130000,200.450000,39.200000 -20,2023-08-10 18:00:00,0.000000,22.300000,52.000000,19.000000,173.000000,89.260000,140.330000,880.410000,10.030000,200.690000,38.970000 -20,2023-08-10 19:00:00,0.000000,22.300000,52.000000,19.000000,173.000000,89.200000,140.530000,880.880000,9.950000,200.930000,38.780000 -20,2023-08-10 20:00:00,0.000000,22.300000,52.000000,19.000000,173.000000,89.160000,140.740000,881.340000,9.890000,201.160000,38.620000 -20,2023-08-10 21:00:00,0.000000,22.300000,52.000000,19.000000,173.000000,89.120000,140.740000,881.340000,9.830000,201.160000,38.490000 -20,2023-08-10 22:00:00,0.000000,22.300000,52.000000,19.000000,173.000000,89.090000,140.740000,881.340000,9.790000,201.160000,38.370000 -20,2023-08-10 23:00:00,0.000000,19.100000,61.000000,12.000000,179.000000,88.770000,140.740000,881.340000,6.570000,201.160000,29.440000 -20,2023-08-11 00:00:00,0.000000,19.100000,61.000000,12.000000,179.000000,88.490000,140.740000,881.340000,6.310000,201.160000,28.660000 -20,2023-08-11 01:00:00,0.000000,19.100000,61.000000,12.000000,179.000000,88.260000,140.740000,881.340000,6.100000,201.160000,28.010000 -20,2023-08-11 02:00:00,0.000000,19.100000,61.000000,12.000000,179.000000,88.050000,140.740000,881.340000,5.930000,201.160000,27.460000 -20,2023-08-11 03:00:00,0.000000,19.100000,61.000000,12.000000,179.000000,87.880000,140.740000,881.340000,5.790000,201.160000,27.000000 -20,2023-08-11 04:00:00,0.000000,19.100000,61.000000,12.000000,179.000000,87.740000,140.740000,881.340000,5.670000,201.160000,26.610000 -20,2023-08-11 05:00:00,0.000000,16.700000,79.000000,11.000000,185.000000,87.040000,140.790000,881.470000,4.880000,201.230000,23.990000 -20,2023-08-11 06:00:00,0.000000,16.700000,79.000000,11.000000,185.000000,86.460000,140.850000,881.600000,4.490000,201.290000,22.620000 -20,2023-08-11 07:00:00,0.000000,16.700000,79.000000,11.000000,185.000000,85.950000,140.900000,881.720000,4.180000,201.360000,21.510000 -20,2023-08-11 08:00:00,0.000000,16.700000,79.000000,11.000000,185.000000,85.530000,140.960000,881.850000,3.940000,201.420000,20.610000 -20,2023-08-11 09:00:00,0.000000,16.700000,79.000000,11.000000,185.000000,85.160000,141.010000,881.980000,3.750000,201.490000,19.870000 -20,2023-08-11 10:00:00,0.000000,16.700000,79.000000,11.000000,185.000000,84.850000,141.070000,882.100000,3.590000,201.550000,19.260000 -20,2023-08-11 11:00:00,0.000000,23.900000,38.000000,14.000000,214.000000,85.750000,141.320000,882.690000,4.730000,201.850000,23.480000 -20,2023-08-11 12:00:00,0.000000,23.900000,38.000000,14.000000,214.000000,86.500000,141.580000,883.270000,5.260000,202.150000,25.290000 -20,2023-08-11 13:00:00,0.000000,23.900000,38.000000,14.000000,214.000000,87.130000,141.830000,883.850000,5.750000,202.450000,26.900000 -20,2023-08-11 14:00:00,0.000000,23.900000,38.000000,14.000000,214.000000,87.650000,142.090000,884.440000,6.190000,202.750000,28.310000 -20,2023-08-11 15:00:00,0.000000,23.900000,38.000000,14.000000,214.000000,88.080000,142.350000,885.020000,6.590000,203.050000,29.540000 -20,2023-08-11 16:00:00,0.000000,23.900000,38.000000,14.000000,214.000000,88.440000,142.600000,885.600000,6.940000,203.340000,30.590000 -20,2023-08-11 17:00:00,0.000000,25.400000,26.000000,15.000000,230.000000,89.290000,142.930000,886.370000,8.240000,203.730000,34.320000 -20,2023-08-11 18:00:00,0.000000,25.400000,26.000000,15.000000,230.000000,89.980000,143.270000,887.130000,9.090000,204.120000,36.630000 -20,2023-08-11 19:00:00,0.000000,25.400000,26.000000,15.000000,230.000000,90.530000,143.600000,887.890000,9.850000,204.510000,38.590000 -20,2023-08-11 20:00:00,0.000000,25.400000,26.000000,15.000000,230.000000,90.980000,143.940000,888.650000,10.500000,204.900000,40.240000 -20,2023-08-11 21:00:00,0.000000,25.400000,26.000000,15.000000,230.000000,91.350000,143.940000,888.650000,11.060000,204.900000,41.610000 -20,2023-08-11 22:00:00,0.000000,25.400000,26.000000,15.000000,230.000000,91.640000,143.940000,888.650000,11.530000,204.900000,42.730000 -20,2023-08-11 23:00:00,0.000000,18.100000,42.000000,9.000000,219.000000,91.450000,143.940000,888.650000,8.290000,204.900000,34.490000 -20,2023-08-12 00:00:00,0.000000,18.100000,42.000000,9.000000,219.000000,91.280000,143.940000,888.650000,8.100000,204.900000,33.950000 -20,2023-08-12 01:00:00,0.000000,18.100000,42.000000,9.000000,219.000000,91.130000,143.940000,888.650000,7.930000,204.900000,33.470000 -20,2023-08-12 02:00:00,0.000000,18.100000,42.000000,9.000000,219.000000,91.000000,143.940000,888.650000,7.780000,204.900000,33.050000 -20,2023-08-12 03:00:00,0.000000,18.100000,42.000000,9.000000,219.000000,90.880000,143.940000,888.650000,7.650000,204.900000,32.690000 -20,2023-08-12 04:00:00,0.000000,18.100000,42.000000,9.000000,219.000000,90.780000,143.940000,888.650000,7.540000,204.900000,32.360000 -20,2023-08-12 05:00:00,0.000000,15.900000,47.000000,12.000000,209.000000,90.540000,144.050000,888.910000,8.470000,205.040000,34.970000 -20,2023-08-12 06:00:00,0.000000,15.900000,47.000000,12.000000,209.000000,90.320000,144.170000,889.180000,8.210000,205.170000,34.270000 -20,2023-08-12 07:00:00,0.000000,15.900000,47.000000,12.000000,209.000000,90.130000,144.280000,889.440000,7.990000,205.310000,33.670000 -20,2023-08-12 08:00:00,0.000000,15.900000,47.000000,12.000000,209.000000,89.970000,144.400000,889.700000,7.810000,205.440000,33.140000 -20,2023-08-12 09:00:00,0.000000,15.900000,47.000000,12.000000,209.000000,89.820000,144.520000,889.960000,7.640000,205.580000,32.690000 -20,2023-08-12 10:00:00,0.000000,15.900000,47.000000,12.000000,209.000000,89.690000,144.630000,890.230000,7.500000,205.710000,32.290000 -20,2023-08-12 11:00:00,0.000000,20.800000,34.000000,15.000000,246.000000,89.810000,144.830000,890.670000,8.880000,205.940000,36.100000 -20,2023-08-12 12:00:00,0.000000,20.800000,34.000000,15.000000,246.000000,89.910000,145.030000,891.120000,9.000000,206.170000,36.440000 -20,2023-08-12 13:00:00,0.000000,20.800000,34.000000,15.000000,246.000000,89.990000,145.220000,891.560000,9.110000,206.400000,36.730000 -20,2023-08-12 14:00:00,0.000000,20.800000,34.000000,15.000000,246.000000,90.060000,145.420000,892.010000,9.200000,206.630000,36.970000 -20,2023-08-12 15:00:00,0.000000,20.800000,34.000000,15.000000,246.000000,90.120000,145.620000,892.450000,9.280000,206.860000,37.180000 -20,2023-08-12 16:00:00,0.000000,20.800000,34.000000,15.000000,246.000000,90.170000,145.810000,892.900000,9.350000,207.080000,37.350000 -20,2023-08-12 17:00:00,0.000000,24.500000,26.000000,16.000000,287.000000,90.650000,146.090000,893.520000,10.530000,207.400000,40.370000 -20,2023-08-12 18:00:00,0.000000,24.500000,26.000000,16.000000,287.000000,91.040000,146.370000,894.150000,11.140000,207.720000,41.860000 -20,2023-08-12 19:00:00,0.000000,24.500000,26.000000,16.000000,287.000000,91.360000,146.640000,894.770000,11.650000,208.050000,43.100000 -20,2023-08-12 20:00:00,0.000000,24.500000,26.000000,16.000000,287.000000,91.620000,146.920000,895.400000,12.080000,208.370000,44.120000 -20,2023-08-12 21:00:00,0.000000,24.500000,26.000000,16.000000,287.000000,91.830000,146.920000,895.400000,12.450000,208.370000,44.960000 -20,2023-08-12 22:00:00,0.000000,24.500000,26.000000,16.000000,287.000000,91.990000,146.920000,895.400000,12.750000,208.370000,45.640000 -20,2023-08-12 23:00:00,0.000000,19.000000,38.000000,6.000000,259.000000,91.880000,146.920000,895.400000,7.570000,208.370000,32.530000 -20,2023-08-13 00:00:00,0.000000,19.000000,38.000000,6.000000,259.000000,91.770000,146.920000,895.400000,7.460000,208.370000,32.210000 -20,2023-08-13 01:00:00,0.000000,19.000000,38.000000,6.000000,259.000000,91.670000,146.920000,895.400000,7.360000,208.370000,31.920000 -20,2023-08-13 02:00:00,0.000000,19.000000,38.000000,6.000000,259.000000,91.590000,146.920000,895.400000,7.270000,208.370000,31.660000 -20,2023-08-13 03:00:00,0.000000,19.000000,38.000000,6.000000,259.000000,91.510000,146.920000,895.400000,7.190000,208.370000,31.430000 -20,2023-08-13 04:00:00,0.000000,19.000000,38.000000,6.000000,259.000000,91.440000,146.920000,895.400000,7.120000,208.370000,31.220000 -20,2023-08-13 05:00:00,0.000000,18.200000,41.000000,10.000000,255.000000,91.290000,147.070000,895.730000,8.530000,208.540000,35.210000 -20,2023-08-13 06:00:00,0.000000,18.200000,41.000000,10.000000,255.000000,91.160000,147.210000,896.060000,8.370000,208.710000,34.790000 -20,2023-08-13 07:00:00,0.000000,18.200000,41.000000,10.000000,255.000000,91.050000,147.360000,896.390000,8.240000,208.880000,34.410000 -20,2023-08-13 08:00:00,0.000000,18.200000,41.000000,10.000000,255.000000,90.950000,147.510000,896.730000,8.120000,209.050000,34.080000 -20,2023-08-13 09:00:00,0.000000,18.200000,41.000000,10.000000,255.000000,90.860000,147.660000,897.060000,8.010000,209.220000,33.800000 -20,2023-08-13 10:00:00,0.000000,18.200000,41.000000,10.000000,255.000000,90.780000,147.800000,897.390000,7.920000,209.390000,33.550000 -20,2023-08-13 11:00:00,0.000000,22.700000,36.000000,15.000000,332.000000,90.780000,148.010000,897.870000,10.190000,209.630000,39.580000 -20,2023-08-13 12:00:00,0.000000,22.700000,36.000000,15.000000,332.000000,90.780000,148.220000,898.340000,10.190000,209.880000,39.580000 -20,2023-08-13 13:00:00,0.000000,22.700000,36.000000,15.000000,332.000000,90.780000,148.440000,898.820000,10.190000,210.120000,39.590000 -20,2023-08-13 14:00:00,0.000000,22.700000,36.000000,15.000000,332.000000,90.780000,148.650000,899.290000,10.190000,210.360000,39.590000 -20,2023-08-13 15:00:00,0.000000,22.700000,36.000000,15.000000,332.000000,90.780000,148.860000,899.770000,10.190000,210.610000,39.600000 -20,2023-08-13 16:00:00,0.000000,22.700000,36.000000,15.000000,332.000000,90.780000,149.070000,900.240000,10.190000,210.850000,39.600000 -20,2023-08-13 17:00:00,0.000000,24.200000,31.000000,13.000000,344.000000,90.920000,149.320000,900.800000,9.410000,211.140000,37.600000 -20,2023-08-13 18:00:00,0.000000,24.200000,31.000000,13.000000,344.000000,91.040000,149.570000,901.370000,9.580000,211.430000,38.030000 -20,2023-08-13 19:00:00,0.000000,24.200000,31.000000,13.000000,344.000000,91.140000,149.810000,901.930000,9.710000,211.710000,38.390000 -20,2023-08-13 20:00:00,0.000000,24.200000,31.000000,13.000000,344.000000,91.220000,150.060000,902.490000,9.820000,212.000000,38.690000 -20,2023-08-13 21:00:00,0.000000,24.200000,31.000000,13.000000,344.000000,91.290000,150.060000,902.490000,9.920000,212.000000,38.930000 -20,2023-08-13 22:00:00,0.000000,24.200000,31.000000,13.000000,344.000000,91.350000,150.060000,902.490000,10.000000,212.000000,39.120000 -20,2023-08-13 23:00:00,0.010000,16.600000,53.000000,7.000000,268.000000,90.940000,150.060000,902.490000,6.970000,212.000000,30.840000 -20,2023-08-14 00:00:00,0.000000,16.600000,53.000000,7.000000,268.000000,90.580000,150.060000,902.490000,6.620000,212.000000,29.790000 -20,2023-08-14 01:00:00,0.000000,16.600000,53.000000,7.000000,268.000000,90.260000,150.060000,902.490000,6.330000,212.000000,28.880000 -20,2023-08-14 02:00:00,0.000000,16.600000,53.000000,7.000000,268.000000,89.980000,150.060000,902.490000,6.080000,212.000000,28.100000 -20,2023-08-14 03:00:00,0.000000,16.600000,53.000000,7.000000,268.000000,89.730000,150.060000,902.490000,5.870000,212.000000,27.430000 -20,2023-08-14 04:00:00,0.000000,16.600000,53.000000,7.000000,268.000000,89.520000,150.060000,902.490000,5.690000,212.000000,26.840000 -20,2023-08-14 05:00:00,0.000000,13.200000,70.000000,7.000000,271.000000,88.910000,150.130000,902.630000,5.220000,212.070000,25.280000 -20,2023-08-14 06:00:00,0.000000,13.200000,70.000000,7.000000,271.000000,88.380000,150.190000,902.770000,4.830000,212.140000,23.980000 -20,2023-08-14 07:00:00,0.000000,13.200000,70.000000,7.000000,271.000000,87.920000,150.250000,902.910000,4.520000,212.220000,22.870000 -20,2023-08-14 08:00:00,0.000000,13.200000,70.000000,7.000000,271.000000,87.500000,150.320000,903.040000,4.260000,212.290000,21.930000 -20,2023-08-14 09:00:00,0.000000,13.200000,70.000000,7.000000,271.000000,87.140000,150.380000,903.180000,4.050000,212.360000,21.140000 -20,2023-08-14 10:00:00,0.000000,13.200000,70.000000,7.000000,271.000000,86.820000,150.440000,903.320000,3.860000,212.430000,20.450000 -20,2023-08-14 11:00:00,0.000000,23.800000,36.000000,7.000000,340.000000,87.390000,150.700000,903.900000,4.190000,212.730000,21.680000 -20,2023-08-14 12:00:00,0.000000,23.800000,36.000000,7.000000,340.000000,87.870000,150.960000,904.480000,4.490000,213.030000,22.770000 -20,2023-08-14 13:00:00,0.000000,23.800000,36.000000,7.000000,340.000000,88.280000,151.220000,905.050000,4.760000,213.330000,23.730000 -20,2023-08-14 14:00:00,0.000000,23.800000,36.000000,7.000000,340.000000,88.620000,151.480000,905.630000,5.000000,213.630000,24.580000 -20,2023-08-14 15:00:00,0.000000,23.800000,36.000000,7.000000,340.000000,88.920000,151.740000,906.210000,5.220000,213.930000,25.320000 -20,2023-08-14 16:00:00,0.000000,23.800000,36.000000,7.000000,340.000000,89.170000,152.000000,906.790000,5.410000,214.230000,25.960000 -20,2023-08-14 17:00:00,0.000000,25.700000,26.000000,9.000000,36.000000,89.830000,152.340000,907.530000,6.580000,214.620000,29.700000 -20,2023-08-14 18:00:00,0.000000,25.700000,26.000000,9.000000,36.000000,90.380000,152.680000,908.280000,7.120000,215.000000,31.320000 -20,2023-08-14 19:00:00,0.000000,25.700000,26.000000,9.000000,36.000000,90.830000,153.020000,909.030000,7.600000,215.390000,32.710000 -20,2023-08-14 20:00:00,0.000000,25.700000,26.000000,9.000000,36.000000,91.210000,153.350000,909.780000,8.010000,215.780000,33.890000 -20,2023-08-14 21:00:00,0.000000,25.700000,26.000000,9.000000,36.000000,91.510000,153.350000,909.780000,8.360000,215.780000,34.880000 -20,2023-08-14 22:00:00,0.000000,25.700000,26.000000,9.000000,36.000000,91.760000,153.350000,909.780000,8.670000,215.780000,35.710000 -20,2023-08-14 23:00:00,0.000000,16.900000,43.000000,8.000000,149.000000,91.530000,153.350000,909.780000,7.970000,215.780000,33.790000 -20,2023-08-15 00:00:00,0.000000,16.900000,43.000000,8.000000,149.000000,91.320000,153.350000,909.780000,7.740000,215.780000,33.130000 -20,2023-08-15 01:00:00,0.000000,16.900000,43.000000,8.000000,149.000000,91.130000,153.350000,909.780000,7.540000,215.780000,32.540000 -20,2023-08-15 02:00:00,0.000000,16.900000,43.000000,8.000000,149.000000,90.970000,153.350000,909.780000,7.360000,215.780000,32.030000 -20,2023-08-15 03:00:00,0.000000,16.900000,43.000000,8.000000,149.000000,90.820000,153.350000,909.780000,7.210000,215.780000,31.580000 -20,2023-08-15 04:00:00,0.000000,16.900000,43.000000,8.000000,149.000000,90.680000,153.350000,909.780000,7.070000,215.780000,31.190000 -20,2023-08-15 05:00:00,0.000000,12.600000,55.000000,7.000000,179.000000,90.290000,153.440000,909.940000,6.350000,215.870000,29.010000 -20,2023-08-15 06:00:00,0.000000,12.600000,55.000000,7.000000,179.000000,89.940000,153.520000,910.110000,6.040000,215.960000,28.030000 -20,2023-08-15 07:00:00,0.000000,12.600000,55.000000,7.000000,179.000000,89.620000,153.600000,910.270000,5.770000,216.060000,27.170000 -20,2023-08-15 08:00:00,0.000000,12.600000,55.000000,7.000000,179.000000,89.340000,153.690000,910.430000,5.540000,216.150000,26.420000 -20,2023-08-15 09:00:00,0.000000,12.600000,55.000000,7.000000,179.000000,89.080000,153.770000,910.600000,5.340000,216.250000,25.760000 -20,2023-08-15 10:00:00,0.000000,12.600000,55.000000,7.000000,179.000000,88.850000,153.850000,910.760000,5.170000,216.340000,25.180000 -20,2023-08-15 11:00:00,0.000000,25.100000,30.000000,11.000000,161.000000,89.400000,154.130000,911.320000,6.850000,216.660000,30.530000 -20,2023-08-15 12:00:00,0.000000,25.100000,30.000000,11.000000,161.000000,89.860000,154.410000,911.880000,7.310000,216.970000,31.900000 -20,2023-08-15 13:00:00,0.000000,25.100000,30.000000,11.000000,161.000000,90.230000,154.700000,912.440000,7.710000,217.290000,33.070000 -20,2023-08-15 14:00:00,0.000000,25.100000,30.000000,11.000000,161.000000,90.540000,154.980000,913.000000,8.060000,217.610000,34.060000 -20,2023-08-15 15:00:00,0.000000,25.100000,30.000000,11.000000,161.000000,90.800000,155.260000,913.560000,8.360000,217.930000,34.890000 -20,2023-08-15 16:00:00,0.000000,25.100000,30.000000,11.000000,161.000000,91.000000,155.540000,914.120000,8.610000,218.240000,35.580000 -20,2023-08-15 17:00:00,0.000000,29.700000,24.000000,11.000000,173.000000,91.640000,155.940000,914.910000,9.430000,218.690000,37.770000 -20,2023-08-15 18:00:00,0.000000,29.700000,24.000000,11.000000,173.000000,92.150000,156.340000,915.710000,10.120000,219.140000,39.580000 -20,2023-08-15 19:00:00,0.000000,29.700000,24.000000,11.000000,173.000000,92.550000,156.740000,916.500000,10.710000,219.590000,41.040000 -20,2023-08-15 20:00:00,0.000000,29.700000,24.000000,11.000000,173.000000,92.860000,157.140000,917.300000,11.190000,220.040000,42.230000 -20,2023-08-15 21:00:00,0.000000,29.700000,24.000000,11.000000,173.000000,93.110000,157.140000,917.300000,11.590000,220.040000,43.180000 -20,2023-08-15 22:00:00,0.000000,29.700000,24.000000,11.000000,173.000000,93.300000,157.140000,917.300000,11.910000,220.040000,43.930000 -20,2023-08-15 23:00:00,0.000000,20.300000,51.000000,8.000000,181.000000,92.700000,157.140000,917.300000,9.410000,220.040000,37.750000 -20,2023-08-16 00:00:00,0.000000,20.300000,51.000000,8.000000,181.000000,92.180000,157.140000,917.300000,8.750000,220.040000,35.980000 -20,2023-08-16 01:00:00,0.000000,20.300000,51.000000,8.000000,181.000000,91.730000,157.140000,917.300000,8.210000,220.040000,34.510000 -20,2023-08-16 02:00:00,0.000000,20.300000,51.000000,8.000000,181.000000,91.340000,157.140000,917.300000,7.770000,220.040000,33.260000 -20,2023-08-16 03:00:00,0.000000,20.300000,51.000000,8.000000,181.000000,91.010000,157.140000,917.300000,7.400000,220.040000,32.220000 -20,2023-08-16 04:00:00,0.000000,20.300000,51.000000,8.000000,181.000000,90.710000,157.140000,917.300000,7.100000,220.040000,31.330000 -20,2023-08-16 05:00:00,0.000000,16.700000,71.000000,7.000000,191.000000,89.920000,157.210000,917.430000,6.020000,220.120000,28.030000 -20,2023-08-16 06:00:00,0.000000,16.700000,71.000000,7.000000,191.000000,89.230000,157.270000,917.570000,5.460000,220.190000,26.200000 -20,2023-08-16 07:00:00,0.000000,16.700000,71.000000,7.000000,191.000000,88.640000,157.340000,917.710000,5.010000,220.270000,24.690000 -20,2023-08-16 08:00:00,0.000000,16.700000,71.000000,7.000000,191.000000,88.120000,157.410000,917.850000,4.660000,220.350000,23.450000 -20,2023-08-16 09:00:00,0.000000,16.700000,71.000000,7.000000,191.000000,87.680000,157.480000,917.980000,4.370000,220.420000,22.410000 -20,2023-08-16 10:00:00,0.000000,16.700000,71.000000,7.000000,191.000000,87.290000,157.540000,918.120000,4.130000,220.500000,21.550000 -20,2023-08-16 11:00:00,0.000000,27.800000,34.000000,9.000000,184.000000,88.080000,157.850000,918.730000,5.120000,220.840000,25.060000 -20,2023-08-16 12:00:00,0.000000,27.800000,34.000000,9.000000,184.000000,88.730000,158.150000,919.340000,5.620000,221.180000,26.730000 -20,2023-08-16 13:00:00,0.000000,27.800000,34.000000,9.000000,184.000000,89.260000,158.450000,919.960000,6.060000,221.510000,28.170000 -20,2023-08-16 14:00:00,0.000000,27.800000,34.000000,9.000000,184.000000,89.690000,158.750000,920.570000,6.450000,221.850000,29.390000 -20,2023-08-16 15:00:00,0.000000,27.800000,34.000000,9.000000,184.000000,90.050000,159.050000,921.180000,6.790000,222.190000,30.420000 -20,2023-08-16 16:00:00,0.000000,27.800000,34.000000,9.000000,184.000000,90.340000,159.350000,921.800000,7.070000,222.530000,31.290000 -20,2023-08-16 17:00:00,0.000000,30.700000,20.000000,15.000000,186.000000,91.440000,159.780000,922.670000,11.200000,223.010000,42.300000 -20,2023-08-16 18:00:00,0.000000,30.700000,20.000000,15.000000,186.000000,92.290000,160.210000,923.550000,12.630000,223.500000,45.680000 -20,2023-08-16 19:00:00,0.000000,30.700000,20.000000,15.000000,186.000000,92.940000,160.650000,924.430000,13.850000,223.980000,48.420000 -20,2023-08-16 20:00:00,0.000000,30.700000,20.000000,15.000000,186.000000,93.440000,161.080000,925.310000,14.850000,224.470000,50.610000 -20,2023-08-16 21:00:00,0.000000,30.700000,20.000000,15.000000,186.000000,93.830000,161.080000,925.310000,15.670000,224.470000,52.330000 -20,2023-08-16 22:00:00,0.000000,30.700000,20.000000,15.000000,186.000000,94.120000,161.080000,925.310000,16.320000,224.470000,53.670000 -20,2023-08-16 23:00:00,0.000000,23.200000,36.000000,10.000000,184.000000,93.840000,161.080000,925.310000,12.200000,224.470000,44.700000 -20,2023-08-17 00:00:00,0.000000,23.200000,36.000000,10.000000,184.000000,93.590000,161.080000,925.310000,11.790000,224.470000,43.730000 -20,2023-08-17 01:00:00,0.000000,23.200000,36.000000,10.000000,184.000000,93.380000,161.080000,925.310000,11.440000,224.470000,42.900000 -20,2023-08-17 02:00:00,0.000000,23.200000,36.000000,10.000000,184.000000,93.190000,161.080000,925.310000,11.150000,224.470000,42.190000 -20,2023-08-17 03:00:00,0.000000,23.200000,36.000000,10.000000,184.000000,93.030000,161.080000,925.310000,10.900000,224.470000,41.580000 -20,2023-08-17 04:00:00,0.000000,23.200000,36.000000,10.000000,184.000000,92.890000,161.080000,925.310000,10.680000,224.470000,41.050000 -20,2023-08-17 05:00:00,0.000000,20.600000,43.000000,13.000000,188.000000,92.520000,161.080000,925.310000,11.810000,224.470000,43.770000 -20,2023-08-17 06:00:00,0.000000,20.600000,43.000000,13.000000,188.000000,92.210000,161.250000,925.620000,11.290000,224.650000,42.550000 -20,2023-08-17 07:00:00,0.000000,20.600000,43.000000,13.000000,188.000000,91.940000,161.410000,925.930000,10.870000,224.840000,41.520000 -20,2023-08-17 08:00:00,0.000000,20.600000,43.000000,13.000000,188.000000,91.700000,161.580000,926.240000,10.520000,225.020000,40.650000 -20,2023-08-17 09:00:00,0.000000,20.600000,43.000000,13.000000,188.000000,91.500000,161.750000,926.550000,10.220000,225.210000,39.900000 -20,2023-08-17 10:00:00,0.000000,20.600000,43.000000,13.000000,188.000000,91.330000,161.920000,926.860000,9.970000,225.400000,39.270000 -20,2023-08-17 11:00:00,0.000000,28.500000,28.000000,15.000000,210.000000,91.670000,162.260000,927.490000,11.580000,225.770000,43.260000 -20,2023-08-17 12:00:00,0.000000,28.500000,28.000000,15.000000,210.000000,91.950000,162.600000,928.110000,12.040000,226.150000,44.350000 -20,2023-08-17 13:00:00,0.000000,28.500000,28.000000,15.000000,210.000000,92.160000,162.940000,928.740000,12.410000,226.520000,45.220000 -20,2023-08-17 14:00:00,0.000000,28.500000,28.000000,15.000000,210.000000,92.330000,163.280000,929.370000,12.710000,226.900000,45.910000 -20,2023-08-17 15:00:00,0.000000,28.500000,28.000000,15.000000,210.000000,92.460000,163.620000,930.000000,12.950000,227.270000,46.470000 -20,2023-08-17 16:00:00,0.000000,28.500000,28.000000,15.000000,210.000000,92.570000,163.960000,930.630000,13.140000,227.650000,46.910000 -20,2023-08-17 17:00:00,0.000000,31.700000,33.000000,9.000000,325.000000,92.570000,164.340000,931.330000,9.710000,228.070000,38.650000 -20,2023-08-17 18:00:00,0.000000,31.700000,33.000000,9.000000,325.000000,92.570000,164.720000,932.030000,9.710000,228.480000,38.650000 -20,2023-08-17 19:00:00,0.000000,31.700000,33.000000,9.000000,325.000000,92.570000,165.100000,932.740000,9.710000,228.900000,38.660000 -20,2023-08-17 20:00:00,0.000000,31.700000,33.000000,9.000000,325.000000,92.570000,165.480000,933.440000,9.710000,229.320000,38.660000 -20,2023-08-17 21:00:00,0.000000,31.700000,33.000000,9.000000,325.000000,92.570000,165.480000,933.440000,9.710000,229.320000,38.660000 -20,2023-08-17 22:00:00,0.000000,31.700000,33.000000,9.000000,325.000000,92.570000,165.480000,933.440000,9.710000,229.320000,38.660000 -20,2023-08-17 23:00:00,3.300000,19.200000,90.000000,6.000000,348.000000,45.470000,96.890000,905.230000,0.120000,152.870000,0.420000 -20,2023-08-18 00:00:00,0.000000,19.200000,90.000000,6.000000,348.000000,46.570000,96.890000,905.230000,0.140000,152.870000,0.500000 -20,2023-08-18 01:00:00,0.000000,19.200000,90.000000,6.000000,348.000000,47.640000,96.890000,905.230000,0.160000,152.870000,0.580000 -20,2023-08-18 02:00:00,0.000000,19.200000,90.000000,6.000000,348.000000,48.690000,96.890000,905.230000,0.190000,152.870000,0.670000 -20,2023-08-18 03:00:00,0.000000,19.200000,90.000000,6.000000,348.000000,49.720000,96.890000,905.230000,0.210000,152.870000,0.760000 -20,2023-08-18 04:00:00,0.000000,19.200000,90.000000,6.000000,348.000000,50.710000,96.890000,905.230000,0.240000,152.870000,0.850000 -20,2023-08-18 05:00:00,0.000000,16.000000,84.000000,5.000000,17.000000,51.940000,96.890000,905.230000,0.260000,152.870000,0.930000 -20,2023-08-18 06:00:00,0.000000,16.000000,84.000000,5.000000,17.000000,53.130000,96.950000,905.390000,0.300000,152.950000,1.290000 -20,2023-08-18 07:00:00,0.000000,16.000000,84.000000,5.000000,17.000000,54.280000,97.010000,905.550000,0.340000,153.030000,1.660000 -20,2023-08-18 08:00:00,0.000000,16.000000,84.000000,5.000000,17.000000,55.390000,97.060000,905.710000,0.370000,153.110000,1.990000 -20,2023-08-18 09:00:00,0.000000,16.000000,84.000000,5.000000,17.000000,56.460000,97.120000,905.860000,0.410000,153.190000,2.290000 -20,2023-08-18 10:00:00,0.000000,16.000000,84.000000,5.000000,17.000000,57.490000,97.180000,906.020000,0.440000,153.260000,2.570000 -20,2023-08-18 11:00:00,0.000000,23.800000,48.000000,7.000000,64.000000,61.090000,97.490000,906.860000,0.620000,153.670000,3.900000 -20,2023-08-18 12:00:00,0.000000,23.800000,48.000000,7.000000,64.000000,64.350000,97.790000,907.690000,0.730000,154.080000,4.650000 -20,2023-08-18 13:00:00,0.000000,23.800000,48.000000,7.000000,64.000000,67.290000,98.100000,908.520000,0.820000,154.490000,5.210000 -20,2023-08-18 14:00:00,0.000000,23.800000,48.000000,7.000000,64.000000,69.920000,98.400000,909.360000,0.890000,154.900000,5.670000 -20,2023-08-18 15:00:00,0.000000,23.800000,48.000000,7.000000,64.000000,72.270000,98.710000,910.190000,0.960000,155.310000,6.140000 -20,2023-08-18 16:00:00,0.000000,23.800000,48.000000,7.000000,64.000000,74.350000,99.020000,911.030000,1.050000,155.720000,6.690000 -20,2023-08-18 17:00:00,0.000000,29.900000,35.000000,7.000000,120.000000,77.370000,99.560000,912.520000,1.270000,156.450000,7.960000 diff --git a/tbd/validate/test_fbp.R b/tbd/validate/test_fbp.R new file mode 100644 index 000000000..b2e3a37c4 --- /dev/null +++ b/tbd/validate/test_fbp.R @@ -0,0 +1,492 @@ +library("cffdrs") +back_rate_of_spread <- cffdrs:::back_rate_of_spread +buildup_effect <- cffdrs:::buildup_effect +buildup_index <- cffdrs:::buildup_index +crown_base_height <- cffdrs:::crown_base_height +crown_fraction_burned <- cffdrs:::crown_fraction_burned +crown_fuel_load <- cffdrs:::crown_fuel_load +fire_intensity <- cffdrs:::fire_intensity +fire_weather_index <- cffdrs:::fire_weather_index +flank_rate_of_spread <- cffdrs:::flank_rate_of_spread +length_to_breadth <- cffdrs:::length_to_breadth +length_to_breadth_at_time <- cffdrs:::length_to_breadth_at_time +rate_of_spread_at_time <- cffdrs:::rate_of_spread_at_time +slope_adjustment <- cffdrs:::slope_adjustment +surface_fire_rate_of_spread <- cffdrs:::surface_fire_rate_of_spread +surface_fuel_consumption <- cffdrs:::surface_fuel_consumption +total_fuel_consumption <- cffdrs:::total_fuel_consumption + +initial_spread_index <- function (ffmc, ws, fbpMod = FALSE) +{ + fm <- 147.27723 * (101 - ffmc)/(59.5 + ffmc) + fW <- ifelse(ws >= 40 & fbpMod == TRUE, 12 * (1 - exp(-0.0818 * + (ws - 28))), exp(0.05039 * ws)) + fF <- 91.9 * exp(-0.1386 * fm) * (1 + (fm^5.31)/49300000) + isi <- 0.208 * fW * fF + return(isi) +} +foliar_moisture_content <- function (LAT, LONG, ELV, DJ, D0) { + FMC <- rep(-1, length(LAT)) + LATN <- rep(0, length(LAT)) + LATN <- ifelse(D0 <= 0, + ifelse(ELV <= 0, + 46 + 23.4 * exp(-0.036 * (150 - LONG)), + 43 + 33.7 * exp(-0.0351 * (150 - LONG))), + LATN) + D0 <- ifelse(D0 <= 0, + ifelse(ELV <= 0, + 151 * (LAT/LATN), + 142.1 * (LAT/LATN) + 0.0172 * ELV), + D0) + D0 <- round(D0, 0) + ND <- abs(DJ - D0) + FMC <- ifelse(ND < 30, + 85 + 0.0189 * ND^2, + ifelse(ND >= 30 & ND < 50, + 32.9 + 3.17 * ND - 0.0288 * ND^2, + 120)) + return(FMC) +} +critical_surface_intensity <- function (FMC, CBH) +{ + CSI <- 0.001 * (CBH^1.5) * (460 + 25.9 * FMC)^1.5 + return(CSI) +} +rate_of_spread_extended <- function (FUELTYPE, ISI, BUI, FMC, SFC, PC, PDF, CC, CBH) { + NoBUI <- rep(-1, length(ISI)) + d <- c("C1", "C2", "C3", "C4", "C5", "C6", "C7", "D1", "M1", + "M2", "M3", "M4", "S1", "S2", "S3", "O1A", "O1B") + a <- c(90, 110, 110, 110, 30, 30, 45, 30, 0, 0, 120, 100, + 75, 40, 55, 190, 250) + b <- c(0.0649, 0.0282, 0.0444, 0.0293, 0.0697, 0.08, 0.0305, + 0.0232, 0, 0, 0.0572, 0.0404, 0.0297, 0.0438, 0.0829, + 0.031, 0.035) + c0 <- c(4.5, 1.5, 3, 1.5, 4, 3, 2, 1.6, 0, 0, 1.4, 1.48, + 1.3, 1.7, 3.2, 1.4, 1.7) + names(a) <- names(b) <- names(c0) <- d + RSI <- rep(-1, length(ISI)) + RSI <- ifelse(FUELTYPE %in% c("C1", "C2", "C3", "C4", "C5", + "C7", "D1", "S1", "S2", "S3"), as.numeric(a[FUELTYPE] * + (1 - exp(-b[FUELTYPE] * ISI))^c0[FUELTYPE]), RSI) + RSI <- ifelse(FUELTYPE %in% c("M1"), (PC/100 * rate_of_spread(rep("C2", + length(ISI)), ISI, NoBUI, FMC, SFC, PC, PDF, CC, CBH) + + (100 - PC)/100 * rate_of_spread(rep("D1", length(ISI)), + ISI, NoBUI, FMC, SFC, PC, PDF, CC, CBH)), RSI) + RSI <- ifelse(FUELTYPE %in% c("M2"), (PC/100 * rate_of_spread(rep("C2", + length(ISI)), ISI, NoBUI, FMC, SFC, PC, PDF, CC, CBH) + + 0.2 * (100 - PC)/100 * rate_of_spread(rep("D1", length(ISI)), + ISI, NoBUI, FMC, SFC, PC, PDF, CC, CBH)), RSI) + RSI_m3 <- rep(-99, length(ISI)) + RSI_m3 <- ifelse(FUELTYPE %in% c("M3"), as.numeric(a[["M3"]] * + ((1 - exp(-b[["M3"]] * ISI))^c0[["M3"]])), RSI_m3) + RSI <- ifelse(FUELTYPE %in% c("M3"), (PDF/100 * RSI_m3 + + (1 - PDF/100) * rate_of_spread(rep("D1", length(ISI)), + ISI, NoBUI, FMC, SFC, PC, PDF, CC, CBH)), RSI) + RSI_m4 <- rep(-99, length(ISI)) + RSI_m4 <- ifelse(FUELTYPE %in% c("M4"), as.numeric(a[["M4"]] * + ((1 - exp(-b[["M4"]] * ISI))^c0[["M4"]])), RSI_m4) + RSI <- ifelse(FUELTYPE %in% c("M4"), (PDF/100 * RSI_m4 + + 0.2 * (1 - PDF/100) * rate_of_spread(rep("D1", length(ISI)), + ISI, NoBUI, FMC, SFC, PC, PDF, CC, CBH)), RSI) + CF <- rep(-99, length(ISI)) + CF <- ifelse(FUELTYPE %in% c("O1A", "O1B"), ifelse(CC < 58.8, + 0.005 * (exp(0.061 * CC) - 1), 0.176 + 0.02 * (CC - 58.8)), + CF) + RSI <- ifelse(FUELTYPE %in% c("O1A", "O1B"), a[FUELTYPE] * + ((1 - exp(-b[FUELTYPE] * ISI))^c0[FUELTYPE]) * CF, RSI) + CSI <- critical_surface_intensity(FMC, CBH) + RSO <- surface_fire_rate_of_spread(CSI, SFC) + RSI <- ifelse(FUELTYPE %in% c("C6"), intermediate_surface_rate_of_spread_c6(ISI), + RSI) + RSC <- ifelse(FUELTYPE %in% c("C6"), crown_rate_of_spread_c6(ISI, + FMC), NA) + RSS <- ifelse(FUELTYPE %in% c("C6"), surface_rate_of_spread_c6(RSI, + BUI), buildup_effect(FUELTYPE, BUI) * RSI) + CFB <- ifelse(FUELTYPE %in% c("C6"), crown_fraction_burned_c6(RSC, + RSS, RSO), crown_fraction_burned(RSS, RSO)) + ROS <- ifelse(FUELTYPE %in% c("C6"), rate_of_spread_c6(RSC, + RSS, CFB), RSS) + ROS <- ifelse(ROS <= 0, 1e-06, ROS) + return(list(ROS = ROS, CFB = CFB, CSI = CSI, RSO = RSO)) +} +# static const auto Latitude <- 49.3911 +# static const auto Longitude <- -84.7395 +# static const topo:::StartPoint ForPoint(Latitude Longitude) +# const auto start_date <- 123 +# const auto year <- model.year() +# const auto month <- 6 +# const auto day <- 15 +# const auto hour <- 12 +# const auto minute <- 0 +# static const wx:::Temperature TEMP(20.0) +# static const wx:::RelativeHumidity RH(30.0) +# static const wx:::Precipitation PREC(0.0) +# const wx:::Dc dc(275) +# const wx:::Dmc dmc(35.5) +# const wx:::Bui bui(54 dmc dc) +# const wx:::Ffmc ffmc(90) +latitude <- 49.3911 +longitude <- -84.7395 +fueltype <- "C-2" +temp <- 20 +rh <- 30 +prec <- 0 +ws <- 20 +wd <- 180 +dc <- 275 +dmc <- 35.5 +slope <- 0 +aspect <- 0 +ffmc <- 90 +# isi <- 11.7 +# bui <- 54 +fwi <- 25.9 +isi <- initial_spread_index(ffmc, ws) +bui <- buildup_index(dmc, dc) +fwi <- fire_weather_index(isi, bui) +dj <- 166 +df <- as.data.table(list( + latitude = latitude, + longitude = longitude, + fueltype = fueltype, + temp = temp, + rh = rh, + prec = prec, + ws = ws, + wd = wd, + dc = dc, + dmc = dmc, + slope = slope, + aspect = aspect, + bui = bui, + ffmc = ffmc, + isi = isi, + fwi = fwi, + dj = dj +)) +names(df) <- toupper(names(df)) +# fire_behaviour_prediction(df, output = "ALL") +input <- df +output <- "ALL" + +output <- toupper(output) +if (is.null(input)) { + input <- data.frame(FUELTYPE = "C2", ACCEL = 0, DJ = 180, + D0 = 0, ELV = 0, BUIEFF = 1, HR = 1, FFMC = 90, ISI = 0, + BUI = 60, WS = 10, WD = 0, GS = 0, ASPECT = 0, PC = 50, + PDF = 35, CC = 80, GFL = 0.35, CBH = 3, CFL = 1, + LAT = 55, LONG = -120, FMC = 0, THETA = 0) + input[, "FUELTYPE"] <- as.character(input[, "FUELTYPE"]) +} +names(input) <- toupper(names(input)) +ID <- input$ID +FUELTYPE <- toupper(input$FUELTYPE) +FFMC <- input$FFMC +BUI <- input$BUI +WS <- input$WS +WD <- input$WD +FMC <- input$FMC +GS <- input$GS +LAT <- input$LAT +LONG <- input$LONG +ELV <- input$ELV +DJ <- input$DJ +D0 <- input$D0 +SD <- input$SD +SH <- input$SH +HR <- input$HR +PC <- input$PC +PDF <- input$PDF +GFL <- input$GFL +CC <- input$CC +THETA <- input$THETA +ACCEL <- input$ACCEL +ASPECT <- input$ASPECT +BUIEFF <- input$BUIEFF +CBH <- input$CBH +CFL <- input$CFL +ISI <- input$ISI +n0 <- nrow(input) +if (!exists("FUELTYPE") | is.null(FUELTYPE)) { + warning(paste0("FuelType is a required input,", " default FuelType = C2 is used in the calculation")) + FUELTYPE <- rep("C2", n0) +} +if (!exists("FFMC") | is.null(FFMC)) { + warning(paste0("FFMC is a required input, default FFMC = 90 is used in the", + " calculation")) + FFMC <- rep(90, n0) +} +if (!exists("BUI") | is.null(BUI)) { + warning("BUI is a required input, default BUI = 60 is used in the calculation") + BUI <- rep(60, n0) +} +if (!exists("WS") | is.null(WS)) { + warning("WS is a required input, WS = 10 km/hr is used in the calculation") + WS <- rep(10, n0) +} +if (!exists("GS") | is.null(GS)) { + warning("GS is a required input,GS = 0 is used in the calculation") + GS <- rep(0, n0) +} +if (!exists("LAT") | is.null(LAT)) { + warning("LAT is a required input, default LAT=55 is used in the calculation") + LAT <- rep(55, n0) +} +if (!exists("LONG") | is.null(LONG)) { + warning("LONG is a required input, LONG = -120 is used in the calculation") + LONG <- rep(-120, n0) +} +if (!exists("DJ") | is.null(DJ)) { + warning("Dj is a required input, Dj = 180 is used in the calculation") + DJ <- rep(180, n0) +} +if (!exists("ASPECT") | is.null(ASPECT)) { + warning("Aspect is a required input, Aspect = 0 is used in the calculation") + ASPECT <- rep(0, n0) +} +if (!exists("WD") | is.null(WD)) { + WD <- rep(0, n0) +} +if (!exists("FMC") | is.null(FMC)) { + FMC <- rep(0, n0) +} +if (!exists("ELV") | is.null(ELV)) { + ELV <- rep(0, n0) +} +if (!exists("SD") | is.null(SD)) { + SD <- rep(0, n0) +} +if (!exists("SH") | is.null(SH)) { + SH <- rep(0, n0) +} +if (!exists("D0") | is.null(D0)) { + D0 <- rep(0, n0) +} +if (!exists("HR") | is.null(HR)) { + HR <- rep(1, n0) +} +if (!exists("PC") | is.null(PC)) { + PC <- rep(50, n0) +} +if (!exists("PDF") | is.null(PDF)) { + PDF <- rep(35, n0) +} +if (!exists("GFL") | is.null(GFL)) { + GFL <- rep(0.35, n0) +} +if (!exists("CC") | is.null(CC)) { + CC <- rep(80, n0) +} +if (!exists("THETA") | is.null(THETA)) { + THETA <- rep(0, n0) +} +if (!exists("ACCEL") | is.null(ACCEL)) { + ACCEL <- rep(0, n0) +} +if (!exists("BUIEFF") | is.null(BUIEFF)) { + BUIEFF <- rep(1, n0) +} +if (!exists("CBH") | is.null(CBH)) { + CBH <- rep(0, n0) +} +if (!exists("CFL") | is.null(CFL)) { + CFL <- rep(0, n0) +} +if (!exists("ISI") | is.null(ISI)) { + ISI <- rep(0, n0) +} +WD <- WD * pi/180 +THETA <- THETA * pi/180 +ASPECT <- ifelse(is.na(ASPECT), 0, ASPECT) +ASPECT <- ifelse(ASPECT < 0, ASPECT + 360, ASPECT) +ASPECT <- ASPECT * pi/180 +ACCEL <- ifelse(is.na(ACCEL) | ACCEL < 0, 0, ACCEL) +if (length(ACCEL[!ACCEL %in% c(0, 1)]) > 0) { + warning("Input variable Accel is out of range, will be assigned to 1") +} +ACCEL <- ifelse(!ACCEL %in% c(0, 1), 1, ACCEL) +DJ <- ifelse(DJ < 0 | DJ > 366, 0, DJ) +DJ <- ifelse(is.na(DJ), 180, DJ) +D0 <- ifelse(is.na(D0) | D0 < 0 | D0 > 366, 0, D0) +ELV <- ifelse(ELV < 0 | ELV > 10000, 0, ELV) +ELV <- ifelse(is.na(ELV), 0, ELV) +BUIEFF <- ifelse(BUIEFF <= 0, 0, 1) +BUIEFF <- ifelse(is.na(BUIEFF), 1, BUIEFF) +HR <- ifelse(HR < 0, -HR, HR) +HR <- ifelse(HR > 366 * 24, 24, HR) +HR <- ifelse(is.na(HR), 0, HR) +FFMC <- ifelse(FFMC < 0 | FFMC > 101, 0, FFMC) +FFMC <- ifelse(is.na(FFMC), 90, FFMC) +ISI <- ifelse(is.na(ISI) | ISI < 0 | ISI > 300, 0, ISI) +BUI <- ifelse(BUI < 0 | BUI > 1000, 0, BUI) +BUI <- ifelse(is.na(BUI), 60, BUI) +WS <- ifelse(WS < 0 | WS > 300, 0, WS) +WS <- ifelse(is.na(WS), 10, WS) +WD <- ifelse(is.na(WD) | WD < -2 * pi | WD > 2 * pi, 0, WD) +GS <- ifelse(is.na(GS) | GS < 0 | GS > 200, 0, GS) +GS <- ifelse(ASPECT < -2 * pi | ASPECT > 2 * pi, 0, GS) +PC <- ifelse(is.na(PC) | PC < 0 | PC > 100, 50, PC) +PDF <- ifelse(is.na(PDF) | PDF < 0 | PDF > 100, 35, PDF) +CC <- ifelse(CC <= 0 | CC > 100, 95, CC) +CC <- ifelse(is.na(CC), 80, CC) +GFL <- ifelse(is.na(GFL) | GFL <= 0 | GFL > 100, 0.35, GFL) +LAT <- ifelse(LAT < -90 | LAT > 90, 0, LAT) +LAT <- ifelse(is.na(LAT), 55, LAT) +LONG <- ifelse(LONG < -180 | LONG > 360, 0, LONG) +LONG <- ifelse(is.na(LONG), -120, LONG) +THETA <- ifelse(is.na(THETA) | THETA < -2 * pi | THETA > + 2 * pi, 0, THETA) +SD <- ifelse(SD < 0 | SD > 1e+05, -999, SD) +SD <- ifelse(is.na(SD), 0, SD) +SH <- ifelse(SH < 0 | SH > 100, -999, SH) +SH <- ifelse(is.na(SH), 0, SH) +FUELTYPE <- sub("-", "", FUELTYPE) +FUELTYPE <- sub(" ", "", FUELTYPE) +if (length(FUELTYPE[is.na(FUELTYPE)]) > 0) { + warning("FuelType contains NA, using C2 (default) in the calculation") + FUELTYPE <- ifelse(is.na(FUELTYPE), "C2", FUELTYPE) +} +HR <- HR * 60 +WAZ <- WD + pi +WAZ <- ifelse(WAZ > 2 * pi, WAZ - 2 * pi, WAZ) +SAZ <- ASPECT + pi +SAZ <- ifelse(SAZ > 2 * pi, SAZ - 2 * pi, SAZ) +LONG <- ifelse(LONG < 0, -LONG, LONG) +SFC <- TFC <- HFI <- CFB <- ROS <- rep(0, length(LONG)) +RAZ <- rep(-999, length(LONG)) +validOutTypes <- c("SECONDARY", "ALL", "S", "A") +validOutTypes <- c(validOutTypes, c("RAZ0", "WSV0")) +if (output %in% validOutTypes) { + FROS <- BROS <- TROS <- HROSt <- FROSt <- BROSt <- TROSt <- FCFB <- BCFB <- TCFB <- FFI <- BFI <- TFI <- FTFC <- BTFC <- TTFC <- rep(0, + length(LONG)) + TI <- FTI <- BTI <- TTI <- LB <- WSV <- rep(-999, length(LONG)) +} +CBH <- crown_base_height(FUELTYPE, CBH, SD, SH) +CFL <- crown_fuel_load(FUELTYPE, CFL) +FMC <- ifelse(FMC <= 0 | FMC > 120 | is.na(FMC), foliar_moisture_content(LAT, + LONG, ELV, DJ, D0), FMC) +FMC <- ifelse(FUELTYPE %in% c("D1", "S1", "S2", "S3", "O1A", + "O1B"), 0, FMC) +SFC <- surface_fuel_consumption(FUELTYPE, FFMC, BUI, PC, + GFL) +BUI <- ifelse(BUIEFF != 1, 0, BUI) +slope_values <- slope_adjustment(FUELTYPE, FFMC, BUI, WS, + WAZ, GS, SAZ, FMC, SFC, PC, PDF, CC, CBH, ISI) +WSV0 <- slope_values[["WSV"]] +if ("WSV0" == output) { + return(WSV0) +} +WSV <- ifelse(GS > 0 & FFMC > 0, WSV0, WS) +RAZ0 <- slope_values[["RAZ"]] +if ("RAZ0" == output) { + return(RAZ0) +} +RAZ <- ifelse(GS > 0 & FFMC > 0, RAZ0, WAZ) +ISI <- ifelse(ISI > 0, ISI, initial_spread_index(FFMC, WSV, + TRUE)) +ros_vars <- rate_of_spread_extended(FUELTYPE, ISI, BUI, FMC, + SFC, PC, PDF, CC, CBH) +ROS <- ros_vars$ROS +CFB <- ifelse(CFL > 0, ros_vars$CFB, 0) +CSI <- ros_vars$CSI +RSO <- ros_vars$RSO +TFC <- total_fuel_consumption(FUELTYPE, CFL, CFB, SFC, PC, + PDF) +HFI <- fire_intensity(TFC, ROS) +CFB <- ifelse(HR < 0, -CFB, CFB) +RAZ <- RAZ * 180/pi +RAZ <- ifelse(RAZ == 360, 0, RAZ) +FD <- rep("I", length(CFB)) +FD <- ifelse(CFB < 0.1, "S", FD) +FD <- ifelse(CFB >= 0.9, "C", FD) +CFC <- total_fuel_consumption(FUELTYPE, CFL, CFB, SFC, PC, + PDF, option = "CFC") +if (output %in% c("SECONDARY", "ALL", "S", "A")) { + SF <- ifelse(GS >= 70, 10, exp(3.533 * (GS/100)^1.2)) + BE <- buildup_effect(FUELTYPE, BUI) + LB <- length_to_breadth(FUELTYPE, WSV) + LBt <- ifelse(ACCEL == 0, LB, length_to_breadth_at_time(FUELTYPE, + LB, HR, CFB)) + BROS <- back_rate_of_spread(FUELTYPE, FFMC, BUI, WSV, + FMC, SFC, PC, PDF, CC, CBH) + FROS <- flank_rate_of_spread(ROS, BROS, LB) + E <- sqrt(1 - 1/LB/LB) + TROS <- ROS * (1 - E)/(1 - E * cos(THETA - RAZ)) + ROSt <- ifelse(ACCEL == 0, ROS, rate_of_spread_at_time(FUELTYPE, + ROS, HR, CFB)) + BROSt <- ifelse(ACCEL == 0, BROS, rate_of_spread_at_time(FUELTYPE, + BROS, HR, CFB)) + FROSt <- ifelse(ACCEL == 0, FROS, flank_rate_of_spread(ROSt, + BROSt, LBt)) + TROSt <- ifelse(ACCEL == 0, TROS, (ROSt * (1 - sqrt(1 - + 1/LBt/LBt))/(1 - sqrt(1 - 1/LBt/LBt) * cos(THETA - + RAZ)))) + FCFB <- ifelse(CFL == 0, 0, ifelse(FUELTYPE %in% c("C6"), + 0, crown_fraction_burned(FROS, RSO))) + BCFB <- ifelse(CFL == 0, 0, ifelse(FUELTYPE %in% c("C6"), + 0, crown_fraction_burned(BROS, RSO))) + TCFB <- ifelse(CFL == 0, 0, ifelse(FUELTYPE %in% c("C6"), + 0, crown_fraction_burned(TROS, RSO))) + FTFC <- total_fuel_consumption(FUELTYPE, CFL, FCFB, SFC, + PC, PDF) + BTFC <- total_fuel_consumption(FUELTYPE, CFL, BCFB, SFC, + PC, PDF) + TTFC <- total_fuel_consumption(FUELTYPE, CFL, TCFB, SFC, + PC, PDF) + FFI <- fire_intensity(FTFC, FROS) + BFI <- fire_intensity(BTFC, BROS) + TFI <- fire_intensity(TTFC, TROS) + HROSt <- ifelse(HR < 0, -ROSt, ROSt) + FROSt <- ifelse(HR < 0, -FROSt, FROSt) + BROSt <- ifelse(HR < 0, -BROSt, BROSt) + TROSt <- ifelse(HR < 0, -TROSt, TROSt) + a1 <- 0.115 - (18.8 * CFB^2.5 * exp(-8 * CFB)) + TI <- log(ifelse(1 - RSO/ROS > 0, 1 - RSO/ROS, 1))/(-a1) + a2 <- 0.115 - (18.8 * FCFB^2.5 * exp(-8 * FCFB)) + FTI <- log(ifelse(1 - RSO/FROS > 0, 1 - RSO/FROS, 1))/(-a2) + a3 <- 0.115 - (18.8 * BCFB^2.5 * exp(-8 * BCFB)) + BTI <- log(ifelse(1 - RSO/BROS > 0, 1 - RSO/BROS, 1))/(-a3) + a4 <- 0.115 - (18.8 * TCFB^2.5 * exp(-8 * TCFB)) + TTI <- log(ifelse(1 - RSO/TROS > 0, 1 - RSO/TROS, 1))/(-a4) + DH <- ifelse(ACCEL == 1, distance_at_time(FUELTYPE, ROS, + HR, CFB), ROS * HR) + DB <- ifelse(ACCEL == 1, distance_at_time(FUELTYPE, BROS, + HR, CFB), BROS * HR) + DF <- ifelse(ACCEL == 1, (DH + DB)/(LBt * 2), (DH + DB)/(LB * + 2)) +} +if (!exists("ID") || is.null(ID)) { + ID <- row.names(input) +} +if (output %in% c("PRIMARY", "P")) { + FBP <- data.frame(ID, CFB, CFC, FD, HFI, RAZ, ROS, SFC, + TFC) + FBP[, c(2:3, 5:ncol(FBP))] <- apply(FBP[, c(2:3, 5:ncol(FBP))], + 2, function(.x) { + ifelse(FUELTYPE %in% c("WA", "NF"), 0, .x) + }) + FBP[, "FD"] <- as.character(FBP[, "FD"]) + FBP[, "FD"] <- ifelse(FUELTYPE %in% c("WA", "NF"), "NA", + FBP[, "FD"]) +} else if (output %in% c("SECONDARY", "S")) { + FBP <- data.frame(ID, BE, SF, ISI, FFMC, FMC, D0, RSO, + CSI, FROS, BROS, HROSt, FROSt, BROSt, FCFB, BCFB, + FFI, BFI, FTFC, BTFC, TI, FTI, BTI, LB, LBt, WSV, + DH, DB, DF, TROS, TROSt, TCFB, TFI, TTFC, TTI) + FBP[, 2:ncol(FBP)] <- apply(FBP[, 2:ncol(FBP)], 2, function(.x) { + ifelse(FUELTYPE %in% c("WA", "NF"), 0, .x) + }) +} else if (output %in% c("ALL", "A")) { + FBP <- data.frame(ID, CFB, CFC, FD, HFI, RAZ, ROS, SFC, + TFC, BE, SF, ISI, FFMC, FMC, D0, RSO, CSI, FROS, + BROS, HROSt, FROSt, BROSt, FCFB, BCFB, FFI, BFI, + FTFC, BTFC, TI, FTI, BTI, LB, LBt, WSV, DH, DB, DF, + TROS, TROSt, TCFB, TFI, TTFC, TTI) + FBP[, c(2:3, 5:ncol(FBP))] <- apply(FBP[, c(2:3, 5:ncol(FBP))], + 2, function(.x) { + ifelse(FUELTYPE %in% c("WA", "NF"), 0, .x) + }) + FBP[, "FD"] <- as.character(FBP[, "FD"]) + FBP[, "FD"] <- ifelse(FUELTYPE %in% c("WA", "NF"), "NA", + FBP[, "FD"]) +} diff --git a/test_pts.sh b/test_pts.sh new file mode 100755 index 000000000..5ea2dfa82 --- /dev/null +++ b/test_pts.sh @@ -0,0 +1,7 @@ +#!/bin/bash +set -e +# docker compose exec tbd_dev_svc /bin/bash -c './test_hull.sh > hull_testing.log 2>&1' +docker compose exec tbd_dev_svc /bin/bash -c './test_hull.sh' +python pts_to_shp.py +# mkdir -p /mnt/d/firestarr_pts +# rsync -avHP --delete ../data/test_output/ /mnt/d/firestarr_pts/ From 022b1de3203662dcafda3a12bda36aab357cc17c Mon Sep 17 00:00:00 2001 From: Jordan Evens Date: Fri, 12 Apr 2024 06:55:30 -0400 Subject: [PATCH 10/17] still too many rear points but simpler --- tbd/src/cpp/FireSpread.cpp | 439 +++---------------------------------- 1 file changed, 33 insertions(+), 406 deletions(-) diff --git a/tbd/src/cpp/FireSpread.cpp b/tbd/src/cpp/FireSpread.cpp index 969ef4c34..c2fbffc4d 100644 --- a/tbd/src/cpp/FireSpread.cpp +++ b/tbd/src/cpp/FireSpread.cpp @@ -420,220 +420,6 @@ SpreadInfo::SpreadInfo(const double time, [&add_offsets, &calculate_ros](const double angle_radians) { return add_offsets(angle_radians, calculate_ros(angle_radians)); }; // bool added = add_offset(raz, head_ros_); bool added = true; - // #ifdef STEP - // constexpr auto step = STEP; - // #else - // // double step = 0; - // // constexpr double step_size = 1; - // // step according to eccentricity of ellipse - // // double step_size = 10.0 / pow(l_b, 6); - // // double step_mult = pow(l_b, 0.25); - // // #define STEP_ANGLE 1 - // // #define STEP_MULT 10 - // // double step = STEP_ANGLE; - // // #define STEP_POWER 4 - // // #define STEP_MULT_POWER 0.25 - // // double step = 10.0 / pow(l_b, STEP_POWER); - // // double step_mult = pow(l_b, STEP_MULT_POWER); - // double step_x = 0.1; - // #endif - // double theta = 0; - // double cur_x = 0; - // // double step = 1; - // // double last_step = 0; - // while (added && theta < 90) - // { - // theta = acos(cur_x) - util::to_radians(90); - // // added = add_offsets_calc_ros(util::to_radians(theta)); - // added = add_offsets_calc_ros(ellipse_angle(l_b, theta)); - // // #ifndef STEP - // // // step += step_size; - // // // step_size *= step_mult; - // // step *= step_mult; - // // #endif - // cur_x += step_x; - // // theta += step; - // // double tmp = last_step; - // // last_step = step; - // // step = last_step + tmp; - // } - // if (added) - // { - // // CHECK: is this using flank ros wrong? - // // this is fine but trying to use epsilon with WS of 40 somehow makes points to sides - // // regardless of ratio, 90 is always the same direction - // added = add_offsets(util::to_radians(90), flank_ros * sqrt(a_sq_sub_c_sq) / a); - // // constexpr auto epsilon = numeric_limits::epsilon(); - // // added = add_offsets_calc_ros(util::to_radians(90) + epsilon); - // // don't worry so much about the back of the fire - // // step *= STEP_MULT; - // // step /= step_mult; - // // theta = 90 + step; - // // step = 10; - // while (added && theta < 180) - // { - // theta = acos(1.0 - cur_x); - // cur_x -= step_x; - - // added = add_offsets_calc_ros(ellipse_angle(l_b, theta)); - // // added = add_offsets_calc_ros(util::to_radians(theta)); - // #ifndef STEP - // // step += step_size; - // // step_size *= step_mult; - // // step *= step_mult; - // // // actually want to return to the same angles we used on the head for the rear - // // step /= step_mult; - // #endif - // // double tmp = last_step; - // // last_step = step; - // // step = last_step + tmp; - // // theta += step; - // } - // if (added) - // { - // // only use back ros if every other angle is spreading since this should be lowest - // // 180 - // if (back_ros < min_ros) - // { - // return; - // } - // const auto direction = util::fix_radians(util::RAD_180 + raz); - // static_cast(!add_offset(direction, back_ros * correction_factor(direction))); - // } - // } - // // static bool showed = false; - // // if (!showed) - // // { - // // logging::note("Generated %ld points for offsets", offsets_.size()); - // // exit(-1); - // // showed = true; - // // } - //////////////////////////////////////// - // #define STEP_X 0.1 - // double step_x = STEP_X; - // // double step_x = STEP_X / l_b; - // double theta = 0; - // double last_theta = 0; - // double cur_x = 0; - // double last_angle = 0; - // // double step = 1; - // // double last_step = 0; - // size_t num_angles = 0; - // while (added && cur_x <= 1.0) - // { - // ++num_angles; - // // theta = abs(acos(cur_x) - util::RAD_090); - // theta = asin(cur_x); - // last_theta = theta; - // last_angle = ellipse_angle(l_b, theta); - // added = add_offsets_calc_ros(last_angle); - // // added = add_offsets_calc_ros(ellipse_angle(l_b, theta)); - // // added = add_offsets_calc_ros(theta); - // cur_x += step_x; - // } - // // at the widest point, but not at the 90 degrees, so need to taper in again - // // we know we're going between last_angle and 90 now - // double angle_step = (util::RAD_090 - last_angle) / num_angles; - // // probably overkill since not worrying about ratio? - // last_angle += angle_step; - // while (added && last_angle < util::RAD_090) - // { - // // last_angle = ellipse_angle(l_b, last_theta); - // added = add_offsets_calc_ros(last_angle); - // // last_theta += angle_step; - // last_angle += angle_step; - // } - // if (added) - // { - // // HACK: pick mid between 90 and last angle because there's a weird gap - // // last_angle = (last_angle + util::RAD_090) / 2.0; - // // added = add_offsets_calc_ros(last_angle); - // // move back half a step - // cur_x -= (step_x / 2.0); - // theta = abs(acos(cur_x) - util::RAD_090); - // added = add_offsets_calc_ros(ellipse_angle(l_b, theta)); - // } - // if (added) - // { - // added = add_offsets(util::RAD_090, flank_ros * sqrt(a_sq_sub_c_sq) / a); - // } - // if (added) - // { - // // // HACK: pick mid after 90 based on last angle because there's a weird gap - // // added = add_offsets_calc_ros((util::RAD_090 + (util::RAD_090 - last_angle)) / 2.0); - // // step_x = STEP_X * pow(l_b, 4); - // // step_x = STEP_X * pow(l_b, 2); - // // step_x = STEP_X * pow(l_b, 1); - // // cur_x = 1.0 - step_x; - // // const auto a = (head_ros_ + back_ros) / 2.0; - // // const auto c = a - back_ros; - // // const auto l_b = fuel->lengthToBreadth(wsv); - // // const auto flank_ros = a / l_b; - // // const auto l_bb = ((head_ros_ + back_ros) / 2.0) / flank_ros; - // const auto l_bb = back_ros / flank_ros; - // // // this is a bit much - // // step_x = STEP_X * l_b; - // // // seems okay - // // step_x = STEP_X / l_bb; - // // also seems pretty good (but probably basically same as STEP_X * l_b) - // step_x = STEP_X * (head_ros_ / flank_ros); - // // step_x = STEP_X * (1.0 / pow(l_bb, 1.5)); - // // step_x = STEP_X * (1.0 / pow(l_bb, 2)); - // // cur_x -= step_x; - // cur_x -= (step_x / 2.0); - // while (added && cur_x >= STEP_X) - // { - // theta = util::RAD_090 + acos(cur_x); - // // added = add_offsets_calc_ros(ellipse_angle(l_b, theta)); - // added = add_offsets_calc_ros(ellipse_angle(l_bb, theta)); - // cur_x -= step_x; - // // added = add_offsets_calc_ros(ellipse_angle(l_b * l_b, theta)); - // // added = add_offsets_calc_ros(theta); - // } - // if (added) - // { - // // only use back ros if every other angle is spreading since this should be lowest - // // 180 - // if (back_ros < min_ros) - // { - // return; - // } - // const auto direction = util::fix_radians(util::RAD_180 + raz); - // static_cast(!add_offset(direction, back_ros * correction_factor(direction))); - // } - // } - ///////////////////////// - // double theta = 0; - // double step = 10; - // double last_angle = 0; - // while (added && theta < 90) - // { - // last_angle = ellipse_angle(l_b, util::to_radians(theta)); - // added = add_offsets_calc_ros(last_angle); - // theta += step; - // } - // if (added) - // { - // added = add_offsets(util::RAD_090, flank_ros * sqrt(a_sq_sub_c_sq) / a); - // } - // while (added && theta < 180) - // { - // last_angle = ellipse_angle(l_b, util::to_radians(theta)); - // added = add_offsets_calc_ros(last_angle); - // theta += step; - // } - // if (added) - // { - // // only use back ros if every other angle is spreading since this should be lowest - // // 180 - // if (back_ros < min_ros) - // { - // return; - // } - // const auto direction = util::fix_radians(util::RAD_180 + raz); - // static_cast(!add_offset(direction, back_ros * correction_factor(direction))); - // } -////////////////////////////////////////////// #define STEP_X 0.1 #define STEP_MAX_DEGREES 10.0 #define STEP_MAX util::to_radians(STEP_MAX_DEGREES) @@ -642,24 +428,18 @@ SpreadInfo::SpreadInfo(const double time, double theta = 0; double angle = 0; double last_theta = 0; - double cur_x = 0; + double cur_x = 1.0; double last_angle = 0; // double step = 1; // double last_step = 0; size_t num_angles = 0; - while (added && cur_x < 1.0) + while (added && cur_x > 0) { ++num_angles; - // theta = abs(acos(cur_x) - util::RAD_090); - theta = asin(cur_x); - if ((theta - last_theta) > STEP_MAX) - { - break; - } + theta = min(acos(cur_x), last_theta + STEP_MAX); angle = ellipse_angle(l_b, theta); added = add_offsets_calc_ros(angle); - // added = add_offsets_calc_ros(ellipse_angle(l_b, theta)); - // added = add_offsets_calc_ros(theta); + cur_x = cos(theta); printf("cur_x = %f, theta = %f, angle = %f, last_theta = %f, last_angle = %f\n", cur_x, util::to_degrees(theta), @@ -668,19 +448,15 @@ SpreadInfo::SpreadInfo(const double time, util::to_degrees(last_angle)); last_theta = theta; last_angle = angle; - cur_x += step_x; + cur_x -= step_x; } - // HACK: want to keep things further from 90 degrees so round down to last multiple of max step - last_theta = util::to_radians(static_cast(util::to_degrees(last_theta) / STEP_MAX_DEGREES) * STEP_MAX_DEGREES); - while (added && theta < (util::RAD_090 - STEP_MAX)) + if (added) { - theta = last_theta + STEP_MAX; + theta = util::RAD_090; ++num_angles; angle = ellipse_angle(l_b, theta); - added = add_offsets_calc_ros(angle); - // added = add_offsets_calc_ros(ellipse_angle(l_b, theta)); - // added = add_offsets_calc_ros(theta); - cur_x = sin(theta); + added = add_offsets(util::RAD_090, flank_ros * sqrt(a_sq_sub_c_sq) / a); + cur_x = cos(theta); printf("cur_x = %f, theta = %f, angle = %f, last_theta = %f, last_angle = %f\n", cur_x, util::to_degrees(theta), @@ -690,13 +466,26 @@ SpreadInfo::SpreadInfo(const double time, last_theta = theta; last_angle = angle; } - if (added) + cur_x -= (step_x / 2.0); + // trying to pick less rear points + step_x *= l_b; + double max_angle = util::RAD_180 - STEP_MAX; + double min_x = min(-1.0 + step_x, + cos(max_angle)); + while (added && cur_x > min_x) { - theta = util::RAD_090; ++num_angles; + theta = max(acos(cur_x), last_theta + STEP_MAX); angle = ellipse_angle(l_b, theta); - added = add_offsets(util::RAD_090, flank_ros * sqrt(a_sq_sub_c_sq) / a); - cur_x = sin(theta); + if (angle > max_angle) + { + break; + // // compromise and put a point in the middle + // theta = (theta + last_theta) / 2.0; + // angle = ellipse_angle(l_b, theta); + } + added = add_offsets_calc_ros(angle); + cur_x = cos(theta); printf("cur_x = %f, theta = %f, angle = %f, last_theta = %f, last_angle = %f\n", cur_x, util::to_degrees(theta), @@ -705,180 +494,18 @@ SpreadInfo::SpreadInfo(const double time, util::to_degrees(last_angle)); last_theta = theta; last_angle = angle; - cur_x = 1.0; + cur_x -= step_x; } if (added) { - cur_x -= (step_x / 2.0); - // this doesn't work? - // while (added && theta < 180) - // { - // theta = last_theta + STEP_MAX; - // double next_x = sin(theta); - // // if (abs(next_x - cur_x) > step_x) - // // { - // // break; - // // } - // angle = ellipse_angle(l_b, theta); - // added = add_offsets_calc_ros(angle); - // cur_x = sin(theta); - // printf("cur_x = %f, theta = %f, angle = %f, last_theta = %f, last_angle = %f\n", - // cur_x, - // util::to_degrees(theta), - // util::to_degrees(angle), - // util::to_degrees(last_theta), - // util::to_degrees(last_angle)); - // last_theta = theta; - // last_angle = angle; - // // added = add_offsets_calc_ros(ellipse_angle(l_b * l_b, theta)); - // // added = add_offsets_calc_ros(theta); - // } - // double step_min = l_b * STEP_MAX; - // while (added && cur_x > 0 && (theta + step_min) < util::RAD_180) - // { - // theta = max(util::RAD_180 - asin(cur_x), - // last_theta + step_min); - // angle = ellipse_angle(l_b, theta); - // added = add_offsets_calc_ros(angle); - // cur_x = sin(theta); - // printf("cur_x = %f, theta = %f, angle = %f, last_theta = %f, last_angle = %f\n", - // cur_x, - // util::to_degrees(theta), - // util::to_degrees(angle), - // util::to_degrees(last_theta), - // util::to_degrees(last_angle)); - // cur_x -= step_x; - // last_theta = theta; - // last_angle = angle; - // } - double step_min = STEP_MAX; - while (added && cur_x > 0 && (theta + step_min) < util::RAD_180) + // only use back ros if every other angle is spreading since this should be lowest + // 180 + if (back_ros < min_ros) { - theta = max(util::RAD_180 - asin(cur_x), - last_theta + step_min); - angle = ellipse_angle(l_b, theta); - if (abs(angle - last_angle) > step_min) - { - added = add_offsets_calc_ros(angle); - cur_x = sin(theta); - printf("cur_x = %f, theta = %f, angle = %f, last_theta = %f, last_angle = %f\n", - cur_x, - util::to_degrees(theta), - util::to_degrees(angle), - util::to_degrees(last_theta), - util::to_degrees(last_angle)); - last_theta = theta; - last_angle = angle; - } - cur_x -= step_x; - } - // double step_min = pow(l_b, 0.5) * STEP_MAX; - // // double x_min = sin(util::RAD_180 - step_min); - // step_x *= pow(l_b, 0.5); - // double x_min = step_x; - // while (added && cur_x > x_min) - // { - // theta = max(util::RAD_180 - asin(cur_x), - // last_theta + step_min); - // angle = ellipse_angle(l_b, theta); - // added = add_offsets_calc_ros(angle); - // cur_x = sin(theta); - // printf("cur_x = %f, theta = %f, angle = %f, last_theta = %f, last_angle = %f\n", - // cur_x, - // util::to_degrees(theta), - // util::to_degrees(angle), - // util::to_degrees(last_theta), - // util::to_degrees(last_angle)); - // cur_x -= step_x; - // last_theta = theta; - // last_angle = angle; - // } - // while (added && theta < 180) - // { - // theta = last_theta + STEP_MAX; - // double next_x = sin(theta); - // if (abs(next_x - cur_x) > step_x) - // { - // break; - // } - // angle = ellipse_angle(l_b, theta); - // added = add_offsets_calc_ros(angle); - // cur_x = sin(theta); - // printf("cur_x = %f, theta = %f, angle = %f, last_theta = %f, last_angle = %f\n", - // cur_x, - // util::to_degrees(theta), - // util::to_degrees(angle), - // util::to_degrees(last_theta), - // util::to_degrees(last_angle)); - // last_theta = theta; - // last_angle = angle; - // // added = add_offsets_calc_ros(ellipse_angle(l_b * l_b, theta)); - // // added = add_offsets_calc_ros(theta); - // } - // const auto l_bb = back_ros / flank_ros; - // // // this is a bit much - // // step_x = STEP_X * l_b; - // // // seems okay - // // step_x = STEP_X / l_bb; - // // double step_min = pow(l_b, 0.5) * STEP_MAX; - // // double x_min = sin(util::RAD_180 - step_min); - // // step_x *= pow(l_b, 0.5); - // // double x_min = step_x; - // // projecting backwards is the same as projecting forward with inverse l_b? - // while (added && cur_x > 0) - // { - // theta = max(util::RAD_180 - asin(cur_x), - // last_theta + step_min); - // angle = ellipse_angle(l_bb, theta); - // added = add_offsets_calc_ros(angle); - // cur_x = sin(theta); - // printf("cur_x = %f, theta = %f, angle = %f, last_theta = %f, last_angle = %f\n", - // cur_x, - // util::to_degrees(theta), - // util::to_degrees(angle), - // util::to_degrees(last_theta), - // util::to_degrees(last_angle)); - // cur_x -= step_x; - // last_theta = theta; - // last_angle = angle; - // } - // double step_min = STEP_MAX; - // double x_min = step_x; - // while (added && cur_x > x_min) - // { - // theta = util::RAD_180 - asin(cur_x); - // angle = ellipse_angle(l_b, theta); - // added = add_offsets_calc_ros(angle); - // cur_x = sin(theta); - // printf("cur_x = %f, theta = %f, angle = %f, last_theta = %f, last_angle = %f\n", - // cur_x, - // util::to_degrees(theta), - // util::to_degrees(angle), - // util::to_degrees(last_theta), - // util::to_degrees(last_angle)); - // // if (abs(angle - last_angle) < STEP_MAX) - // // { - // // break; - // // } - // if (abs(theta - last_theta) < STEP_MAX) - // { - // break; - // } - // cur_x -= step_x; - // last_theta = theta; - // last_angle = angle; - // } - if (added) - { - // only use back ros if every other angle is spreading since this should be lowest - // 180 - if (back_ros < min_ros) - { - return; - } - const auto direction = util::fix_radians(util::RAD_180 + raz); - static_cast(!add_offset(direction, back_ros * correction_factor(direction))); + return; } + const auto direction = util::fix_radians(util::RAD_180 + raz); + static_cast(!add_offset(direction, back_ros * correction_factor(direction))); } } // double SpreadInfo::calculateSpreadProbability(const double ros) From 4546d8a7129da719ceab92f204afa5563b1123a2 Mon Sep 17 00:00:00 2001 From: Jordan Evens Date: Fri, 12 Apr 2024 07:25:45 -0400 Subject: [PATCH 11/17] reduced number of rear points --- source.r | 4 +++- tbd/src/cpp/FireSpread.cpp | 20 +++++++++++++------- 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/source.r b/source.r index f9082ed95..221385fbc 100755 --- a/source.r +++ b/source.r @@ -4,6 +4,9 @@ library(data.table) library(terra) library(lattice) library(rasterVis) + +DIR <- "../data/test_constant" + # colours <- list( # "1"=list(r=255, g=0, b=0), # "2"=list(r=255, g=255, b=255), @@ -97,7 +100,6 @@ names(hex) <- 0:255 results <- as.data.table(results) write.table(results, file = "source.clr", col.names = FALSE, row.names = FALSE, sep = " ") -DIR <- "../data/test_output" imgs <- list.files(DIR, pattern = "^source.tif$", full.names = TRUE, recursive = TRUE) imgs <- imgs[grep("C2", imgs)] rasters <- lapply(imgs, function(img) { diff --git a/tbd/src/cpp/FireSpread.cpp b/tbd/src/cpp/FireSpread.cpp index c2fbffc4d..0074e5abe 100644 --- a/tbd/src/cpp/FireSpread.cpp +++ b/tbd/src/cpp/FireSpread.cpp @@ -420,7 +420,7 @@ SpreadInfo::SpreadInfo(const double time, [&add_offsets, &calculate_ros](const double angle_radians) { return add_offsets(angle_radians, calculate_ros(angle_radians)); }; // bool added = add_offset(raz, head_ros_); bool added = true; -#define STEP_X 0.1 +#define STEP_X 0.2 #define STEP_MAX_DEGREES 10.0 #define STEP_MAX util::to_radians(STEP_MAX_DEGREES) double step_x = STEP_X; @@ -433,10 +433,11 @@ SpreadInfo::SpreadInfo(const double time, // double step = 1; // double last_step = 0; size_t num_angles = 0; - while (added && cur_x > 0) + double step_max = STEP_MAX / pow(l_b, 0.5); + while (added && cur_x > (STEP_MAX / 2.0)) { ++num_angles; - theta = min(acos(cur_x), last_theta + STEP_MAX); + theta = min(acos(cur_x), last_theta + step_max); angle = ellipse_angle(l_b, theta); added = add_offsets_calc_ros(angle); cur_x = cos(theta); @@ -448,6 +449,10 @@ SpreadInfo::SpreadInfo(const double time, util::to_degrees(last_angle)); last_theta = theta; last_angle = angle; + if (theta > (STEP_MAX / 2.0)) + { + step_max = STEP_MAX; + } cur_x -= step_x; } if (added) @@ -469,10 +474,11 @@ SpreadInfo::SpreadInfo(const double time, cur_x -= (step_x / 2.0); // trying to pick less rear points step_x *= l_b; - double max_angle = util::RAD_180 - STEP_MAX; - double min_x = min(-1.0 + step_x, - cos(max_angle)); - while (added && cur_x > min_x) + // just trying random things now + // double max_angle = util::RAD_180 - (pow(l_b, 1.5) * STEP_MAX); + double max_angle = util::RAD_180 - (l_b * STEP_MAX); + double min_x = cos(max_angle); + while (added && cur_x >= min_x) { ++num_angles; theta = max(acos(cur_x), last_theta + STEP_MAX); From f590e9ef2f158db5c0130a7d7997a49b85d8d6e6 Mon Sep 17 00:00:00 2001 From: Jordan Evens Date: Sat, 13 Apr 2024 15:07:29 -0400 Subject: [PATCH 12/17] changed source.r directory for constant grid inputs --- source.r | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/source.r b/source.r index 221385fbc..b198352ef 100755 --- a/source.r +++ b/source.r @@ -5,8 +5,10 @@ library(terra) library(lattice) library(rasterVis) -DIR <- "../data/test_constant" - +DIR <- "../data/test_condense16" +# DIR_OUT <- "." +DIR_OUT <- Sys.getenv("HOME") +FILE_OUT <- file.path(DIR_OUT, paste0(basename(DIR), ".pdf")) # colours <- list( # "1"=list(r=255, g=0, b=0), # "2"=list(r=255, g=255, b=255), @@ -109,7 +111,7 @@ e <- ext(rasters[[1]]) for (r in rasters) { e <- ext(extend(r, e)) } -pdf(paste0(basename(DIR), ".pdf"), width = 11, height = 8.5) +pdf(FILE_OUT, width = 11, height = 8.5) par(mfrow = c(3, 4), mar = c(2, 2, 2, 2)) for (i in 1:length(rasters)) { img <- imgs[[i]] From 6edb0062c75c732817b1d30c8fea1f81637a03fc Mon Sep 17 00:00:00 2001 From: Jordan Evens Date: Sat, 13 Apr 2024 15:14:10 -0400 Subject: [PATCH 13/17] added test folders to .gitignore --- .gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b9b008b15..528b65e50 100644 --- a/.gitignore +++ b/.gitignore @@ -15,4 +15,6 @@ pyfire/venv **/logs **/build **/private -**/output* \ No newline at end of file +**/output* +tbd/validate +tbd/dir_test From 358612aea312ffe138dcea5fae4c15471cb21535 Mon Sep 17 00:00:00 2001 From: Jordan Evens Date: Fri, 12 Apr 2024 10:55:43 -0400 Subject: [PATCH 14/17] adjust to taper before 90 degrees so rear isn't a triangle --- tbd/src/cpp/FireSpread.cpp | 6 +++++- test_pts.sh | 2 ++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/tbd/src/cpp/FireSpread.cpp b/tbd/src/cpp/FireSpread.cpp index 0074e5abe..42dd40bba 100644 --- a/tbd/src/cpp/FireSpread.cpp +++ b/tbd/src/cpp/FireSpread.cpp @@ -434,7 +434,7 @@ SpreadInfo::SpreadInfo(const double time, // double last_step = 0; size_t num_angles = 0; double step_max = STEP_MAX / pow(l_b, 0.5); - while (added && cur_x > (STEP_MAX / 2.0)) + while (added && cur_x > (STEP_MAX / 4.0)) { ++num_angles; theta = min(acos(cur_x), last_theta + step_max); @@ -457,6 +457,9 @@ SpreadInfo::SpreadInfo(const double time, } if (added) { + angle = real_angle(l_b, (util::RAD_090 + theta) / 2.0); + added = add_offsets_calc_ros(angle); + // always just do one between the last angle and 90 theta = util::RAD_090; ++num_angles; angle = ellipse_angle(l_b, theta); @@ -473,6 +476,7 @@ SpreadInfo::SpreadInfo(const double time, } cur_x -= (step_x / 2.0); // trying to pick less rear points + // step_x *= l_b; step_x *= l_b; // just trying random things now // double max_angle = util::RAD_180 - (pow(l_b, 1.5) * STEP_MAX); diff --git a/test_pts.sh b/test_pts.sh index 5ea2dfa82..137564889 100755 --- a/test_pts.sh +++ b/test_pts.sh @@ -1,7 +1,9 @@ #!/bin/bash set -e # docker compose exec tbd_dev_svc /bin/bash -c './test_hull.sh > hull_testing.log 2>&1' +sed -i "s/Settings::setSavePoints(false);/Settings::setSavePoints(true);/g" tbd/src/cpp/Test.cpp docker compose exec tbd_dev_svc /bin/bash -c './test_hull.sh' python pts_to_shp.py # mkdir -p /mnt/d/firestarr_pts # rsync -avHP --delete ../data/test_output/ /mnt/d/firestarr_pts/ +sed -i "s/Settings::setSavePoints(true);/Settings::setSavePoints(false);/g" tbd/src/cpp/Test.cpp From 3494d2e5a3e78f947ced29c87a772df4a96fb611 Mon Sep 17 00:00:00 2001 From: Jordan Evens Date: Fri, 12 Apr 2024 11:55:41 -0400 Subject: [PATCH 15/17] tweak ellipse so circles have points closer to rear --- tbd/src/cpp/FireSpread.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/tbd/src/cpp/FireSpread.cpp b/tbd/src/cpp/FireSpread.cpp index 42dd40bba..ffe939f4e 100644 --- a/tbd/src/cpp/FireSpread.cpp +++ b/tbd/src/cpp/FireSpread.cpp @@ -421,7 +421,7 @@ SpreadInfo::SpreadInfo(const double time, // bool added = add_offset(raz, head_ros_); bool added = true; #define STEP_X 0.2 -#define STEP_MAX_DEGREES 10.0 +#define STEP_MAX_DEGREES 5.0 #define STEP_MAX util::to_radians(STEP_MAX_DEGREES) double step_x = STEP_X; // double step_x = STEP_X / l_b; @@ -457,7 +457,7 @@ SpreadInfo::SpreadInfo(const double time, } if (added) { - angle = real_angle(l_b, (util::RAD_090 + theta) / 2.0); + angle = ellipse_angle(l_b, (util::RAD_090 + theta) / 2.0); added = add_offsets_calc_ros(angle); // always just do one between the last angle and 90 theta = util::RAD_090; @@ -474,18 +474,20 @@ SpreadInfo::SpreadInfo(const double time, last_theta = theta; last_angle = angle; } + // just because 5 seems good for the front and 10 for the back + step_max = 2.0 * STEP_MAX; cur_x -= (step_x / 2.0); // trying to pick less rear points // step_x *= l_b; step_x *= l_b; // just trying random things now // double max_angle = util::RAD_180 - (pow(l_b, 1.5) * STEP_MAX); - double max_angle = util::RAD_180 - (l_b * STEP_MAX); + double max_angle = util::RAD_180 - (l_b * step_max); double min_x = cos(max_angle); while (added && cur_x >= min_x) { ++num_angles; - theta = max(acos(cur_x), last_theta + STEP_MAX); + theta = max(acos(cur_x), last_theta + step_max); angle = ellipse_angle(l_b, theta); if (angle > max_angle) { From a42ace90941f9a08a1151757a342e1f5a55d6859 Mon Sep 17 00:00:00 2001 From: Jordan Evens Date: Fri, 12 Apr 2024 14:19:19 -0400 Subject: [PATCH 16/17] ensure widest part of ellipse is always included in points --- tbd/src/cpp/FireSpread.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/tbd/src/cpp/FireSpread.cpp b/tbd/src/cpp/FireSpread.cpp index ffe939f4e..897e9652e 100644 --- a/tbd/src/cpp/FireSpread.cpp +++ b/tbd/src/cpp/FireSpread.cpp @@ -430,9 +430,18 @@ SpreadInfo::SpreadInfo(const double time, double last_theta = 0; double cur_x = 1.0; double last_angle = 0; + // widest point should be at origin, which is 'c' away from origin + double widest = atan2(flank_ros, c); + printf("head_ros_ = %f, back_ros = %f, flank_ros = %f, c = %f, widest = %f\n", + head_ros_, + back_ros, + flank_ros, + c, + util::to_degrees(widest)); // double step = 1; // double last_step = 0; size_t num_angles = 0; + double widest_x = cos(widest); double step_max = STEP_MAX / pow(l_b, 0.5); while (added && cur_x > (STEP_MAX / 4.0)) { @@ -454,6 +463,10 @@ SpreadInfo::SpreadInfo(const double time, step_max = STEP_MAX; } cur_x -= step_x; + if (cur_x > widest_x && abs(cur_x - widest_x) < step_x) + { + cur_x = widest_x; + } } if (added) { From 3c92cc6b19a7cdbda2c1a9b36625e2792cb77409 Mon Sep 17 00:00:00 2001 From: Jordan Evens Date: Mon, 15 Apr 2024 14:31:30 -0400 Subject: [PATCH 17/17] move spread options into SpreadAlgorithm classes --- tbd/src/cpp/FireSpread.cpp | 213 ++-------------------- tbd/src/cpp/FireSpread.h | 1 - tbd/src/cpp/SpreadAlgorithm.cpp | 307 ++++++++++++++++++++++++++++++++ tbd/src/cpp/SpreadAlgorithm.h | 68 +++++++ 4 files changed, 390 insertions(+), 199 deletions(-) create mode 100644 tbd/src/cpp/SpreadAlgorithm.cpp create mode 100644 tbd/src/cpp/SpreadAlgorithm.h diff --git a/tbd/src/cpp/FireSpread.cpp b/tbd/src/cpp/FireSpread.cpp index 897e9652e..96d5947de 100644 --- a/tbd/src/cpp/FireSpread.cpp +++ b/tbd/src/cpp/FireSpread.cpp @@ -9,6 +9,8 @@ #include "Scenario.h" #include "Settings.h" #include "unstable.h" +#include "SpreadAlgorithm.h" + namespace tbd::sim { // hull to condesnse points @@ -74,7 +76,6 @@ double SpreadInfo::initial(SpreadInfo& spread, double& ffmc_effect, double& wsv, double& rso, - double& raz, const fuel::FuelType* const fuel, bool has_no_slope, double heading_sin, @@ -85,7 +86,7 @@ double SpreadInfo::initial(SpreadInfo& spread, { ffmc_effect = spread.ffmcEffect(); // needs to be non-const so that we can update if slopeEffect changes direction - raz = spread.wind().heading(); + double raz = spread.wind().heading(); const auto isz = 0.208 * ffmc_effect; wsv = spread.wind().speed().asDouble(); if (!has_no_slope) @@ -271,14 +272,12 @@ SpreadInfo::SpreadInfo(const double time, double ffmc_effect; double wsv; double rso; - double raz; if (min_ros > SpreadInfo::initial( *this, *weather_daily, ffmc_effect, wsv, rso, - raz, fuel, has_no_slope, heading_sin, @@ -299,7 +298,6 @@ SpreadInfo::SpreadInfo(const double time, ffmc_effect, wsv, rso, - raz, fuel, has_no_slope, heading_sin, @@ -326,50 +324,6 @@ SpreadInfo::SpreadInfo(const double time, fuel->crownFractionBurned(back_ros, rso), back_ros); } - // do everything we can to avoid calling trig functions unnecessarily - const auto b_semi = has_no_slope ? 0 : _cos(atan(percentSlope() / 100.0)); - const auto slope_radians = util::to_radians(slope_azimuth); - // do check once and make function just return 1.0 if no slope - const auto no_correction = [](const double) noexcept { return 1.0; }; - const auto do_correction = [b_semi, slope_radians](const double theta) noexcept { - // never gets called if isInvalid() so don't check - // figure out how far the ground distance is in map distance horizontally - auto angle_unrotated = theta - slope_radians; - if (util::to_degrees(angle_unrotated) == 270 || util::to_degrees(angle_unrotated) == 90) - { - // CHECK: if we're going directly across the slope then horizontal distance is same as spread distance - return 1.0; - } - const auto tan_u = tan(angle_unrotated); - const auto y = b_semi / sqrt(b_semi * tan_u * (b_semi * tan_u) + 1.0); - const auto x = y * tan_u; - // CHECK: Pretty sure you can't spread farther horizontally than the spread distance, regardless of angle? - return min(1.0, sqrt(x * x + y * y)); - }; - const auto correction_factor = has_no_slope - ? std::function(no_correction) - : std::function(do_correction); - const auto add_offset = [this, cell_size, min_ros](const double direction, - const double ros) { - if (ros < min_ros) - { - return false; - } - // spreading, so figure out offset from current point - const auto ros_cell = ros / cell_size; - offsets_.emplace_back(ros_cell * _sin(direction), ros_cell * _cos(direction)); - return true; - }; - // if not over spread threshold then don't spread - // HACK: assume there is no fuel where a crown fire's sfc is < COMPARE_LIMIT and its fc is > - double ros{}; - // HACK: set ros in boolean if we get that far so that we don't have to repeat the if body - if (!add_offset(raz, ros = (head_ros_ * correction_factor(raz)))) - { - // mark as invalid - head_ros_ = -1; - return; - } tfc_ = sfc_; // don't need to re-evaluate if crown with new head_ros_ because it would only go up if is_crown_ if (fuel->canCrown() && is_crown_) @@ -380,157 +334,20 @@ SpreadInfo::SpreadInfo(const double time, tfc_ += cfc_; } // max intensity should always be at the head - max_intensity_ = fuel::fire_intensity(tfc_, ros); - const auto a = (head_ros_ + back_ros) / 2.0; - const auto c = a - back_ros; + max_intensity_ = fuel::fire_intensity(tfc_, head_ros_); const auto l_b = fuel->lengthToBreadth(wsv); - const auto flank_ros = a / l_b; - const auto a_sq = a * a; - const auto flank_ros_sq = flank_ros * flank_ros; - const auto a_sq_sub_c_sq = a_sq - (c * c); - const auto ac = a * c; - const auto calculate_ros = - [a, c, ac, flank_ros, a_sq, flank_ros_sq, a_sq_sub_c_sq](const double theta) noexcept { - const auto cos_t = _cos(theta); - const auto cos_t_sq = cos_t * cos_t; - const auto f_sq_cos_t_sq = flank_ros_sq * cos_t_sq; - // 1.0 = cos^2 + sin^2 - // const auto sin_t_sq = 1.0 - cos_t_sq; - const auto sin_t = _sin(theta); - const auto sin_t_sq = sin_t * sin_t; - return abs((a * ((flank_ros * cos_t * sqrt(f_sq_cos_t_sq + a_sq_sub_c_sq * sin_t_sq) - ac * sin_t_sq) / (f_sq_cos_t_sq + a_sq * sin_t_sq)) + c) / cos_t); - }; - const auto add_offsets = - [&correction_factor, &add_offset, raz, min_ros]( - const double angle_radians, - const double ros_flat) { - if (ros_flat < min_ros) - { - return false; - } - auto direction = util::fix_radians(angle_radians + raz); - // spread is symmetrical across the center axis, but needs to be adjusted if on a slope - // intentionally don't use || because we want both of these to happen all the time - auto added = add_offset(direction, ros_flat * correction_factor(direction)); - direction = util::fix_radians(raz - angle_radians); - added |= add_offset(direction, ros_flat * correction_factor(direction)); - return added; - }; - const auto add_offsets_calc_ros = - [&add_offsets, &calculate_ros](const double angle_radians) { return add_offsets(angle_radians, calculate_ros(angle_radians)); }; - // bool added = add_offset(raz, head_ros_); - bool added = true; -#define STEP_X 0.2 -#define STEP_MAX_DEGREES 5.0 -#define STEP_MAX util::to_radians(STEP_MAX_DEGREES) - double step_x = STEP_X; - // double step_x = STEP_X / l_b; - double theta = 0; - double angle = 0; - double last_theta = 0; - double cur_x = 1.0; - double last_angle = 0; - // widest point should be at origin, which is 'c' away from origin - double widest = atan2(flank_ros, c); - printf("head_ros_ = %f, back_ros = %f, flank_ros = %f, c = %f, widest = %f\n", - head_ros_, - back_ros, - flank_ros, - c, - util::to_degrees(widest)); - // double step = 1; - // double last_step = 0; - size_t num_angles = 0; - double widest_x = cos(widest); - double step_max = STEP_MAX / pow(l_b, 0.5); - while (added && cur_x > (STEP_MAX / 4.0)) + const HorizontalAdjustment correction_factor = horizontal_adjustment(slope_azimuth, percentSlope()); + // const auto spread_algorithm = OriginalSpreadAlgorithm(10.0, cell_size, min_ros); + const auto spread_algorithm = WidestEllipseAlgorithm(5.0, cell_size, min_ros); + offsets_ = spread_algorithm.calculate_offsets(correction_factor, + raz_.asRadians(), + head_ros_, + back_ros, + l_b); + // if no offsets then not spreading so invalidate head_ros_ + if (0 == offsets_.size()) { - ++num_angles; - theta = min(acos(cur_x), last_theta + step_max); - angle = ellipse_angle(l_b, theta); - added = add_offsets_calc_ros(angle); - cur_x = cos(theta); - printf("cur_x = %f, theta = %f, angle = %f, last_theta = %f, last_angle = %f\n", - cur_x, - util::to_degrees(theta), - util::to_degrees(angle), - util::to_degrees(last_theta), - util::to_degrees(last_angle)); - last_theta = theta; - last_angle = angle; - if (theta > (STEP_MAX / 2.0)) - { - step_max = STEP_MAX; - } - cur_x -= step_x; - if (cur_x > widest_x && abs(cur_x - widest_x) < step_x) - { - cur_x = widest_x; - } - } - if (added) - { - angle = ellipse_angle(l_b, (util::RAD_090 + theta) / 2.0); - added = add_offsets_calc_ros(angle); - // always just do one between the last angle and 90 - theta = util::RAD_090; - ++num_angles; - angle = ellipse_angle(l_b, theta); - added = add_offsets(util::RAD_090, flank_ros * sqrt(a_sq_sub_c_sq) / a); - cur_x = cos(theta); - printf("cur_x = %f, theta = %f, angle = %f, last_theta = %f, last_angle = %f\n", - cur_x, - util::to_degrees(theta), - util::to_degrees(angle), - util::to_degrees(last_theta), - util::to_degrees(last_angle)); - last_theta = theta; - last_angle = angle; - } - // just because 5 seems good for the front and 10 for the back - step_max = 2.0 * STEP_MAX; - cur_x -= (step_x / 2.0); - // trying to pick less rear points - // step_x *= l_b; - step_x *= l_b; - // just trying random things now - // double max_angle = util::RAD_180 - (pow(l_b, 1.5) * STEP_MAX); - double max_angle = util::RAD_180 - (l_b * step_max); - double min_x = cos(max_angle); - while (added && cur_x >= min_x) - { - ++num_angles; - theta = max(acos(cur_x), last_theta + step_max); - angle = ellipse_angle(l_b, theta); - if (angle > max_angle) - { - break; - // // compromise and put a point in the middle - // theta = (theta + last_theta) / 2.0; - // angle = ellipse_angle(l_b, theta); - } - added = add_offsets_calc_ros(angle); - cur_x = cos(theta); - printf("cur_x = %f, theta = %f, angle = %f, last_theta = %f, last_angle = %f\n", - cur_x, - util::to_degrees(theta), - util::to_degrees(angle), - util::to_degrees(last_theta), - util::to_degrees(last_angle)); - last_theta = theta; - last_angle = angle; - cur_x -= step_x; - } - if (added) - { - // only use back ros if every other angle is spreading since this should be lowest - // 180 - if (back_ros < min_ros) - { - return; - } - const auto direction = util::fix_radians(util::RAD_180 + raz); - static_cast(!add_offset(direction, back_ros * correction_factor(direction))); + head_ros_ = -1; } } // double SpreadInfo::calculateSpreadProbability(const double ros) diff --git a/tbd/src/cpp/FireSpread.h b/tbd/src/cpp/FireSpread.h index 3041ff54d..8bef53039 100644 --- a/tbd/src/cpp/FireSpread.h +++ b/tbd/src/cpp/FireSpread.h @@ -321,7 +321,6 @@ class SpreadInfo double& ffmc_effect, double& wsv, double& rso, - double& raz, const fuel::FuelType* const fuel, bool has_no_slope, double heading_sin, diff --git a/tbd/src/cpp/SpreadAlgorithm.cpp b/tbd/src/cpp/SpreadAlgorithm.cpp new file mode 100644 index 000000000..db993c340 --- /dev/null +++ b/tbd/src/cpp/SpreadAlgorithm.cpp @@ -0,0 +1,307 @@ +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ + +#include "SpreadAlgorithm.h" +#include "Util.h" +#include "unstable.h" + +namespace tbd +{ +HorizontalAdjustment horizontal_adjustment( + const AspectSize slope_azimuth, + const SlopeSize slope) +{ + // do everything we can to avoid calling trig functions unnecessarily + constexpr auto no_correction = [](const double) noexcept { return 1.0; }; + if (0 == slope) + { + // do check once and make function just return 1.0 if no slope + return no_correction; + } + const auto b_semi = _cos(atan(slope / 100.0)); + const auto slope_radians = util::to_radians(slope_azimuth); + const auto do_correction = [b_semi, slope_radians](const double theta) noexcept { + // never gets called if isInvalid() so don't check + // figure out how far the ground distance is in map distance horizontally + auto angle_unrotated = theta - slope_radians; + if (util::to_degrees(angle_unrotated) == 270 || util::to_degrees(angle_unrotated) == 90) + { + // CHECK: if we're going directly across the slope then horizontal distance is same as spread distance + return 1.0; + } + const auto tan_u = tan(angle_unrotated); + const auto y = b_semi / sqrt(b_semi * tan_u * (b_semi * tan_u) + 1.0); + const auto x = y * tan_u; + // CHECK: Pretty sure you can't spread farther horizontally than the spread distance, regardless of angle? + return min(1.0, sqrt(x * x + y * y)); + }; + return do_correction; +} +[[nodiscard]] OffsetSet OriginalSpreadAlgorithm::calculate_offsets( + HorizontalAdjustment correction_factor, + double head_raz, + double head_ros, + double back_ros, + double length_to_breadth) const noexcept +{ + OffsetSet offsets{}; + const auto add_offset = [this, &offsets](const double direction, + const double ros) { + if (ros < min_ros_) + { + return false; + } + const auto ros_cell = ros / cell_size_; + // spreading, so figure out offset from current point + offsets.emplace_back(ros_cell * _sin(direction), ros_cell * _cos(direction)); + return true; + }; + // if not over spread threshold then don't spread + // HACK: set ros in boolean if we get that far so that we don't have to repeat the if body + if (!add_offset(head_raz, head_ros * correction_factor(head_raz))) + { + return offsets; + } + const auto a = (head_ros + back_ros) / 2.0; + const auto c = a - back_ros; + const auto flank_ros = a / length_to_breadth; + const auto a_sq = a * a; + const auto flank_ros_sq = flank_ros * flank_ros; + const auto a_sq_sub_c_sq = a_sq - (c * c); + const auto ac = a * c; + const auto calculate_ros = + [a, c, ac, flank_ros, a_sq, flank_ros_sq, a_sq_sub_c_sq](const double theta) noexcept { + const auto cos_t = _cos(theta); + const auto cos_t_sq = cos_t * cos_t; + const auto f_sq_cos_t_sq = flank_ros_sq * cos_t_sq; + // 1.0 = cos^2 + sin^2 + // const auto sin_t_sq = 1.0 - cos_t_sq; + const auto sin_t = _sin(theta); + const auto sin_t_sq = sin_t * sin_t; + return abs((a * ((flank_ros * cos_t * sqrt(f_sq_cos_t_sq + a_sq_sub_c_sq * sin_t_sq) - ac * sin_t_sq) / (f_sq_cos_t_sq + a_sq * sin_t_sq)) + c) / cos_t); + }; + const auto add_offsets = + [this, &correction_factor, &add_offset, head_raz]( + const double angle_radians, + const double ros_flat) { + if (ros_flat < min_ros_) + { + return false; + } + auto direction = util::fix_radians(angle_radians + head_raz); + // spread is symmetrical across the center axis, but needs to be adjusted if on a slope + // intentionally don't use || because we want both of these to happen all the time + auto added = add_offset(direction, ros_flat * correction_factor(direction)); + direction = util::fix_radians(head_raz - angle_radians); + added |= add_offset(direction, ros_flat * correction_factor(direction)); + return added; + }; + const auto add_offsets_calc_ros = + [&add_offsets, &calculate_ros](const double angle_radians) { return add_offsets(angle_radians, calculate_ros(angle_radians)); }; + // bool added = add_offset(head_raz, head_ros); + bool added = add_offset(head_raz, head_ros); + double i = max_angle_; + while (added && i < 90) + { + added = add_offsets_calc_ros(util::to_radians(i)); + i += max_angle_; + } + if (added) + { + added = add_offsets(util::to_radians(90), flank_ros * sqrt(a_sq_sub_c_sq) / a); + i = 90 + max_angle_; + while (added && i < 180) + { + added = add_offsets_calc_ros(util::to_radians(i)); + i += max_angle_; + } + if (added) + { + // only use back ros if every other angle is spreading since this should be lowest + // 180 + if (back_ros >= min_ros_) + { + const auto direction = util::fix_radians(util::RAD_180 + head_raz); + static_cast(!add_offset(direction, back_ros * correction_factor(direction))); + } + } + } + return offsets; +} +[[nodiscard]] OffsetSet WidestEllipseAlgorithm::calculate_offsets( + const HorizontalAdjustment correction_factor, + const double head_raz, + const double head_ros, + const double back_ros, + const double length_to_breadth) const noexcept +{ + OffsetSet offsets{}; + const auto add_offset = [this, &offsets](const double direction, + const double ros) { + if (ros < min_ros_) + { + return false; + } + const auto ros_cell = ros / cell_size_; + // spreading, so figure out offset from current point + offsets.emplace_back(ros_cell * _sin(direction), ros_cell * _cos(direction)); + return true; + }; + // if not over spread threshold then don't spread + // HACK: set ros in boolean if we get that far so that we don't have to repeat the if body + if (!add_offset(head_raz, head_ros * correction_factor(head_raz))) + { + return offsets; + } + const auto a = (head_ros + back_ros) / 2.0; + const auto c = a - back_ros; + const auto flank_ros = a / length_to_breadth; + const auto a_sq = a * a; + const auto flank_ros_sq = flank_ros * flank_ros; + const auto a_sq_sub_c_sq = a_sq - (c * c); + const auto ac = a * c; + const auto calculate_ros = + [a, c, ac, flank_ros, a_sq, flank_ros_sq, a_sq_sub_c_sq](const double theta) noexcept { + const auto cos_t = _cos(theta); + const auto cos_t_sq = cos_t * cos_t; + const auto f_sq_cos_t_sq = flank_ros_sq * cos_t_sq; + // 1.0 = cos^2 + sin^2 + // const auto sin_t_sq = 1.0 - cos_t_sq; + const auto sin_t = _sin(theta); + const auto sin_t_sq = sin_t * sin_t; + return abs((a * ((flank_ros * cos_t * sqrt(f_sq_cos_t_sq + a_sq_sub_c_sq * sin_t_sq) - ac * sin_t_sq) / (f_sq_cos_t_sq + a_sq * sin_t_sq)) + c) / cos_t); + }; + const auto add_offsets = + [this, &correction_factor, &add_offset, head_raz]( + const double angle_radians, + const double ros_flat) { + if (ros_flat < min_ros_) + { + return false; + } + auto direction = util::fix_radians(angle_radians + head_raz); + // spread is symmetrical across the center axis, but needs to be adjusted if on a slope + // intentionally don't use || because we want both of these to happen all the time + auto added = add_offset(direction, ros_flat * correction_factor(direction)); + direction = util::fix_radians(head_raz - angle_radians); + added |= add_offset(direction, ros_flat * correction_factor(direction)); + return added; + }; + const auto add_offsets_calc_ros = + [&add_offsets, &calculate_ros](const double angle_radians) { return add_offsets(angle_radians, calculate_ros(angle_radians)); }; + // bool added = add_offset(head_raz, head_ros); + bool added = true; +#define STEP_X 0.2 +#define STEP_MAX util::to_radians(max_angle_) + double step_x = STEP_X; + // double step_x = STEP_X / length_to_breadth; + double theta = 0; + double angle = 0; + double last_theta = 0; + double cur_x = 1.0; + double last_angle = 0; + // widest point should be at origin, which is 'c' away from origin + double widest = atan2(flank_ros, c); + printf("head_ros = %f, back_ros = %f, flank_ros = %f, c = %f, widest = %f\n", + head_ros, + back_ros, + flank_ros, + c, + util::to_degrees(widest)); + // double step = 1; + // double last_step = 0; + size_t num_angles = 0; + double widest_x = cos(widest); + double step_max = STEP_MAX / pow(length_to_breadth, 0.5); + while (added && cur_x > (STEP_MAX / 4.0)) + { + ++num_angles; + theta = min(acos(cur_x), last_theta + step_max); + angle = ellipse_angle(length_to_breadth, theta); + added = add_offsets_calc_ros(angle); + cur_x = cos(theta); + printf("cur_x = %f, theta = %f, angle = %f, last_theta = %f, last_angle = %f\n", + cur_x, + util::to_degrees(theta), + util::to_degrees(angle), + util::to_degrees(last_theta), + util::to_degrees(last_angle)); + last_theta = theta; + last_angle = angle; + if (theta > (STEP_MAX / 2.0)) + { + step_max = STEP_MAX; + } + cur_x -= step_x; + if (cur_x > widest_x && abs(cur_x - widest_x) < step_x) + { + cur_x = widest_x; + } + } + if (added) + { + angle = ellipse_angle(length_to_breadth, (util::RAD_090 + theta) / 2.0); + added = add_offsets_calc_ros(angle); + // always just do one between the last angle and 90 + theta = util::RAD_090; + ++num_angles; + angle = ellipse_angle(length_to_breadth, theta); + added = add_offsets(util::RAD_090, flank_ros * sqrt(a_sq_sub_c_sq) / a); + cur_x = cos(theta); + printf("cur_x = %f, theta = %f, angle = %f, last_theta = %f, last_angle = %f\n", + cur_x, + util::to_degrees(theta), + util::to_degrees(angle), + util::to_degrees(last_theta), + util::to_degrees(last_angle)); + last_theta = theta; + last_angle = angle; + } + // just because 5 seems good for the front and 10 for the back + step_max = 2.0 * STEP_MAX; + cur_x -= (step_x / 2.0); + // trying to pick less rear points + // step_x *= length_to_breadth; + step_x *= length_to_breadth; + // just trying random things now + // double max_angle = util::RAD_180 - (pow(length_to_breadth, 1.5) * STEP_MAX); + double max_angle = util::RAD_180 - (length_to_breadth * step_max); + double min_x = cos(max_angle); + while (added && cur_x >= min_x) + { + ++num_angles; + theta = max(acos(cur_x), last_theta + step_max); + angle = ellipse_angle(length_to_breadth, theta); + if (angle > max_angle) + { + break; + // // compromise and put a point in the middle + // theta = (theta + last_theta) / 2.0; + // angle = ellipse_angle(length_to_breadth, theta); + } + added = add_offsets_calc_ros(angle); + cur_x = cos(theta); + printf("cur_x = %f, theta = %f, angle = %f, last_theta = %f, last_angle = %f\n", + cur_x, + util::to_degrees(theta), + util::to_degrees(angle), + util::to_degrees(last_theta), + util::to_degrees(last_angle)); + last_theta = theta; + last_angle = angle; + cur_x -= step_x; + } + if (added) + { + // only use back ros if every other angle is spreading since this should be lowest + // 180 + if (back_ros >= min_ros_) + { + const auto direction = util::fix_radians(util::RAD_180 + head_raz); + static_cast(!add_offset(direction, back_ros * correction_factor(direction))); + } + } + return offsets; +} +} diff --git a/tbd/src/cpp/SpreadAlgorithm.h b/tbd/src/cpp/SpreadAlgorithm.h new file mode 100644 index 000000000..bb85ebced --- /dev/null +++ b/tbd/src/cpp/SpreadAlgorithm.h @@ -0,0 +1,68 @@ +/* Copyright (c) 2020, Queen's Printer for Ontario */ + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ + +#include "stdafx.h" + +namespace tbd +{ +using HorizontalAdjustment = std::function; + +HorizontalAdjustment horizontal_adjustment( + const AspectSize slope_azimuth, + const SlopeSize slope); + +class SpreadAlgorithm +{ +public: + [[nodiscard]] virtual OffsetSet calculate_offsets( + HorizontalAdjustment correction_factor, + double head_raz, + double head_ros, + double back_ros, + double length_to_breadth) const + noexcept = 0; +}; + +class BaseSpreadAlgorithm + : public SpreadAlgorithm +{ +public: + BaseSpreadAlgorithm(const double max_angle, + const double cell_size, + const double min_ros) + : max_angle_(max_angle), cell_size_(cell_size), min_ros_(min_ros) + { + } +protected: + double max_angle_; + double cell_size_; + double min_ros_; +}; + +class OriginalSpreadAlgorithm + : public BaseSpreadAlgorithm +{ +public: + using BaseSpreadAlgorithm::BaseSpreadAlgorithm; + [[nodiscard]] OffsetSet calculate_offsets( + HorizontalAdjustment correction_factor, + double head_raz, + double head_ros, + double back_ros, + double length_to_breadth) const noexcept override; +}; + +class WidestEllipseAlgorithm + : public BaseSpreadAlgorithm +{ +public: + using BaseSpreadAlgorithm::BaseSpreadAlgorithm; + [[nodiscard]] OffsetSet calculate_offsets( + HorizontalAdjustment correction_factor, + double head_raz, + double head_ros, + double back_ros, + double length_to_breadth) const noexcept override; +}; +}